Signed SPY gamma exposure by expiry, next three weeks
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.
| expiry | call_gex_bn | put_gex_bn | net_gex_bn |
|---|---|---|---|
| Aug 20 | 27.78 | -18 | 9.79 |
| Aug 21 | 7.78 | -7.14 | 0.64 |
| Aug 24 | 1.68 | -1.02 | 0.67 |
| Aug 25 | 0.49 | -0.51 | -0.02 |
| Aug 26 | 0.5 | -0.46 | 0.04 |
| Aug 27 | 0.21 | -0.14 | 0.07 |
| Aug 28 | 0.65 | -0.53 | 0.13 |
| Aug 31 | 0.29 | -0.44 | -0.15 |
| Sep 1 | 0.04 | -0.03 | 0.02 |
| Sep 2 | 0.02 | -0.03 | -0.02 |
| Sep 4 | 0.16 | -0.25 | -0.09 |
- Rows × columns
- 11 × 4
- 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 |
|---|---|---|---|
expiry |
text | 11 distinct values (Aug 20, Aug 21, Aug 24…) | |
call_gex_bn |
number | 0.02 to 27.78 | |
put_gex_bn |
number | -18 to -0.03 | |
net_gex_bn |
number | -0.15 to 9.79 |
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
formatDateTime(expiry_date, '%b %e') AS expiry,
round(sumIf(gex, side = 'call') / 1e9, 2) AS call_gex_bn,
round(-sumIf(gex, side = 'put') / 1e9, 2) AS put_gex_bn,
round((sumIf(gex, side = 'call') - sumIf(gex, side = 'put')) / 1e9, 2) AS net_gex_bn
FROM
(
SELECT
expiration_date AS expiry_date,
if(lower(option_type) LIKE 'c%', 'call', 'put') AS side,
toFloat64(gamma) * toFloat64(volume) * 100
* pow(toFloat64(underlying_close), 2) * 0.01 AS gex
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 21
)
GROUP BY expiry_date
ORDER BY expiry_date
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
The same chain, a different question: in the money value by settlement price
ranking 23×2
→
Gross SPY call and put gamma against the net, trailing 60 calendar days
series 41×5
→
SPY gamma exposure by strike, latest session, contracts inside 30 days
table 23×5
→
SPY options median spread by expiration date, near-the-money strikes only
ranking 25×4
→
SPY contracts traded by strike, July 17 2026 expiry
ranking 22×3
→
A 15% cap and 9% buffer, seen from three entry points
ranking 21×4
→
See all 2,170 queries →