STRASMORE/EXPLORE 2,170 QUERIES

Biggest gainers and decliners: July 28 close vs July 27 close, $5M+ traded, 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-08-01, from Market Recap: July 28, 2026, The Day in Numbers.

as of ranking 16×4read in context →
Biggest gainers and decliners: July 28 close vs July 27 close, $5M+ traded, splits excluded — 16 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerboardday_pctday_dollar_m
STKHgainers166.7113.2
EGGgainers8596.5
DFNSgainers77.3499.9
INLFgainers63.1144.9
CISSgainers58.632.5
BIYAgainers53.8134.6
NEXRgainers36.513.2
OPKgainers31.653.7
YYAIdecliners-7118.3
AMKLdecliners-49.810.2
SPWRdecliners-4212.8
REPLdecliners-38.1111.1
INVZdecliners-30.18.2
SNDUdecliners-28.7199.4
SNDGdecliners-28.634.3
SNXXdecliners-28.41095.3
Rows × columns
16 × 4
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 Biggest gainers and decliners: July 28 close vs July 27 close, $5M+ traded, splits excluded, derived from the stored result.
ColumnTypeRangeNotes
ticker text 16 distinct values (AMKL, BIYA, CISS…)
board text 2 distinct values (decliners, gainers)
day_pct number -71 to 166.7 percent
day_dollar_m number 8.2 to 1,095.3

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, day_pct, day_dollar_m
FROM (
    SELECT 'gainers' AS board, ticker, round((c28 / c27 - 1) * 100, 1) AS day_pct, round(dv / 1e6, 1) AS day_dollar_m
    FROM (
        SELECT ticker,
               argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00') AS c27,
               argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-28 13:30:00' AND window_start < '2026-07-28 20:00:00') AS c28,
               sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-28 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-27' AND execution_date <= '2026-07-28')
          AND window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-28 20:00:00'
        GROUP BY ticker
        HAVING c27 > 0 AND c28 > 0 AND dv >= 5000000
    )
    ORDER BY day_pct DESC
    LIMIT 8
    UNION ALL
    SELECT 'decliners' AS board, ticker, round((c28 / c27 - 1) * 100, 1) AS day_pct, round(dv / 1e6, 1) AS day_dollar_m
    FROM (
        SELECT ticker,
               argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00') AS c27,
               argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-28 13:30:00' AND window_start < '2026-07-28 20:00:00') AS c28,
               sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-28 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-27' AND execution_date <= '2026-07-28')
          AND window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-28 20:00:00'
        GROUP BY ticker
        HAVING c27 > 0 AND c28 > 0 AND dv >= 5000000
    )
    ORDER BY day_pct ASC
    LIMIT 8
)
ORDER BY board DESC, abs(day_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: July 28, 2026, The Day in Numbers
Sector ETFs, July 28 close vs July 27 close, ranked ranking 11×3 Top 6 by dollars traded, top 4 by shares traded: July 28 regular hours table 10×5 Eight mega-caps: change vs July 27 and regular-hours dollars, July 28 table 8×5 Seven names: RTH median quoted spread in basis points, with quote-quality counts, July 28 table 7×5 Treasury curve prints on file, July 23 through July 28 series 4×5 SPY / QQQ / DIA / IWM: July 28 vs the July 27 close, regular hours table 4×10 See all 2,170 queries →