Fisher Transform

Fisher Transform

Description

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 system using the Fisher Transform can be found here: https://www.prorealtime.com/de/pdf/probacktest.pdf

Parameters

inSeries Input data series for the indicator

period Number of bars included in the calculations

Return value

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

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

Visualization

Example

//Output values for the Fisher Transform
Print("The current value for the Fisher Transform is: " + FisherTransform(10)[0]);

Last updated