Difference between revisions of "Open"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns a numerical value indicating the open open price. ==== Usage ==== Open ==== Example ==== Plot the open price of the current bar: <syntaxhighlight>Plot1(Ope...")
 
Line 2: Line 2:
  
 
==== Usage ====
 
==== Usage ====
[[Open]]
+
<syntaxhighlight>Open</syntaxhighlight>
+
 
 
==== Example ====
 
==== Example ====
 
Plot the open price of the current bar:  
 
Plot the open price of the current bar:  

Revision as of 12:18, 20 January 2012

Returns a numerical value indicating the open open price.

Usage

Open

Example

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