# LowestLowIndex()

#### Description <a href="#description_52" id="description_52"></a>

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()*](https://agenatrader.github.io/AgenaIndicator-documentation/indicators_oscillators/#highesthighprice), [*HighestHighIndex()*](https://agenatrader.github.io/AgenaIndicator-documentation/indicators_oscillators/#highesthighindex), [*LowestLowPrice()*](https://agenatrader.github.io/AgenaIndicator-documentation/indicators_oscillators/#lowestlowprice), *GetSerieHighestValue()*, *GetSerieLowestValue()*.

#### Usage <a href="#usage_53" id="usage_53"></a>

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

#### Return value <a href="#return-value_52" id="return-value_52"></a>

**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 <a href="#visualization_48" id="visualization_48"></a>

![LowestLowIndex()](https://agenatrader.github.io/AgenaIndicator-documentation/media/LowestLowIndex.jpg)

#### Example <a href="#example_51" id="example_51"></a>

```csharp
// 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.");
```
