STRASMORE/EXPLORE 2,170 QUERIES

Yes and No probabilities across one SPY chain: call side, put side, and the pair total

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-08-03, from Event Contract Prices as Probabilities.

as of table 8×5read in context →
Yes and No probabilities across one SPY chain: call side, put side, and the pair total — 8 rows by 5 columns, computed from US exchange, SIP and OPRA data.
strike_vs_spotyes_prob_pctno_prob_pctpair_total_pctstrikes
-8% vs spot91.67.899.54
-6% vs spot91.211.5102.75
-4% vs spot80.618.398.913
-2% vs spot68.829.898.613
0% vs spot54.145.799.815
+2% vs spot36.263.399.511
+4% vs spot18.481.9100.37
+6% vs spot3.682.586.21
Rows × columns
8 × 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 Yes and No probabilities across one SPY chain: call side, put side, and the pair total, derived from the stored result.
ColumnTypeRangeNotes
strike_vs_spot text 8 distinct values (+2% vs spot, +4% vs spot, +6% vs spot…)
yes_prob_pct number 3.6 to 91.6 percent
no_prob_pct number 7.8 to 82.5 percent
pair_total_pct number 86.2 to 102.7 percent
strikes number 1 to 15

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.

the exact SQL behind every number
WITH chain AS (
    SELECT strike_price,
           toFloat64(any(underlying_close)) AS spot,
           avgIf(delta, delta > 0) AS call_delta,
           avgIf(-delta, delta < 0) AS put_delta_abs,
           countIf(delta > 0) AS calls,
           countIf(delta < 0) AS puts
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND date = toDate('2026-06-30')
      AND expiration_date = toDate('2026-07-31')
      AND iv_converged = 1
      AND volume > 0
    GROUP BY strike_price
    HAVING calls > 0 AND puts > 0
),
banded AS (
    SELECT toInt32(round(100 * (toFloat64(strike_price) / spot - 1) / 2) * 2) AS band,
           call_delta,
           put_delta_abs
    FROM chain
)
SELECT concat(if(band > 0, '+', ''), toString(band), '% vs spot') AS strike_vs_spot,
       round(100 * avg(call_delta), 1) AS yes_prob_pct,
       round(100 * avg(put_delta_abs), 1) AS no_prob_pct,
       round(100 * avg(call_delta + put_delta_abs), 1) AS pair_total_pct,
       count() AS strikes
FROM banded
WHERE abs(band) <= 8
GROUP BY band
ORDER BY band

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisEvent Contract Prices as Probabilities
Implied probability vs what happened: SPY calls 30 days from expiry, 2022 through June 2026 ranking 10×4 How a near coin flip resolves: average implied probability by checkpoint, split by outcome ranking 6×4 Contracts priced near a coin flip: implied vs realized outcome by name, 2023 through June 2026 ranking 6×4 Implied probability by quote format, illustrative quotes ranking 5×2 De-vig methods on one lopsided market, -750 against +475 ranking 4×3 Book sum and overround on four illustrative markets ranking 4×3 See all 2,170 queries →