STRASMORE/EXPLORE 2,170 QUERIES

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.

as of series 21×3read in context →
Daily turnover in the top ten movers: fixed 36 name large-cap list, July 2026 — 21 rows by 3 columns, computed from US exchange, SIP and OPRA data.
datecarried_overnew_to_the_list
2026-07-0237
2026-07-0646
2026-07-0755
2026-07-0828
2026-07-0928
2026-07-1046
2026-07-1337
2026-07-1437
2026-07-1555
2026-07-1628
2026-07-1728
2026-07-2046
2026-07-2155
2026-07-2246
2026-07-2337
2026-07-2455
2026-07-2746
2026-07-2828
2026-07-2946
2026-07-3037
2026-07-3137
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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Daily turnover in the top ten movers: fixed 36 name large-cap list, July 2026, derived from the stored result.
ColumnTypeRangeNotes
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 →