STRASMORE/EXPLORE 2,170 QUERIES

SPY option delta buckets, with the doubling rule applied (Jan to Jun 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-08-07, from Probability of Touch vs Probability ITM.

as of ranking 9×4read in context →
SPY option delta buckets, with the doubling rule applied (Jan to Jun 2026) — 9 rows by 4 columns, computed from US exchange, SIP and OPRA data.
short_strikeapprox_itm_pctapprox_touch_pctcontract_days
5 delta6.212.45598
10 delta9.919.88602
15 delta14.929.86758
20 delta2039.95730
25 delta2549.95211
30 delta3059.94768
35 delta3569.94427
40 delta40804260
45 delta43.887.52073
Rows × columns
9 × 4
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 option delta buckets, with the doubling rule applied (Jan to Jun 2026), derived from the stored result.
ColumnTypeRangeNotes
short_strike text 9 distinct values (10 delta, 15 delta, 20 delta…)
approx_itm_pct number 6.2 to 43.8 percent
approx_touch_pct number 12.4 to 87.5 percent
contract_days number 2,073 to 8,602

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 graded AS (
    SELECT
        toUInt16(round(100 * abs(delta) / 5) * 5) AS delta_bucket,
        abs(delta)                                AS abs_delta
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'SPY'
      AND date >= '2026-01-01'
      AND date <  '2026-07-01'
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry BETWEEN 20 AND 45
      AND abs(delta) BETWEEN 0.05 AND 0.45
)
SELECT
    concat(toString(delta_bucket), ' delta') AS short_strike,
    round(100 * avg(abs_delta), 1)           AS approx_itm_pct,
    round(200 * avg(abs_delta), 1)           AS approx_touch_pct,
    count()                                  AS contract_days
FROM graded
GROUP BY delta_bucket
ORDER BY delta_bucket

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 analysisProbability of Touch vs Probability ITM
SPY through July 2024 against a level 2% above the July 1 close series 28×6 SPY: touched versus finished above, 21-session forward windows since 2011 table 4×5 One SPY $740 call's price over its 7-week life (expired Jun 18 2026) series 31×2 The Tesla $400 May call through its Q1 earnings (Apr 8 - May 6 2026) series 21×5 Near-the-money Tesla May-expiry implied volatility around the print series 21×3 Median greeks by time to expiration: every near-the-money US option, July 15, 2026 table 5×6 See all 2,170 queries →