Cash behind one contract: 100 shares at each name's close in the last week of July 2026
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-04, from What Happens If an Option Expires In the Money.
| ticker | cash_per_contract_usd_thousands |
|---|---|
| SPY | 74.7 |
| MSFT | 46.5 |
| AAPL | 30.9 |
| JNJ | 25.6 |
| NVDA | 20.1 |
| CVX | 19.7 |
| KO | 8.8 |
| CAG | 1.5 |
- Rows × columns
- 8 × 2
- 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 | 8 distinct values (AAPL, CAG, CVX…) | |
cash_per_contract_usd_thousands |
number | 1.5 to 74.7 | 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
SELECT ticker,
round(argMax(toFloat64(close), window_start) * 100 / 1000, 1) AS cash_per_contract_usd_thousands
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'MSFT', 'AAPL', 'NVDA', 'JNJ', 'CVX', 'KO', 'CAG')
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2026-07-27')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-07-31')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker
ORDER BY cash_per_contract_usd_thousands DESC
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 analysisWhat Happens If an Option Expires In the Money
Friday close to Monday's first minute: absolute overnight move, 2023 to July 2026
ranking 8×4
→
Absolute move over the final 30 minutes of Friday sessions, 2023 to July 2026
ranking 8×4
→
How close Friday closes land to a whole-dollar strike: seven names, 2023 to July 2026
ranking 5×3
→
Monthly expirations where the post close print crossed a whole dollar
ranking 6×3
→
How close expiring AAPL contracts finish to the strike
ranking 6×2
→
Average move between the 4:00 p.m. close and 5:30 p.m. ET
ranking 6×4
→
See all 2,170 queries →