While subscribing to the Market data for an instrument , it all works ok.
However if I am interested in the DailyHigh data , I get the value considering the instrument full trading hours .
What can I do in order to get the DailyHigh for only the RTH trading hours?
if (!instrument.Dispatcher.HasShutdownStarted)
instrument.Dispatcher.InvokeAsync(() => instrument.MarketData.Update += OnMarketData);
NinjaTrader.Code.Output.Process(instrument.MarketD ata.DailyHigh.Price.ToString(),PrintTo .OutputTab1);

Comment