STRASMORE/EXPLORE 2,648 QUERIES

Daily ladder flip estimate against the close, SPY, June 2026

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-23, from What Is the Gamma Flip Level?.

as of series 21×4read in context →
Daily ladder flip estimate against the close, SPY, June 2026 — 21 rows by 4 columns, computed from US exchange, SIP and OPRA data.
datesession_labelspot_closeflip_estimate
2026-06-01Jun 1756.58757
2026-06-02Jun 2759.63759
2026-06-03Jun 3750.55753
2026-06-04Jun 4754.56756
2026-06-05Jun 5735.36742.5
2026-06-08Jun 8738.72742.5
2026-06-09Jun 9735.7735
2026-06-10Jun 10722.88729
2026-06-11Jun 11739.48730
2026-06-12Jun 12742.45740
2026-06-15Jun 15753.91754
2026-06-16Jun 16750.75751
2026-06-17Jun 17745.6744
2026-06-18Jun 18746.94746
2026-06-22Jun 22743.67745
2026-06-23Jun 23735.02734
2026-06-24Jun 24737.2732
2026-06-25Jun 25732.7735
2026-06-26Jun 26731.2733
2026-06-29Jun 29740.76739
2026-06-30Jun 30746.3746
Rows × columns
21 × 4
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 Daily ladder flip estimate against the close, SPY, June 2026, derived from the stored result.
ColumnTypeRangeNotes
date date 2026-06-01 to 2026-06-30
session_label text 21 distinct values (Jun 1, Jun 10, Jun 11…)
spot_close number 722.88 to 759.63 US dollars
flip_estimate number 729 to 759

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 date,
    formatDateTime(d, '%b %e')        AS session_label,
    round(any(spot), 2)               AS spot_close,
    round(argMax(strike, running), 2) AS flip_estimate
FROM
(
    SELECT
        d,
        spot,
        strike,
        sum(net_gamma) OVER (PARTITION BY d ORDER BY strike) AS running
    FROM
    (
        SELECT
            date                              AS d,
            toFloat64(strike_price)           AS strike,
            any(toFloat64(underlying_close))  AS spot,
            sum(multiIf(lower(substring(option_type, 1, 1)) = 'c', -1.0, 1.0)
                * toFloat64(gamma) * volume * 100) AS net_gamma
        FROM global_markets.options_greeks
        WHERE underlying_symbol = 'SPY'
          AND date BETWEEN '2026-06-01' AND '2026-06-30'
          AND iv_converged = 1
          AND volume > 0
          AND days_to_expiry <= 45
          AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) < 0.15
        GROUP BY d, strike
    )
)
GROUP BY d
ORDER BY d
⌘/Ctrl + Enter

このデータをAIアシスタントで使う

このページのデータで、すぐにクエリできる状態で開きます。無料、アカウント不要。

More from this analysisWhat Is the Gamma Flip Level?
Signed net gamma by strike and its running total, $mm of delta per 1% move ranking 18×3 → Average gamma per contract by strike, SPY, one pinned June 2026 session ranking 16×3 → Ladder flip estimate by expiration window, one pinned June 2026 session ranking 4×3 → Same-day SPY contracts by strike: the ten busiest, July 6, 2026 ranking 10×4 → July 6, 2026: top roots by same-day-expiry options volume ranking 8×3 → July 6, 2026: whole-tape options volume by days to expiry ranking 5×3 → See all 2,648 queries →