Biggest gainers and decliners: July 27 close vs July 24 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 27, 2026, The Day in Numbers.
| ticker | board | day_pct | day_dollar_m |
|---|---|---|---|
| DFNS | gainers | 214.9 | 486.4 |
| BIYA | gainers | 115.2 | 274.1 |
| ENTX | gainers | 93.1 | 222.2 |
| LVWR | gainers | 72.1 | 200.7 |
| GOSS | gainers | 44.3 | 36.2 |
| KIDZ | gainers | 41.1 | 128.1 |
| MTNB | gainers | 40.4 | 29.7 |
| QBTX | gainers | 40.3 | 40.3 |
| MPLT | decliners | -72.9 | 83.3 |
| STAK | decliners | -72.5 | 34.7 |
| YYAI | decliners | -72 | 8.4 |
| CAPR | decliners | -64.5 | 175.1 |
| QBTZ | decliners | -40.5 | 37.5 |
| VCX | decliners | -31.6 | 20.1 |
| VIVK | decliners | -26.6 | 6.7 |
| BMNZ | decliners | -26.6 | 26.3 |
- 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 (BIYA, BMNZ, CAPR…) | |
board |
text | 2 distinct values (decliners, gainers) | |
day_pct |
number | -72.9 to 214.9 | percent |
day_dollar_m |
number | 6.7 to 486.4 |
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((c27 / c24 - 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-24 13:30:00' AND window_start < '2026-07-24 20:00:00') AS c24,
argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00') AS c27,
sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-27 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-24' AND execution_date <= '2026-07-27')
AND window_start >= '2026-07-24 13:30:00' AND window_start < '2026-07-27 20:00:00'
GROUP BY ticker
HAVING c24 > 0 AND c27 > 0 AND dv >= 5000000
)
ORDER BY day_pct DESC
LIMIT 8
UNION ALL
SELECT 'decliners' AS board, ticker, round((c27 / c24 - 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-24 13:30:00' AND window_start < '2026-07-24 20:00:00') AS c24,
argMaxIf(toFloat64(close), window_start, window_start >= '2026-07-27 13:30:00' AND window_start < '2026-07-27 20:00:00') AS c27,
sumIf(toFloat64(close) * toFloat64(volume), window_start >= '2026-07-27 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-24' AND execution_date <= '2026-07-27')
AND window_start >= '2026-07-24 13:30:00' AND window_start < '2026-07-27 20:00:00'
GROUP BY ticker
HAVING c24 > 0 AND c27 > 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 27, 2026, The Day in Numbers
Sector ETFs, July 27 close vs July 24 close, ranked
ranking 11×3
→
Top 6 by dollars traded, top 4 by shares traded: July 27 regular hours
table 10×5
→
Eight mega-caps: change vs July 24 and regular-hours dollars, July 27
table 8×5
→
Seven names: RTH median quoted spread in basis points, with quote-quality counts, July 27
table 7×5
→
Treasury curve prints on file, July 22 through July 27
series 4×5
→
SPY / QQQ / DIA / IWM: July 27 vs the July 24 close, regular hours
table 4×10
→
See all 2,170 queries →