+1 888 340 6572

Close: Difference between revisions

From MultiCharts
(Created page with "Returns the closing price. ==== Usage ==== Close ==== Example ==== Plot the closing price of the current bar: <syntaxhighlight>Plot1(Close,"Close");</syntaxhighlig...")
 
Line 2: Line 2:


==== Usage ====
==== Usage ====
[[Close]]
<syntaxhighlight>Close</syntaxhighlight>
 
==== Example ====
==== Example ====
Plot the closing price of the current bar:  
Plot the closing price of the current bar:  

Revision as of 12:11, 20 January 2012

Returns the closing price.

Usage

Close

Example

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