# LowestLowPrice()

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

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

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

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

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

**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.

#### Parameter <a href="#parameter_5" id="parameter_5"></a>

BarsBack Number of periods within which the low will be searched for

#### Visualization <a href="#visualization_49" id="visualization_49"></a>

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

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

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


---

# 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/lowestlowprice.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.
