Low

Description

Low is a DataSeries of the type DataSeries, in which the historically low prices are saved.

Parameter

barsAgo IndexValue (see Bars)

Usage

Low
Low[int barsAgo]

More Information

The returned value is dependent upon the property of CalculateOnClosedBar.

Example

// Lowest value of the current period
Print(Time[0] + " " + Low[0]);
// Lowest value of the bar from 5 periods ago
Print(Time[5] + " " + Low[5]);
// The current value for the SMA 14 calculated on the basis of the low prices (smoothed)
Print("SMA(14) calculated using the high prices: " + Instrument.Round2TickSize(SMA(Low, 14)[0]));

Last updated