Volatility (σ)

A measure of how widely returns disperse around their average

What Volatility Means

Volatility measures how widely returns disperse around their average. In practical terms it tells you, "How bumpy is the ride?"—the greater the volatility, the larger the typical up- or down-swings you can expect over the period in question.

Mathematical Definition

For a series of nn returns r1,r2,,rnr_1,\,r_2,\dots ,r_n:

σ  =  1n1t=1n(rtrˉ)2(rˉ=1nrt)\sigma \;=\; \sqrt{\frac{1}{n-1}\sum_{t=1}^{n}\bigl(r_t-\bar{r}\bigr)^2} \qquad \bigl(\bar{r}= \tfrac1n\sum r_t\bigr)
  • Units → the same as returns (e.g., % per day).

  • Annualisationσannual=σdaily×252\sigma_{\text{annual}} = \sigma_{\text{daily}}\times\sqrt{252} (for trading-day data).

Because the formula squares deviations, it penalises big moves heavily, capturing both upside and downside swings.

Our Implementation

Inside our implementation, you'll find:

volatility = port_returns.std() * np.sqrt(252)

Key points

AspectDetail
Data frequencyDaily simple returns (port_returns)
EstimatorSample standard deviation (Series.std() uses n1n-1 denominator)
Annual factor√252 multiplies daily σ to yearly
StorageResult sits in performance.volatility for each optimisation method (MVO, MinVol, HRP, …)

Interpreting Volatility

Annual σTypical Asset ClassRule-of-thumb Daily Move (±1 σ)
3 %–5 %3-month T-bill0.20 %–0.30 bps
10 %Investment-grade bonds~0.6 %
15 %Large-cap equities~1.0 %
30 %+Crypto, single tech stocks1.9 % +

Higher σ ⇒ wider return range; not inherently "bad," but must be balanced against expected return (Sharpe, Sortino, Treynor).

Why Investors Track σ

  1. Position sizing – allocate less capital to high-σ components.

  2. Risk limits – trading desks impose daily VaR or σ ceilings.

  3. Sharpe & Sortino – denominator uses σ (or downside σ).

  4. Portfolio optimisation – MPT minimises σ for a target return.

Mini FAQ

Is volatility the same as risk?

It's a proxy for price uncertainty; it doesn't distinguish upside vs. downside. Complement with drawdown and tail metrics.

Can σ be negative?

No—by definition it's a square-root of squared deviations.

How big is "big"?

Compare to peer assets or benchmarks; 20 % annual σ for equities is typical, 60 % is extreme.

References

  • Hull, J. Options, Futures, and Other Derivatives, 11 ed. – Ch. 1 (Volatility Basics).

  • Pafka & Kondor (2003)Estimated correlation matrices… Physica A 319.

Related Topics

Expected Returns

The weighted-average outcome you anticipate earning on an asset or portfolio over a stated horizon.

Sharpe Ratio

A measure of risk-adjusted return that helps investors understand the return of an investment compared to its risk.

Value-at-Risk

A statistical measure that quantifies the level of financial risk within a portfolio over a specific time frame.