if for example in the initialize function I add ..
Add(SampleBoolSeries(x,y,z));
and then in the update function I have
if (SampleBoolSeries(x,y,z).BullIndication[0]) EnterLong();
will the instance of SampleBoolSeries being referenced in the update function be the exact same one that is in the initialize section. It seems probably not since I could input different parameters into the two calls?
It is REALLY important for me to reference the same instance of the indicator since it is calculating data with milli-second precision using the time from the pc so I need what I see plotted and what the strategy to be acting upon to be the exact same?
Thanks
Paul

Comment