If (Position.MarketPosition == MarketPosition.Flat)
//do something here
and
If (Position.MarketPosition == MarketPosition.Long)
//do something here
My question is, do simultaneous strategies pull from the same market position? For example if strategy A made a trade and now strategy A's market position is long, would that make strategy B's market position long as well, even if B did not make a trade?
If this is indeed the case, is there a way to make sure the market positions stay independent from each other between strategies?

Comment