Daily turnover in the top ten movers: fixed 36 name large-cap list, July 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-01, from AI Daily Market Research Reports: What Breaks.
| date | carried_over | new_to_the_list |
|---|---|---|
| 2026-07-02 | 3 | 7 |
| 2026-07-06 | 4 | 6 |
| 2026-07-07 | 5 | 5 |
| 2026-07-08 | 2 | 8 |
| 2026-07-09 | 2 | 8 |
| 2026-07-10 | 4 | 6 |
| 2026-07-13 | 3 | 7 |
| 2026-07-14 | 3 | 7 |
| 2026-07-15 | 5 | 5 |
| 2026-07-16 | 2 | 8 |
| 2026-07-17 | 2 | 8 |
| 2026-07-20 | 4 | 6 |
| 2026-07-21 | 5 | 5 |
| 2026-07-22 | 4 | 6 |
| 2026-07-23 | 3 | 7 |
| 2026-07-24 | 5 | 5 |
| 2026-07-27 | 4 | 6 |
| 2026-07-28 | 2 | 8 |
| 2026-07-29 | 4 | 6 |
| 2026-07-30 | 3 | 7 |
| 2026-07-31 | 3 | 7 |
- Rows × columns
- 21 × 3
- 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 |
|---|---|---|---|
date |
date | 2026-07-02 to 2026-07-31 | |
carried_over |
number | 2 to 5 | |
new_to_the_list |
number | 5 to 8 |
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,
round((argMax(close, window_start) / argMin(open, window_start) - 1) * 100, 2) AS move_pct
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker IN ('AAPL','MSFT','NVDA','AMZN','GOOGL','META','TSLA','AVGO','JPM','XOM',
'JNJ','WMT','PG','KO','HD','CVX','MRK','PEP','COST','CSCO',
'ORCL','CRM','AMD','NFLX','DIS','BA','CAT','IBM','T','VZ',
'PFE','NKE','MCD','UNH','BAC','QCOM')
AND toDate(toTimeZone(window_start, 'America/New_York')) >= toDate('2026-07-01')
AND toDate(toTimeZone(window_start, 'America/New_York')) <= toDate('2026-07-31')
AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
+ toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
GROUP BY ticker, d
),
ranked AS (
SELECT d,
ticker,
row_number() OVER (PARTITION BY d ORDER BY abs(move_pct) DESC, ticker ASC) AS rnk
FROM daily
),
top_ten AS (
SELECT d, arraySort(groupArray(ticker)) AS names
FROM ranked
WHERE rnk <= 10
GROUP BY d
),
paired AS (
SELECT d,
names,
lagInFrame(names) OVER (ORDER BY d ASC ROWS BETWEEN 1 PRECEDING AND 1 PRECEDING) AS prior_names
FROM top_ten
)
SELECT formatDateTime(d, '%Y-%m-%d') AS date,
length(arrayIntersect(names, prior_names)) AS carried_over,
10 - length(arrayIntersect(names, prior_names)) AS new_to_the_list
FROM paired
WHERE length(prior_names) = 10
ORDER BY d ASC
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 analysisAI Daily Market Research Reports: What Breaks
SPY: average overnight repricing vs average regular-session move, monthly
series 24×3
→
When headlines actually land: article counts by ET clock hour, July 2026
ranking 24×4
→
What the next session did: 36 large caps bucketed by the prior day's move, Aug 2024 to Jul 2026
table 5×5
→
Headline coverage by size of daily move: 36 large caps, May to July 2026
ranking 5×4
→
KO quarterly dividend in cents and as a percent of the share price, 2016 to 2026
series 42×4
→
How far SPY travels from its opening print, by ET half hour, first half of 2026
series 13×3
→
See all 2,170 queries →