STRASMORE/EXPLORE 2,469 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-22, from stock-splits-in-india-face-value.

as of ranking 8×3read in context →
ratio_mix — 8 rows by 3 columns, computed from US exchange, SIP and OPRA data.
ratio_labelsplits_countface_value_after
2-for-1718₹5
3-for-1276₹3.33
5-for-1204₹2
4-for-1195₹2.5
10-for-1124₹1
20-for-129₹0.5
6-for-127₹1.67
7-for-116₹1.43
Rows × columns
8 × 3
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 8 distinct values (10-for-1, 2-for-1, 20-for-1…)
splits_count number 16 to 718 count
face_value_after text 8 distinct values (₹0.5, ₹1, ₹1.43…)

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 split_events AS
(
    SELECT
        ticker,
        execution_date,
        any(toFloat64(split_to)) / any(toFloat64(split_from)) AS ratio
    FROM global_markets.stocks_splits
    WHERE execution_date >= '2015-01-01'
      AND execution_date <  toStartOfYear(today())
      AND split_from > 0
      AND split_to > 0
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker, execution_date
)
SELECT
    concat(toString(toUInt32(ratio)), '-for-1')        AS ratio_label,
    count()                                            AS splits_count,
    concat('₹', toString(round(10.0 / ratio, 2)))      AS face_value_after
FROM split_events
WHERE ratio >= 2
  AND ratio <= 50
  AND ratio = round(ratio)
GROUP BY ratio
ORDER BY splits_count DESC
LIMIT 8
⌘/Ctrl + Enter
More from this analysisstock-splits-in-india-face-value
splits_by_year ranking 11×3 split_record ranking 5×4 aapl_trace series 10×2 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,469 queries →