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.
the exact SQL behind every number
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
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 analysisWhen Is SQ Day for Nikkei 225 Options?
SPY volume by ET clock minute around the open, 13 March vs 20 March 2026
series 46×3
→
Share of SPY session volume printed in the opening minute, third Friday vs other Fridays
series 11×4
→
Opening prints on settlement morning, May 15, 2026: twelve large US constituents
ranking 12×3
→
Implied vs realized volatility, six heavily traded US underlyings, twelve months to June 30, 2026
ranking 6×4
→
Median theta and implied volatility by days to expiry: near-the-money SPY contracts, H1 2026
table 60×4
→
SPY implied volatility vs the volatility realized in the following month
series 23×5
→
See all 2,170 queries →