What Is the Gamma Flip Level?
Signed net gamma by strike and its running total, $mm of delta per 1% moveranking ·
2026-09-23 · 18×3
Average gamma per contract by strike, SPY, one pinned June 2026 sessionranking ·
2026-09-23 · 16×3
Daily ladder flip estimate against the close, SPY, June 2026series ·
2026-09-23 · 21×4
Ladder flip estimate by expiration window, one pinned June 2026 sessionranking ·
2026-09-23 · 4×3
Signed net gamma by strike and its running total, $mm of delta per 1% move
Signed net gamma by strike and its running total, $mm of delta per 1% move
| strike | strike_gamma_musd | running_gamma_musd |
|---|---|---|
| 705 | 42.4 | 42.4 |
| 710 | 130.8 | 173.2 |
| 715 | 41 | 214.2 |
| 720 | 99.8 | 314 |
| 725 | 200.1 | 514.1 |
| 730 | 253.4 | 767.5 |
| 735 | 442.2 | 1209.7 |
| 740 | 1162.1 | 2371.8 |
| 745 | 1536.8 | 3908.6 |
| 750 | -4878.8 | -970.2 |
| 755 | -881.6 | -1851.8 |
| 760 | -395.7 | -2247.5 |
| 765 | -115.3 | -2362.8 |
| 770 | -43.8 | -2406.6 |
| 775 | -26.8 | -2433.4 |
| 780 | -14 | -2447.4 |
| 785 | -5.6 | -2453 |
| 790 | -2.5 | -2455.5 |
the exact SQL behind every number
SELECT
strike,
strike_gamma_musd,
round(sum(strike_gamma_musd) OVER (ORDER BY strike_num), 1) AS running_gamma_musd
FROM
(
SELECT
toInt32(strike_price) AS strike_num,
toString(toInt32(strike_price)) AS strike,
round(sum(multiIf(lower(substring(option_type, 1, 1)) = 'c', -1.0, 1.0)
* toFloat64(gamma) * volume * 100
* pow(toFloat64(underlying_close), 2) * 0.01) / 1e6, 1) AS strike_gamma_musd
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND date = (
SELECT max(date)
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND date <= '2026-06-30'
)
AND iv_converged = 1
AND volume > 0
AND days_to_expiry <= 45
AND modulo(toInt32(strike_price), 5) = 0
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.06
GROUP BY strike_price
)
ORDER BY strike_num
More from this analysisWhat Is the Gamma Flip Level?
Average gamma per contract by strike, SPY, one pinned June 2026 session
ranking 16×3
→
Ladder flip estimate by expiration window, one pinned June 2026 session
ranking 4×3
→
Daily ladder flip estimate against the close, SPY, June 2026
series 21×4
→
Same-day SPY contracts by strike: the ten busiest, July 6, 2026
ranking 10×4
→
See all 2,648 queries →