The Indicator is unprotected (as per the NT7b14 release notes). It compiles OK. However, when added to a chart it creates a panel as expected but does nothing else.
In the log I get the following error:
Failed to call method “Initialize” for indicator “name here”; “Ticksize” property cannot be accesed from within “Initialize” method.
From the NT code breaking documentation, this is the only thing i found regarding Ticksize:
TickSize is no longer reflective of splits. For splits use this:
double tickSizeSplitAdjusted = TickSize / Bars.Instrument.MasterInstrument.Splits.GetSplitFa ctor(Bars.GetSessionDate(Time[0]));
I edited the script and found “Ticksize” in 6 places only.
I understand the indicator, i edited the script and can follow the logic in the code. I am not a programmer and I don't fully understand what “splits” mean but I am not sure that "splits" is the issue here.
Appreciate any suggestions.
Many Thanks
AQ

Comment