Recent household-name splits: shares from one share
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-09-20, from Due Bills and Stock Splits: Ex-Date Timing.
| ticker | shares_from_one | ratio_label | adjusted_trading_began |
|---|---|---|---|
| CMG | 50 | 50-for-1 | Jun 26, 2024 |
| AMZN | 20 | 20-for-1 | Jun 6, 2022 |
| GOOGL | 20 | 20-for-1 | Jul 18, 2022 |
| AVGO | 10 | 10-for-1 | Jul 15, 2024 |
| LRCX | 10 | 10-for-1 | Oct 3, 2024 |
| NVDA | 10 | 10-for-1 | Jun 10, 2024 |
| SHOP | 10 | 10-for-1 | Jun 29, 2022 |
| SMCI | 10 | 10-for-1 | Oct 1, 2024 |
| FTNT | 5 | 5-for-1 | Jun 23, 2022 |
| AAPL | 4 | 4-for-1 | Aug 31, 2020 |
| DXCM | 4 | 4-for-1 | Jun 13, 2022 |
| NEE | 4 | 4-for-1 | Oct 27, 2020 |
| TSLA | 3 | 3-for-1 | Aug 25, 2022 |
| WMT | 3 | 3-for-1 | Feb 26, 2024 |
| PANW | 2 | 2-for-1 | Dec 16, 2024 |
- Rows × columns
- 15 × 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 | 15 distinct values (AAPL, AMZN, AVGO…) | |
shares_from_one |
number | 2 to 50 | count |
ratio_label |
text | 7 distinct values (10-for-1, 2-for-1, 20-for-1…) | |
adjusted_trading_began |
text | 15 distinct values (Aug 25, 2022, Aug 31, 2020, Dec 16, 2024…) |
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.
Run it yourself
This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.
SELECT
ticker,
round(argMax(toFloat64(split_to) / greatest(toFloat64(split_from), 1.0), execution_date), 2) AS shares_from_one,
argMax(concat(toString(toUInt32(split_to)), '-for-', toString(toUInt32(split_from))), execution_date) AS ratio_label,
argMax(formatDateTime(execution_date, '%b %e, %Y'), execution_date) AS adjusted_trading_began
FROM global_markets.stocks_splits
WHERE execution_date >= '2020-01-01'
AND execution_date <= today()
AND toFloat64(split_to) / greatest(toFloat64(split_from), 1.0) >= 2
AND ticker IN ('AAPL', 'AMZN', 'AVGO', 'CMG', 'DXCM', 'FTNT', 'GOOGL', 'LRCX', 'NEE', 'NVDA', 'PANW', 'SHOP', 'SMCI', 'TSLA', 'WMT')
GROUP BY ticker
ORDER BY shares_from_one DESC, ticker
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.