+1 888 340 6572

Close

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 the closing price.

Usage

Close

Notes

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

Examples

Plot the closing price of the current bar:

Plot1(Close, "Close");

Plot the closing price of the previous bar:

Plot1(Close Of 1 Bar Ago, "Previous bar's close");

Plot the closing price of two bars ago:

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