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.
| execution_date | split_label | old_shares_per_share_now |
|---|---|---|
| 2010-11-09 | 1-for-4 | 4 |
| 2012-10-05 | 1-for-4 | 16 |
| 2013-11-08 | 1-for-4 | 64 |
| 2016-08-09 | 1-for-4 | 256 |
| 2017-08-23 | 1-for-4 | 1024 |
| 2021-04-23 | 1-for-4 | 4096 |
| 2023-03-07 | 1-for-4 | 16384 |
| 2024-07-24 | 1-for-4 | 65536 |
- 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
What each column holds
| Column | Type | Range | Notes |
|---|---|---|---|
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