STRASMORE/EXPLORE 2,648 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,648 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

What Is the Gamma Flip Level?
Signed net gamma by strike and its running total, $mm of delta per 1% moveranking · 2026-09-23 · 18×3Preview: 16 ranked values, largest first. Average gamma per contract by strike, SPY, one pinned June 2026 sessionranking · 2026-09-23 · 16×3Preview: 16 ranked values, smallest first. Daily ladder flip estimate against the close, SPY, June 2026series · 2026-09-23 · 21×4Preview: a 16-point series, ending lower. Ladder flip estimate by expiration window, one pinned June 2026 sessionranking · 2026-09-23 · 4×3Preview: 4 ranked values, largest first.
Signed net gamma by strike and its running total, $mm of delta per 1% move

Signed net gamma by strike and its running total, $mm of delta per 1% move

most recentas of ranking 18×3read in context →
Signed net gamma by strike and its running total, $mm of delta per 1% move — 18 rows by 3 columns, computed from US exchange, SIP and OPRA data.
strikestrike_gamma_musdrunning_gamma_musd
70542.442.4
710130.8173.2
71541214.2
72099.8314
725200.1514.1
730253.4767.5
735442.21209.7
7401162.12371.8
7451536.83908.6
750-4878.8-970.2
755-881.6-1851.8
760-395.7-2247.5
765-115.3-2362.8
770-43.8-2406.6
775-26.8-2433.4
780-14-2447.4
785-5.6-2453
790-2.5-2455.5
the exact SQL behind every number
SELECT
    strike,
    strike_gamma_musd,
    round(sum(strike_gamma_musd) OVER (ORDER BY strike_num), 1) AS running_gamma_musd
FROM
(
    SELECT
        toInt32(strike_price)           AS strike_num,
        toString(toInt32(strike_price)) AS strike,
        round(sum(multiIf(lower(substring(option_type, 1, 1)) = 'c', -1.0, 1.0)
                  * toFloat64(gamma) * volume * 100
                  * pow(toFloat64(underlying_close), 2) * 0.01) / 1e6, 1) AS strike_gamma_musd
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND date = (
            SELECT max(date)
            FROM global_markets.options_greeks
            WHERE underlying_symbol = 'SPY'
              AND date <= '2026-06-30'
          )
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry <= 45
      AND modulo(toInt32(strike_price), 5) = 0
      AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.06
    GROUP BY strike_price
)
ORDER BY strike_num
$