STRASMORE/EXPLORE 2,433 QUERIES

trace_april

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-20, from how-inverse-etfs-work.

as of series 21×5read in context →
trace_april — 21 rows by 5 columns, computed from US exchange, SIP and OPRA data.
session_dateday_labelsoxx_indexedsoxs_indexednaive_minus3x_indexed
2025-04-014月1日100100100
2025-04-024月2日100.697.998.1
2025-04-034月3日90.5127.1128.5
2025-04-044月4日83.7157.2148.8
2025-04-074月7日85.7146.2143
2025-04-084月8日82.3162.4153.2
2025-04-094月9日97.571.5107.4
2025-04-104月10日89.687.9131.3
2025-04-114月11日91.582.4125.5
2025-04-144月14日92.180.9123.7
2025-04-154月15日92.579.7122.6
2025-04-164月16日88.989.1133.3
2025-04-174月17日88.590.7134.6
2025-04-214月21日86.995.5139.2
2025-04-224月22日88.690.1134.2
2025-04-234月23日91.979.8124.2
2025-04-244月24日97.265.9108.3
2025-04-254月25日98.264.2105.5
2025-04-284月28日9864.6106
2025-04-294月29日96.966.7109.2
2025-04-304月30日97.665.1107.1
Rows × columns
21 × 5
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 trace_april, derived from the stored result.
ColumnTypeRangeNotes
session_date date 2025-04-01 to 2025-04-30
day_label text 21 distinct values (4月10日, 4月11日, 4月14日…)
soxx_indexed number 82.3 to 100.6
soxs_indexed number 64.2 to 162.4
naive_minus3x_indexed number 98.1 to 153.2

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
    (
        SELECT toFloat64(argMin(close, date))
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'SOXX' AND date >= '2025-04-01' AND date < '2025-05-01'
    ) AS soxx_base,
    (
        SELECT toFloat64(argMin(close, date))
        FROM global_markets.stocks_daily_aggs
        WHERE ticker = 'SOXS' AND date >= '2025-04-01' AND date < '2025-05-01'
    ) AS soxs_base
SELECT
    toString(date)                                                                        AS session_date,
    concat(toString(toMonth(date)), '月', toString(toDayOfMonth(date)), '日')             AS day_label,
    round(toFloat64(anyIf(close, ticker = 'SOXX')) / soxx_base * 100, 1)                  AS soxx_indexed,
    round(toFloat64(anyIf(close, ticker = 'SOXS')) / soxs_base * 100, 1)                  AS soxs_indexed,
    round((1 - 3 * (toFloat64(anyIf(close, ticker = 'SOXX')) / soxx_base - 1)) * 100, 1)  AS naive_minus3x_indexed
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('SOXX', 'SOXS')
  AND date >= '2025-04-01'
  AND date <  '2025-05-01'
GROUP BY date
ORDER BY date
⌘/Ctrl + Enter