Difference between revisions of "Symbol High"

From MultiCharts
Jump to navigation Jump to search
(Created page with "Category:Data Information/General")
 
 
Line 1: Line 1:
 +
Returns the high price of the bar
 +
 +
== Usage ==
 +
<syntaxhighlight>symbol_high</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 high price of the current bar
 +
<syntaxhighlight>Plot1(symbol_high, "High");</syntaxhighlight>
 +
 +
Plot the high price of the previous bar:
 +
<syntaxhighlight>Plot1(symbol_high of 1 Bar Ago, "Previous Bar's high");</syntaxhighlight>
 +
 +
Plot the high price of two bars ago:
 +
<syntaxhighlight>Plot1(symbol_high[2], "High 2 bars ago");</syntaxhighlight>
 +
 +
 
[[Category:Data Information/General]]
 
[[Category:Data Information/General]]

Latest revision as of 13:11, 1 March 2012

Returns the high price of the bar

Usage

symbol_high

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 high price of the current bar

Plot1(symbol_high, "High");

Plot the high price of the previous bar:

Plot1(symbol_high of 1 Bar Ago, "Previous Bar's high");

Plot the high price of two bars ago:

Plot1(symbol_high[2], "High 2 bars ago");