STRASMORE/EXPLORE 2,549 QUERIES

time_value

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-24, from what-is-options-trading.

as of table 54×3read in context →
time_value — 54 rows by 3 columns, computed from US exchange, SIP and OPRA data.
dte_labelatm_premium_usdpremium_pct_of_spot
11.920.7
22.811.03
32.811.04
43.361.23
53.521.29
63.61.31
74.151.51
84.321.57
94.81.75
104.821.76
114.971.83
125.131.87
135.041.82
145.772.11
155.52.02
166.112.23
176.162.27
186.432.37
206.92.51
216.932.55
226.962.57
237.062.61
247.092.6
257.212.68
277.642.59
287.742.87
297.632.8
308.072.94
317.912.9
328.022.97
348.642.99
358.273.05
368.373.06
378.943.27
388.593.14
399.163.36
419.143.18
428.923.32
439.253.43
449.443.5
459.243.37
469.943.67
489.473.56
499.743.62
509.923.66
5110.253.71
5210.393.76
539.743.68
559.753.6
5610.623.95
5710.33.89
5811.074.16
5910.623.88
6011.364.06
Rows × columns
54 × 3
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, derived from the stored result.
ColumnTypeRangeNotes
dte_label text 54 distinct values (1, 10, 11…)
atm_premium_usd number 1.92 to 11.36 US dollars
premium_pct_of_spot number 0.7 to 4.16 percent

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(days_to_expiry)                                                   AS dte_label,
    round(avg(toFloat64(option_close)), 2)                                     AS atm_premium_usd,
    round(100 * avg(toFloat64(option_close) / toFloat64(underlying_close)), 2) AS premium_pct_of_spot
FROM global_markets.options_greeks
WHERE underlying_symbol = 'AAPL'
  AND date BETWEEN '2026-01-02' AND '2026-06-30'
  AND iv_converged = 1
  AND volume > 0
  AND delta BETWEEN 0.45 AND 0.55
  AND days_to_expiry BETWEEN 1 AND 60
GROUP BY days_to_expiry
ORDER BY days_to_expiry
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.