I've a custom indicator and was wondering if there's a possibility to do a historical plot on a Volumetric Bar Indicator? The indicator plots real time, but not historically?
else if (State == State.Configure)
{
AddVolumetric(Instrument.FullName, BarsPeriodType.Minute, 1440, VolumetricDeltaType.BidAsk, 1);
}
protected override void OnBarUpdate()
{
if (Bars == null)
return;
NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe barsType = Bars.BarsSeries.BarsType as NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe;
if (barsType == null)
return;

Comment