Difference between revisions of "Close"

From MultiCharts
Jump to navigation Jump to search
m
Line 3: Line 3:
 
== Usage ==
 
== Usage ==
 
<syntaxhighlight>Close</syntaxhighlight>
 
<syntaxhighlight>Close</syntaxhighlight>
 +
 +
== Notes ==
 +
* See [[High]] for the high price, [[Low]] for the low price and [[Open]] for the open price of a bar.
  
 
== Examples ==
 
== Examples ==

Revision as of 11:59, 19 February 2012

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.

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");