Symbol Open

From MultiCharts
Jump to navigation Jump to search

Returns a numerical value indicating the open price of the bar.

Usage

symbol_open

Note

The range of returned values is not limited by the MaxBarsBack setting. This keyword can return the value of any bar of the data series.

Example

Plot the open price of the current bar:

Plot1(symbol_open, "Open");

Plot the open price of the previous bar:

Plot1(symbol_open Of 1 Bar Ago, "Previous bar's open");

Plot the open price of two bars ago:

Plot1(symbol_open[2], "Open 2 bars ago");