I have the following issue in an indicator translated from NT7 to NT8
Variables:
double methodRef1;
private Series<double> methodRef1DS
method1 definition
on State.DataLoaded:
methodRef1DS = new Series<double>(this);
methodRef1 = method1;
methodRef1DS[0] = methodRef1;
The last statement compiles but not producing any data
in NT7 this is - methodRef1DS.Set(methodRef1); which works fine.
Please advise, Thanks.

Comment