Quintic Polynomial Model
SVI is the industry standard for fitting a vol smile -- 5 parameters, one slice at a time. But SVI bakes in a specific shape assumption: the smile is always a translated, scaled hyperbola. When the market does something SVI cannot produce, the fit degrades. The Quintic Polynomial model (Gauthier & Possamai, 2023) drops the shape assumption entirely. It fits total implied variance as a polynomial in log-moneyness -- a 4th or 5th degree polynomial with 5 or 6 coefficients. It can fit any smile shape the market produces, including ones SVI structurally misses.
SVI without the shape constraint
Same parameter count as SVI. Same one-slice-at-a-time fitting. But where SVI forces a hyperbolic shape, the polynomial lets the data decide. The tradeoff: you lose SVI's built-in wing behavior and need explicit constraints for arbitrage freedom. Skew and curvature are independent knobs.
See It in Action
Drag the sliders to explore how each coefficient shapes the smile. Try the "Double bump" preset for a shape SVI cannot produce.
Quintic Polynomial Smile Explorer
Try "Double bump" and toggle "Show SVI reference" to see a shape the polynomial can produce that SVI structurally cannot.
How It Works
1. Total variance as a polynomial
For a given expiry , total implied variance is modeled as a polynomial in log-moneyness :
Each coefficient has a direct trader interpretation:
2. Arbitrage constraints are simple bounds
For the polynomial to be arbitrage-free (positive variance, convex call prices), the constraints reduce to inequalities on the coefficients. No need for complex numerical checks -- just bound the coefficients during fitting.
3. Fitting is fast
Fitting a polynomial to market data is a least-squares problem, solvable in microseconds. The fit is weighted toward ATM strikes where liquidity is highest. Add the coefficient bounds as linear constraints and you have a small QP (quadratic program) -- faster and more robust than SVI's nonlinear optimization.
Higher-degree polynomials oscillate in the wings
Degree 6 or 7 polynomials oscillate in the wings (Runge's phenomenon). Degree 4-5 has enough flexibility to capture real smile shapes without creating artifacts beyond the last liquid strike. For deep OTM wing behavior, you need explicit extrapolation rules.
Quintic vs. SVI
Relevance to Crypto
Crypto smiles are often asymmetric in ways that SVI struggles with -- sharp put skew from liquidation cascades, unusual call-side bumps from airdrop optionality, or "kinked" smiles around popular strike prices with concentrated open interest. The polynomial model fits these shapes without forcing a hyperbolic structure. Delta and vega computed from the polynomial smile are smooth by construction. The main limitation: crypto options have sparse strikes, and polynomials can misbehave between data points if not constrained carefully.
SVI's simplicity without its shape bias
Fits smiles that SVI structurally cannot produce. The cost: you lose SVI's well-behaved wing extrapolation and must handle arbitrage constraints explicitly. Multi-expiry surfaces need separate term structure constraints. Best for markets where the smile is unusual or SVI's fit residuals are too large.
Equation Explorer
Convert between implied vol, total variance, log-moneyness, and option prices.
Equation Explorer
💡 Tip: Try answering each question yourself before revealing the answer.
Building mathematical intuition
Learn quintic from scratchInteractive lesson · no prerequisitesThis lesson explains why a polynomial fit buys you extra smile flexibility, how the total-variance polynomial works, and why stronger arbitrage checks matter as soon as the shape is allowed to move more freely.
See also:
- SVI Parameterization -- The industry-standard parametric model this extends
- SSVI (Surface SVI) -- Calendar-consistent surface extension of SVI
- SANOS (Non-Parametric Surfaces) -- Full non-parametric approach with LP fitting
- Neural SDE / Deep Hedging -- Data-driven approach that learns dynamics end-to-end
- Interpolation Methods -- All methods compared