Peaks Over Threshold and the Generalized Pareto Distribution
A recipe for modeling extreme losses that throws away everything below some high threshold and fits a specific curve, the Generalized Pareto Distribution, to just the overflow amounts.
Prerequisites: The Hill Estimator for the Tail Index, The Pareto Distribution and Power Laws
To price tail risk you need to know the distribution of losses beyond some painful level — how bad does a loss get, given that it already breached your risk limit? Fitting a single distribution to the whole dataset and reading off the tail wastes the fit's effort modeling the ordinary, boring middle of your data, which you don't care about. Peaks Over Threshold flips this: pick a high bar, keep only the amounts by which losses clear that bar, and fit a distribution to just those overflow amounts. There is a theorem guaranteeing what shape that distribution has to take, almost regardless of what your original data looked like.
An analogy: a dam and the water that spills over
Picture a dam wall at a fixed height. Most days no water reaches the top. On the days it does, what matters is not the water level itself but how much it overflows the wall — an inch, a foot, ten feet. If you record only the overflow amounts on the days there is any, and ignore every day the water stayed below the wall, the shape of those overflow amounts turns out to belong to one specific family of curves almost no matter what the underlying water-level distribution was. That family is the Generalized Pareto Distribution (GPD), and the "wall height" is your threshold.
The rule, one symbol at a time
Let be the threshold you chose. For any loss that exceeds , define the excess — how far past the wall it went. The Pickands–Balkema–de Haan theorem says that, for high enough, the distribution of is approximately
read as: "the probability the excess is bigger than depends on two knobs, and , through this specific formula, no matter what distribution the original losses came from." Here (xi) is the shape parameter — the same tail-fatness idea as in the Hill estimator, with meaning a fat, Pareto-like tail — and (sigma) is a scale parameter, controlling how large a typical excess is in absolute units. In plain English: once you're past the threshold, the excess amounts follow one of a small, well-understood family of curves, and fitting that curve just means estimating two numbers, and , from your excess data.
Slide a threshold far into the right tail of a curve like the one above. Whatever shape the full distribution had, the theorem guarantees that just the spillover past settles into one predictable two-parameter family — that predictability is what makes the flood-wall analogy work.
Peaks Over Threshold turns "model the whole loss distribution" into "pick a high bar, keep only what spills over, and fit a two-parameter curve to the spillover." The theorem is what guarantees that curve is the GPD.
Worked example 1: fitting by the method of moments
Suppose daily losses exceeding a threshold of $5m (out of a much larger dataset) give five excess amounts, in millions of dollars: . The sample mean excess is , and the sample variance is (in squared millions).
Method-of-moments formulas for the GPD give and . Compute . So , and . A shape of signals a fairly fat tail — excesses well beyond the threshold are not rare.
Worked example 2: pricing a 1-in-1000-day loss
Using , from above, and supposing losses exceed the $5m threshold on about 5% of days, find the loss level exceeded once every 1,000 days (probability ). Conditional on exceeding the threshold, we need . Solve for : raise both sides to the power : . Compute . So , giving (in millions). The 1-in-1000-day loss is about $5m + $33.05m, roughly $38.05m.
What this means in practice
- Value-at-risk beyond the data. POT/GPD is the standard tool for extrapolating loss quantiles far beyond anything actually observed, used throughout tail-risk and stress-testing frameworks.
- Choosing the threshold. Too low a and the theorem's approximation hasn't kicked in yet; too high and there's too little excess data to fit two parameters reliably — the same trade-off as choosing for the Hill estimator.
- Complements the Hill estimator. Hill uses a fixed count of top points; POT uses a fixed threshold value. They often give similar shape estimates and are used as a cross-check on each other.
Fitting the GPD to excesses assumes the losses that trigger them are roughly independent events. Financial losses cluster — a bad week in a crisis produces many correlated exceedances — and treating clustered exceedances as independent data points overstates how much genuine information you have, understating the uncertainty in and .
Related concepts
Practice in interviews
Further reading
- Coles, An Introduction to Statistical Modeling of Extreme Values, ch. 4
- Embrechts, Klüppelberg & Mikosch, Modelling Extremal Events, ch. 3