LowestLowIndex()
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.
LowestLowIndex(int BarsBack)
LowestLowIndex(int BarsBack)[int barsAgo]
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

LowestLowIndex()
// 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.");