×

Sign up and get MultiCharts free

Use its powerful simulation mode with data included out of the box. Just fill out the form and start honing your trading skills with a few clicks.

Symbol Low - MultiCharts
Open main menu

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