How can I address the exit individually if I want to check first to see if it is in a position? In otherwords,
If ShortA is short, exit ShortA and if ShortB is short, Exit ShortB....how do I exit short indiviually? I want to address each position seperately.
I know you can use in general the statement......but I want to address them indiviually....
if (Position.MarketPosition == MarketPosition.Short
&& something happens)
ExitShortLimit(10000, GetCurrentBid(), "ShortA");

Comment