No history yet

Stochastic Volatility Calibration

Beyond Constant Volatility

The Black-Scholes-Merton model's assumption of constant volatility is its primary failing in live markets. Real-world implied volatilities vary significantly across strike prices and maturities, creating the well-known volatility smile and skew. To price and hedge derivatives accurately, particularly in high-frequency contexts, we must employ models that treat volatility itself as a random, or stochastic, process. This allows us to capture the complex surface of market expectations.

Stochastic models replace the single volatility parameter of Black-Scholes with a dynamic process, allowing for a much richer and more realistic representation of asset price movements.

The Heston Model

The Heston model is a cornerstone of stochastic volatility modeling. It introduces a second stochastic process that governs the variance of the asset price, allowing the two to correlate. This structure provides a powerful framework for capturing key features of the volatility surface observed in markets.

dSt=μStdt+vtStdWtSdvt=κ(θvt)dt+ξvtdWtvE[dWtSdWtv]=ρdt\begin{aligned} dS_t &= \mu S_t dt + \sqrt{v_t} S_t dW_t^S \\ dv_t &= \kappa(\theta - v_t)dt + \xi\sqrt{v_t} dW_t^v \\ \mathbb{E}[dW_t^S dW_t^v] &= \rho dt \end{aligned}

The variance process, vtv_t, is characterized by several key parameters:

  • κ\kappa: The speed of mean reversion. A higher κ\kappa means the variance reverts to its long-term average more quickly.
  • θ\theta: The long-run average variance. This is the level to which the variance process is pulled.
  • ξ\xi: The volatility of variance (often called "vol-of-vol"). This parameter determines how much the variance fluctuates around its mean-reverting path.
  • ρ\rho: The correlation between the asset price's random shock and the variance's random shock. A negative ρ\rho is typical for equity markets, capturing the leverage effect where volatility tends to increase as prices fall.

One of the most significant applications of stochastic calculus in finance is the Black-Scholes-Merton model, which revolutionized the way options are priced.

Calibration and Optimization

A model is only useful if it accurately reflects market prices. Calibration is the process of finding the model parameters ({κ,θ,ξ,ρ,v0}\{\kappa, \theta, \xi, \rho, v_0\}) that best fit the observed prices of options in the market. This is framed as a numerical optimization problem where we aim to minimize a loss function—typically the weighted sum of squared differences between market prices and model prices.

minκ,θ,ξ,ρ,v0i=1Nwi(Cmarket(Ki,Ti)CHeston(Ki,Ti;Θ))2\min_{\kappa, \theta, \xi, \rho, v_0} \sum_{i=1}^{N} w_i (C_{\text{market}}(K_i, T_i) - C_{\text{Heston}}(K_i, T_i; \Theta))^2

This minimization is a non-linear problem with no closed-form solution, requiring iterative numerical methods. A powerful and commonly used algorithm for this task is the algorithm. It effectively blends the speed of the Gauss-Newton method with the stability of gradient descent, making it well-suited for fitting complex models to market data. The output is a set of parameters that generates a volatility surface most consistent with current market quotes.

Lesson image

SABR Model

While Heston provides a comprehensive model, the SABR (Stochastic Alpha, Beta, Rho) model offers a more direct and often faster way to parameterize the volatility smile for a single maturity. It's an industry standard for quoting and risk management in interest rate derivatives but is widely used elsewhere.

dFt=σt(Ft)βdWtFdσt=ασtdWtσE[dWtFdWtσ]=ρdt\begin{aligned} dF_t &= \sigma_t (F_t)^{\beta} dW_t^F \\ d\sigma_t &= \alpha \sigma_t dW_t^{\sigma} \\ \mathbb{E}[dW_t^F dW_t^{\sigma}] &= \rho dt \end{aligned}

A key advantage of SABR is the existence of an accurate analytical approximation for the implied volatility, developed by This makes calibration extremely fast, as it avoids the computationally expensive process of pricing options for each iteration of the optimization. Instead, one can directly fit the analytical formula to the market's implied volatility smile. For high-frequency trading, this speed is a critical advantage, enabling real-time recalibration as the market moves.

Once calibrated, these models provide a complete, arbitrage-free volatility surface. This surface can then be used to price exotic options, calculate precise hedging ratios, and simulate future price paths for risk management and strategy backtesting, giving a crucial edge to any automated trading system.

Quiz Questions 1/5

What is the primary limitation of the Black-Scholes-Merton model that stochastic volatility models like Heston are designed to address?

Quiz Questions 2/5

In the Heston model, which parameter governs the speed at which the variance process is pulled back towards its long-term average?