@Brian I've got some phantom positions showing up in the blotter. I'm doing some clean up so I closed my strategy positions and then double checked what is showing up in my brokerage account and confirmed the positions I closed out are no longer show up in my IBKR account. However, if I run the below:
'''''
from quantrocket.blotter import download_positions
import io, pandas as pd
f = io.StringIO()
download_positions(f)
positions = pd.read_csv(f)
positions
'''''''
It gives me a list of positions that do not exist. To remove them from the blotter should I run the purge script in the CLI you provided me last year with the order_ref of the positions still showing in the blotter? Please advise. Thanks.