En esta página
Pivot points feel old. They were calculated by hand on the floor of the Chicago Mercantile Exchange in the 1970s by traders who needed a reference point for the day. Now that everyone has automated indicators, pivots have fallen out of retail fashion — but professional desks still watch them, which is why they keep working.
The classic formula
A pivot point is a derived price level for the current session, computed from the previous session's high, low and close. The central pivot (PP) is the mean of those three. Support and resistance levels above and below the pivot are computed off the range.
# Inputs: yesterday's high (H), low (L), close (C)
PP = (H + L + C) / 3
# Resistance levels (above the pivot)
R1 = 2 * PP - L
R2 = PP + (H - L)
R3 = H + 2 * (PP - L)
# Support levels (below the pivot)
S1 = 2 * PP - H
S2 = PP - (H - L)
S3 = L - 2 * (H - PP)
# Example: H=$51,000 L=$49,000 C=$50,500
# PP=$50,166 R1=$51,333 R2=$52,166 S1=$49,333 S2=$48,166These levels stay fixed for the entire next session. Traders watch them as references — price above PP is bullish bias, below is bearish bias. Touches of R1 / S1 are common reaction zones; R2 / S2 mark expanded daily ranges. R3 / S3 are rarely tested except on news days.
Why they still work
Self-fulfilling prophecy. Enough institutional desks watch the same pivot levels (and the same daily PP in particular) that orders cluster around them. The level becomes a focal point for liquidity, which makes touches likely to trigger reactions, which keeps the level relevant.
In backtests on liquid majors (BTC, ETH, large-cap stocks), the daily pivot point shows roughly 5-15% higher reaction probability than random horizontal levels — comparable to the 0.5 and 0.618 Fibonacci levels we covered separately. Small effect, but real, and free to add to a system.
Variants: Camarilla, Woodie, Fibonacci-pivots
Several alternative formulas exist. The most common:
- Camarilla — uses a different multiplier (1.1) that produces tighter pivot levels. Good for range-bound days; the L3/H3 levels are common reversal points.
- Woodie — weights the close more heavily: PP = (H + L + 2C) / 4. Tends to track the close more closely, useful when overnight gaps are common.
- Fibonacci pivots — uses 0.382, 0.618 and 1.0 ratios off the previous range. A hybrid of pivots and Fibs that respects both audiences.
None dominates in backtest. Pick one and stay consistent across all your strategies — the inconsistency of switching between variants is more harmful than the choice of formula.
Using the daily PP as a directional bias
The cleanest single use of pivots: a directional filter. Price trading above the daily PP biases the day long; below biases short. Combined with an entry signal (RSI, breakout, MA crossover), it filters out most counter-bias trades.
strategy:
name: rsi_with_pivot_bias
indicators:
- { id: pivot, kind: DailyPivot, method: classic }
- { id: rsi, kind: RSI, period: 14 }
rules:
entry: # long bias only when above daily PP
type: AND
children:
- { type: gt, left: bar.close, right: pivot.pp }
- { type: lt, left: rsi, right: 30 } # oversold pullback
exit:
type: OR
children:
- { type: gt, left: bar.close, right: pivot.r1 } # take profit at R1
- { type: lt, left: bar.close, right: pivot.s1 } # invalid — bail
risk:
size_pct: 1.0
stop_loss: { kind: distance_below_ref, ref: pivot.s1, mult: 0.5 }The R1 and S1 levels become natural profit and stop targets — they're measured off the previous day's range, so they scale with realised volatility automatically.
Next steps
Pivots are most useful when combined with the underlying support and resistance concept. For other reference levels traders watch, see the Fibonacci retracement piece.
Pruébalo con tus datos
Cada concepto de arriba está implementado en la plataforma. Backtest, walk-forward, paper trading, luego live — el mismo conjunto de reglas en cada etapa.