> For the complete documentation index, see [llms.txt](https://indicators.agenatrader.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://indicators.agenatrader.com/standard-indicators/lowestlowprice.md).

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