Below is my sample strategy in ninjatrader
EnterLongStop(MAX(High,2)[0]);
ExitLongStop(Low[0]);
EnterShortStop(MIN(Low,2)[0]);
ExitShortStop(High[0]);
Exit ExitShortStop and ExitLongStop orders are not correctly taking place.Only Entry orders are takng place.
I want to know how do I make this alright
Kindly help

Comment