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 is normally distributed with mean (often set to zero for short horizons) and standard deviation , then Value at Risk at confidence is:
where is the standard normal quantile, for 95% confidence, 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, itself comes from the asset weights and their covariance matrix: , where is the dollar (or weight) exposure to each risk factor and 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.
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.
Worked example: a single-asset book
A $10m position in an index with daily volatility and . The 99% one-day VaR is , i.e. $279,120. At 95% confidence, , i.e. $197,400. The 99% number is larger purely because ; 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 and correlation to the first. Portfolio variance is in dollar terms: , which works out to , i.e. $210,000. The 99% VaR on the combined $20m book is , i.e. $488,460. The second position's standalone 99% VaR is , 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 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, , built from the covariance matrix, then scaled by a normal quantile . 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)