Insights
How to Find the Biggest Stock Movers Each Day
Alphanume Team · April 9, 2026
Programmatic next-day movers for research — what a clean movers feed actually requires.
"Biggest movers" lists are ubiquitous — every brokerage and financial-news site publishes one. For systematic research, the version of this question that matters is "give me the biggest movers across the entire US-listed universe, normalized and queryable by date, for backtests and event-study research." The mechanics of building this cleanly involves more than sorting by percent change.
The basic computation
For each (ticker, date), compute:
Percent change = (close_t / close_t-1) − 1
Sort by absolute value. The biggest movers are the names with the largest percent changes.
Sounds simple. The non-simple parts:
- Survivorship. Names that delisted before today are absent from current snapshots.
- Corporate actions. Splits, spinoffs, dividends produce mechanical price changes that are not "movers" in the substantive sense.
- Universe definition. "All US-listed common stocks" is ambiguous — exchanges, ADRs, ETFs, share-class duplicates all need handling.
- Liquidity filter. Names with zero or near-zero volume can produce extreme percent changes that aren't actionable.
What a clean movers feed should provide
For each (date, ticker) pair in the movers set:
- Ticker, name, exchange.
- Previous close, current close, percent change.
- Volume, dollar volume.
- Market cap (point-in-time, as of the date).
- Flags for any corporate action that may explain the move (splits, dividends, M&A announcements).
- Sector and basic classification.
Common filters applied
To produce a useful movers list, common filters:
- Minimum market cap. > $100M typically.
- Minimum volume or dollar volume. > $1M.
- Exclude OTC and pink sheets. Limit to NYSE, NASDAQ, AMEX.
- Exclude funds and SPACs (optional). Depending on use case.
- Exclude names with announced corporate actions. Mechanical moves filtered.
Use cases
Movers data supports several research applications:
- Event-driven research: Mover names often have identifiable catalysts (earnings, M&A, regulatory news). Studying the next-day price action conditional on catalyst type produces useful base rates.
- Reversion and momentum research: What is the conditional next-day return for a name that just moved +20%? What about for -20%? Base rates vary by sector, size, and catalyst.
- Watchlist generation: Movers from the prior day are candidates for further research.
- Risk-monitoring: Portfolio positions appearing on the movers list are flagged for attention.
- Strategy backtests: Mover-conditional strategies (e.g., "long the largest decliners," "short the largest gainers") can be backtested using historical movers data.
Pre-market and after-hours considerations
Standard movers lists use closing prices. For event-driven applications:
- After-hours announcement movers may need separate handling (after-hours close vs next-day open).
- Pre-market movers (especially on earnings days) are tracked separately.
- Some strategies rely on next-day open price as the actionable level rather than next-day close.
Historical movers data
For backtests, historical movers — "what were the movers on date X for each historical date in the period" — is required. Sources:
- Reconstruct from historical price and volume data using point-in-time-aware processing.
- Pre-built historical movers feeds from data vendors.
The reconstruction approach is straightforward but requires careful handling of corporate actions and survivorship.
Validation
To verify a movers dataset:
- Spot-check named historical events (e.g., known earnings beats / misses) and verify they appear with the correct magnitude.
- Check that survivorship-bias-corrected lists include known delisted names from the historical period.
- Verify that mechanical splits and dividends are flagged and not treated as substantive movers.
Related reading
How to find stocks to short sell using data; market-data APIs for algorithmic trading; market-data sources for systematic short-selling research; market regime filter; handling corporate actions.
Alphanume's Next-Day Movers dataset provides a programmatic, point-in-time-aware feed of the biggest movers each day, with corporate-action flagging and survivorship-aware coverage.