# Waddah Attar Explosion

A Volatility concept (Regime & compression) in the LuxAlgo Library, with 1 indicator implementation.

## What is the Waddah Attar Explosion?

The Waddah Attar Explosion is a momentum-versus-volatility gate that emerged from the forex trading community, named after its creator, Waddah Attar. It plots a 'trend power' histogram, the bar-to-bar change in a [MACD](https://www.luxalgo.com/library/concept/macd/) line scaled by a sensitivity multiplier (150 is a common default), against an 'explosion line' equal to the width between the upper and lower [Bollinger Bands](https://www.luxalgo.com/library/concept/bollinger-bands/). Green histogram bars mark upward pressure, red bars downward. Most versions add a dead zone, a minimum threshold (fixed in some builds, [ATR](https://www.luxalgo.com/library/concept/atr/)-derived in others) beneath which readings are treated as noise.

The logic: a move worth trading should show momentum expanding faster than the recent volatility envelope. A histogram bar rising above the explosion line (and clearing the dead zone) says directional energy exceeds ambient churn; a histogram below the line says conditions are compressed or trendless. It is a go/no-go filter with a directional color, not an entry, stop, or target system.

The tool spread from the MetaTrader ecosystem into every charting platform through independent ports, and the ports genuinely differ: shayankm's V2 and traderharikrishna's Bollinger-MACD V3 on TradingView make different choices about the dead zone, and loxx's variety-MA build lets the underlying averages be swapped entirely. The moving parts are few, one momentum engine, one volatility envelope, one noise floor, but each port tunes them differently, so two charts labeled WAE can disagree on the same bar. Anyone backtesting or comparing signals needs to verify which formula their version actually runs.

Its character follows from the construction. The histogram is a first difference of a smoothed line, so it is jumpy by nature and reacts hard to single large bars, which is why the dead zone exists at all; the [BandWidth](https://www.luxalgo.com/library/concept/bandwidth/)-style explosion line rises after volatility has already expanded, so the gate opens a little late by design. The multiplier is cosmetic scaling, not information. None of this breaks the tool, but it explains the failure modes: news spikes that flash momentum for a bar or two, and slow grinding trends whose momentum never clears an envelope inflated by an earlier shock.

## How to identify Waddah Attar Explosion signals on charts

The indicator plots a colored histogram, the explosion line, and usually a dead-zone line in a subpanel. The tradeable state is a specific stacking of the three.

1. Verify the version first: check which MACD lengths, band settings, multiplier, and dead-zone rule your port uses, since builds differ enough to change signals on the same chart.
2. Look for the go state: a histogram bar that stands above both the explosion line and the dead zone, with color giving the direction of the pressure.
3. Treat everything below the dead zone as no-trade noise, whatever the color; small histogram flickers there are the churn the threshold exists to hide.
4. Watch the transition, not just the level: a histogram erupting through a flat or falling explosion line marks the release from compression, the same turn squeeze tools like the [TTM Squeeze](https://www.luxalgo.com/library/concept/ttm-squeeze/) are built to catch.
5. Read exhaustion from the stack collapsing: the histogram dropping back below the explosion line while the envelope keeps widening says the move's energy is fading relative to its own volatility.

## How traders use it

- As an entry gate for trend systems: breakout or pullback signals are taken only while the histogram exceeds both the explosion line and the dead zone, and skipped when momentum cannot clear the envelope.
- As a direction filter: green bars permit longs and red bars permit shorts, with histogram height read as the force behind the move rather than as a price objective.
- As a compression-release timer: a histogram erupting through a flat explosion line marks the turn from contraction to expansion, pairing naturally with squeeze-style setups.
- As the release leg of a squeeze stack: [Bollinger squeeze](https://www.luxalgo.com/library/concept/bollinger-squeeze/) or TTM-style compression flags the coiled state, and the WAE go condition supplies the direction and the permission when the coil lets go.
- As a stand-down and exit aid: when the histogram falls back under the explosion line or the dead zone mid-trade, momentum no longer exceeds ambient churn, an honest cue to tighten stops or stop adding rather than a reversal signal.

## Waddah Attar Explosion vs other volatility gates

- **TTM Squeeze** (https://www.luxalgo.com/library/concept/ttm-squeeze/): The squeeze flags a state: bands inside channels, compression building. WAE gates each bar: is momentum bigger than the envelope right now. The squeeze is earlier and directionless until release; WAE is directional but only speaks once the move is already pushing.
- **BandWidth** (https://www.luxalgo.com/library/concept/bandwidth/): BandWidth is the raw width of the Bollinger envelope, a pure volatility series with no direction. WAE uses that same width as a hurdle and asks whether directional momentum clears it, adding a sign and a threshold to what BandWidth only measures.
- **Range Expansion/contraction** (https://www.luxalgo.com/library/concept/range-expansion-contraction/): The expansion/contraction cycle is the market behavior itself, however measured. WAE is one specific meter for the expansion side, tuned to fire when momentum outruns the recent envelope; it says nothing during contraction except stay out.

## FAQ

### What are the default settings for the Waddah Attar Explosion?

Common builds use a MACD of 20- and 40-period EMAs, Bollinger Bands at 20 periods with 2 standard deviations, and a sensitivity multiplier near 150 for the histogram, plus an ATR-based or fixed dead zone. Defaults vary across platforms and ports, so verify the formula in the version you run rather than assuming one canon.

### Is the Waddah Attar Explosion a buy and sell signal by itself?

No. It answers one question: is directional momentum strong enough, relative to recent volatility, to be worth trading at all. Color gives a lean, but there is no entry price, stop, or target logic in the tool. Most traders pair it with a structure or trend framework and treat the explosion condition as a filter, not a trigger.

### What does the dead zone in the Waddah Attar Explosion do?

It is a noise floor: histogram readings below it are ignored regardless of color. Fixed dead zones are simple but go stale when volatility shifts; ATR-derived versions adapt to the instrument. Set too low, the gate passes churn; set too high, it opens only after the move is mature. It is the setting most worth tuning to the market you trade.

### Does the Waddah Attar Explosion work outside forex?

The construction is market-agnostic, and ports are used on indices, crypto, and equities. What changes is calibration: gap-prone equities feed the MACD differently than continuous forex sessions, thin crypto pairs produce spikier histograms, and the dead zone that suits one market passes noise on another. Revalidate the settings per market rather than porting them.

### Why do different versions of the indicator disagree?

Because WAE is a recipe rather than a single canonical formula. Ports differ in MACD lengths, the multiplier, whether the dead zone is fixed or ATR-based, and even which average feeds the momentum engine. On the same bar one build can read go while another reads noise. Comparing or backtesting across versions without checking the code produces conclusions about the ports, not the method.

### How is the Waddah Attar Explosion different from a squeeze indicator?

A squeeze tool detects compression, the state before the move, and fires on release without inherent direction. WAE measures the move itself, demanding momentum exceed the volatility envelope bar by bar, with color supplying direction. They are complementary: the squeeze says a release is coming, WAE says the release is real and which way it points.

## Implementations in the Library

- Waddah Attar Explosion (LuxAlgo): https://www.luxalgo.com/library/indicator/waddah-attar-explosion/

## Related concepts

- Range Expansion/contraction: https://www.luxalgo.com/library/concept/range-expansion-contraction/
- Choppiness Index: https://www.luxalgo.com/library/concept/choppiness-index/
- NR4/NR7 Narrow-range Bars: https://www.luxalgo.com/library/concept/nr4-nr7-narrow-range-bars/
- Volatility Contraction Pattern: https://www.luxalgo.com/library/concept/volatility-contraction-pattern/
- Gap-volatility Relation: https://www.luxalgo.com/library/concept/gap-volatility-relation/
- Damiani Volatmeter: https://www.luxalgo.com/library/concept/damiani-volatmeter/
- Volatility Switch: https://www.luxalgo.com/library/concept/volatility-switch/
- Volatility Regime Classification: https://www.luxalgo.com/library/concept/volatility-regime-classification/
- Weekend/overnight Volatility Profile: https://www.luxalgo.com/library/concept/weekend-overnight-volatility-profile/
- Event-driven Volatility: https://www.luxalgo.com/library/concept/event-driven-volatility/

---

Source: https://www.luxalgo.com/library/concept/waddah-attar-explosion/ (LuxAlgo Library, the encyclopedia of trading & technical analysis). Free to use with attribution: https://www.luxalgo.com/library/license/