Opening prints against the previous close: settlement Friday vs an ordinary Friday
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-16, from When Is SQ Day for Nikkei 225 Options?.
| symbol | settlement_open_gap_pct | ordinary_open_gap_pct |
|---|---|---|
| XOM | 0.75 | 0.5 |
| PG | 0.1 | 0.58 |
| JPM | 0.04 | 0.63 |
| KO | 0.02 | -0.18 |
| NVDA | -0.31 | 0.97 |
| JNJ | -0.32 | 0.9 |
| AAPL | -0.4 | -0.11 |
| MSFT | -0.57 | -0.21 |
- Rows × columns
- 8 × 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 |
|---|---|---|---|
symbol |
text | 8 distinct values (AAPL, JNJ, JPM…) | |
settlement_open_gap_pct |
number | -0.57 to 0.75 | percent |
ordinary_open_gap_pct |
number | -0.21 to 0.97 | percent |
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
ticker AS symbol,
round(100 * (toFloat64(anyIf(open, date = '2026-03-20'))
/ toFloat64(anyIf(close, date = '2026-03-19')) - 1), 2) AS settlement_open_gap_pct,
round(100 * (toFloat64(anyIf(open, date = '2026-03-13'))
/ toFloat64(anyIf(close, date = '2026-03-12')) - 1), 2) AS ordinary_open_gap_pct
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'JPM', 'JNJ', 'KO', 'PG', 'XOM')
AND date IN ('2026-03-12', '2026-03-13', '2026-03-19', '2026-03-20')
GROUP BY ticker
HAVING countIf(date = '2026-03-12') > 0
AND countIf(date = '2026-03-13') > 0
AND countIf(date = '2026-03-19') > 0
AND countIf(date = '2026-03-20') > 0
ORDER BY settlement_open_gap_pct DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.