CONTENTS

Heston Stochastic Volatility

Motivation: why this matters in quant finance

Heston Stochastic Volatility is a working tool, not a decorative theory topic. In quant finance it appears whenever a model has to turn noisy market data into a decision about price, risk, hedge size, or capital. The central object is variance follows a CIR process so volatility can mean-revert and correlate with spot. Without it, practitioners can still quote numbers, but they cannot explain which assumptions make those numbers stable.

The lesson connects directly to Risk Neutral Valuation and to the broader pricing and risk workflow. A trader uses the idea to compare alternatives; a risk manager uses it to measure what can go wrong; a researcher uses it to decide which simplifications are acceptable.

The informal idea

The informal picture is simple: replace a complicated market question by a smaller mathematical object that preserves the relevant economics. For this topic, the object is variance follows a CIR process so volatility can mean-revert and correlate with spot. The model is useful only if it answers two questions: what is being measured, and how would the answer change if the market moved?

A good implementation also separates input from interpretation. Inputs are prices, returns, cashflows, states, or features. Interpretation is the statement that those inputs imply a forward rate, beta, risk score, tree value, model parameter, or optimal weight.

Formal definitions

A compact way to write the defining relation is:

dvt=κ(θvt)dt+ξvtdWtvdv_t=\kappa(\theta-v_t)dt+\xi\sqrt{v_t}dW^v_t

The symbols depend on context, but the structure is consistent: define the object, state the convention, then compute it from observable or estimated quantities. In production code, the convention is part of the model. Changing compounding, sampling window, annualisation, or objective function changes the number.

For a finite data set, the practical estimator has three steps:

  1. Choose the inputs and the measurement convention.
  2. Apply the formula using a reproducible rule.
  3. Report the estimate together with the assumptions that make it meaningful.

Key properties

Convention dependence. The same economic object can produce different numerical values under different conventions. This matters because model validation usually compares numbers across systems.
Sensitivity. The estimate changes when inputs move. Quant work is rarely about the point estimate alone; it is about the derivative, error bar, or stress response.
Aggregation. Portfolio or curve-level quantities usually combine individual estimates. Linear aggregation is convenient, but nonlinear payoffs and constraints often break naive additivity.
Finance use. The practical use is smile pricing and equity option calibration. That use case determines whether the model needs precision, robustness, explainability, or speed.

Worked examples

Example 1: computing the core quantity

Suppose the relevant input is observed at three points and the target convention is fixed before estimation. The calculation follows the definition directly: transform the observations, apply the formula, then check whether the result has the expected sign and scale.

This sanity check is not optional. A negative rate, unstable weight, explosive hedge ratio, or out-of-range probability can be mathematically possible and economically suspicious at the same time.

Example 2: stress interpretation

If an input changes by a small amount, the first-order response is the local sensitivity. In many finance applications this is the quantity that goes into daily P&L explain:

ΔVVxΔx.\Delta V \approx \frac{\partial V}{\partial x}\Delta x.

The point estimate tells you where the model is today. The sensitivity tells you how fragile that answer is tomorrow.

Common confusions and pitfalls

"The formula is the model." The formula is only the visible part. Sampling choices, conventions, cleaning rules, and constraints often matter as much as the algebra.
"More precision means more truth." Extra decimal places can hide estimation error. Report precision that matches the quality of the inputs.
"Historical data settles the question." Historical estimates are useful, but they are conditional on the regime that produced the sample.
"The output is comparable across desks by default." It is comparable only if the conventions match.

Where this goes next

Exercises

Test your understanding with 3 exercises for this lesson.