STRASMORE/EXPLORE 2,549 QUERIES

ex_date_drop

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-24, from weekly-dividend-etfs-explained.

as of ranking 10×4read in context →
ex_date_drop — 10 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickerex_datesavg_distributionavg_overnight_move
AMDW520.93250.0649
ARMW470.6601-0.2778
HOOY500.6431-1.1604
HOOW520.5787-0.1989
PLTY510.5699-0.8865
WNTR510.5683-0.3566
AMDY500.5457-0.6551
CHPY530.5243-0.3058
GDXW460.5189-0.1916
GOOW520.4898-0.0168
Rows × columns
10 × 4
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 ex_date_drop, derived from the stored result.
ColumnTypeRangeNotes
ticker text 10 distinct values (AMDW, AMDY, ARMW…)
ex_dates number 46 to 53
avg_distribution number 0.4898 to 0.9325
avg_overnight_move number -1.1604 to 0.0649

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
    weekly AS
    (
        SELECT ticker
        FROM global_markets.stocks_dividends
        WHERE ex_dividend_date >= today() - 365
          AND ex_dividend_date <= today()
          AND ticker NOT IN ('SPCX')
        GROUP BY ticker
        HAVING countDistinct(ex_dividend_date) >= 40
    ),
    payments AS
    (
        SELECT
            ticker,
            ex_dividend_date  AS ex_date,
            max(cash_amount)  AS amount
        FROM global_markets.stocks_dividends
        WHERE ex_dividend_date >= today() - 365
          AND ex_dividend_date <= today()
          AND ticker IN (SELECT ticker FROM weekly)
        GROUP BY ticker, ex_date
    ),
    px AS
    (
        SELECT
            ticker,
            date,
            toFloat64(any(close)) AS close
        FROM global_markets.stocks_daily_aggs
        WHERE date >= today() - 400
          AND ticker IN (SELECT ticker FROM weekly)
        GROUP BY ticker, date
    )
SELECT
    ticker,
    count()                                AS ex_dates,
    round(avg(amount), 4)                  AS avg_distribution,
    round(avg(ex_close - prior_close), 4)  AS avg_overnight_move
FROM
(
    SELECT
        d.ticker                   AS ticker,
        d.ex_date                  AS ex_date,
        toFloat64(any(d.amount))   AS amount,
        any(pe.close)              AS ex_close,
        argMax(pp.close, pp.date)  AS prior_close
    FROM payments AS d
    INNER JOIN px AS pe ON pe.ticker = d.ticker AND pe.date = d.ex_date
    INNER JOIN px AS pp ON pp.ticker = d.ticker
    WHERE pp.date <  d.ex_date
      AND pp.date >= d.ex_date - 7
    GROUP BY d.ticker, d.ex_date
)
GROUP BY ticker
ORDER BY avg_distribution DESC
LIMIT 10
⌘/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 analysisweekly-dividend-etfs-explained
payout_cadence ranking 12×3 → cash_vs_price ranking 10×4 → weekly_payer_growth ranking 5×2 → ex_date_trace series 103×4 → 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 → See all 2,549 queries →