# Range Indicator (RIND)

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

Jack Weinberg created the Range Indicator (RIND), which was first published in 1954. The RIND compares the intraday span (range) between the high and low to the span (range) between the current closing price and the closing price from the day before.

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

When the span between the current close and the previous days close is bigger than the intraday span between high and low, the indicator will display a high value. This signals a potential trend change...

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

<http://www.fmlabs.com/reference/default.htm?url=RangeIndicator.htm>

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

```csharp
RIND(int periodQ, int smooth)
RIND(IDataSeries inSeries, int periodQ, int smooth)
RIND(int periodQ, int smooth)[int barsAgo]
RIND(IDataSeries inSeries, int periodQ, int smooth)[int barsAgo]
```

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

**double**

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

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

inSeries Input data series for the indicator

periodQ Number of bars used for the short-term stochastic

smooth Number of bars used for smoothing the indicator (using an EMA)

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

![Range Indicator (RIND)](https://agenatrader.github.io/AgenaIndicator-documentation/media/Rind.jpg)

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

```csharp
//Output
Print("The current value for the PFE is: " + RIND(3, 10)[0]);
```
