# Stress testing and VaR: quantifying what could blow up
On a single Monday in October 2008, the S&P 500 fell about 9%. Any risk model that had told a portfolio manager the day before "you will lose at most 3% tomorrow, 19 days out of 20" was not slightly wrong. It was catastrophically, reputationally wrong. That gap between what a model promises and what a real crisis delivers is the whole subject of this lesson.
We are going to run two tools on the same portfolio: Value at Risk (VaR) and a stress scenario. One will look precise and reassuring. The other will look crude and alarming. The crude one is closer to the truth.
Value at Risk (VaR) answers one narrow question: over a given period, at a given confidence level, what is the most I expect to lose under normal market conditions?
A "95% one-day VaR of $2 million" means: on 19 days out of 20, losses should not exceed $2 million. It says nothing about the 20th day. That silence is the trap.
Three inputs define any VaR number:
Regulators lean on VaR heavily. Under the Basel framework (global banking rules set by the Basel Committee on Banking Supervision), banks long used 99% ten-day VaR for market risk capital. The newer FRTB (Fundamental Review of the Trading Book), now rolling into force across jurisdictions in 2025 to 2026, actually moves banks away from pure VaR toward Expected Shortfall (more on that below), precisely because VaR hides tail losses.
For asset managers in Europe, VaR is embedded in UCITS rules (Undertakings for Collective Investment in Transferable Securities, the EU retail fund framework). A UCITS fund using the "VaR approach" for leverage must respect a hard cap: absolute VaR is limited to 20% of net asset value over a 20-day horizon at 99% confidence. That is a real, enforceable number, per the European regulator ESMA (European Securities and Markets Authority) guidelines.
Take a simple $10 million balanced portfolio, as of a hypothetical 2026 date:
We will use the parametric (variance-covariance) method, the simplest VaR. It assumes returns follow a normal (bell curve) distribution.
Assume these estimates (illustrative, not live market data):
Step 1: dollar volatility of each sleeve.
Step 2: portfolio volatility (combining with correlation ρ = 0.2):
Portfolio σ = √(72,000² + 16,000² + 2 × 0.2 × 72,000 × 16,000)
= √(5,184,000,000 + 256,000,000 + 460,800,000)
= √5,900,800,000
≈ $76,817.
Step 3: apply the 95% multiplier.
For a normal distribution, the 95% one-tailed cutoff is 1.645 standard deviations.
95% one-day VaR = 1.645 × $76,817 ≈ $126,000.
So the model says: on a normal day, you should not lose more than about $126,000, or 1.26% of the portfolio, 19 days out of 20.
Here is the same calculation in a few lines of Python:
import numpy as np
value = np.array([6_000_000, 4_000_000]) # equities, bonds
vol = np.array([0.012, 0.004]) # daily volatility
corr = np.array([[1.0, 0.2],
[0.2, 1.0]])
dollar_vol = value * vol
cov = np.outer(dollar_vol, dollar_vol) * corr
port_sigma = np.sqrt(cov.sum())
var_95 = 1.645 * port_sigma
print(f"Portfolio sigma: ${port_sigma:,.0f}")
print(f"95% 1-day VaR: ${var_95:,.0f}")For day-to-day risk budgeting, VaR is genuinely useful. It lets a chief risk officer compare a long-only equity fund against a multi-asset fund on one scale. It flags when a trader has quietly doubled position size. It gives a defensible number to a client asking "how risky is my mandate?"
VaR is also honest about correlation in calm markets. That 0.2 equity-bond correlation lowered our risk number, and in normal times bonds really do cushion equity drawdowns.
Now the problem. VaR has three structural blind spots.
1. It ignores the size of tail losses. VaR tells you the threshold, not what lies beyond it. Losing $130,000 or losing $2 million both count as "a breach." The model shrugs at the difference. This is why FRTB and modern risk teams use Expected Shortfall (ES), also called Conditional VaR: the *average* loss on the days you breach VaR. ES answers "when it goes bad, how bad?"
2. It assumes a normal distribution. Real market returns have fat tails: extreme moves happen far more often than a bell curve predicts. A "6 standard deviation" event should be near-impossible under normality, yet markets produce them every few years.
3. Correlations break in a crisis. Our comforting 0.2 equity-bond correlation is a fair-weather number. In a liquidity panic, investors sell everything at once. Correlations jump toward 1. The diversification benefit that shrank our VaR evaporates exactly when you need it.
This last point is the assassin. The 2008 crisis, and the March 2020 COVID shock, both saw "uncorrelated" assets fall together.
A stress test throws out the statistics and asks a blunt question: if a specific bad scenario happened tomorrow, what would this portfolio lose? No probabilities, no bell curve. Just: apply the shock, revalue the book.
Two flavors:
Let us run a 2008-style stress on our $10 million portfolio. During the worst of 2008, broad equities fell roughly 40% peak to trough, and even investment-grade credit sold off hard while correlations converged.
Illustrative stress assumptions:
Stress loss:
Compare that to our 95% VaR of $126,000. The stress test reveals a potential loss over 21 times larger than the daily VaR headline. Same portfolio. Same day. Two numbers that live in different universes.
That is the lesson in one line: VaR measures the weather, stress testing prepares for the storm.
Vérification des acquis
1. A portfolio manager reports a '95% one-day VaR of $2 million.' What does this figure actually claim?
2. The lesson describes VaR as looking 'precise and reassuring' while a stress scenario looks 'crude and alarming,' yet claims the crude one is closer to the truth. What conceptual point is this making?
3. Why does the newer FRTB framework move banks away from pure VaR toward Expected Shortfall?
4. Select ALL correct answers about the three inputs that define any VaR number.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about the regulatory role of VaR described in the lesson.
Sélectionnez toutes les réponses correctes.
Stress testing is not optional decoration. It is written into law.
The March 2020 dash-for-cash, when several open-ended bond and property funds had to gate or suspend redemptions, made liquidity stress testing a front-line due-diligence check, not a compliance afterthought.
When you assess a manager's risk framework, ask:
1. Which VaR method, and which confidence level? A 95% VaR looks smaller than 99%. Always normalize before comparing managers.
3. How often is VaR backtested? A model that breaches its 99% VaR far more than 1% of days is broken. Basel's "traffic light" backtesting scheme flags exactly this.
4. What scenarios are in the stress library, and how correlated do they assume assets stay? Beware anyone still trusting fair-weather correlations.
5. Is liquidity stressed separately? Losing 27% on paper is survivable. Being unable to sell to meet redemptions is fatal.