All Strategies
Mean ReversionXAGUSD

Bollinger Band Reversion for XAGUSD (Silver)

Buy lower band, exit upper band — volatility-adaptive mean reversion.

Indicators

Bollinger Bands (20, 2σ)

Recommended Timeframes

15m, 1h, 4h

Symbol Volatility

very-high

Trading Sessions

London, New York (24/5)

Why Bollinger Band Reversion Works on XAGUSD

Bollinger Bands plot two standard deviations around a 20-period SMA. Price reaching the lower band signals a statistical extreme — about 2.5% probability assuming normality. The strategy fades these extremes. Works on range-bound symbols; layer in a "no entry if bands are widening" rule to skip breakout regimes.

Silver (XAGUSD) is more volatile than gold with sharper retracements. Mean-reversion and breakout strategies tend to outperform trend-following on lower timeframes.

Commodities like gold and silver have well-defined fundamental drivers — central bank policy, real yields, USD strength. Combined with the technical setup below, this gives the strategy two independent edges.

Best For

  • • Mean-reverting forex
  • • Quiet sessions

Avoid In

  • • Trending crypto
  • • News spikes

Pine Script Source

Copy this into PineForge — backtest on XAGUSD or any supported symbol, then deploy as a live bot.

bollinger-bands.pinePine Script v5
//@version=5
strategy("Bollinger Band Reversion", overlay=true)

length = input.int(20, "BB Length")
mult = input.float(2.0, "BB Multiplier")

basis = ta.sma(close, length)
dev = ta.stdev(close, length) * mult
upper = basis + dev
lower = basis - dev

if close < lower
    strategy.entry("Long", strategy.long)

if close > upper
    strategy.close("Long")

Backtest Bollinger Band Reversion on XAGUSD in 30 seconds

Sign up for PineForge, paste this Pine Script, and run a 1-year backtest on real XAGUSD data — no credit card required.

Related Strategies

We use cookies for analytics and ads measurement. See our privacy policy.