Five years of sessions: share closing above the open, typical move, and the extremes (SPY, 2021-2025)
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 Paper Trading Before Real Money.
| year | sessions | pct_up_sessions | median_abs_move_pct | worst_session_pct | best_session_pct |
|---|---|---|---|---|---|
| 2021 | 252 | 54.8 | 0.38 | -2.41 | 1.55 |
| 2022 | 251 | 50.6 | 0.86 | -3.35 | 4.8 |
| 2023 | 250 | 58.4 | 0.44 | -2.04 | 2.38 |
| 2024 | 252 | 53.2 | 0.35 | -2.93 | 1.56 |
| 2025 | 250 | 52 | 0.46 | -4.81 | 10.12 |
- Rows × columns
- 5 × 6
- 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 |
|---|---|---|---|
year |
text | 5 distinct values (2021, 2022, 2023…) | |
sessions |
number | 250 to 252 | |
pct_up_sessions |
number | 50.6 to 58.4 | percent |
median_abs_move_pct |
number | 0.35 to 0.86 | percent |
worst_session_pct |
number | -4.81 to -2.04 | percent |
best_session_pct |
number | 1.55 to 10.12 | 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 toString(y) AS year,
count() AS sessions,
round(100 * countIf(ret > 0) / count(), 1) AS pct_up_sessions,
round(quantileDeterministic(0.5)(abs(ret) * 100, cityHash64(d)), 2) AS median_abs_move_pct,
round(min(ret) * 100, 2) AS worst_session_pct,
round(max(ret) * 100, 2) AS best_session_pct
FROM (
SELECT d,
toYear(d) AS y,
toFloat64(session_close) / toFloat64(session_open) - 1 AS ret
FROM (
SELECT toDate(toTimeZone(window_start, 'America/New_York')) AS d,
argMin(open, window_start) AS session_open,
argMax(close, window_start) AS session_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'SPY'
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2021-01-01')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2025-12-31')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY d
)
WHERE session_open > 0
)
GROUP BY year
ORDER BY year
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 analysisPaper Trading Before Real Money
One session shape: median quoted spread by half-hour bucket, Ford (F), recent completed sessions
series 13×3
→
What a real fill costs: median quoted spread in bps of the midpoint, regular hours, recent completed sessions
ranking 6×4
→
The cost-to-trade ladder: median quoted spread in bps of the midpoint, regular hours, recent completed sessions
table 12×5
→
S&P 500 tracker (SPY): down sessions by calendar year, 2016 to mid-2026
table 11×5
→
The same Kelly calculation on the S&P 500 tracker, year by year, 2016 through 2025
table 10×5
→
One-day move profile, seven household names, July 2025 to June 2026
table 7×6
→
See all 2,170 queries →