Command Palette

Search for a command to run...

Overview

Technical analysis answers two fundamentally different questions. Trend indicators are the compass — smoothing price to answer “which way is the market going?” — while momentum indicators are the speedometer, answering “how strong and fast is the current move?” Trend tools are lagging (they confirm a move after it starts); momentum tools are leading (they often warn of a slowdown before price reverses). Robust systems combine both rather than relying on either alone.

Key Concepts

  • Lagging vs. leading — trend indicators filter market “noise” and confirm direction after the fact; momentum indicators anticipate reversals because velocity/acceleration often slows before price itself turns.
  • Chart placement as a tell — trend indicators are typically overlaid directly on the price chart (moving averages, Parabolic SAR); momentum indicators are usually plotted in a separate pane below (RSI, Stochastic, ROC).
  • Primary weaknesses are complementary — trend indicators whipsaw in sideways markets; momentum indicators fire prematurely in strongly trending markets. This complementarity is exactly why combining them works.

Trend Indicators

IndicatorWhat It DoesFormula
Moving Averages (SMA/EMA)Rising MA = uptrend, falling MA = downtrend; EMA weights recent prices more heavilyEMA = (Close − EMA_prev) × (2/(N+1)) + EMA_prev
Parabolic SARDynamic trailing stop; dots below price = bullish, above = bearish; a flip signals reversalSAR_new = SAR_old + AF × (EP − SAR_old)
ADXMeasures trend strength, not direction; >25 = strong trend, <20 = weak/non-trendingSmoothed average of the absolute DI difference

Momentum Indicators

IndicatorWhat It DoesFormula
RSI0–100 scale; >70 overbought, <30 oversold; divergence from price is a powerful reversal signalRSI = 100 − [100/(1 + Avg Gain/Avg Loss)]
Stochastic OscillatorCompares close to its range over a period; in uptrends closes cluster near highs%K = 100 × [(C − L14)/(H14 − L14)]
Rate of Change (ROC)Pure percentage price change; zero-line cross is bullish/bearishROC = [(Close − Close_n)/Close_n] × 100

The Hybrid: MACD

MACD (EMA(12) − EMA(26)) is both trend and momentum: the MACD line itself is built from two moving averages (trend component), while the histogram — the difference between the MACD line and its 9-period EMA “signal line” — visualizes the acceleration of momentum.

Strategy Blueprints

  1. MA + RSI for pullback entries — use a long-term MA (e.g., 200-day EMA) as a trend filter (only take buy signals above it), then wait for RSI to dip into a pullback zone (e.g., below 40) and turn back up as the entry trigger.
  2. ADX + MACD to avoid whipsaws — MACD crossovers give many false signals in sideways markets; use ADX as a strength filter, only acting on MACD signals when ADX is above ~25, and ignoring them entirely when ADX is below ~20.

Key Takeaways

  • The lagging/leading distinction isn't a flaw to fix — it's the reason to pair the two indicator families: trend indicators provide reliable confirmation while momentum indicators provide earlier (but noisier) warning, and combining them plays each strength against the other's weakness.
  • Both example strategies use the exact same architecture: one indicator sets a directional/strength filter, and a second indicator times the entry within that filter — a reusable pattern for combining any trend tool with any momentum tool.
  • ADX's uniqueness (measuring strength, not direction) makes it a natural gatekeeper for momentum signals like MACD, since it directly targets momentum's core weakness — false signals in low-strength, sideways conditions.

Related Reading

Back to article