Introduction¶
A dealer who provides liquidity to clients does not hold a balanced book. Every trade that she wins adds to her inventory — a residual position that exposes her to adverse price movements until the position is unwound through the opposite trade or through an explicit hedge. Managing this residual risk is the hedging problem, and it is central to the economics of market-making: the spread charged to clients must compensate for the expected cost of hedging the resulting inventory, and the quality of the hedge determines how much of that spread is retained as profit.
The hedging problem takes two structurally different forms depending on the nature of the instrument. For flow products — bonds, swaps, FX forwards, equity shares — the risk is linear: the P&L of the position is a linear function of the change in the underlying market variable, and the hedge is a position in a correlated instrument that offsets this linear exposure. The theory here is deeply connected to regression analysis and factor models, and the main challenges are statistical (estimating the hedge ratio from historical data) and operational (executing the hedge efficiently in the presence of transaction costs).
For derivative instruments — options and other nonlinear payoff structures — the risk is path-dependent and nonlinear. The theoretical benchmark is the dynamic delta hedging strategy derived in the Black-Scholes-Merton (BSM) framework, which we introduced in Fair value estimation. In practice, BSM hedging is an idealization: continuous rebalancing is impossible, transaction costs are non-zero, and the model dynamics are at best approximate. The art of derivatives hedging consists in adapting this theoretical benchmark to the realities of market frictions, model error, and computational constraints.
A third dimension — particular to dealer markets — is the interaction between hedging and quote management. In the Avellaneda-Stoikov framework of Optimal Market Making, the dealer manages inventory through quote skewing: biasing bid and ask prices to attract trades in the direction that reduces inventory. Hedging in the market and skewing in quotes are substitutes, each with its own cost, and the optimal policy combines both. The connection between these two approaches and the conditions under which one dominates the other is a key result of this chapter.
The chapter is organised as follows. We begin with hedging flow products (Hedging Flow Products): minimum variance hedging (Minimum Variance Hedging), the compression of covariance structure via factor models and autoencoders (Factor Models and Compressed Hedging), sparse hedging under transaction costs (Hedging with Transaction Costs and Sparsity), the pre-hedging decision when an anticipated client order is not yet executed (Pre-hedging), and the unified analysis of skewing versus hedging (Skewing versus Hedging). We then turn to hedging derivatives (Hedging Derivatives): the discrete and transaction-cost-aware extension of BSM delta hedging (Dynamic Hedging in the Black-Scholes Framework), machine learning surrogates for large-scale Greeks computation (Accelerating Hedge Computations with Machine Learning), and the model-free deep hedging framework (Deep Hedging).
Hedging Flow Products¶
Flow inventory arises naturally in any market-making operation: the dealer sells when clients buy, buys when clients sell, and holds the resulting imbalance until it is absorbed by the opposite flow or hedged away. Although the relationship between the inventory position and its market value is linear in the underlying price change, the problem of finding the best hedge is non-trivial for at least three reasons. First, the inventory is typically spread across many instruments — different bonds, tenors, or currency pairs — and their joint covariance structure must be estimated from noisy data. Second, the set of available hedging instruments may be far smaller than the set of instruments in the book, requiring the dealer to project exposures onto a smaller hedge basis. Third, every hedge transaction incurs a cost, so hedging more granularly is not always better.
Minimum Variance Hedging¶
The simplest formulation asks: given a position of size in instrument , what static position in a basket of liquid hedge instruments minimises the variance of the hedged P&L over a given horizon?
Over a short interval , the unhedged P&L is . The hedged P&L is:
where and denote the price changes of the exposure and hedge instruments respectively. The variance of the hedged P&L is:
where and . Setting the gradient with respect to to zero gives the minimum variance hedge:
The optimal hedge ratio is exactly the vector of OLS regression coefficients from regressing on . This identification — hedging equals regression — is fundamental. The minimum residual variance is:
where is the coefficient of determination from the regression. A perfect hedge () eliminates all variance; a hedge with leaves 20% of the variance unexposed. The unhedgeable residual represents basis risk: the component of the exposure’s risk that is orthogonal to all available hedge instruments.
Estimation. In practice, the covariance matrix and the cross-covariance vector must be estimated from historical data. The most common choices are:
Rolling sample covariance: compute sample covariance over a window of past observations. A short window reduces the impact of stale data but increases estimation variance; a long window provides stability but assumes a stationary covariance structure.
Exponentially weighted moving average (EWMA): assign weight to the -th lag, with . This is the RiskMetrics approach Wilmott, 2007 and effectively sets the estimation window to observations.
Bayesian shrinkage: the Ledoit-Wolf estimator shrinks the sample covariance toward a structured target (e.g., the identity matrix), reducing the extreme eigenvalues that arise when is close to .
The hedge ratio inherits the estimation error of the covariance estimator and is itself a random variable. Its estimation error introduces a systematic downward bias in the in-sample that inflates the apparent hedge quality: the hedging performance measured on the same data used to compute will be better than its true out-of-sample performance.
Multi-instrument books. When the dealer holds instruments , each with position , the total unhedged P&L is . The hedged P&L with positions in hedge instruments is . The minimum variance hedge generalises to:
where contains the covariances between hedge and book instruments. Alternatively, the net exposure of the book in terms of the hedge instruments is , where is the matrix of regression betas, and this is the quantity to hedge.
Factor Models and Compressed Hedging¶
In large books — a fixed income dealer might hold thousands of bond positions across many issuers and maturities — direct minimum variance hedging requires estimating an enormous covariance matrix. With instruments and observations (one year of daily data), the sample covariance is not even invertible. Factor models address this by compressing the covariance structure into a small number of latent risk factors.
The factor model. Assume the returns on the book instruments are driven by common factors :
where is the factor loading matrix and is an idiosyncratic residual with diagonal. The covariance matrix has the factor decomposition:
where . The minimum variance hedge in factor space requires matching the factor sensitivities of the book: the net exposure to each factor is , and hedging means choosing so that the hedge instruments absorb this exposure:
This is a system of linear equations in unknowns (assuming exactly hedge instruments), easily solved. When more hedge instruments are available, the system is under-determined and an additional criterion — minimum gross notional, minimum turnover, or maximum — is needed.
PCA hedging of the yield curve. In fixed income, the factors are naturally extracted from the principal components of the historical yield changes , where is the number of maturities on the curve. As shown in Principal Component Analysis, the PCA factors ordered by explained variance correspond to:
Level (): a near-parallel shift of the yield curve, explaining 70–85% of variance
Slope (): a steepening or flattening, explaining 10–15%
Curvature (): a butterfly, explaining 3–7%
Together, three factors typically explain over 95% of the joint variance of a developed-market yield curve.
For a bond with DV01 vector (dollar sensitivity to a one-basis-point shift at each maturity), the P&L under a yield change is . Projecting onto the PCA factors:
where is the factor DV01 — the sensitivity to a unit move in factor . Hedging the first three factors requires three liquid instruments (e.g., benchmark on-the-run bonds at 2-, 5-, and 10-year maturities) whose factor DV01s span the space, and the hedge ratios solve a linear system. Figure 1 shows the first three PCA factors of a simulated yield curve and the hedge performance.

Figure 1:Top row: sample yield curves (left) and the first three PCA eigenvectors (right), corresponding to level, slope, and curvature. Bottom row: out-of-sample P&L distribution for a bond position with no hedge (grey), a DV01-only hedge (blue), and a three-factor PCA hedge (orange). The PCA hedge substantially reduces variance; residual basis risk is the idiosyncratic component unexplained by the three factors.
Autoencoders for nonlinear factor hedging. The PCA decomposition is linear: it maps the yield curve into a linear subspace. When the yield curve dynamics contain significant nonlinearities — as they often do during stress periods when the curve can invert sharply or exhibit unusual curvature patterns — a linear projection into three factors can leave substantial unexplained variance that a nonlinear factor model would capture.
Autoencoders, introduced in Autoencoders, learn a nonlinear compressed representation. An autoencoder trained on a dataset of historical yield curves learns:
Encoder : compresses the yield curve to latent factors
Decoder : reconstructs the curve from the factors
The factor sensitivities of a bond for hedging purposes follow by the chain rule through the decoder:
computed by automatic differentiation. These nonlinear factor sensitivities replace the linear PCA projections as inputs to the hedge ratio calculation. The procedure is otherwise identical: choose hedge instruments whose latent sensitivities match those of the book.
In practice, the autoencoder approach is most valuable when the number of effective risk dimensions is small but the manifold is curved — a setting where PCA uses many more components than the autoencoder to achieve the same reconstruction accuracy.
Hedging with Transaction Costs and Sparsity¶
The minimum variance hedge uses all available instruments, potentially with large notionals. In practice, each hedge position is executed with bid-ask spread cost and must be rebalanced periodically as market conditions change. A hedge that uses 50 instruments may consume more in transaction costs than it saves in variance reduction. The goal of sparse hedging is to find a small subset of instruments that provides most of the variance reduction, accepting a mild increase in residual variance in exchange for much lower transaction costs.
The Lasso hedge. The most natural formulation adds an penalty on the hedge positions to the minimum variance objective:
The first bracket is the negative of the covariance between hedge and exposure — minimising it promotes variance reduction. The penalty encourages sparse solutions: for sufficiently large , many components of are set exactly to zero, leaving a small subset of active hedge instruments. As shown in Regularisation, the Lasso path traces out the solution as varies from 0 (full minimum variance solution) to (zero hedge): instruments enter the active set one by one in decreasing order of their marginal contribution to variance reduction. The tuning parameter is chosen by cross-validation or by explicit transaction cost accounting: set , where is the expected frequency of rebalancing.
Elastic net hedge. An extension combines and penalties:
The component (ridge penalty) stabilises the covariance estimate in the case of correlated hedge instruments, where the Lasso solution can be unstable (arbitrary allocation of weight among correlated instruments). The elastic net tends to select groups of correlated instruments together, which is desirable when several benchmark bonds are available and any of them would serve equally well.
Transaction-cost-adjusted objective. A more explicit treatment models the expected transaction cost of entering and maintaining the hedge. If the hedge is rebalanced times over the horizon and each rebalancing costs per unit in instrument , the full cost of a hedge is:
Minimising over gives a Lasso problem with for each instrument. This framing makes the dependence on rebalancing frequency explicit: a hedge that looks optimal at daily rebalancing may not be cost-effective at hourly rebalancing if transaction costs are high. Figure 2 shows the Lasso hedge path and the efficiency frontier of variance reduction versus gross notional for a fixed income book.

Figure 2:Left: Lasso hedge path — coefficient values as a function of the regularisation parameter . Each line corresponds to one hedge instrument; instruments with stronger partial correlation to the exposure enter first. Centre: residual variance as a function of , normalised by the unhedged variance; the Lasso achieves near-minimum variance with a fraction of the instruments. Right: the efficiency frontier in the (gross notional, residual variance) plane; each point corresponds to a value of , and the Pareto-optimal region is shaded.
Pre-hedging¶
The hedging frameworks above are reactive: they manage inventory that has already been accumulated. A dealer who anticipates a future client order faces a different decision: should she begin to hedge (or rather, position) in advance of the client trade? This is the pre-hedging problem, and it requires balancing the risk reduction from early positioning against the transaction cost of pre-trading.
Setup. At time , the dealer learns — with probability — that at time a client will request a trade of size (a sell order from the client, requiring the dealer to buy). Between and , the dealer can build a position in the underlying at trading rate , subject to:
Linear transaction costs: each unit of pre-trading costs in bid-ask spread, contributing per unit time
Inventory risk: holding the pre-hedge position exposes the dealer to market risk, penalized at rate per unit time (quadratic in position, consistent with the risk-averse objective in Optimal Market Making)
Outcome: if the order materialises (probability ), the dealer buys from the client at with a net position ; if it does not (probability ), the dealer holds the open pre-hedge position and must unwind it
The pre-hedging problem is therefore:
This is a variant of the Almgren-Chriss execution problem (Optimal Execution Theory) with an uncertain terminal target: the dealer wants to arrive at with position if she optimises entirely for the expected case, but deviations from this target in either direction carry inventory risk.
Optimal pre-hedge fraction. Under the linear-quadratic cost structure Muhle-Karbe et al., 2023, the optimal pre-hedge position at is a deterministic fraction of the client order:
where depends on the transaction cost , risk aversion , volatility , and horizon . The key limiting cases are instructive:
Zero transaction costs (): . The dealer pre-hedges the full expected order — rational given that pre-trading is free.
Zero risk aversion (): . The dealer does not pre-hedge since she is indifferent to inventory risk; pre-trading would be pure cost.
Large horizon (): the pre-hedge can be built gradually and at lower market impact, so increases.
Certain order (): ; the dealer fully pre-hedges.
The pre-hedge is executed gradually, at a rate that is constant (linear schedule) under the symmetric linear-quadratic problem, analogous to the Almgren-Chriss VWAP strategy. Figure 3 illustrates how the optimal pre-hedge fraction depends on the probability of the order and the ratio of transaction costs to inventory risk.

Figure 3:Optimal pre-hedge fraction as a function of the probability that the client order materialises (left) and as a function of the cost-to-risk ratio (right). At low probabilities or high costs relative to risk, pre-hedging is minimal; at high probabilities and low relative costs, the dealer pre-hedges close to the full expected order.
Regulatory and ethical dimensions. Pre-hedging intersects with market conduct regulation. A dealer who trades ahead of a known client order in a way that disadvantages the client — for example, by moving the price before executing the client trade — may violate best execution obligations or front-running prohibitions. The legal and regulatory treatment of pre-hedging varies across jurisdictions and instruments: regulators distinguish between hedging anticipated risk (generally permissible) and trading ahead of a client to benefit from the client’s subsequent market impact (generally not). The model above abstracts from these conduct dimensions but they are non-negligible in practice.
Skewing versus Hedging¶
The Avellaneda-Stoikov framework (Optimal Market Making) provides one answer to inventory management: adjust the dealer’s reservation price by (where is the net inventory and is the GLF skew coefficient), effectively offering better prices on trades that reduce the book and worse prices on trades that add to it. This is inventory management through skewing: no transaction in the hedge market is required, but the dealer accepts a lower win rate on positions that increase inventory.
An alternative is direct hedging: leave the quotes unchanged and trade in the market to offset the inventory, paying the bid-ask spread on the hedge transaction. These two approaches are not mutually exclusive — the optimal policy typically mixes both — but their cost structures differ fundamentally.
The cost of skewing. When the dealer skews her reservation price by , she offers a better price on the side that reduces inventory. This increases her win rate in the desired direction but reduces it on the other side, and the resulting trades are executed at a worse spread on average. The expected spread earned per trade decreases. If the arrival rate and price sensitivity are fixed, the dealer’s expected revenue per unit time decreases by an amount proportional to : skewing costs revenue.
The cost of hedging. A hedge trade of size incurs a one-way cost of (bid-ask spread plus market impact). This is a direct cash cost paid regardless of subsequent market moves.
The optimal policy. The dealer minimises total cost — inventory risk + skewing revenue loss + hedging transaction costs — by choosing both the skew and the hedging rate jointly. Barzykin et al. (2023) derive the optimal policy in a continuous-time setting where the dealer receives order flow at a Poisson rate and can hedge at any time at proportional cost. The main results are:
No-trade band: there exists an inventory band within which the dealer uses only skewing and does not hedge. Outside this band, both skewing and hedging are active simultaneously.
Hedging threshold: the threshold is increasing in transaction cost (wider band when hedging is more expensive) and decreasing in the arrival rate (narrower band when order flow is abundant, as skewing can quickly reduce inventory through the flow).
Optimal skew: inside the band, the optimal skew coefficient is identical to the GLF result; outside the band, the skew is reduced because the hedge absorbs part of the inventory correction, making aggressive skewing redundant.
Substitutability: when transaction costs are zero, the dealer hedges completely and never skews (the hedge is free, so skewing revenue loss is pure waste). When transaction costs are infinite, the dealer never hedges and sets the maximum admissible skew. For intermediate costs, the optimal policy is a weighted average.
The practical implication is that in liquid markets with tight bid-ask spreads (e.g., on-the-run government bonds, major FX pairs), hedging dominates and the dealer should maintain a small inventory through frequent market hedges. In illiquid markets (high-yield bonds, EM FX), hedging is expensive and the dealer should rely more heavily on quote skewing to attract the offsetting flow, tolerating larger inventory for longer. These qualitative prescriptions are consistent with standard market-making practice, and the Barzykin et al. (2023) framework provides the quantitative ratios.
Hedging Derivatives¶
The hedging of derivative positions presents qualitatively different challenges from flow hedging. A bond or FX position has a linear sensitivity to the underlying: the P&L is and the hedge is a fixed notional in a correlated instrument. An option position has a sensitivity that changes continuously as the underlying moves, requiring the hedge to be adjusted dynamically. Moreover, the sensitivity depends not only on the current price of the underlying but also on time to expiry and on the level of volatility — inputs that are themselves uncertain and path-dependent.
Dynamic Hedging in the Black-Scholes Framework¶
The BSM theory (Fair value estimation) establishes that a European option can be replicated by holding units of the underlying and a corresponding cash position. As long as this position is rebalanced continuously and there are no transaction costs, the replicating portfolio earns the risk-free rate — the option is fully hedged. In practice, both conditions fail. Rebalancing is discrete, and every transaction incurs a bid-ask spread.
The gamma-theta P&L identity. The P&L of a delta-hedged option position over an infinitesimal interval is:
where is the realised volatility of the underlying and is the implied volatility at which the option was purchased. This identity is the fundamental result of delta-hedging theory: a long option position (positive ) earns money when realized vol exceeds implied, and loses money otherwise. The dealer who buys an option and delta-hedges it is essentially taking a long position in realized variance and short a fixed notional of implied variance . The net P&L over the life of the option is:
Discrete hedging error. When the hedge is rebalanced at discrete intervals , the position is only delta-neutral at the rebalancing times and drifts in between. The hedging error per step arises from the second-order term in the Itô expansion:
The mean hedging error per step is zero (since ), but the variance is:
The total hedging error variance over steps scales as : hedging more frequently (smaller ) reduces the variance quadratically. However, each rebalancing incurs a transaction cost, creating an explicit tradeoff.
Transaction costs: the Leland adjustment. Leland (1985) showed that in the presence of proportional transaction costs per unit of stock traded, BSM pricing still applies but with an effective volatility:
For a dealer who sells an option (short ), the effective volatility is lower, reducing the replication cost. For a buyer of the option (long ), the effective volatility is higher — the option costs more to replicate because every rebalancing incurs a cost. The Leland adjustment provides a simple rule of thumb: multiply the transaction cost by to convert from per-trade cost to the annual cost embedded in the option price.
The Whalley-Wilmott no-trade band. Whalley & Wilmott (1997) extended Leland’s result to the optimal rebalancing frequency. Rather than rebalancing at fixed intervals, they showed that the cost-minimizing strategy is to rebalance only when the current delta deviates from the Black-Scholes delta by more than a threshold :
where is the dealer’s risk aversion. This no-trade band of width around the BSM delta is wider when transaction costs are high, when the option is near expiry (when is large and the position moves quickly), and when risk aversion is low. The intuition is that the dealer tolerates a larger deviation from the perfect hedge when the cost of closing the deviation exceeds the risk reduction achieved. Figure 4 illustrates the P&L distribution under BSM delta hedging and the Whalley-Wilmott band for a European call option.

Figure 4:Left: simulated P&L distribution for a short call position delta-hedged at different rebalancing frequencies (daily, weekly, monthly) and under the Whalley-Wilmott band policy (transaction cost ). Daily hedging provides the tightest distribution but highest total transaction costs. Right: gamma-theta P&L decomposition over a simulated path; the realized variance exceeds implied in this scenario, resulting in a positive net P&L for the option seller.
Greeks management in practice. In a large derivatives book, the dealer does not hedge each option individually; she manages the aggregate Greeks of the book: net delta , net gamma , net vega , and net theta . The delta is hedged by trading the underlying; vega is hedged by trading other options; gamma is harder to hedge cheaply (since liquid gamma-producing instruments are themselves options with their own bid-ask spreads). In a market-making context, the Greeks of each new trade are assessed relative to the existing book: a trade that reduces book gamma is valued at a tighter spread, while one that adds gamma is priced wider.
Accelerating Hedge Computations with Machine Learning¶
A derivatives book with thousands of positions requires computing Greeks for each instrument, across all risk scenarios used in risk management and for each potential new trade. Even with analytical formulas (such as BSM), this scales as where is the number of instruments and is the number of scenarios. For exotic options or complex structured products where no analytical formula exists, the computation relies on Monte Carlo simulation, which is orders of magnitude slower.
Machine learning surrogates — functions learned from a training set of pairs, where represents the state variables (spot, strike, maturity, vol, rate) and is the option price — offer a way to amortize the computational cost. Once trained, the surrogate can be evaluated in microseconds rather than milliseconds, and its derivative with respect to any input is obtained by automatic differentiation at negligible additional cost.
Monotonicity constraints. The key challenge for pricing surrogates is preserving no-arbitrage monotonicity: a call price must be non-increasing in strike (for fixed other parameters), non-decreasing in spot , non-decreasing in volatility , and non-decreasing in time to maturity (for vanilla options without discrete cash flows). A standard neural network violates these constraints in regions of the input space where training data are sparse, producing negative deltas or decreasing prices as volatility rises — outputs that would imply arbitrage in the option book.
As discussed in Monotone Neural Networks, monotone neural networks enforce these constraints at the architectural level by restricting weight matrices to be element-wise non-negative for the inputs that require monotone behavior, combined with a non-decreasing activation function. The practical approach for option pricing:
Train a monotone network on a grid of BSM prices (or on implied vol surface fits to market data)
Compute the delta via automatic differentiation:
Similarly obtain , , , and
The monotone constraint guarantees for calls, for puts, and everywhere — even far from the training distribution. This makes the surrogate safe for deployment in a live hedging system where out-of-sample inputs arise during stressed market conditions.
Speed gains. For a typical vanilla option portfolio with positions evaluated across market scenarios, a batched GPU evaluation of the neural network surrogate achieves speedups of to compared to individual BSM formula evaluations. For exotic options previously computed by Monte Carlo, the speedup can be much larger. The improved speed allows risk systems to run intraday or even in real-time, enabling faster hedging decisions.
Local volatility and stochastic volatility surrogates. Beyond BSM, surrogates are particularly valuable for models with no closed-form Greeks: local volatility models (where the vol surface is fitted to match all market prices), SABR, Heston, and rough volatility models. The training data is generated from calibrated model simulations, and the surrogate is trained to replicate the numerical Greeks across the full parameter space. The monotone architecture ensures the surrogate remains arbitrage-free in the interpolation and mild extrapolation regions.
Deep Hedging¶
The preceding sections extend the BSM framework to accommodate transaction costs, discrete rebalancing, and computational speed. They remain, however, model-based: the hedge ratio is derived from a parametric price dynamics model. Deep hedging Buehler et al., 2019 takes a fundamentally different approach: it frames hedging as a learning problem and optimises the hedging strategy directly, without specifying a model for the underlying dynamics.
Framework. Consider a derivative with payoff at maturity . A hedging strategy is a sequence of positions in a set of liquid hedging instruments , where is the vector of positions held between time steps and . The hedged P&L at maturity is:
where captures the proportional transaction costs of rebalancing. The first term is the option payoff; the second is the gain from the hedging positions; the third is the transaction cost of all rebalancing transactions.
Objective. The dealer minimises a convex risk measure of the (negated) hedged P&L:
Common choices of and their implications:
Variance: . Under zero transaction costs, the variance-minimising strategy recovers the BSM delta — deep hedging is a strict generalization.
CVaR at level : . This focuses optimisation on the worst- fraction of scenarios, producing a strategy that is robust to tail events at the expense of slightly worse median performance.
Entropic risk measure: . For small this approximates variance; for large it becomes highly sensitive to tail losses.
Neural network parameterisation. The hedging policy maps an information state to hedge ratios. The information state includes the current price , the previous position (needed to compute transaction costs), the time to expiry , and any auxiliary features such as a volatility estimate or realised variance. A feedforward MLP or, for long horizons, an LSTM reads this state and outputs the hedge ratios.
Training proceeds by simulation:
Generate paths: simulate market scenarios . These can come from a parametric model (GBM, Heston) for benchmarking, or from historical returns for a model-free approach.
Roll out policy: for each scenario, compute the strategy and the hedged P&L .
Compute risk measure: evaluate across the scenarios.
Gradient step: compute via backpropagation through the rollout, and update .
The gradient of a CVaR is estimated by identifying which scenarios fall in the tail and averaging the gradient over them — a standard technique in differentiable risk optimisation.
Convergence to BSM. Under GBM dynamics for the underlying, variance risk measure, and no transaction costs:
where is the BSM delta. This is both a theoretical validation — deep hedging recovers the known optimum in the classical setting — and a practical benchmark: on real data, any improvement over the BSM delta reflects genuine additional value from the machine learning component.
Transaction costs and the no-trade band. When transaction costs are nonzero, the optimal deep hedging policy learns a no-trade band analogous to the Whalley-Wilmott result: the policy does not trade when the current position is close to the BSM delta, and trades to bring the position back toward the delta only when the deviation becomes large. The width of the band is not imposed by the model but emerges from the optimisation — and it can adapt to the option’s gamma profile, the current volatility regime, and the remaining time to expiry in a way that the fixed analytical formula cannot. Figure 5 compares the P&L distributions and training dynamics.

Figure 5:Left: P&L distribution of deep hedging versus BSM delta hedging for a short call option with proportional transaction costs (, daily rebalancing, GBM underlying). Deep hedging achieves lower CVaR (0.95) by reducing rebalancing frequency. Centre: training curve — CVaR loss as a function of training epoch. Right: average hedge ratio as a function of moneyness, comparing the learned policy (solid) with the BSM delta (dashed); the deep hedging policy de-leverages slightly in-the-money (where is large and transaction costs are expensive to cover).
Model-free hedging on historical data. The most distinctive application is training the policy directly on historical market data rather than on simulated paths. In this setting, the resulting strategy captures empirical features of market dynamics — stochastic volatility clustering, jumps, liquidity effects — that no single parametric model fully reproduces. The key technical challenge is the small effective sample size: financial time series are short relative to the number of paths needed to train a reliable policy. Techniques such as data augmentation (generating synthetic paths that preserve statistical properties), bootstrapping, and variance reduction via control variates (e.g., using the BSM delta as a baseline surrogate) are used to improve sample efficiency.
Limitations and open problems. Deep hedging is powerful but not without limitations. The learned policy is specific to the market environment in which it was trained — a strategy optimised on low-volatility equity data may perform poorly during a vol spike. The choice of risk measure has a large impact on the hedging style, and the “right” risk measure for a given book depends on the dealer’s capital structure and regulatory constraints. Finally, the computational and data requirements for training deep hedging models are substantially higher than for BSM Greeks computation, which constrains their practical use to the largest derivatives operations. Active research focuses on improving the sample efficiency, interpretability, and robustness of deep hedging policies.
Exercises¶
Show that the minimum variance hedge ratio can be derived equivalently by projecting onto the span of in (the space of square-integrable random variables with inner product ). What does this projection interpretation say about basis risk?
A dealer holds a position in a 7-year bond and wants to hedge using 2-year and 10-year benchmark bonds. The DV01 vectors (sensitivities to yield changes at each maturity) and the PCA factors for the yield curve are given. Derive the hedge ratios that neutralise the first two PCA factors, and compare the resulting residual variance with the DV01-matched hedge.
Prove that the Lasso hedge path for the problem is equivalent to the standard Lasso regression with design matrix and response . What regularisation path algorithm applies?
Consider a dealer who delta-hedges a short call option with daily rebalancing. The option has , the underlying has , . (a) Compute the standard deviation of the daily hedging error. (b) If transaction costs are of the amount traded, compute the Whalley-Wilmott no-trade band width for . (c) Discuss qualitatively how the band width evolves as the option approaches expiry.
In the deep hedging framework with variance risk measure and no transaction costs, show that the optimal policy (BSM delta) achieves the global minimum of the variance objective. (Hint: use the fact that the BSM replicating portfolio achieves almost surely under GBM dynamics.)
Consider the skew-versus-hedge problem (Skewing versus Hedging) with a single instrument and symmetric arrival rates. Show that the no-trade band threshold from Barzykin et al. (2023) increases linearly in (the unit hedging cost) and decreases as (the inverse square root of the order arrival rate). Explain the economic intuition behind each dependence.
- Wilmott, P. (2007). Paul Wilmott Introduces Quantitative Finance (2nd ed.). John Wiley & Sons.
- Muhle-Karbe, J., Shi, Z., & Yang, C. (2023). A Wealth-Transfer Model for Pre-Hedging. SSRN Working Paper 4499729.
- Barzykin, A., Bergault, P., & Guéant, O. (2023). Algorithmic Market Making in Dealer Markets with Hedging and Market Impact. Mathematical Finance, 33(1), 41–79. 10.1111/mafi.12367
- Leland, H. E. (1985). Option Pricing and Replication with Transactions Costs. The Journal of Finance, 40(5), 1283–1301.
- Whalley, A. E., & Wilmott, P. (1997). An Asymptotic Analysis of an Optimal Hedging Model for Option Pricing with Transaction Costs. Mathematical Finance, 7(3), 307–324.
- Buehler, H., Gonon, L., Teichmann, J., & Wood, B. (2019). Deep Hedging. Quantitative Finance, 19(8), 1271–1291.