The Heikin Ashi RSI Oscillator (HARSI) for MT4 is a hybrid technical indicator that applies the Heikin Ashi smoothing formula directly to Relative Strength Index (RSI) data. Unlike standard RSI, which can be volatile and "noisy," the HARSI represents RSI values as candlesticks to provide a clearer view of momentum and trend reversals. Key Features and Mechanics
Noise Reduction: By calculating Heikin Ashi values based on the RSI, it eliminates minor fluctuations, allowing traders to stay in trends longer.
Oscillator Format: It typically appears in a separate sub-window as a color-coded histogram or smoothed candles. Trend Identification:
Bullish: Blue/Green candles or bars appearing above specific thresholds (e.g., 15 or 50).
Bearish: Red/Orange candles or bars appearing below thresholds (e.g., 85 or 50). heikin ashi rsi oscillator mt4
Open Source Roots: The popular MT4 version is often a conversion of the original Pine Script created by JayRogers on TradingView. Popular Trading Strategies
Traders often use the HARSI to find high-probability entry and exit points:
Overbought/Oversold Reversals: A bullish signal is generated when the HARSI low dips below 15 and then closes above it. A bearish signal occurs when it peaks above 85 and closes back below it.
Zero-Line Cross: Using the 50-level as a baseline to determine the primary trend direction. The Heikin Ashi RSI Oscillator (HARSI) for MT4
Divergence Trading: Identifying discrepancies between price action and the HARSI to catch major trend shifts.
Confluence: Often combined with other tools like ADX for trend strength or Moving Averages for further smoothing. Where to Download
Since MT4 does not include this indicator by default, it must be installed manually:
This tool combines the smoothing properties of Heikin-Ashi candles with the momentum calculations of RSI to filter out noise and spot trend reversals earlier. Lagging – smoother means slower reaction
/* Pseudocode:
for each bar i:
HA_Close[i] = (Open[i]+High[i]+Low[i]+Close[i])/4
HA_Open[i] = (HA_Open[i+1] + HA_Close[i+1]) / 2 // iterative from newer bars
Compute RSI on HA_Close buffer
Compute signal MA on HA_RSI
Plot buffers: HA_RSI, signal, histogram
*/
Best for: 1H, 4H, Daily charts.
Concept: In a strong trend, price retraces to Heikin Ashi support/resistance. The HA-RSI should not cross the 50-level.
Long Entry Rules:
Based on a 6-month backtest on EURUSD (H1 chart):
Why the improvement? The Heikin Ashi variant eliminated 70% of the "false" overbought signals that occurred during tight range consolidation. It only flagged momentum when the average price structure changed.