Lookback Options and Path Extremes
A lookback option references the maximum or minimum price reached during its life, giving its holder retrospective access to a favorable path extreme. That valuable hindsight makes its price highly sensitive to volatility, monitoring frequency, and jumps that ordinary terminal-payoff options may barely register.
Payoff taxonomy
For a path minimum mT = mint St and maximum MT = maxt St:
floating-strike call = S_T - m_T
floating-strike put = M_T - S_T
fixed-strike call = max(M_T - K, 0)
fixed-strike put = max(K - m_T, 0)
Floating-strike lookbacks lock in the best realized strike; fixed-strike contracts have a standard strike but reference a favorable extreme. Contracts may include only observation dates, begin monitoring after a delay, or reset an already-established extreme. These distinctions cannot be repaired by changing an implied volatility after the fact.
| Feature | Risk impact |
|---|---|
| continuous monitoring | greater chance of extreme, higher value |
| discrete monitoring | misses intraday extrema |
| already observed maximum/minimum | state variable at valuation |
| jump process | can change extreme sharply |
| local volatility | affects probability of visiting regions |
Reflection and closed-form intuition
Under Black–Scholes with continuous monitoring, some lookbacks have closed forms derived using the reflection principle. The principle relates paths that cross a level to reflected Brownian paths, accounting for the distribution of a running maximum or minimum. It is a valuable benchmark, but production contracts rarely satisfy every assumption: discrete fixing calendars, dividends, barriers, and smile surfaces break the simple formula.
The value of a floating-strike call is not merely an at-the-money call plus a premium. Its delta and gamma depend on both current spot and the distance to the running minimum. Once a very low minimum is fixed, the contract can behave like a forward plus a put-like residual; before that, it has substantial exposure to setting a new minimum.
Discrete monitoring and bridge correction
Naive daily Monte Carlo records only simulated nodes, systematically understating a continuously monitored maximum and overstating a minimum. Conditional on endpoints under a lognormal diffusion, a Brownian bridge can sample or analytically account for an intrastep crossing. For log-price endpoints x0, x1, the probability that the bridge exceeds upper barrier b is
P(max > b | x0,x1) = exp(-2*(b-x0)*(b-x1)/(sigma^2*dt))
when both endpoints lie below b. The equivalent applies to lower barriers. This correction is often more efficient than shrinking the time step by a factor of hundreds.
import numpy as np
def bridge_hit_upper(x0, x1, upper, variance, rng):
if max(x0, x1) >= upper:
return True
p = np.exp(-2 * (upper-x0) * (upper-x1) / variance)
return rng.random() < p
def update_running_extrema(path):
return path.min(axis=1), path.max(axis=1)
Use bridge correction only where the process between nodes is conditionally Brownian. With stochastic volatility, jumps, or local volatility, it becomes an approximation and needs benchmark testing. A pseudo-random simulation should include confidence intervals; quasi-Monte Carlo can improve convergence but should be randomized to estimate numerical error.
Smile and model risk
Lookbacks are exposed to the entire path distribution, especially tails. A Black–Scholes model calibrated only to ATM implied volatility will rarely reproduce their market value. Local volatility matches vanilla smiles but may exaggerate spot-dependent future volatility; stochastic volatility gives different forward-smile behavior. Calibrate vanilla surfaces, test forward-starting options where liquid, and apply reserves when exotic quotes are unavailable.
The same monitoring issues arise in barrier options, but a lookback payoff changes smoothly as an extreme moves while a barrier can switch discontinuously from alive to dead. Lookbacks still have acute risk near a new record: a small spot move can reset the payoff’s state.
Hedging and controls
Track the current extrema as explicit trade state and reconcile them to the official fixing source. A missed corporate-action adjustment or a wrong timezone can change a lookback’s payoff permanently. Hedge delta dynamically, but expect jump and gap risk because a new extremum can be set between hedge times. Vega hedges require options spanning relevant strikes and maturities, not only ATM options.
Stress spot gaps, volatility skew changes, monitoring calendar errors, and model switches. Compare simulated prices to continuous-monitoring analytic results in the Black–Scholes limit and to fine-grid simulations for discrete schedules. These controls catch many bugs before a model-validation review does.
Key takeaways
- Lookbacks grant exposure to path maxima or minima, not only terminal spot.
- Continuous and discrete monitoring are economically different contracts.
- Brownian-bridge correction reduces extrema bias in diffusion Monte Carlo.
- Current extrema, data timestamps, and corporate actions are permanent valuation state.
- Smile, jumps, and gap risk make model and hedge uncertainty material.
