+1 888 340 6572

Open

From MultiCharts
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Returns a numerical value indicating the bar's open price.

Usage

Open

Notes

  • See Close for the closing price, Low for the low price and High for the high price of a bar.
  • The range of returned values is limited by the MaxBarsBack setting.

Examples

Plot the open price of the current bar:

Plot1(Open, "Open");

Plot the open price of the previous bar:

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

Plot the open price of two bars ago:

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