Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Indicatori

Fisher Transform Indicator - indicatore per MetaTrader 5

Syed Jawad Hussain Naqvi
Syed Jawad Hussain Naqvi
  • Founder & Quant Developer al  Kernelis Capital
  • Pakistan
  • 989
Quantitative Developer 🇵🇰
• MQL5 Author — algorithmic trading systems built on statistical modeling, recursive signal processing, and quantitative market analysis
• Technical skills: MQL5, Python, C++, statistical modeling, competitive programming
Visualizzazioni:
204
Valutazioni:
(1)
Pubblicato:
Freelance MQL5 Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

A complete Fisher Transform oscillator for MetaTrader 5, built from statistical first principles rather than adapted from an existing template. The indicator applies a technique originally developed in statistics by Ronald Fisher — used to reshape a bounded, non-normal set of values into one that closely approximates a normal distribution — to price data, producing turning points that are noticeably sharper and more clearly defined than those from conventional oscillators built on simple averaging.

The calculation happens in three stages. Price is first normalized into a fixed range based on its recent highs and lows, similar in spirit to a stochastic-style calculation. That normalized value is then smoothed against its own previous value and clamped just short of its theoretical boundary, since the next step involves a logarithm that approaches infinity as its input approaches that boundary. Finally, the bounded value is passed through the logarithmic Fisher Transform itself and blended recursively with the previous bar's output — which is what gives the indicator its ability to make extremes and reversals stand out sharply, rather than blending into the normal back-and-forth of price.

Internal recursive state is handled through a properly registered calculation buffer rather than a manually-managed array, which hands its sizing and bar-to-bar continuity over to the terminal automatically. The main output buffer itself doubles as its own recursive memory, since it holds a continuous value on every bar with no gaps — an efficiency that avoids storing the same information twice under different names. The indicator deliberately outputs a single, honest oscillator value with no built-in buy/sell arrows; deciding when a reading counts as a signal is left to the trader or to a companion Expert Advisor.

How to Use It:
Reading this indicator means watching two things together: the level the Fisher line reaches, and what it does after reaching that level. A reading beyond roughly ±1.5 to ±2 represents a meaningful extreme relative to the recent range — the higher the threshold, the fewer but stronger the signals. The actionable moment is not when the line first crosses that threshold; it's when the line reaches beyond it and then turns back toward zero. A value climbing steadily past +2 is still in an active move — the peak, where it stops climbing and starts descending, is what marks a potential sell opportunity. The same logic applies in reverse for a trough below the lower threshold, marking a potential buy opportunity. This two-part condition — reach an extreme, then confirm a reversal — is deliberately stricter than a simple threshold crossing, and is the same rule a companion Expert Advisor can apply programmatically.

This indicator was built and reviewed as part of the "Making Custom Indicators for Beginners" article series, where the full statistical theory, implementation walkthrough, and threshold-based usage guide are explained in detail. It is provided here as a clean, standalone Fisher Transform implementation suitable for direct use or as a reference for anyone building their own statistically-grounded oscillators in MQL5.



SuperTrend Indicator SuperTrend Indicator

A custom SuperTrend indicator built from first principles, combining an ATR-based volatility band with a ratchet mechanism to produce a clean, non-repainting trend line. Internal recursive state is managed through properly registered calculation buffers, avoiding the state-loss bugs common in manually-managed array implementations. From the article series "Making Custom Indicators for Beginners."

Wolfe Wave Dashboard Wolfe Wave Dashboard

Professional MQL5 indicator (separate window) that automatically scans multiple symbols and timeframes, detects the most recent valid Wolfe Wave patterns (bullish/bearish), displays them in an interactive dashboard, and allows one-click chart opening with full pattern drawing.

Accelerator Oscillator (AC) Accelerator Oscillator (AC)

The Acceleration/Deceleration Indicator (AC) measures acceleration and deceleration of the current driving force.

MACD Signals MACD Signals

Indicator edition for new platform.