AdjustedbyRisk
Article · Feb 15, 2024 · 8 min read

The Volatility Tax: Why Compounding Requires Asymmetry

Exploring how volatility drag erodes returns, and why systematic strategies must target positive skew to achieve long-term compounding.

VolatilityCompoundingRisk ManagementMath

The Math Nobody Talks About

Every finance course teaches arithmetic returns. But real wealth is built on geometric returns — and the gap between the two is what I call the volatility tax.

The relationship is simple:

Geometric Return ≈ Arithmetic Return − (Variance / 2)

Where variance is the square of standard deviation.

A Practical Example

ScenarioArithmetic ReturnVolatilityGeometric Return
Low Vol10%5%9.875%
High Vol10%20%8.00%

The high-volatility scenario loses nearly 2% annually to volatility drag. Compounded over 20 years, this is catastrophic.

Why Trend Following Helps

Trend-following strategies often exhibit positive skew: small frequent losses, large infrequent wins. This asymmetry:

  1. Reduces the volatility tax by lowering standard deviation
  2. Improves geometric returns through convexity
  3. Creates optionality without paying premium

Simulating Volatility Drag

import numpy as np

def geometric_return(returns):
    return np.prod(1 + np.array(returns)) ** (1/len(returns)) - 1

np.random.seed(42)
low_vol = np.random.normal(0.10/252, 0.05/np.sqrt(252), 252)
high_vol = np.random.normal(0.10/252, 0.20/np.sqrt(252), 252)

print(f"Low vol geometric return: {geometric_return(low_vol):.2%}")
print(f"High vol geometric return: {geometric_return(high_vol):.2%}")

Implications for Strategy Design

  • Volatility targeting is non-negotiable — scale positions to maintain constant portfolio vol
  • Seek convexity — strategies that gain more in winners than they lose in losers
  • Measure geometric returns — not just Sharpe or arithmetic CAGR

“The goal is not to be right often. The goal is to make more when you’re right than you lose when you’re wrong.”

Further Reading

  • Taleb, N.N. Antifragile — on convexity and optionality
  • Ilmanen, A. Expected Returns — on volatility risk premium
  • Carver, R. Systematic Trading — on volatility targeting

This article is part of the Research & Insights series. All content is educational and not financial advice.