I am new to Ninjatrader and want to know whether following scenario is possible using Strategy Builder UI ?
Scenario1:
PreviousBar is Green and LengthOfPreviousBar >= ATR() * 2
PreviousBar is Red and LengthOfPreviousBar >= ATR() * 2
Scenario2:
User Provide input
LookBackBar = N
assume N = 5
Low[1] >= Low[2] >= Low[3] >= Low[4] >= Low[5] to check 5 consecutive Bar is have Higher Low to check Uptrend
Similarly
High[1] <= High[2] <= High[3] <= High[4] <= High[5] to check 5 consecutive Bar is have Lower High to Check Downtrend
Here use will decide value of N

Comment