Quant Memo
Core

Variance-Covariance VaR

Assume portfolio returns are normal, estimate one number (volatility) from history, and read the loss threshold straight off a formula. It is the fastest Value at Risk method there is, and its speed comes entirely from an assumption real markets keep violating.

Prerequisites: Value at Risk (VaR), The Normal Distribution, Standard Deviation

A risk manager needs a Value at Risk number for a 200-position equity book before the market opens tomorrow. Reprising every historical scenario or running ten thousand simulations both take real computing time. Variance-covariance VaR skips all of that: assume portfolio returns are normally distributed, and the entire loss distribution collapses into two numbers, a mean and a standard deviation, that plug straight into a formula.

The analogy before any symbols

Predicting how far a dropped ball will roll usually means watching many actual drops and measuring where they land. But if you already know the ball is a perfect sphere on a flat floor with known friction, physics gives you the stopping distance directly from one equation, no experiment needed. Variance-covariance VaR makes the equivalent bet: assume the "shape" of possible portfolio outcomes is a known, well-behaved curve (the normal distribution), and skip straight to the formula. The bet pays off in speed and costs you accuracy exactly when the ball turns out not to be a perfect sphere, when real returns have fatter tails than a bell curve allows.

The mechanics

If daily portfolio profit and loss ΔV\Delta V is normally distributed with mean μ\mu (often set to zero for short horizons) and standard deviation σ\sigma, then Value at Risk at confidence α\alpha is:

VaRα=(μ+zασ),\text{VaR}_\alpha = -\big(\mu + z_\alpha \, \sigma\big),

where zαz_\alpha is the standard normal quantile, 1.645-1.645 for 95% confidence, 2.326-2.326 for 99%. In words: start from the average expected change, add a multiple of the standard deviation, and the multiple is however many standard deviations of cushion the chosen confidence level demands; flip the sign because VaR is quoted as a positive loss number.

For a portfolio, σ\sigma itself comes from the asset weights and their covariance matrix: σp=wΣw\sigma_p = \sqrt{w^\top \Sigma w}, where ww is the dollar (or weight) exposure to each risk factor and Σ\Sigma is the factor covariance matrix. In words: portfolio variance is not just a weighted average of individual variances, it also depends on every pairwise covariance, which is exactly how diversification and hedges show up in the number.

Distribution · normal
-2.000.002.00μvalue →
Within ±1σ 68.3%mean μ 0.00std σ 1.00

Slide the mean and standard deviation here and watch the tails: the normal curve always thins out at the same predictable rate on both sides, which is precisely the assumption variance-covariance VaR needs and real return data routinely breaks.

VaR = μ + z·σ σ μ
The shaded left tail is exactly the fraction 1−α of the assumed curve. Move z further left for a higher confidence level; the whole calculation never leaves the bell curve.

Worked example: a single-asset book

A $10m position in an index with daily volatility σ=1.2%\sigma = 1.2\% and μ0\mu \approx 0. The 99% one-day VaR is 2.326×0.012×10,000,000=279,1202.326 \times 0.012 \times 10{,}000{,}000 = 279{,}120, i.e. $279,120. At 95% confidence, 1.645×0.012×10,000,000=197,4001.645 \times 0.012 \times 10{,}000{,}000 = 197{,}400, i.e. $197,400. The 99% number is larger purely because z0.99>z0.95z_{0.99} > z_{0.95}; nothing about the position changed between the two calculations.

Worked example: two positions, and where diversification enters

Add a second $10m position in a different index with σ=1.5%\sigma = 1.5\% and correlation ρ=0.3\rho = 0.3 to the first. Portfolio variance is σp2=w12σ12+w22σ22+2w1w2ρσ1σ2\sigma_p^2 = w_1^2\sigma_1^2 + w_2^2\sigma_2^2 + 2w_1w_2\rho\sigma_1\sigma_2 in dollar terms: (10,000,000×0.012)2+(10,000,000×0.015)2+2(10,000,000×0.012)(10,000,000×0.015)(0.3)(10{,}000{,}000 \times 0.012)^2 + (10{,}000{,}000\times0.015)^2 + 2(10{,}000{,}000\times0.012)(10{,}000{,}000\times0.015)(0.3), which works out to σp210,000\sigma_p \approx 210{,}000, i.e. $210,000. The 99% VaR on the combined $20m book is 2.326×210,000=488,4602.326 \times 210{,}000 = 488{,}460, i.e. $488,460. The second position's standalone 99% VaR is 2.326×0.015×10,000,000=348,9002.326\times0.015\times10{,}000{,}000 = 348{,}900, i.e. $348,900, so the sum of the two standalone VaRs is $279,120 + $348,900 = $628,020, well above the $488,460 diversified figure. The correlation term is the entire reason the combined number is smaller than the sum of the parts.

What this means in practice

Variance-covariance VaR is the default for large multi-asset books where speed matters more than tail precision, particularly intraday risk checks, because it is a handful of matrix multiplications rather than a simulation. It is at its weakest for option books, where payoffs are not linear in the underlying and a single σ\sigma cannot capture curvature, see Delta-Gamma VaR for Option Books, and during market stress, where correlations move toward one just when diversification is needed most.

Variance-covariance VaR turns an entire risk calculation into one number, σp\sigma_p, built from the covariance matrix, then scaled by a normal quantile zαz_\alpha. Its speed and its main weakness come from the same place: it never looks at the data's actual shape, only its second moment.

The classic mistake is trusting the 99% number as much as the 95% number. Because the normal distribution's tails thin out faster than real market tails do, the understatement of true risk gets worse the further out you go: 95% VaR from this method is usually only mildly optimistic, while 99% or 99.9% VaR can understate real tail risk substantially, since actual return distributions are fat-tailed and the normal curve assumes they are not. Never use variance-covariance VaR alone for extreme confidence levels or for portfolios with meaningful optionality; pair it with Historical Simulation VaR or Monte Carlo VaR as a cross-check.

Related concepts

Practice in interviews

Further reading

  • J.P. Morgan, RiskMetrics Technical Document
  • Jorion, Value at Risk (Ch. 7)
ShareTwitterLinkedIn