# Stochastics RSI (StochRSI)

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

Stochastics RSI is a calculation of the stochastic based on the RSI indicator.

#### Interpretation <a href="#interpretation_54" id="interpretation_54"></a>

The indicator provides fast and precise extreme values/points in the price movements. The StochRSI can be used as a trend filter in higher timeframes as well as a tool for better entry timing.

#### Further information <a href="#further-information_42" id="further-information_42"></a>

<http://www.investopedia.com/terms/s/stochrsi.asp#axzz263tizhIG>

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

```csharp
StochRSI(int period)
StochRSI(IDataSeries inSeries, int period)
StochRSI(int period)[int barsAgo]
StochRSI(IDataSeries inSeries, int period)[int barsAgo]
```

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

**double**

When using this method with an index (e.g. **StochRSI**(14)\[**int** barsAgo] ), the value of the indicator will be issued for the referenced bar.

#### Parameters <a href="#parameters_92" id="parameters_92"></a>

inSeries Input data series for the indicator

period Number of bars included in the calculations

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

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

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

```csharp
//Output for the StochRSI
Print("The current value for the StochRSI is: " + StochRSI(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/stochastics-rsi-stochrsi.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.
