Blog / Strategy
Strategy

Imbalance Reclaim Momentum

Disclaimer: This article is for educational and informational purposes only. It does not constitute financial or investment advice. Trading forex and CFDs carries significant risk of loss. Past performance of any strategy — including backtests — does not guarantee future results. Never trade with money you cannot afford to lose.

What Is This Strategy?

Imbalance Reclaim Momentum is an automated MetaTrader 5 strategy built around the Fair Value Gap (FVG) price pattern combined with a Relative Strength Index (RSI) momentum filter. A Fair Value Gap — sometimes called an imbalance — is a three-candle structure where price moves so quickly in one direction that it leaves an untraded "gap" between the wick of the first candle and the wick of the third. These gaps are a core concept in modern price-action and order-flow trading, and they often act as zones that price returns to before continuing its move.

Rather than chasing the initial breakout, this strategy takes a more patient, reversion-to-continuation approach. It waits for an imbalance to form on a strong displacement candle, then watches for price to pull back into the gap and confirm a reclaim before any trade is considered. The RSI — a momentum oscillator that measures the speed and strength of recent price changes on a 0-to-100 scale — is used as a final gate so that long trades are only taken when momentum is leaning bullish and short trades only when momentum is leaning bearish.

This makes Imbalance Reclaim Momentum most relevant to traders studying trend-continuation and order-flow concepts on a single timeframe. It is best viewed as a learning tool for understanding how imbalance detection, pullback confirmation, and momentum filtering can be combined into one rule set. It is suitable for intermediate learners who already understand basic candlestick structure and want to study how these ideas can be expressed in code, rather than as a hands-off solution.

How It Works

The strategy operates only on fully closed bars (it ignores the still-forming candle) and manages one armed gap at a time. Here is the logic step by step:

Every entry is therefore the result of a chain of conditions — a valid imbalance, a pullback, a confirmed reclaim, and aligned momentum — which the strategy treats as a single, well-defined signal.

Imbalance Reclaim Momentum MT5 EA
Illustrative example of the strategy’s entry and exit logic — not real trading results.

Strategy Parameters

Parameter Default Min Max Description
RsiPeriod 14 5 30 Look-back length for the RSI momentum filter. Lower values react faster; higher values smooth the reading.
AtrPeriod 14 5 40 Look-back length for the ATR used to measure displacement strength and the stop-loss buffer.
DisplacementMult 1.0 0.3 3.0 How large the middle candle's range must be relative to ATR for the gap to count as a strong displacement.
MomentumThreshold 52.0 50.0 70.0 RSI gate for entries. Longs need RSI ≥ this value; shorts need RSI ≤ (100 − this value).
StopAtrMult 0.5 0.1 3.0 ATR multiple added beyond the far edge of the gap to place the stop-loss.
RewardRiskRatio 2.0 0.5 5.0 Reward-to-risk multiple used to project the take-profit from the measured risk distance.
FvgExpiryBars 12 3 50 Maximum number of bars an armed gap stays valid before it is abandoned as stale.
Lots 0.10 0.01 1.0 Fixed trade volume in lots for each position.
Imbalance Reclaim Momentum MT5 EA — MQL5 source code

Recommended Chart Settings

Imbalance Reclaim Momentum is designed to run on a single timeframe — every calculation uses the chart's primary period, so you simply attach it to one chart and let it work from that timeframe's candles. Fair Value Gap concepts are commonly studied on intraday charts such as the M15, M30, or H1, where displacement candles and pullbacks are frequent enough to study but not as noisy as very low timeframes.

For instrument choice, liquid major forex pairs (for example EUR/USD or GBP/USD) tend to produce cleaner imbalance structures because of tighter spreads and steadier volatility. That said, the behavior of any imbalance-based approach changes meaningfully across symbols, sessions, and volatility regimes. Results will vary considerably across different market conditions, so treat the recommended settings as a starting point for study and observation rather than a fixed configuration.

How to Install on MetaTrader 5

What to Consider Before Using This EA

Every strategy has trade-offs, and understanding them is part of learning. On the strength side, the multi-step confirmation chain is the defining feature here. By requiring a strong displacement, a pullback, a confirmed reclaim, and aligned RSI momentum, the strategy is deliberately selective — it is designed to ignore many of the weak, straight-through gap fills that simpler "enter on first touch" approaches act on. The ATR-based stop and fixed reward-to-risk target also give each trade a clearly defined risk structure rather than an open-ended exit.

On the limitation side, Fair Value Gaps are a discretionary concept being expressed as fixed rules, and no fixed rule captures the idea perfectly. The patient confirmation logic that filters out false signals will also cause the strategy to miss moves that run away without offering a pullback. Because it holds only one position per symbol and works one gap at a time, it can sit idle during fast trends. In choppy, low-volatility ranges the displacement filter may rarely trigger, while in violently whipsawing conditions a reclaim can fail immediately after entry. RSI thresholds near 50 can also be sensitive, sometimes allowing entries when momentum is barely leaning one way.

In short, this approach may underperform in environments that lack clean directional displacement or that gap straight through zones without retracing. Studying when it stays out of the market is just as instructive as studying when it acts.

Risk Management Tips

Risk management is the foundation of responsible trading education, regardless of which strategy you study:

Risk Warning

Trading foreign exchange, CFDs, and other leveraged financial instruments involves substantial risk of loss and is not suitable for all investors. The strategies and tools discussed on this page are provided for educational purposes only and do not constitute financial advice, investment recommendations, or solicitation to trade. Always consult a qualified financial adviser before making trading decisions. Past backtest performance is not indicative of future results.

Downloads

← Back to Blog