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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://indicators.agenatrader.com/standard-indicators/lowestlowindex.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
