I have access to the volumetric bars delta for specific bars using the following:
Ex.
NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe barsType = Bars.BarsSeries.BarsType as NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe;
double currentDelta = barsType.Volumes[CurrentBar].BarDelta;
How do I get the BarDelta series?

Comment