"
else if (State == State.DataLoaded)
{
HMA1 = HMA(Period);
HH = MAX((Input is PriceSeries || Input is NinjaTrader.Data.Bars) ? High : Input, 10);
LL = MIN((Input is PriceSeries || Input is NinjaTrader.Data.Bars) ? Low : Input, 10);
"
is it perhaps (?) :
"? High : Input" = select the highest value of either one of the two data series within previous ( )
10 = for the last twn bars
I could not find on the online ninjascript help a reference explaining this use of MIN and MAX
Thank you.

Comment