I am creating an indicator with two series: a primary and Volumetric (BarsPeriodType is the same as primary).
Calculate set to OnEachTick.
The last bar in volumeric volume series is last completed bar.
Volumetrics bars series contains one bar less than primary bars:
CurrentBars[0] == CurrentBars[1] -1
BarsArray[0].Count == BarsArray[1].Count -1
This is screenshot from the Visual Studio:
The absent volumetric bar is exactly the last developing bar.
How to access its info?

Comment