I created a strategy that works with volumetric bars, because I need to get bid and ask info from the bar. This is how I am doing this:
NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe barsType = Bars.BarsSeries.BarsType as
NinjaTrader.NinjaScript.BarsTypes.VolumetricBarsTy pe;
double bidLow = barsType.Volumes[CurrentBar].GetBidVolumeForPrice(Low[0]);
So far so good. My footprint chart where I apply this strategy is of Type Volumetric, Base Period Type Range, Base Period Time 5.
Now, when I backtest the strategy with Order Fill Resolution = Standard I get very different results than running with the High Resolution. Why is that? The Standard resolution won't read the bid and ask for every price level that I have on the chart?
Also, I added a new dataseries to the strategy and now I can't use the High resolution anymore. Is there any work around for this?
AddDataSeries("^VIX", Data.BarsPeriodType.Minute, 10);
Regards,
Juliano

Comment