Can AddDataSeries access data from another data vendor than the primary series?
In other words, the primary series is MNQ 09-20 from NinjaTrader Continuum and I am trying to access ^Uvol and ^Dvol from TD Ameritrade.
Is there a way to specify data vendor wrt AddDataSeries or another similar method?
else if (State == State.Configure)
{
AddDataSeries("^UVOL", BarsPeriodType.Minute, 1);
AddDataSeries("^DVOL", BarsPeriodType.Minute, 1);
}

Comment