indicator dataloaded region
abc1 = abc(Close, Period, 0); <<< this was OnBarClose this indicator out of the box is set to OnBarClose
should I load this as below
abc1 = abc(Close[1], Period, 0);
*************************************
also need help with this
&& (Close[0] < MIN(Low,2)[0]) /// in OnBarClose
tried this in OnPriceChange - I do want current bar low to be less than the Low of last 2 bars NOT Current
this is triggering very quickly so I know is incorrect
&& (Close[0] < MIN(Low,2)[1])
how about this
&& (Close[0] < MIN(Low[1],2)[0])
thanks

Comment