SABR Model
This page covers the SABR model in depth. For context on how it fits into the vol surface pipeline, see How Surfaces Are Built. For a comparison with other methods, see Interpolation Methods.
SABR (Stochastic Alpha Beta Rho) is a stochastic volatility model introduced by Hagan, Kumar, Lesniewski, and Woodward (2002). Unlike SVI, which describes the shape of the smile, SABR describes the dynamics that produce it. The smile falls out of the model as a consequence of how vol evolves alongside the underlying.
SABR is the dominant model for interest rate swaptions and caps/floors. It is less common in crypto, where SVI is preferred for its simpler fitting and better wing behavior.
Explore the Parameters
Adjust each parameter to see how the SABR smile changes. Toggle "Show backbone" to see the CEV-only curve (what the smile looks like without vol-of-vol).
SABR Smile Explorer
Toggle "Show backbone" to see the CEV-only curve (no vol-of-vol). The gap between backbone and full smile is the contribution of \u03BD.
What each parameter does
- (vol level): The current instantaneous volatility. Higher = higher overall IV. This is the most frequently recalibrated parameter.
- (backbone): Controls how volatility scales with the underlying price. means percentage vol is constant (lognormal). means dollar vol is constant (normal). is in between (square root). In practice, is usually fixed to a market convention, not fitted.
- (spot-vol correlation): Controls the skew. Negative means vol rises when the underlying drops (the usual behavior in equities and crypto). Positive means the opposite (rare).
- (vol of vol): Controls the smile width. When , there is no smile, only whatever skew and produce (the "backbone"). As increases, both wings elevate.
The backbone
Click "Show backbone" in the explorer above. The dashed line is the smile with : no randomness in vol, just the deterministic CEV model. The gap between the backbone and the full smile is the contribution of (vol-of-vol). This decomposition is unique to SABR and gives traders a clear intuition for where the smile's curvature comes from.
Calibration
The standard approach
-
Fix to a market convention:
- Interest rates: (common) or (normal SABR)
- Equities: (lognormal)
- With fixed, the model has 3 free parameters.
-
Pin to ATM vol. There is a near-closed-form relationship between and ATM implied vol. Given the observed ATM IV, solve for . This reduces the fit to 2 free parameters.
-
Fit and by minimizing the weighted error between the SABR smile and observed IVs across strikes. With only 2 parameters, this is fast and robust.
Weighting
- ATM gets the most weight (most liquid, most reliable)
- Options with tight bid-ask spreads get more weight
- Deep OTM options get less weight (the Hagan approximation is less accurate there)
Strengths
Dynamic interpretation. SABR tells you how the smile should move when the underlying moves. By default, SABR produces a sticky-delta-like behavior: when spot drops, vol rises (if ), and the smile shifts with spot. This is valuable for products where smile dynamics matter for hedging.
Backbone decomposition. The separation of backbone (-driven skew) from smile (-driven curvature) gives traders a clear mental model.
Parsimonious. With fixed and pinned to ATM, you are fitting only 2 parameters. This is fast and leaves little room for overfitting.
Limitations
Wing problems. The Hagan approximation can produce negative implied vol or negative probability density in the far wings. This is a known issue. Production systems use corrected formulations (arbitrage-free SABR, or a PDE solver for extreme strikes).
Long maturities. The asymptotic expansion degrades for maturities beyond 10-15 years. Use a numerical method instead.
Static fit, not dynamic calibration. Despite SABR's dynamic interpretation, in practice each expiry is fitted independently (just like SVI). The dynamic story is aspirational rather than operationally enforced.
SABR vs. SVI
| SABR | SVI | |
|---|---|---|
| What it models | Dynamics that produce the smile | Shape of the smile |
| Parameters | 3 (with fixed) | 5 |
| Arbitrage | Hagan formula can violate in wings | Clean constraints available |
| Wing behavior | Can break for extreme strikes | Bounded, linear asymptotes |
| Speed | Formula evaluation | Optimization |
| Best for | Interest rates, FX | Equities, crypto |
The key difference: SABR answers "how does the smile move?" while SVI answers "what does the smile look like?" For simple European option pricing and risk, SVI's simpler fitting and better wing behavior usually win. For products where smile dynamics matter (Bermudan swaptions, barrier options under sticky-delta), SABR's dynamic interpretation is valuable.
Connection to SVI
SABR can initialize SVI fits. Fit SABR first (fast 2-parameter optimization), evaluate the SABR smile at many strikes, then fit SVI to those points. This gives SVI a good starting point when market data is sparse.
See also:
- SVI Parameterization - The model Hypercall uses
- Local Volatility - Dupire's instantaneous vol surface
- Interpolation Methods - All methods compared
- How Surfaces Are Built - The full pipeline