×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

Symbol Close - MultiCharts
Open main menu

Symbol Close

Revision as of 13:06, 1 March 2012 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Returns the closing price of the bar

Usage

symbol_close

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 closing price of the current bar

Plot1(symbol_close, "Close");

Plot the closing price of the previous bar:

Plot1(symbol_close of 1 Bar Ago, "Previous Bar's Close");

Plot the closing price of two bars ago:

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