# Potential Reversal Zone

Also known as: ratio tolerance systems, harmonic confluence scoring.
A Elliott & Harmonics concept (Harmonic patterns) in the LuxAlgo Library, with 1 indicator implementation.

## What is a Potential Reversal Zone?

A Potential Reversal Zone (PRZ) is the completion window of a harmonic pattern: the price span where several separate Fibonacci measurements converge on the pattern's D point. The term comes from Scott Carney's harmonic trading work. For a [Gartley](https://www.luxalgo.com/library/concept/gartley/) or Bat, the zone is typically built from three numbers: the pattern's defining retracement or extension of the XA leg, the projection of the BC leg, and the completion of the embedded [ABCD](https://www.luxalgo.com/library/concept/abcd/), all drawn from the [harmonic and fib ratio set](https://www.luxalgo.com/library/concept/harmonic-and-fib-ratio-set/). The PRZ spans the band where those measurements overlap.

The word potential is load-bearing. A PRZ is where a [reversal](https://www.luxalgo.com/library/concept/reversal/) is plausible if the pattern is valid, not where one is promised: zones get run through regularly, and a decisive close beyond the zone's far edge (or beyond the X point) is the standard invalidation. Practice therefore treats the PRZ as a place to hunt for reversal evidence, such as rejection candles or momentum divergence, and as a way to define risk, because the zone's far boundary locates the stop and the pattern's interior supplies the first targets.

## How to construct a Potential Reversal Zone

The zone is the overlap of the pattern's required measurements, all projected from the same pivots.

1. Confirm the pattern's pivots X, A, B, and C, checking that the B point ratio fits a named pattern (near 0.618 of XA for a Gartley, 0.382 to 0.50 for a Bat).
2. Plot the pattern's defining D-point measurement from the XA leg: a retracement (0.786 Gartley, 0.886 Bat) or an extension (1.272 Butterfly, 1.618 Crab).
3. Add the allowed BC projection range and the completion price of the embedded ABCD from the same pivots.
4. Mark the band where the measurements overlap: that is the PRZ. Note its far edge (or the X point) as invalidation before looking for confirmation inside it.

## How it's calculated

The price band where the Fibonacci measurements of a harmonic XABCD pattern project the completion point D at nearly the same level.

```
D_XA = A - r_XA × abs(A - X)
D_BC = C - r_BC × abs(C - B)
D_ABCD = C - r_CD × abs(B - A)
PRZ_high = max(D_XA, D_BC, D_ABCD)
PRZ_low = min(D_XA, D_BC, D_ABCD)
Width = PRZ_high - PRZ_low

  X: first pivot price of the pattern
  A: second pivot price
  B: third pivot price
  C: fourth pivot price
  D: pattern completion point that the zone brackets
  D_XA: completion level for point D implied by the XA retracement or extension, measured from A
  D_BC: completion level implied by the BC projection, measured from C
  D_ABCD: completion level implied by the AB=CD relationship
  r_XA: the pattern's ideal XA ratio (0.786 Gartley, 0.886 Bat, 1.272 Butterfly, 1.618 Crab)
  r_BC: BC projection ratio (commonly 1.13 to 3.618, set by the pattern)
  r_CD: CD to AB length ratio (1.0 for pure AB=CD; 1.272 or 1.618 for alternates)
  PRZ_high: upper bound of the potential reversal zone
  PRZ_low: lower bound of the potential reversal zone
  Width: spread of the zone; tighter means stronger confluence
```

Written for a bullish pattern completing below C; for the bearish mirror the minus signs become plus.

Ratio tolerance systems accept a measured leg ratio only when it sits within a fixed margin of the ideal, commonly 0.03 to 0.05 ratio units or a small percentage.

Confluence scoring counts how many qualifying levels land inside the zone, sometimes weighting the pattern-defining ratios more heavily.

## How traders use it

- As trade location: price entering the PRZ puts the pattern on watch; most harmonic playbooks then require confirmation inside the zone, a rejection bar or a momentum shift, before positioning against the CD leg.
- For risk definition: stops go beyond the zone's far ratio or the X point, and initial targets are commonly the 0.382 and 0.618 retracements of the AD swing, so the zone itself fixes the trade's geometry.
- For quality grading: the tighter the cluster of measurements, the more precise the zone. Patterns whose XA, BC, and ABCD numbers disagree widely produce sloppy zones that many traders simply skip.
- As a failure tell: a strong, full-bodied close through the entire zone converts the pattern into continuation evidence, and some traders trade that failure in the direction of the break.

## Potential Reversal Zone vs related concepts

- **Fib Clusters** (https://www.luxalgo.com/library/concept/fib-clusters/): A fib cluster is any confluence of Fibonacci levels drawn from arbitrary swings. A PRZ is a special case: the cluster is dictated by a named pattern's legs and ratios, and it comes with pattern-specific invalidation and targets.
- **S/R Zone** (https://www.luxalgo.com/library/concept/s-r-zone/): Support and resistance zones are drawn from where price actually reacted before. A PRZ is projected from ratio math and may sit at prices with no prior history; the two carry different evidence and are strongest when they coincide.
- **Optimal Trade Entry** (https://www.luxalgo.com/library/concept/optimal-trade-entry/): OTE is a single-leg retracement window (roughly the 0.62 to 0.79 band) from ICT practice. A PRZ is a multi-measurement convergence at a harmonic pattern's completion. Both are fib-built reversal windows, but the construction and surrounding model differ.

## FAQ

### Do you enter as soon as price reaches the PRZ?

Two approaches exist. Aggressive harmonic traders rest limit orders inside the zone with stops beyond it, accepting more failed patterns in exchange for better prices. Conservative practice waits for confirmation inside the zone, a rejection candle or momentum divergence, taking fewer but cleaner reversals. Neither approach removes the failure case, so the stop matters more than the trigger.

### Do harmonic patterns always reverse at the PRZ?

No. Reversal zones fail often enough that the word potential is part of the name. Standard practice is to wait for confirmation inside the zone and to treat a decisive close through its far boundary as invalidation. A PRZ is a location with defined risk, not a prediction.

### How wide should a PRZ be?

There is no fixed width; it depends on the pattern, the timeframe, and the instrument's volatility. What practitioners grade is agreement: measurements clustering within a narrow band relative to recent swings make a usable zone, while a zone wider than the structure it came from is usually treated as a pass.

## Implementations in the Library

- Potential Reversal Zone (LuxAlgo): https://www.luxalgo.com/library/indicator/potential-reversal-zone/

## Related concepts

- Harmonic Patterns: https://www.luxalgo.com/library/concept/harmonic-patterns/
- ABCD: https://www.luxalgo.com/library/concept/abcd/
- Three Drives: https://www.luxalgo.com/library/concept/three-drives/
- Gartley: https://www.luxalgo.com/library/concept/gartley/
- Bat: https://www.luxalgo.com/library/concept/bat/
- Butterfly: https://www.luxalgo.com/library/concept/butterfly/
- Shark: https://www.luxalgo.com/library/concept/shark/
- Cypher: https://www.luxalgo.com/library/concept/cypher/
- 5-0: https://www.luxalgo.com/library/concept/5-0/
- Anti-patterns: https://www.luxalgo.com/library/concept/anti-patterns/

---

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