I know this has been covered before, but I can't find a thread that has this covered for my situation. Sorry if this should be something really basic.
I am working on an indicator, which uses several DataSeries objects.
I have declared it as private. eg:
#region Variables private DataSeries probUp; #endregion
protected override void Initialize()
{
probUp = new DataSeries(this);
}
protected override void OnBarUpdate()
{
probUp[0] = 0;
}
I have tried using properties, not using properties, etc. It seems like it is not being initialized in the Initialize() method... Which is counter-intuitive, since it's right there!
Thanks!

Comment