High

From MultiCharts
Jump to navigation Jump to search

Returns the high price.

Usage

High

Notes

  • See Close for the closing price, Low for the low price and Open for the open price of a bar.
  • The range of returned values is limited by the MaxBarsBack setting.

Examples

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