Difference between revisions of "Low"

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

Revision as of 12:16, 20 January 2012

Returns the low price.

Usage

Low

Example

Plot the low price of the current bar:

Plot1(Low,"Low");

Plot the low price of the previous bar:

Plot1(Low Of 1 Bar Ago,"Previous bar's low");

Plot the low price of two bars ago:

Plot1(Low[2],"Low 2 bars ago");