Difference between revisions of "Open"

From MultiCharts
Jump to navigation Jump to search
m
Line 1: Line 1:
Returns a numerical value indicating the open open price.   
+
Returns a numerical value indicating the bar's open price.   
  
==== Usage ====
+
== Usage ==
 
<syntaxhighlight>Open</syntaxhighlight>
 
<syntaxhighlight>Open</syntaxhighlight>
  
==== Example ====
+
== Examples ==
 
Plot the open price of the current bar:  
 
Plot the open price of the current bar:  
  
<syntaxhighlight>Plot1(Open,"Open");</syntaxhighlight>  
+
<syntaxhighlight>Plot1(Open, "Open");</syntaxhighlight>  
  
 
Plot the open price of the previous bar:  
 
Plot the open price of the previous bar:  
Line 16: Line 16:
  
 
<syntaxhighlight>Plot1(Open[2],"Open 2 bars ago");</syntaxhighlight>  
 
<syntaxhighlight>Plot1(Open[2],"Open 2 bars ago");</syntaxhighlight>  
 
 
 
 
 
  
 
[[Category:Data Information/General]]
 
[[Category:Data Information/General]]

Revision as of 20:37, 9 February 2012

Returns a numerical value indicating the bar's open price.

Usage

Open

Examples

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