Is there a way for me to see how many/what market data subscriptions are currently active?
Is there a way for me to clear the currently active subscriptions?
This does seem to be at least somewhat supported in according to the documentation here but it doesn't seem to want to work the way I'm thinking.
It also doesn't seem to like this at all.
foreach (Instrument inst in NinjaTrader.Cbi.InstrumentList.All)
{
if (inst != null)
inst.MarketData.Update -= OnMarketData;
}

Comment