CONTENTS

Exercise: Gamma P&L and Realised-vs-Implied Volatility

Problem

A trader buys an ATM call (S0=K=100,T=0.5,r=0.05S_0 = K = 100, T = 0.5, r = 0.05) priced at implied volatility σimp=0.2\sigma_{\text{imp}} = 0.2. They delta-hedge with N=500N = 500 rebalancings. Meanwhile, the underlying actually moves with realised volatility σR\sigma_R.

The gamma-scalping formula says the expected P&L is
E[P&L]0T12ΓtSt2(σR2σimp2)dt.\mathbb{E}[\text{P\&L}] \approx \int_0^T \tfrac{1}{2}\Gamma_t S_t^2 (\sigma_R^2 - \sigma_{\text{imp}}^2)\,dt.
So delta-hedging is profitable iff realised vol exceeds implied.
  1. Simulate M=5000M = 5000 GBM paths under three realised-vol regimes: σR{0.15,0.20,0.30}\sigma_R \in \{0.15, 0.20, 0.30\}. For each, compute the mean P&L and compare to the theoretical gamma-scalping estimate.

  2. For σR=0.20\sigma_R = 0.20 (= σimp\sigma_{\text{imp}}), verify P&L mean 0\approx 0. What about P&L std?

  3. Interpretation. A trader believes implied vol of 20% is mispriced and the true realised vol will be 30%. Compute the expected profit per contract over the 6 months.

Hint

At each rebalancing, the P&L contribution is (price change of option) − (delta × stock change). Sum over all rebalancings. Use the delta and gamma computations from previous exercises. For gamma scalping formula, you can approximate Γt\Gamma_t and StS_t by their t=0t = 0 values for a rough scale check (ATM Γ00.0273\Gamma_0 \approx 0.0273, S0=100S_0 = 100).

Jump to the solution when you're ready.