STRASMORE/EXPLORE 2,170 QUERIES

Largest single-session move, open to close, since 2016

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-22, from Options Approval Levels: What Each Tier Allows.

as of ranking 6×4read in context →
Largest single-session move, open to close, since 2016 — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerlargest_up_pctlargest_down_pctlargest_up_on
AMD25.112.5Apr 22, 2016
AAPL15.67.6Apr 9, 2025
NVDA15.611Apr 9, 2025
SPY11.25.7Apr 9, 2025
MSFT10.55.9Apr 9, 2025
KO7.18.7Mar 16, 2020
Rows × columns
6 × 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 Largest single-session move, open to close, since 2016, derived from the stored result.
ColumnTypeRangeNotes
ticker text 6 distinct values (AAPL, AMD, KO…)
largest_up_pct number 7.1 to 25.1 percent
largest_down_pct number 5.7 to 12.5 percent
largest_up_on text 3 distinct values (Apr 22, 2016, Apr 9, 2025, Mar 16, 2020)

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,
    round(100 * max(toFloat64(close) / toFloat64(open) - 1), 1)                   AS largest_up_pct,
    round(100 * abs(min(toFloat64(close) / toFloat64(open) - 1)), 1)              AS largest_down_pct,
    formatDateTime(argMax(date, toFloat64(close) / toFloat64(open)), '%b %e, %Y') AS largest_up_on
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('AAPL', 'MSFT', 'NVDA', 'AMD', 'KO', 'SPY')
  AND date >= '2016-01-01'
  AND open > 0
GROUP BY ticker
ORDER BY largest_up_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 analysisOptions Approval Levels: What Each Tier Allows
Every $5 call spread on the same AAPL expiration: risk against maximum gain ranking 7×3 Cash needed to hold 100 shares, six household names ranking 6×3 What a covered call collects across strikes: AAPL, about one month out table 6×5 Forward stock splits at liquid US names, past three years ranking 12×3 Reg T minimum branches for one uncovered AAPL call, by strike (dollars per share) ranking 12×4 Reg T minimum branches for one uncovered AAPL put, by strike (dollars per share) ranking 11×4 See all 2,170 queries →