LowestLowPrice()

Description

LowestLowPrice delivers the value of the lowest low within a predefined number of periods.

Unlike the GetSerieLowestValue(), this indicator can be viewed within the chart.

See HighestHighPrice(), HighestHighIndex(), LowestLowIndex, GetSerieHighestValue(), GetSerieLowestValue().

Usage

LowestLowPrice(int BarsBack)
LowestLowPrice(int BarsBack)[int barsAgo]

Return value

double

When using this method with an index (e.g. LowestLowPrice(14)[int barsAgo] ), the value of the indicator will be issued for the referenced bar.

Parameter

BarsBack Number of periods within which the low will be searched for

Visualization

Example

// What value did the lowest low of the last 14 periods have?
Print("The lowest low of the last 14 bars is " + LowestLowPrice(14)[0]);

Last updated