I declared MyDataSeries and try to Add an indicator on it and NT terminates.
Why is it not allowed? Or I'm doing something wrong?
I have in "variables" private DataSeries MyDataSeries;
in Initialize:
MyDataSeries = new DataSeries(this);
Add(Bollinger(MyDataSeries, 2.0, 10);
The last line gives the termination.
Baruch

Comment