If you searched for gamma scalping - or for why your delta-hedged straddle made money on a day the market barely closed changed - this is the complete mechanical picture: the identity, the breakeven, the hedging tradeoffs, the entry conditions, and the data to run it on.
Gamma scalping, defined in one paragraph: gamma scalping is delta-hedging a long-gamma options position (typically an ATM straddle) so that each move in the underlying forces profitable re-hedges - buying dips and selling rips mechanically - while paying theta for the privilege. It converts an options position into a trade of realised volatility against the implied volatility you paid.
The identity that runs the whole strategy
Delta-hedge a long option continuously and the direction drops out. What remains, per small time step, is the canonical P&L decomposition:
dP&L ≈ ½ Γ S² (σ²realised − σ²implied) dt
Read it term by term. ½ΓS² is dollar gamma - how much delta the position manufactures per squared move. The bracket is the variance spread - realised variance delivered minus implied variance paid (the theta you bleed is the implied leg).
Everything about gamma scalping falls out of this line. You are not "trading options"; you are long realised variance and short implied variance, sized by dollar gamma. The strategy wins if, and only if, the underlying realises more than the options implied over the holding period. Re-hedging is merely the collection mechanism.
The same identity with the sign flipped is every premium seller's income statement, which is why realised vs implied is the spread that runs the entire volatility complex.
The breakeven, with live numbers
The intuitive version of the identity: each day, the position must move enough to pay that day's theta. For an ATM straddle the breakeven daily move is approximately:
breakeven ≈ S × IV / √252
On 2026-08-03, SPY closed at 758.34 with 30-day ATM implied vol around 13%. That prices a breakeven daily move of roughly 0.82%, or about 6.2 SPY points. Days that move more than that earn the long-gamma book money; days that move less bleed it.
And the regime context said bleed: VIX stood at 15.86 against an SPX 20-day realised of 12.48 - implied comfortably above realised, the normal volatility-risk-premium state in which the average long-gamma day loses. That single comparison is the entry gate for the whole strategy, and it is one API call (below).
The payoff curve is quadratic, because P&L tracks variance rather than the move itself.
Hedging frequency: the tradeoff nobody escapes
- Hedge continuously and P&L converges to the identity with minimal noise - but transaction costs scale with the number of hedges and eat the edge.
- Hedge rarely (daily, or at fixed delta bands) and costs drop, but P&L picks up path noise: you can realise high vol and still lose if the path whipsaws between your hedge points. The expected value is unchanged; the variance of outcomes grows.
- Band-based hedging (re-hedge when delta drifts past a threshold) is the standard practical compromise, with bands widened as costs rise. On index products with tight markets the costs are manageable; on single names the spread cost per hedge is a first-order input.
One practical asymmetry: scalping into a gap is not optional. Overnight gaps deliver realised variance with no opportunity to hedge along the way - which is precisely why gap-heavy names (earnings season, biotech) are where long gamma pays best, and why realised-vol estimators that ignore overnight moves mislead. Use an estimator that handles the open.
When long gamma actually pays
The identity says: when realised beats implied. The measurable states where that happens:
- Negative VRP episodes. The volatility risk premium is positive most of the time (that is the premium), but it inverts around shocks and regime breaks. A negative or deeply compressed VRP z-score is the systematic entry flag.
- Pre-event ramps. Into earnings, implied rises but realised rises with it through the ramp; the post-event crush is the exit, not the trade.
- Short-gamma dealer regimes. When the dealer complex is short gamma, forced hedging amplifies moves - realised vol runs hot relative to quiet-regime pricing.
The biggest gamma scalper in the market is the dealer complex
Here is the connection that makes gamma scalping more than a niche strategy. When dealers are net long gamma, the entire market-making complex is running this exact playbook at index scale - buying every dip and selling every rally to stay delta-neutral.
That mechanical flow is why long-gamma regimes pin and dampen markets, and why GEX - the aggregate dollar gamma of that complex, by strike - predicts intraday behaviour. When you gamma scalp, you are joining (or opposing) the largest systematic vol trader in existence, and the signed polarity of dealer gamma tells you which side they are on today.
Running the numbers on the API
import requests
BASE, H = "https://lab.flashalpha.com", {"X-Api-Key": KEY}
vrp = requests.get(f"{BASE}/v1/vrp/SPY", headers=H).json()
rv = requests.get(f"{BASE}/v1/volatility/SPY", headers=H).json()
# The gate: is implied trading rich or cheap to realised?
# vrp payload carries the IV-RV spread, z-score and percentile;
# volatility payload carries the realised-vol estimators.
print(vrp)
print(rv)
The volatility endpoint carries the implied and realised series for the comparison. The VRP dashboard adds the z-score and percentile that place today's spread against the name's own history - the systematic version of the VIX-vs-realised eyeball test - and its historical counterpart replays the series point-in-time for backtests (SPY minute data from 2017-01-03). For per-strike dollar gamma to size the position, the greeks endpoint serves the chain live.
FAQ
What is gamma scalping in simple terms?
Buy a straddle so you make money if the stock moves either way. As it moves, keep flattening your directional exposure - selling some stock after rallies, buying after dips. Each flatten locks in profit from the move. If the stock moves around a lot, the locked-in profits exceed the daily cost of owning the options; if it goes quiet, they do not.
Is gamma scalping profitable?
Only when realised volatility exceeds the implied volatility you paid - which is the exception, not the rule, because implied usually carries a premium. Profitability is a timing question: the strategy pays around shocks, events, and short-gamma dealer regimes, and bleeds in the long calm stretches. Measure the spread before entering; do not run it as a permanent posture.
How often should you re-hedge?
There is no free choice: frequent hedging reduces path noise but multiplies transaction costs; infrequent hedging is cheaper but noisier. Delta bands with band width scaled to the name's spread cost is standard practice. The expected P&L is set by realised-vs-implied either way - hedging style mainly chooses your variance around it.
Is it the same as what market makers do?
Mechanically yes - dealers delta-hedge their books continuously, and when they are net long gamma the whole complex is gamma scalping against the market, which dampens volatility. The difference is intent: dealers hedge inventory they were paid a spread to carry; a gamma scalper chooses the position to express a realised-vol view.
Wrapping up
Gamma scalping is the cleanest expression of the only question in volatility trading: will realised beat implied? The identity ½ΓS²(RV²-IV²) decides the outcome, the breakeven daily move (about 0.82% for SPY at August 2026 pricing) makes it concrete, and the implied-vs-realised spread that gates the trade is one volatility call away.
Originally published at flashalpha.com.
Top comments (0)