STRASMORE/EXPLORE 2,549 QUERIES

contract_cost

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 ranking 5×3read in context →
contract_cost — 5 rows by 3 columns, computed from US exchange, SIP and OPRA data.
symbolpremium_usdone_contract_usd
MSFT14.631462.67
SPY12.111210.52
NVDA8.74873.85
AAPL8.23822.69
KO1.58157.61
Rows × columns
5 × 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 contract_cost, derived from the stored result.
ColumnTypeRangeNotes
symbol text 5 distinct values (AAPL, KO, MSFT…)
premium_usd number 1.58 to 14.63 US dollars
one_contract_usd number 157.61 to 1,462.67 US dollars

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 symbol,
    round(avg(toFloat64(option_close)), 2)       AS premium_usd,
    round(100 * avg(toFloat64(option_close)), 2) AS one_contract_usd
FROM global_markets.options_greeks
WHERE underlying_symbol IN ('AAPL', 'MSFT', 'NVDA', 'SPY', 'KO')
  AND date BETWEEN '2026-06-01' AND '2026-06-30'
  AND iv_converged = 1
  AND volume > 0
  AND days_to_expiry BETWEEN 25 AND 35
  AND delta BETWEEN 0.45 AND 0.55
GROUP BY underlying_symbol
ORDER BY one_contract_usd DESC
⌘/Ctrl + Enter

Work with this data in your AI assistant

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