Difference between revisions of "High"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Returns the high price. ==== Usage ==== High ==== Example ==== Plot the high price of the current bar: <syntaxhighlight>Plot1(High,"High");</syntaxhighlight> Plo...")
 
Line 2: Line 2:
  
 
==== Usage ====
 
==== Usage ====
[[High]]  
+
 
+
[[high|High]]
 +
 
 
==== Example ====
 
==== Example ====
 
Plot the high price of the current bar:  
 
Plot the high price of the current bar:  

Revision as of 17:43, 19 January 2012

Returns the high price.

Usage

High

Example

Plot the high price of the current bar:

Plot1(High,"High");

Plot the high price of the previous bar:

Plot1(High Of 1 Bar Ago,"Previous bar's high");

Plot the high price of two bars ago:

Plot1(High[2],"High 2 Bars ago");