STRASMORE/EXPLORE 2,549 QUERIES

split_math

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-24, from stock-splits-in-japan-trading-units.

as of table 12×5read in context →
split_math — 12 rows by 5 columns, computed from US exchange, SIP and OPRA data.
tickersplit_labeleffective_onshares_after_100ticket_cut_pct
CMG50-for-1Jun 26, 2024500098
BKNG25-for-1Apr 6, 2026250096
GOOGL20-for-1Jul 18, 2022200095
GOOG20-for-1Jul 18, 2022200095
KLAC10-for-1Jun 12, 2026100090
NFLX10-for-1Nov 17, 2025100090
LRCX10-for-1Oct 3, 2024100090
SMCI10-for-1Oct 1, 2024100090
AVGO10-for-1Jul 15, 2024100090
CVNA5-for-1May 8, 202650080
NOW5-for-1Dec 18, 202550080
FTNT5-for-1Jun 23, 202250080
Rows × columns
12 × 5
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 split_math, derived from the stored result.
ColumnTypeRangeNotes
ticker text 12 distinct values (AVGO, BKNG, CMG…)
split_label text 5 distinct values (10-for-1, 20-for-1, 25-for-1…)
effective_on text 11 distinct values (Apr 6, 2026, Dec 18, 2025, Jul 15, 2024…)
shares_after_100 number 500 to 5,000 count
ticket_cut_pct number 80 to 98 percent

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.

WITH
    large_caps AS
    (
        SELECT ticker
        FROM global_markets.stocks_ratios
        WHERE date >= today() - 60
          AND market_cap > 20000000000
        GROUP BY ticker
    ),
    forward_splits AS
    (
        SELECT
            ticker,
            execution_date,
            any(split_to)   AS split_to,
            any(split_from) AS split_from
        FROM global_markets.stocks_splits
        WHERE execution_date >= '2022-01-01'
          AND execution_date <  today()
          AND ticker NOT IN ('SPCX')
        GROUP BY ticker, execution_date
        HAVING split_to > split_from
    )
SELECT
    f.ticker                                                                AS ticker,
    concat(toString(toUInt32(f.split_to)), '-for-',
           toString(toUInt32(f.split_from)))                                AS split_label,
    formatDateTime(f.execution_date, '%b %e, %Y')                           AS effective_on,
    toUInt32(round(100 * toFloat64(f.split_to) / toFloat64(f.split_from)))  AS shares_after_100,
    round(100 * (1 - toFloat64(f.split_from) / toFloat64(f.split_to)), 1)   AS ticket_cut_pct
FROM forward_splits AS f
INNER JOIN large_caps AS l ON l.ticker = f.ticker
ORDER BY shares_after_100 DESC, f.execution_date DESC
LIMIT 12
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.

More from this analysisstock-splits-in-japan-trading-units
split_history ranking 11×3 → lot_cost ranking 6×4 → odd_lots ranking 5×3 → The 2s10s spread, every print of the half table 124×2 → The 2s10s spread, every print of the half table 124×2 → Every half-year since 1976: the 2y and 10y change, the twist between them, and the half's lowest 2s10s print table 100×7 → See all 2,549 queries →