STRASMORE/EXPLORE 2,170 QUERIES

Weekly movers: ten biggest gainers and decliners, $5M+ traded, in-week splits excluded

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-07-26, from Market Recap: Week of July 6, 2026.

as of table 20×5read in context →
Weekly movers: ten biggest gainers and decliners, $5M+ traded, in-week splits excluded — 20 rows by 5 columns, computed from US exchange, SIP and OPRA data.
tickerboardweek_pctweek_dollar_mpct_of_dollar_max
FXHOgainers147.3113.81.2
FBRXgainers109.6305.83.2
CRNXgainers989660.5100
GMMgainers97.6639.36.6
LHSWgainers91.6307.83.2
JZXNgainers89.9356.53.7
TRAXgainers87.4225.62.3
ZCMDgainers86.277.20.8
WRAPgainers72.3172.71.8
SUNEgainers67363.93.8
JEMdecliners-76.426.10.3
ELPWdecliners-70.3105.21.1
HAOdecliners-65.8128.51.3
ALARdecliners-65.114.80.2
CCHHdecliners-55.5105.91.1
SDOTdecliners-53.7366.73.8
ONFOdecliners-47.675.20.8
YHCdecliners-46.917.70.2
GMEXdecliners-44.914.80.2
BYRNdecliners-44.644.80.5
Rows × columns
20 × 5
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 Weekly movers: ten biggest gainers and decliners, $5M+ traded, in-week splits excluded, derived from the stored result.
ColumnTypeRangeNotes
ticker text 20 distinct values (ALAR, BYRN, CCHH…)
board text 2 distinct values (decliners, gainers)
week_pct number -76.4 to 147.3 percent
week_dollar_m number 14.8 to 9,660.5
pct_of_dollar_max number 0.2 to 100 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 ticker, board, week_pct, week_dollar_m,
       round(100 * week_dollar_m / max(week_dollar_m) OVER (), 1) AS pct_of_dollar_max
FROM (
    SELECT 'gainers' AS board, ticker, round((cw / cp - 1) * 100, 1) AS week_pct, round(dv / 1e6, 1) AS week_dollar_m
    FROM (
        SELECT ticker,
               toFloat64(argMaxIf(close, window_start, window_start < '2026-07-03 00:00:00')) AS cp,
               toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-10 13:30:00' AND window_start < '2026-07-10 20:00:00')) AS cw,
               sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-06 13:30:00') AS dv
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker NOT IN ('SPCX')
          AND ticker NOT IN (SELECT ticker FROM global_markets.stocks_splits WHERE execution_date >= '2026-07-06' AND execution_date <= '2026-07-10')
          AND ((window_start >= '2026-07-02 13:30:00' AND window_start < '2026-07-02 20:00:00')
            OR (window_start >= '2026-07-06 13:30:00' AND window_start < '2026-07-11 00:00:00'))
        GROUP BY ticker
        HAVING cp > 0 AND cw > 0 AND dv >= 5000000
    )
    ORDER BY week_pct DESC
    LIMIT 10
    UNION ALL
    SELECT 'decliners' AS board, ticker, round((cw / cp - 1) * 100, 1) AS week_pct, round(dv / 1e6, 1) AS week_dollar_m
    FROM (
        SELECT ticker,
               toFloat64(argMaxIf(close, window_start, window_start < '2026-07-03 00:00:00')) AS cp,
               toFloat64(argMaxIf(close, window_start, window_start >= '2026-07-10 13:30:00' AND window_start < '2026-07-10 20:00:00')) AS cw,
               sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-06 13:30:00') AS dv
        FROM global_markets.delayed_stocks_minute_aggs
        WHERE ticker NOT IN ('SPCX')
          AND ticker NOT IN (SELECT ticker FROM global_markets.stocks_splits WHERE execution_date >= '2026-07-06' AND execution_date <= '2026-07-10')
          AND ((window_start >= '2026-07-02 13:30:00' AND window_start < '2026-07-02 20:00:00')
            OR (window_start >= '2026-07-06 13:30:00' AND window_start < '2026-07-11 00:00:00'))
        GROUP BY ticker
        HAVING cp > 0 AND cw > 0 AND dv >= 5000000
    )
    ORDER BY week_pct ASC
    LIMIT 10
)
ORDER BY board DESC, abs(week_pct) DESC

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 analysisMarket Recap: Week of July 6, 2026
SK Hynix's SEC paper trail into its July 10 US listing table 9×2 SEC filings by session and form type, July 6-10 table 5×5 Feed coverage by day: articles tagging NVDA, MU, INTC, TER, July 6-10 table 5×5 SPY / QQQ / DIA / IWM: week of July 6 vs the July 2 close, with the prior week's change table 4×5 What the news feed actually carried, verbatim (The Motley Fool, rout day and bounce day) table 2×3 The chip complex's full-week change: July 10 close vs July 2 close, fourteen names ranking 14×2 See all 2,170 queries →