Open (Reserved Word)
Reserved word used to return the first price of the specified time increment or group of ticks.
Open
Remarks
Anytime the Open of a bar is needed, the letter O can be used in an equivalent fashion.
Examples
Open of 1 bar ago
returns the Open price of the previous bar.
Average(Open, 10)
returns the Average of the last 10 Open prices.
Additional Example
To check that the last two bars have Open prices higher than the previous bar, the following language can be used in a ShowMe study:
If Open > Open[1] and Open[1] > Open[2] then
Plot1(High, "Rising");