The biggest names going ex-dividend on July 1, ranked by the day's dollar volume
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-07-26, from Market Recap: July 1, 2026, The Day in Numbers.
| ticker | cash_per_share | payments_per_year | day_close | pct_of_price | annualized_yield_pct | day_dollar_bn |
|---|---|---|---|---|---|---|
| SGOV | 0.2958 | 12 | 100.4 | 0.29 | 3.54 | 3.5 |
| HYG | 0.3688 | 12 | 79.62 | 0.46 | 5.56 | 2.77 |
| LQD | 0.3815 | 12 | 108.46 | 0.35 | 4.22 | 2.57 |
| TLT | 0.318 | 12 | 85.52 | 0.37 | 4.46 | 2.01 |
| BITO | 0.0104 | 12 | 8.14 | 0.13 | 1.53 | 1.84 |
| BND | 0.2445 | 12 | 73.04 | 0.33 | 4.02 | 1.51 |
| BIL | 0.2676 | 12 | 91.39 | 0.29 | 3.51 | 1.47 |
| VCIT | 0.3319 | 12 | 82.18 | 0.4 | 4.85 | 0.93 |
- Rows × columns
- 8 × 7
- 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 |
|---|---|---|---|
ticker |
text | 8 distinct values (BIL, BITO, BND…) | |
cash_per_share |
number | 0.0104 to 0.3815 | |
payments_per_year |
number | every row is 12 | |
day_close |
number | 8.14 to 108.46 | US dollars |
pct_of_price |
number | 0.13 to 0.46 | percent |
annualized_yield_pct |
number | 1.53 to 5.56 | percent |
day_dollar_bn |
number | 0.93 to 3.5 |
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 divs AS (
SELECT ticker, max(toFloat64(cash_amount)) AS cash, max(frequency) AS freq
FROM global_markets.stocks_dividends
WHERE ex_dividend_date = '2026-07-01' AND distribution_type = 'recurring'
GROUP BY ticker
),
tape AS (
SELECT ticker,
sum(toFloat64(close) * toFloat64(volume)) AS dollar_volume,
toFloat64(argMax(close, (window_start, close))) AS day_close
FROM global_markets.delayed_stocks_minute_aggs
WHERE window_start >= '2026-07-01 13:30:00' AND window_start < '2026-07-01 20:00:00'
AND ticker NOT IN ('SPCX')
GROUP BY ticker
)
SELECT
d.ticker AS ticker,
round(d.cash, 4) AS cash_per_share,
d.freq AS payments_per_year,
round(t.day_close, 2) AS day_close,
round(100 * d.cash / t.day_close, 2) AS pct_of_price,
round(100 * d.cash * d.freq / t.day_close, 2) AS annualized_yield_pct,
round(t.dollar_volume / 1e9, 2) AS day_dollar_bn
FROM divs d JOIN tape t ON d.ticker = t.ticker
WHERE t.dollar_volume > 0 AND d.cash > 0
ORDER BY t.dollar_volume DESC
LIMIT 8