I get this error when using the Strategy Analyzer with Optimization turned on. It works fine in Backtest mode, but any of the other options fail.
My strategy is using the volumetric bars, and I have confirmed that DataLoaded is never called after the volumetric bars have been added. Anyone know what I'm doing wrong here?
{
AddVolumetric(Instruments[0].FullName, BarsPeriodType.Range, 15, VolumetricDeltaType.BidAsk, 1);
}

Comment