STRASMORE/EXPLORE 2,595 QUERIES

drawdown

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-25, from crypto-covered-call-etfs.

as of series 24×3read in context →
drawdown — 24 rows by 3 columns, computed from US exchange, SIP and OPRA data.
monthmstr_below_peak_pctcoin_below_peak_pct
2024-09-0158.352.8
2024-10-0139.552.5
2024-11-014.121.6
2024-12-0128.434.3
2025-01-0117.222.9
2025-02-0136.842.9
2025-03-0128.754.4
2025-04-01646.3
2025-05-018.734.7
2025-06-0107.2
2025-07-010.60
2025-08-0117.319.4
2025-09-0120.310.7
2025-10-0133.39
2025-11-0156.227.8
2025-12-0162.440.1
2026-01-016348.4
2026-02-016853.4
2026-03-0169.153.8
2026-04-0159.150.3
2026-05-0160.650
2026-06-0178.561.3
2026-07-0176.961.3
2026-08-0167.150.2
Rows × columns
24 × 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 drawdown, derived from the stored result.
ColumnTypeRangeNotes
month date 2024-09-01 to 2026-08-01
mstr_below_peak_pct number 0 to 78.5 percent
coin_below_peak_pct number 0 to 61.3 percent

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 monthly AS
(
    SELECT
        ticker,
        toStartOfMonth(date)           AS m,
        argMax(toFloat64(close), date) AS month_close
    FROM global_markets.stocks_daily_aggs
    WHERE ticker IN ('MSTR', 'COIN')
      AND date >= toStartOfMonth(today() - 730)
      AND date <  toStartOfMonth(today())
    GROUP BY ticker, m
),
peaks AS
(
    SELECT ticker, max(month_close) AS peak_close
    FROM monthly
    GROUP BY ticker
)
SELECT
    toString(mo.m) AS month,
    round(avgIf((1 - mo.month_close / pk.peak_close) * 100, mo.ticker = 'MSTR'), 1) AS mstr_below_peak_pct,
    round(avgIf((1 - mo.month_close / pk.peak_close) * 100, mo.ticker = 'COIN'), 1) AS coin_below_peak_pct
FROM monthly AS mo
INNER JOIN peaks AS pk ON pk.ticker = mo.ticker
GROUP BY month
HAVING countIf(mo.ticker = 'MSTR') > 0
   AND countIf(mo.ticker = 'COIN') > 0
ORDER BY month
⌘/Ctrl + Enter

Work with this data in your AI assistant

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

More from this analysiscrypto-covered-call-etfs
iv_history series 24×4 → iv_levels ranking 5×3 → call_premium ranking 5×3 → capped_months table 3×5 → The 2s10s spread by month, full history series 604×5 → One SPY $600 LEAPS call's price over two years (expired Jan 16 2026) series 470×2 → See all 2,595 queries →