I have a strategy that uses the following objects for its logic.
Position.MarketPosition
Performance.AllTrades
Position.GetProfitLoss
Performance.RealtimeTrades.TradesPerformance.Curre ncy.CumProfit
I am running two instances of the strategy in parallel - each with different parameters.
My question is about the context of the Position and Peformance objects. Are they for the strategy I am running?
For example, will Position.MarketPosition return the current position of the current instance of the strategy or the overall account position?
Onn

Comment