STRASMORE/EXPLORE 2,469 QUERIES

vxx_splits

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 what-is-vxx-etn.

as of series 8×3read in context →
vxx_splits — 8 rows by 3 columns, computed from US exchange, SIP and OPRA data.
execution_datesplit_labelold_shares_per_share_now
2010-11-091-for-44
2012-10-051-for-416
2013-11-081-for-464
2016-08-091-for-4256
2017-08-231-for-41024
2021-04-231-for-44096
2023-03-071-for-416384
2024-07-241-for-465536
Rows × columns
8 × 3
Period covered
to
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 vxx_splits, derived from the stored result.
ColumnTypeRangeNotes
execution_date date 2010-11-09 to 2024-07-24
split_label text 1 distinct value (1-for-4)
old_shares_per_share_now number 4 to 65,536 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
    toString(execution_date)                                    AS execution_date,
    concat(toString(split_to), '-for-', toString(split_from))   AS split_label,
    round(exp(sum(log(toFloat64(split_from) / toFloat64(split_to))) OVER (ORDER BY execution_date)), 0) AS old_shares_per_share_now
FROM
(
    SELECT
        execution_date,
        any(split_from) AS split_from,
        any(split_to)   AS split_to
    FROM global_markets.stocks_splits
    WHERE ticker = 'VXX'
    GROUP BY execution_date
)
ORDER BY execution_date
⌘/Ctrl + Enter