Current Day OHL

<< Click to Display Table of Contents >>

Navigation:  NinjaScript > Language Reference > Common > System Indicator Methods >

Current Day OHL

Previous page Return to chapter overview Next page

Description

The current day (session) open, high and low values.

 

Note: 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 (?)

 

 

Example

ns

// Prints the current value of the session low
double value = CurrentDayOHL().CurrentLow[0];
Print("The current session low value is " + value.ToString());

 

 

Source Code

You can view this indicator method source code by selecting the menu New > NinjaScript Editor > Indicators within the NinjaTrader Control Center window.