STRASMORE/EXPLORE 2,500 QUERIES

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

as of table 23×5read in context →
SPY gamma exposure by strike, latest session, contracts inside 30 days — 23 rows by 5 columns, computed from US exchange, SIP and OPRA data.
strikecall_gex_musdput_gex_musdnet_gex_musdsnapshot_label
$75137.3-187.1-149.8Sep 17, 2026
$752171.4-370.7-199.3Sep 17, 2026
$753104.2-394.8-290.6Sep 17, 2026
$754187.5-409.8-222.3Sep 17, 2026
$75584-1342.1-1258.1Sep 17, 2026
$756174.4-663.1-488.7Sep 17, 2026
$757343.9-909.8-565.9Sep 17, 2026
$758415.5-1017.3-601.8Sep 17, 2026
$7591047.6-2014.1-966.5Sep 17, 2026
$7605119.9-4440.2679.7Sep 17, 2026
$7614480.2-2592.81887.3Sep 17, 2026
$7627565.5-2604.44961.1Sep 17, 2026
$7637718.9-1463.66255.3Sep 17, 2026
$7644169.7-626.33543.3Sep 17, 2026
$7655518-552.94965Sep 17, 2026
$7661218.4-167.61050.8Sep 17, 2026
$7671286.3-78.71207.6Sep 17, 2026
$768832.2-83.2749.1Sep 17, 2026
$769461.6-60.6401Sep 17, 2026
$7701614.8-123.31491.5Sep 17, 2026
$771314.6-10.8303.8Sep 17, 2026
$772794.3-6.6787.6Sep 17, 2026
$773177.5-3.9173.7Sep 17, 2026
Rows × columns
23 × 5
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 SPY gamma exposure by strike, latest session, contracts inside 30 days, derived from the stored result.
ColumnTypeRangeNotes
strike text 23 distinct values ($751, $752, $753…)
call_gex_musd number 37.3 to 7,718.9
put_gex_musd number -4,440.2 to -3.9
net_gex_musd number -1,258.1 to 6,255.3
snapshot_label text 1 distinct value (Sep 17, 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.

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
    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
⌘/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
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,500 queries →