STRASMORE/EXPLORE 2,500 QUERIES

Gross SPY call and put gamma against the net, trailing 60 calendar 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 series 41×5read in context →
Gross SPY call and put gamma against the net, trailing 60 calendar days — 41 rows by 5 columns, computed from US exchange, SIP and OPRA data.
session_datesession_labelcall_gex_bnput_gex_bnnet_gex_bn
2026-07-22Jul 2221.03-45.41-24.37
2026-07-23Jul 2327.19-31.65-4.46
2026-07-24Jul 2425.58-29.06-3.48
2026-07-27Jul 2729.37-29.330.04
2026-07-28Jul 2825.3-15.349.96
2026-07-29Jul 2920.42-22.75-2.33
2026-07-30Jul 3031.09-22.768.33
2026-07-31Jul 3124.54-35.11-10.58
2026-08-03Aug 357.24-38.4918.75
2026-08-04Aug 458.91-31.0727.84
2026-08-05Aug 527.67-33.1-5.43
2026-08-06Aug 629.2-34.53-5.32
2026-08-07Aug 743.54-25.2918.25
2026-08-10Aug 1035.42-43.73-8.31
2026-08-11Aug 1127.06-27.58-0.52
2026-08-12Aug 1231.05-31.030.01
2026-08-13Aug 1360.48-36.2124.27
2026-08-14Aug 1434.51-30.344.16
2026-08-17Aug 1736.16-43-6.84
2026-08-18Aug 1823.38-40.49-17.11
2026-08-19Aug 1940.3-29.7310.58
2026-08-20Aug 2023.99-35.61-11.62
2026-08-21Aug 2135.85-21.7414.11
2026-08-24Aug 2428.19-35.66-7.47
2026-08-25Aug 2519.06-23.95-4.89
2026-08-26Aug 2619.14-11.717.42
2026-08-27Aug 2727.28-32.05-4.77
2026-08-28Aug 2835.54-32.892.65
2026-08-31Aug 3134.78-28.965.82
2026-09-01Sep 133.24-32.840.4
2026-09-02Sep 225.4-27.31-1.91
2026-09-03Sep 335.42-34.261.16
2026-09-04Sep 424.2-25.59-1.39
2026-09-08Sep 824.26-35.01-10.74
2026-09-09Sep 924.93-25.24-0.31
2026-09-10Sep 1016.75-28.57-11.82
2026-09-11Sep 1123.46-28.79-5.33
2026-09-14Sep 1428.07-27.750.33
2026-09-15Sep 1516.01-16.6-0.59
2026-09-16Sep 1631.68-22.718.97
2026-09-17Sep 1747.32-23.2224.11
Rows × columns
41 × 5
Period covered
to
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 Gross SPY call and put gamma against the net, trailing 60 calendar days, derived from the stored result.
ColumnTypeRangeNotes
session_date date 2026-07-22 to 2026-09-17
session_label text 41 distinct values (Aug 10, Aug 11, Aug 12…)
call_gex_bn number 16.01 to 60.48
put_gex_bn number -45.41 to -11.71
net_gex_bn number -24.37 to 27.84

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
    toString(d)                                                             AS session_date,
    formatDateTime(d, '%b %e')                                              AS session_label,
    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
        date                                                   AS d,
        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 >= today() - 60
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry BETWEEN 0 AND 45
)
GROUP BY d
ORDER BY d
⌘/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 SPY gamma exposure by strike, latest session, contracts inside 30 days table 23×5 Signed SPY gamma exposure by expiry, next three weeks ranking 11×4 One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 Daily single stock put/call ratio against its 21 session average series 84×4 Near-the-money implied volatility into a cash close (ATVI, 2023) series 83×4 See all 2,500 queries →