my Entry condition
if(shortPrice <= GetCurrentBid() && entryOrderS == null && profitTargetS == null && stopLossS == null)
{
entryOrderS = placeHolderOrderS;
suppressOcoS = false;
EnterShortStopMarket(0,true, PositionSize, shortPrice,"MyEntryShort");
}
Print("entryOrder"+entryOrder);
and iN output I get null entryorder entryOrder and order seems like staying in strategy and not taking more trades. Usually strategy takes order and prints full order details but sometimes i get this.

Comment