High

From MultiCharts
Revision as of 13:56, 18 January 2012 by 194.84.116.138 (talk) (Created page with "Returns the high price. ==== Usage ==== High ==== Example ==== Plot the high price of the current bar: <syntaxhighlight>Plot1(High,"High");</syntaxhighlight> Plo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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