contract_notional
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-22, from eurex-option-codes-odax-odap-oesx.
| underlying | dollars_per_contract | deliverable_usd_label |
|---|---|---|
| SPY | 74560 | 74.56 thousand |
| QQQ | 72993 | 72.99 thousand |
| AAPL | 29710 | 29.71 thousand |
| IWM | 29242 | 29.24 thousand |
| KO | 7995 | 8.00 thousand |
- Rows × columns
- 5 × 3
- Computed
- Completeness
- No missing values
- Source
- US exchange, SIP and OPRA market data
- Licence
- Strasmore terms · free, no signup
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
underlying |
text | 5 distinct values (AAPL, IWM, KO…) | |
dollars_per_contract |
number | 7,995 to 74,560 | |
deliverable_usd_label |
text | 5 distinct values |
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
underlying_symbol AS underlying,
round(toFloat64(max(underlying_close)) * 100, 0) AS dollars_per_contract,
formatReadableQuantity(round(toFloat64(max(underlying_close)) * 100, 0)) AS deliverable_usd_label
FROM global_markets.options_greeks
WHERE date = '2026-06-17'
AND underlying_symbol IN ('SPY', 'QQQ', 'IWM', 'AAPL', 'KO')
AND volume > 0
GROUP BY underlying_symbol
ORDER BY dollars_per_contract DESC