Difference between revisions of "Symbol Low"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Category:Data Information/General")
 
 
Line 1: Line 1:
 +
Returns the low price of the bar
 +
 +
== Usage ==
 +
<syntaxhighlight>Symbol_Low</syntaxhighlight>
 +
 +
== Note ==
 +
The range of returned values is not limited by the MaxBarsBack setting. This keyword can return the value of any bar of the data series.
 +
 +
== Example ==
 +
Plot the low price of the current bar
 +
<syntaxhighlight>Plot1(Symbol_Low, "Low");</syntaxhighlight>
 +
 +
Plot the low price of the previous bar:
 +
<syntaxhighlight>Plot1(Symbol_Low of 1 Bar Ago, "Previous Bar's low");</syntaxhighlight>
 +
 +
Plot the low price of two bars ago:
 +
<syntaxhighlight>Plot1(Symbol_Low[2], "Low 2 bars ago");</syntaxhighlight>
 +
 +
 
[[Category:Data Information/General]]
 
[[Category:Data Information/General]]

Latest revision as of 13:12, 1 March 2012

Returns the low price of the bar

Usage

Symbol_Low

Note

The range of returned values is not limited by the MaxBarsBack setting. This keyword can return the value of any bar of the data series.

Example

Plot the low price of the current bar

Plot1(Symbol_Low, "Low");

Plot the low price of the previous bar:

Plot1(Symbol_Low of 1 Bar Ago, "Previous Bar's low");

Plot the low price of two bars ago:

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