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