Comment on page
LowestLowPrice()
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().
LowestLowPrice(int BarsBack)
LowestLowPrice(int BarsBack)[int barsAgo]
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.
BarsBack Number of periods within which the low will be searched for

LowestLowPrice()
// 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 modified 1yr ago