This may be a silly question.
Suppose I want to run my strategy on 1-hour bars on ETH (extended session), but I also want to add another data series that runs on daily bars but on RTH (regular session).
I noticed that I can do this by providing the tradingHoursName by using this specification (described here: https://ninjatrader.com/support/helpGuides/nt8/en-us/)
---
AddDataSeries(string instrumentName, BarsPeriod barsPeriod, int barsToLoad, string tradingHoursName, bool? isResetOnNewTradingDay)
| tradingHoursName | A string determining the trading hours template for the instrument |
But I couldn't find any additional info on the tradingHoursNames. Is the tradingHoursName the same as the name of Templates in the Trading Hours options (e.g. "CME Global Index Futures RTH" etc.)?

Comment