Low

From MultiCharts
Jump to navigation Jump to search

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.
  • The range of returned values is limited by the MaxBarsBack setting.

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