Hi
As a bit of a klude to some unusual processing for historic Volume bars I ended up using setBar() to set the value of the previous bar as each historic bar is processed. [This is a way to cope with the problem of not knowing the end time of a volume bar, even when it is a historic bar.]
There are three series so, instead of an array return, I have
setBar(Bar.Value ,-1,0,nX);
setBar(Bar.Value ,-1,1,nY);
setBar(Bar.Value ,-1,2,nZ);
Where nX, nY, nZ are the three variables to be plotted.
I see the 0 series values, but not 1 and 2, and they don't appear in the Cursor box either.
As a bit of a klude to some unusual processing for historic Volume bars I ended up using setBar() to set the value of the previous bar as each historic bar is processed. [This is a way to cope with the problem of not knowing the end time of a volume bar, even when it is a historic bar.]
There are three series so, instead of an array return, I have
setBar(Bar.Value ,-1,0,nX);
setBar(Bar.Value ,-1,1,nY);
setBar(Bar.Value ,-1,2,nZ);
Where nX, nY, nZ are the three variables to be plotted.
I see the 0 series values, but not 1 and 2, and they don't appear in the Cursor box either.
Comment