STRASMORE/EXPLORE 2,433 QUERIES

Time value left in AAPL contracts by depth in the money

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 When Short Options Get Assigned Early.

as of table 5×5read in context →
Time value left in AAPL contracts by depth in the money — 5 rows by 5 columns, computed from US exchange, SIP and OPRA data.
itm_depthcall_avg_vegaput_avg_vegacall_contractsput_contracts
under 1%0.2130.213702647
1 to 3%0.190.19711801140
3 to 5%0.1590.166989905
5 to 10%0.1210.1321612922
over 10%0.0720.1042582325
Rows × columns
5 × 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 Time value left in AAPL contracts by depth in the money, derived from the stored result.
ColumnTypeRangeNotes
itm_depth text 5 distinct values (1 to 3%, 3 to 5%, 5 to 10%…)
call_avg_vega number 0.072 to 0.213
put_avg_vega number 0.104 to 0.213
call_contracts number 702 to 2,582 count
put_contracts number 325 to 1,140 count

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
    depth_bucket                            AS itm_depth,
    round(avgIf(vega_f, side = 'call'), 3)  AS call_avg_vega,
    round(avgIf(vega_f, side = 'put'), 3)   AS put_avg_vega,
    countIf(side = 'call')                  AS call_contracts,
    countIf(side = 'put')                   AS put_contracts
FROM
(
    SELECT
        if(delta > 0, 'call', 'put') AS side,
        toFloat64(vega)              AS vega_f,
        if(delta > 0,
           toFloat64(underlying_close) / toFloat64(strike_price) - 1,
           toFloat64(strike_price) / toFloat64(underlying_close) - 1) AS depth,
        multiIf(depth < 0.01, 'under 1%',
                depth < 0.03, '1 to 3%',
                depth < 0.05, '3 to 5%',
                depth < 0.10, '5 to 10%',
                              'over 10%') AS depth_bucket
    FROM global_markets.options_greeks
    WHERE underlying_symbol = 'AAPL'
      AND date >= today() - 120
      AND iv_converged = 1
      AND volume > 0
      AND days_to_expiry BETWEEN 3 AND 30
      AND toFloat64(underlying_close) > 0
      AND toFloat64(strike_price) > 0
      AND toFloat64(delta) != 0
      AND depth > 0
)
GROUP BY depth_bucket
HAVING countIf(side = 'call') > 0 AND countIf(side = 'put') > 0
ORDER BY min(depth)
⌘/Ctrl + Enter
More from this analysisWhen Short Options Get Assigned Early
AAPL calls 1 to 5 percent in the money, by days left to expiry ranking 6×4 Latest cash dividend per share, and what it is worth against the stock series 6×4 Put versus call implied volatility, near the money, 20 to 45 days out ranking 5×4 NVDA on July 17, 2026: the close and the post close window table 30×3 Friday close to Monday's first minute: absolute overnight move, 2023 to July 2026 ranking 8×4 Absolute move over the final 30 minutes of Friday sessions, 2023 to July 2026 ranking 8×4 See all 2,433 queries →