Biggest gainers and decliners: July 30 close vs July 29 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 30, 2026, The Day in Numbers.
| ticker | board | day_pct | day_dollar_m |
|---|---|---|---|
| CYCU | gainers | 489.5 | 474.4 |
| GCTK | gainers | 166.6 | 165.5 |
| NUWE | gainers | 134.2 | 325.1 |
| PN | gainers | 117.8 | 96.1 |
| DFNS | gainers | 61.1 | 548.4 |
| IREX | gainers | 60.8 | 22.9 |
| IRE | gainers | 60.4 | 94.4 |
| IREG | gainers | 59.2 | 10.9 |
| IREZ | decliners | -61.2 | 90.8 |
| NBIZ | decliners | -53.7 | 170.9 |
| BEZ | decliners | -52.9 | 70.4 |
| SNDQ | decliners | -51.9 | 1006.8 |
| CCB | decliners | -43.6 | 76.9 |
| CORD | decliners | -43 | 59.9 |
| YYAI | decliners | -42.1 | 5.4 |
| CBRZ | decliners | -39.6 | 6.4 |
- Rows × columns
- 16 × 4
- 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 | 16 distinct values (BEZ, CBRZ, CCB…) | |
board |
text | 2 distinct values (decliners, gainers) | |
day_pct |
number | -61.2 to 489.5 | percent |
day_dollar_m |
number | 5.4 to 1,006.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
SELECT ticker, board, day_pct, day_dollar_m
FROM (
SELECT 'gainers' AS board, ticker, round((c30 / c29 - 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-29 13:30:00' AND window_start < '2026-07-29 20:00:00') AS c29,
argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-30 13:30:00' AND window_start < '2026-07-30 20:00:00') AS c30,
sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-30 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-29' AND execution_date <= '2026-07-30')
AND window_start >= '2026-07-29 13:30:00' AND window_start < '2026-07-30 20:00:00'
GROUP BY ticker
HAVING c29 > 0 AND c30 > 0 AND dv >= 5000000
)
ORDER BY day_pct DESC
LIMIT 8
UNION ALL
SELECT 'decliners' AS board, ticker, round((c30 / c29 - 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-29 13:30:00' AND window_start < '2026-07-29 20:00:00') AS c29,
argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-30 13:30:00' AND window_start < '2026-07-30 20:00:00') AS c30,
sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-30 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-29' AND execution_date <= '2026-07-30')
AND window_start >= '2026-07-29 13:30:00' AND window_start < '2026-07-30 20:00:00'
GROUP BY ticker
HAVING c29 > 0 AND c30 > 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 30, 2026, The Day in Numbers
Sector ETFs, July 30 close vs July 29 close, ranked
ranking 11×3
→
Top 6 by dollars traded, top 4 by shares traded: July 30 regular hours
table 10×5
→
Eight mega-caps: change vs July 29 and regular-hours dollars, July 30
table 8×5
→
Seven names: RTH median quoted spread in basis points, with quote-quality counts, July 30
table 7×5
→
Treasury curve prints on file, July 27 through July 30
series 4×5
→
SPY / QQQ / DIA / IWM: July 30 vs the July 29 close, regular hours
table 4×10
→
See all 2,170 queries →