STRASMORE/EXPLORE 2,549 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-24, from bonus-shares-vs-stock-splits.

as of ranking 10×2read in context →
ratio_mix — 10 rows by 2 columns, computed from US exchange, SIP and OPRA data.
ratio_labelevent_count
2:1804
3:1334
5:1235
4:1229
10:1142
3:272
11:1064
6:135
20:132
5:429
Rows × columns
10 × 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
ratio_label text 10 distinct values (10:1, 11:10, 20:1…)
event_count number 29 to 804 count

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(toString(toUInt32(split_to)), ':', toString(toUInt32(split_from))) AS ratio_label,
    uniqExact(id)                                                            AS event_count
FROM global_markets.stocks_splits
WHERE execution_date >= '2015-01-01'
  AND execution_date <  today()
  AND toUInt32(split_to)   > toUInt32(split_from)
  AND toUInt32(split_from) >= 1
GROUP BY ratio_label
ORDER BY event_count DESC
LIMIT 10
⌘/Ctrl + Enter

Work with this data in your AI assistant

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