SPY gamma exposure by strike, latest session, contracts inside 30 days
Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-22, from Open-Source GEX Dashboard: How It Works.
| strike | call_gex_musd | put_gex_musd | net_gex_musd | snapshot_label |
|---|---|---|---|---|
| $759 | 16.5 | -120.8 | -104.3 | Aug 19, 2026 |
| $760 | 27.6 | -1130.6 | -1103 | Aug 19, 2026 |
| $761 | 15.6 | -271.8 | -256.3 | Aug 19, 2026 |
| $762 | 13.1 | -367.1 | -354 | Aug 19, 2026 |
| $763 | 15.7 | -479 | -463.3 | Aug 19, 2026 |
| $764 | 17.9 | -791.2 | -773.3 | Aug 19, 2026 |
| $765 | 140.7 | -2128.1 | -1987.4 | Aug 19, 2026 |
| $766 | 62.6 | -1327.7 | -1265.1 | Aug 19, 2026 |
| $767 | 91.8 | -2175.9 | -2084.2 | Aug 19, 2026 |
| $768 | 1200.6 | -3032.3 | -1831.7 | Aug 19, 2026 |
| $769 | 3382.9 | -5123.3 | -1740.4 | Aug 19, 2026 |
| $770 | 10230.7 | -6092.4 | 4138.3 | Aug 19, 2026 |
| $771 | 7643.6 | -1969.5 | 5674.2 | Aug 19, 2026 |
| $772 | 6034 | -898.9 | 5135.1 | Aug 19, 2026 |
| $773 | 3442.9 | -332.5 | 3110.4 | Aug 19, 2026 |
| $774 | 2278.9 | -115.2 | 2163.7 | Aug 19, 2026 |
| $775 | 2290.1 | -240.4 | 2049.7 | Aug 19, 2026 |
| $776 | 880.2 | -476.7 | 403.5 | Aug 19, 2026 |
| $777 | 547.1 | -95.7 | 451.4 | Aug 19, 2026 |
| $778 | 382.9 | -32.2 | 350.7 | Aug 19, 2026 |
| $779 | 162.6 | -73.3 | 89.2 | Aug 19, 2026 |
| $780 | 500.7 | -342 | 158.6 | Aug 19, 2026 |
| $781 | 78.4 | -53 | 25.4 | Aug 19, 2026 |
- Rows × columns
- 23 × 5
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
strike |
text | 23 distinct values ($759, $760, $761…) | |
call_gex_musd |
number | 13.1 to 10,230.7 | |
put_gex_musd |
number | -6,092.4 to -32.2 | |
net_gex_musd |
number | -2,084.2 to 5,674.2 | |
snapshot_label |
text | 1 distinct value (Aug 19, 2026) |
Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.
the exact SQL behind every number
SELECT
concat('$', toString(round(k))) AS strike,
round(sumIf(gex, side = 'call') / 1e6, 1) AS call_gex_musd,
round(-sumIf(gex, side = 'put') / 1e6, 1) AS put_gex_musd,
round((sumIf(gex, side = 'call') - sumIf(gex, side = 'put')) / 1e6, 1) AS net_gex_musd,
any(snapshot_label) AS snapshot_label
FROM
(
SELECT
toFloat64(strike_price) AS k,
if(lower(option_type) LIKE 'c%', 'call', 'put') AS side,
toFloat64(gamma) * toFloat64(volume) * 100
* pow(toFloat64(underlying_close), 2) * 0.01 AS gex,
formatDateTime(date, '%b %e, %Y') AS snapshot_label
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND date = (SELECT max(date) FROM global_markets.options_greeks WHERE underlying_symbol = 'SPY')
AND iv_converged = 1
AND volume > 0
AND days_to_expiry BETWEEN 0 AND 30
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.015
)
GROUP BY k
ORDER BY k
Run your own version of this
The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.
More from this analysisOpen-Source GEX Dashboard: How It Works
Gross SPY call and put gamma against the net, trailing 60 calendar days
series 41×5
→
The same chain, a different question: in the money value by settlement price
ranking 23×2
→
Signed SPY gamma exposure by expiry, next three weeks
ranking 11×4
→
Median theta and implied volatility by days to expiry: near-the-money SPY contracts, H1 2026
table 60×4
→
Total payout to option holders at each candidate settlement price, SPY July 17 2026
table 36×2
→
NVDA on July 17, 2026: the close and the post close window
table 30×3
→
See all 2,170 queries →