거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Institutional Ehlers Fisher Transform (PDF Normalizer) - MetaTrader 4용 지표

Amanda V | KayruYuta
게시자:
Amanda Vitoria De Paula Pereira
Amanda Vitoria De Paula Pereira
4.6 (12)
I am a Software Engineer focused on quantitative architecture and high-frequency trade execution, I do not build generic retail scripts, I write clean code designed to survive live broker environments, toxic order flow, and server latency, my infrastructure handles complex math without freezing the
조회수:
325
평가:
(1)
게시됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Why I Built This DSP Engine

Standard oscillators like RSI, Stochastic, or CCI always bothered me during strong trend expansions. When institutional volume enters the market, these indicators get pinned at their extreme boundaries (sitting at 90 or 10 for hours). They lose all dynamic sensitivity, triggering premature reversal signals that trap retail traders against powerful order flow.

The core issue is statistical: standard technical indicators assume market prices naturally follow a normal bell curve. They don't. Price action is non-linear and chaotic.

To fix this boundary-flattening problem, I implemented Digital Signal Processing (DSP) mathematics—specifically John F. Ehlers' Fisher Transform—to normalize price data directly inside MetaTrader 4.

Print


The Mathematics: PDF Normalization

The Institutional Ehlers Fisher Transform alters the Probability Density Function (PDF) of price action. By converting raw price variations into a Gaussian Normal Distribution, the engine cleans up routine market noise around the zero baseline while expanding true statistical outliers into sharp, unmistakable vertical peaks.

  • No Bounded Limits: Unlike RSI, the Fisher Transform is unbounded. Extreme moves don't get squished at an arbitrary "100" ceiling; they stretch proportional to actual momentum.

  • Zero-Lag Sensitivity: Because the transform reshapes price geometry directly rather than averaging historical candles, turning points appear instantly without moving average phase-lag.


Core Architecture & Inputs

  • InpPeriod (Default = 10): The rolling DSP calculation window. A value of 10 balances fast execution speed with reliable signal noise filtration.

  • Gaussian Normalization Engine: Normalizes median price into a $[-1, 1]$ vector before feeding it into the continuous logarithmic transform function $y = 0.5 \cdot \ln\left(\frac{1+x}{1-x}\right)$.

  • Strict MT4 Code Standard: Built with #property strict memory management and reverse-indexing loops to ensure near-zero CPU usage during high-volatility news spikes.


Practical Execution Protocol

  1. Attach to Chart: Works exceptionally well on M15, H1, and H4 timeframes across major pairs and metals.

  2. Filter the Baseline: Ignore minor oscillations near the zero level.

  3. Wait for Extreme Spikes: Watch for the main Fisher line (Blue) to stretch far above or below the baseline into a sharp peak.

  4. Take the Entry: Execute your mean-reversion trade on the exact bar where the Blue line crosses back over the Red dotted trigger line.

External Range Liquidity ERL Market Structure External Range Liquidity ERL Market Structure

External Range Liquidity ERL is a custom indicator for MetaTrader 4 designed specifically for traders utilizing Price Action and Smart Money Concepts. This indicator automatically maps the Market Structure and identifies areas where liquidity has been taken, known as a Liquidity Sweep.

BBandsPsar BBandsPsar

BBandsPsar is a custom hybrid indicator that fuses Bollinger Bands’ volatility framework with the Parabolic SAR’s trend-following logic. By integrating these two methodologies, it effectively reconciles market volatility with emerging trend dynamics within a single, cohesive tool.

Three Colors Three Colors

Example: Moving Average indicator filling by different colors

MACD Sample MACD Sample

Classical MACD Sample.