Final-day call prices by where the strike sat against the price
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-09, from How Event Contracts Settle: Payout and Fees.
| strike_vs_spot | avg_traded_price | avg_intrinsic_value |
|---|---|---|
| 3% ITM | 20.75 | 19.26 |
| 2.5% ITM | 17.43 | 15.79 |
| 2% ITM | 13.65 | 12.34 |
| 1.5% ITM | 10.04 | 8.72 |
| 1% ITM | 6.64 | 5.18 |
| 0.5% ITM | 3.83 | 1.77 |
| at the money | 1.74 | 0 |
| 0.5% OTM | 0.65 | 0 |
| 1% OTM | 0.22 | 0 |
| 1.5% OTM | 0.08 | 0 |
| 2% OTM | 0.04 | 0 |
| 2.5% OTM | 0.02 | 0 |
- Rows × columns
- 12 × 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 |
|---|---|---|---|
strike_vs_spot |
text | 12 distinct values (0.5% ITM, 0.5% OTM, 1% ITM…) | |
avg_traded_price |
number | 0.02 to 20.75 | US dollars |
avg_intrinsic_value |
number | 0 to 19.26 |
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
SELECT
multiIf(
bucket < 0, concat(toString(abs(round(100 * bucket, 1))), '% ITM'),
bucket = 0, 'at the money',
concat(toString(round(100 * bucket, 1)), '% OTM')) AS strike_vs_spot,
round(avg(price), 2) AS avg_traded_price,
round(avg(payoff_now), 2) AS avg_intrinsic_value
FROM
(
SELECT
floor((toFloat64(strike_price) / toFloat64(underlying_close) - 1) / 0.005) * 0.005 AS bucket,
toFloat64(option_close) AS price,
greatest(toFloat64(underlying_close) - toFloat64(strike_price), 0.0) AS payoff_now
FROM global_markets.options_greeks
WHERE underlying_symbol = 'SPY'
AND option_type IN ('call', 'C')
AND date >= '2026-01-02'
AND date < '2026-07-01'
AND volume > 0
AND iv_converged = 1
AND days_to_expiry <= 1
AND abs(toFloat64(strike_price) / toFloat64(underlying_close) - 1) <= 0.03
)
GROUP BY bucket
ORDER BY 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 analysisHow Event Contracts Settle: Payout and Fees
Traded price against intrinsic value, by days to expiry
table 30×4
→
Where SPY option volume sits across the last 30 days of contract life
table 30×2
→
Buyer and seller collateral at every contract price
ranking 19×4
→
Return on collateral for each side, by contract price
ranking 13×4
→
A 60 cent contract, annualised across holding periods
ranking 7×3
→
Near the money SPY put marks, May to June 2026
series 41×4
→
See all 2,170 queries →