STRASMORE/EXPLORE 2,500 QUERIES

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-09-20, from Open-Source GEX Dashboard: How It Works.

as of ranking 11×4read in context →
Signed SPY gamma exposure by expiry, next three weeks — 11 rows by 4 columns, computed from US exchange, SIP and OPRA data.
expirycall_gex_bnput_gex_bnnet_gex_bn
Sep 1836.8-17.219.6
Sep 213.77-1.632.13
Sep 220.88-0.450.43
Sep 230.44-0.350.09
Sep 240.31-0.320
Sep 252.24-0.981.26
Sep 280.24-0.180.06
Sep 290.04-0.030.01
Sep 300.67-0.580.09
Oct 10.04-0.04-0.01
Oct 20.56-0.260.31
Rows × columns
11 × 4
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Signed SPY gamma exposure by expiry, next three weeks, derived from the stored result.
ColumnTypeRangeNotes
expiry text 11 distinct values (Oct 1, Oct 2, Sep 18…)
call_gex_bn number 0.04 to 36.8
put_gex_bn number -17.2 to -0.03
net_gex_bn number -0.01 to 19.6

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

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
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

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 In-sample rank versus out-of-sample Sharpe, same 24 cells ranking 24×4 A 24-cell moving-average grid on SPY, ranked by Sharpe ranking 24×2 See all 2,500 queries →