One-day move profile, seven household names, July 2025 to June 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-15, from The 3-5-7 Rule in Options, Examined.
| ticker | sessions | median_abs_move_pct | p95_abs_move_pct | pct_days_beyond_3 | worst_day_pct |
|---|---|---|---|---|---|
| SPY | 250 | 0.46 | 1.62 | 0 | -2.69 |
| KO | 250 | 0.65 | 2.11 | 1.2 | -2.56 |
| JNJ | 250 | 0.63 | 2.21 | 1.6 | -2.42 |
| AAPL | 250 | 0.68 | 3.23 | 7.2 | -6.15 |
| MSFT | 250 | 0.76 | 3.37 | 8.4 | -10.02 |
| NVDA | 250 | 1.37 | 4.35 | 16.4 | -6.22 |
| TSLA | 250 | 1.83 | 5.45 | 30.4 | -8.39 |
- Rows × columns
- 7 × 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 |
|---|---|---|---|
ticker |
text | 7 distinct values (AAPL, JNJ, KO…) | |
sessions |
number | every row is 250 | |
median_abs_move_pct |
number | 0.46 to 1.83 | percent |
p95_abs_move_pct |
number | 1.62 to 5.45 | percent |
pct_days_beyond_3 |
number | 0 to 30.4 | percent |
worst_day_pct |
number | -10.02 to -2.42 | 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 daily AS (
SELECT ticker,
toDate(toTimeZone(window_start, 'America/New_York')) AS d,
toFloat64(argMax(close, window_start)) AS px
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('SPY', 'KO', 'JNJ', 'AAPL', 'MSFT', 'NVDA', 'TSLA')
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2025-07-01')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-06-30')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker, d
),
moves AS (
SELECT ticker, d,
100 * (px / any(px) OVER (PARTITION BY ticker ORDER BY d
ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) - 1) AS move_pct
FROM daily
)
SELECT ticker,
count() AS sessions,
round(quantileDeterministic(0.5)(abs(move_pct), cityHash64(ticker, d)), 2) AS median_abs_move_pct,
round(quantileDeterministic(0.95)(abs(move_pct), cityHash64(ticker, d)), 2) AS p95_abs_move_pct,
round(100 * countIf(abs(move_pct) >= 3) / count(), 1) AS pct_days_beyond_3,
round(min(move_pct), 2) AS worst_day_pct
FROM moves
WHERE isFinite(move_pct)
GROUP BY ticker
ORDER BY p95_abs_move_pct
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 analysisThe 3-5-7 Rule in Options, Examined
S&P 500 tracker (SPY): down sessions by calendar year, 2016 to mid-2026
table 11×5
→
Worst five-session stretch and deepest in-window drawdown, July 2025 to June 2026
ranking 7×4
→
The same Kelly calculation on the S&P 500 tracker, year by year, 2016 through 2025
table 10×5
→
One expiration of the SPY chain: closing prices and delta by strike, August 21 2026 expiry, as of July 15 2026
table 8×6
→
Median quoted bid and ask by strike: SPY calls expiring August 21 2026, regular session of July 15 2026
table 7×5
→
Kelly inputs from daily closes, 2016 through 2025: win rate, average gain, average loss, and the fraction the formula returns
table 6×5
→
See all 2,170 queries →