Links
Comment on page

LowestLowIndex()

Description

LowestLowIndex delivers the index of the bar with the lowest low within a predefined number of periods.
Differently to GetSerieLowestValue(), one can display this indicator within a chart.
See HighestHighPrice(), HighestHighIndex(), LowestLowPrice(), GetSerieHighestValue(), GetSerieLowestValue().

Usage

LowestLowIndex(int BarsBack)
LowestLowIndex(int BarsBack)[int barsAgo]

Return value

double
When using this method with an index (e.g. LowestLowIndex(14)[int barsAgo] ), the value of the indicator will be issued for the referenced bar.
Parameter
BarsBack Number of periods within which the highest high shall be searched for

Visualization

LowestLowIndex()

Example

// How many bars back is the lowest low of the last 14 bars located?
Print("The lowest low of the last 14 bars was " + LowestLowIndex(14)[0] + " bars ago.");