# Fisher Transform

### Fisher Transform <a href="#fisher-transform" id="fisher-transform"></a>

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

The physicist John Ehlers created the Fisher Transform in 2002. The intention of the indicator is to show where there are turning points, which can be achieved with the help of the Inverse Fisher Transform. This changes indicators in such a way that the movements are less random, and the signal quality is clearer. The Fisher Transform either stretches or compresses the input values of the function so that the output is very likely to be between -1 and 1. This gives us a clearly identifiable pattern where even indicators such as the RSI become better defined and more precise.

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

A system using the Fisher Transform can be found here: <https://www.prorealtime.com/de/pdf/probacktest.pdf>

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

inSeries Input data series for the indicator

period Number of bars included in the calculations

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

**double**

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

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

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

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

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

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

```csharp
//Output values for the Fisher Transform
Print("The current value for the Fisher Transform is: " + FisherTransform(10)[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/fisher-transform.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.
