What one contract controls: SPX, SPY and XSP
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-22, from SPX vs SPY Options: Which One to Trade.
| ticker | priced_on | quoted_level | contract_notional_usd |
|---|---|---|---|
| SPX | Aug 21, 2026 | 7659 | 765912 |
| SPY | Aug 21, 2026 | 766 | 76591 |
| XSP | Aug 21, 2026 | 766 | 76591 |
- Rows × columns
- 3 × 4
- 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 |
|---|---|---|---|
ticker |
text | 3 distinct values (SPX, SPY, XSP) | |
priced_on |
text | 1 distinct value (Aug 21, 2026) | |
quoted_level |
text | 2 distinct values (7659, 766) | |
contract_notional_usd |
number | 76,591 to 765,912 | 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.
the exact SQL behind every number
WITH latest AS
(
SELECT
argMax(toFloat64(close), date) AS spy_close,
max(date) AS pricing_date
FROM global_markets.stocks_daily_aggs
WHERE ticker = 'SPY'
AND date >= today() - 45
)
SELECT
ticker,
formatDateTime(pricing_date, '%b %e, %Y') AS priced_on,
toString(toUInt32(round(spy_close * spy_multiple))) AS quoted_level,
toUInt32(round(spy_close * spy_multiple * 100)) AS contract_notional_usd
FROM latest
ARRAY JOIN
['SPX', 'SPY', 'XSP'] AS ticker,
[10.0, 1.0, 1.0] AS spy_multiple
ORDER BY ticker
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 analysisSPX vs SPY Options: Which One to Trade
Time value left in deep in-the-money SPY calls, against the dividend at stake
ranking 16×4
→
SPY option volume by days to expiry, trailing six weeks
ranking 5×3
→
How close SPY closes to the nearest whole-dollar strike on monthly expirations
series 13×4
→
Share of contract volume by days to expiry, SPX and SPY
ranking 5×3
→
Average daily options volume: Section 1256 names against equity options
ranking 4×3
→
The prices behind the arithmetic: Thursday's close, the strike, Friday's open and close
series 29×6
→
See all 2,170 queries →