Distance from the 10:00 a.m. ET price to the close, SPY, by month
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-06, from How Mutual Fund NAV Is Calculated: Example.
| month | month_label | avg_move_pct | largest_move_pct |
|---|---|---|---|
| 2025-08 | Aug 2025 | 0.32 | 0.9 |
| 2025-09 | Sep 2025 | 0.25 | 0.64 |
| 2025-10 | Oct 2025 | 0.48 | 2.98 |
| 2025-11 | Nov 2025 | 0.66 | 3.34 |
| 2025-12 | Dec 2025 | 0.34 | 1.11 |
| 2026-01 | Jan 2026 | 0.24 | 0.59 |
| 2026-02 | Feb 2026 | 0.47 | 1.62 |
| 2026-03 | Mar 2026 | 0.68 | 2.11 |
| 2026-04 | Apr 2026 | 0.44 | 0.96 |
| 2026-05 | May 2026 | 0.31 | 0.73 |
| 2026-06 | Jun 2026 | 0.59 | 1.5 |
| 2026-07 | Jul 2026 | 0.36 | 1.09 |
- Rows × columns
- 12 × 4
- Period covered
- to
- 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 |
|---|---|---|---|
month |
date | 2025-08 to 2026-07 | |
month_label |
text | 12 distinct values (Apr 2026, Aug 2025, Dec 2025…) | |
avg_move_pct |
number | 0.24 to 0.68 | percent |
largest_move_pct |
number | 0.59 to 3.34 | 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
WITH session_marks AS
(
SELECT
toDate(toTimeZone(window_start, 'America/New_York')) AS session_date,
argMinIf(toFloat64(close), window_start,
(toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 600) AS price_at_10am,
argMax(toFloat64(close), window_start) AS price_at_close,
countIf((toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 600) AS bars_after_10am
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND window_start >= toDateTime('2025-08-01 00:00:00', 'UTC')
AND window_start < toDateTime('2026-08-01 00:00:00', 'UTC')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) >= 570
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) < 960
GROUP BY session_date
HAVING bars_after_10am > 30
)
SELECT
formatDateTime(session_date, '%Y-%m') AS month,
formatDateTime(session_date, '%b %Y') AS month_label,
round(avg(abs(price_at_close / price_at_10am - 1) * 100), 2) AS avg_move_pct,
round(max(abs(price_at_close / price_at_10am - 1) * 100), 2) AS largest_move_pct
FROM session_marks
GROUP BY month, month_label
ORDER BY month
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 Mutual Fund NAV Is Calculated: Example
One session's price path, SPY every 15 minutes on June 17, 2026
series 27×2
→
Share of SPY's session volume by half hour, June 2026 average
series 13×2
→
Average move from the 11:30 a.m. ET European close to the 4:00 p.m. close, Q2 2026
ranking 5×3
→
Average move by New York half hour, two foreign listings
series 25×3
→
How far SPY trades from its own open and close, by time of day
series 13×3
→
Average one-day move across six widely held funds, since 2021
ranking 6×2
→
See all 2,170 queries →