Discussing the article: "From Novice to Expert: Candlestick Momentum Confirmation for Classic Crossover Strategies"

 

Check out the new article: From Novice to Expert: Candlestick Momentum Confirmation for Classic Crossover Strategies.

In this article, we refine a moving average crossover strategy with a momentum candle filter and an immediate retracement bar confirmation. When both conditions are met, a pending stop order is placed using a pivot-based stop loss and a 2R take profit. The complete MQL5 Expert Advisor code, finite-state-machine logic, and chart annotations are detailed.

The solution separates signal discovery from trade execution. Instead of treating a moving-average crossover as permission to enter, the EA records a candidate direction and advances only when the subsequent behavior of the price supports it. This staged design reduces impulsive entries and gives each rejected setup a clear reset point.

  1. Crossover establishes direction – the relationship between the fast and slow averages identifies a bullish or bearish candidate. No order is submitted at this stage.
  2. Momentum confirms participation – a sufficiently large candle must close in the crossover direction. The crossover candle may qualify, or momentum may appear within the short confirmation window.
  3. Retracement controls timing – the next completed bar must show the selected pullback structure. An invalid immediate retracement cancels the setup rather than extending it indefinitely.
  4. Conditional execution manages commitment – a pending stop order is prepared at the retracement breakout. The stop loss is anchored beyond the momentum extreme, while take profit is derived from the final broker-valid entry and stop distance.

Crossover + Momentum Confirmation

Author: Clemence Benjamin