STRASMORE/EXPLORE 2,500 QUERIES

ratio_mix

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-23, from stock-splits-calendar-from-the-free-sql-api.

as of ranking 12×2read in context →
ratio_mix — 12 rows by 2 columns, computed from US exchange, SIP and OPRA data.
labelsplits
reverse 1-for-10674
reverse 1-for-1289
reverse 1-for-20279
reverse 1-for-5238
forward 2-for-1225
reverse 1-for-4149
forward 3-for-1147
reverse 1-for-15137
reverse 1-for-25129
reverse 1-for-3121
reverse 1-for-100111
forward 5-for-1109
Rows × columns
12 × 2
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 ratio_mix, derived from the stored result.
ColumnTypeRangeNotes
label text 12 distinct values
splits number 109 to 674

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
    concat(direction, ' ', ratio) AS label,
    count()                       AS splits
FROM
(
    SELECT
        execution_date,
        ticker,
        any(if(adjustment_type = 'forward_split', 'forward', 'reverse')) AS direction,
        concat(toString(toInt32(any(split_to))), '-for-',
               toString(toInt32(any(split_from))))                       AS ratio
    FROM global_markets.stocks_splits
    WHERE execution_date >= today() - 1095
      AND split_from > 0
      AND split_to > 0
    GROUP BY execution_date, ticker
)
GROUP BY label
ORDER BY splits 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-calendar-from-the-free-sql-api
column_semantics ranking 2×4 splits_per_month series 36×4 calendar table 24×5 Top 25 weekly-options underlyings by distinct contracts traded, with expiration weekdays ranking 25×4 Annualized volatility vs total return, 25 large caps, calmest to wildest (~2 years) ranking 25×3 SPY options median spread by expiration date, near-the-money strikes only ranking 25×4 See all 2,500 queries →