I've writing a strategy and now testing the AddSeries methods. I've wrotten the next code:
else if (State == State.Configure)
{
AddRenko(null, 4, MarketDataType.Last);
AddVolumetric(null, BarsPeriodType.Range, 4, VolumetricDeltaType.BidAsk, 1, false);
}
Is it possible to use both methods of DataSeries? Do I have wrong configuration?
Thank you in advance

Comment