Current Day OHL
Description
The current day (session) open, high and low values.
Only use this indicator on intraday series.
Syntax
CurrentDayOHL()
CurrentDayOHL(ISeries\<double\> input)
Returns current session open value
CurrentDayOHL().CurrentOpen[int barsAgo]
CurrentDayOHL(ISeries\<double\> input).CurrentOpen[int barsAgo]
Returns current session high value
CurrentDayOHL().CurrentHigh[int barsAgo]
CurrentDayOHL(ISeries\<double\> input).CurrentHigh[int barsAgo]
Returns current session low value
CurrentDayOHL().CurrentLow[int barsAgo]
CurrentDayOHL(ISeries\<double\> input).CurrentLow[int barsAgo]
Return Value
double; Accessing this method via an index value [int barsAgo] returns the indicator value of the referenced bar.
Parameters
- input
- Indicator source data (Series<T>)
Examples
Source Code
You can view this indicator method source code by selecting the menu New > NinjaScript Editor > Indicators within the NinjaTrader Control Center window.

