+1 888 340 6572

Low: Difference between revisions

From MultiCharts
No edit summary
Line 1: Line 1:
Returns the low price.   
Returns the low price.   


==== Usage ====
== Usage ==
<syntaxhighlight>Low</syntaxhighlight>
<syntaxhighlight>Low</syntaxhighlight>


==== Example ====
== Notes ==
* See [[Close]] for the closing price, [[High]] for the high price and [[Open]] for the open price of a bar.
 
== Examples ==
Plot the low price of the current bar:  
Plot the low price of the current bar:  


<syntaxhighlight>Plot1(Low,"Low");</syntaxhighlight>  
<syntaxhighlight>Plot1(Low, "Low");</syntaxhighlight>  


Plot the low price of the previous bar:  
Plot the low price of the previous bar:  


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


Plot the low price of two bars ago:  
Plot the low price of two bars ago:  


<syntaxhighlight>Plot1(Low[2],"Low 2 bars ago");</syntaxhighlight>
<syntaxhighlight>Plot1(Low[2], "Low 2 bars ago");</syntaxhighlight>






[[Category:Data Information/General]]
[[Category:Data Information/General]]

Revision as of 11:58, 19 February 2012

Returns the low price.

Usage

Low

Notes

  • See Close for the closing price, High for the high price and Open for the open price of a bar.

Examples

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