annual_dps
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 vz-vs-t-dividend.
| year | vz_dps | t_dps |
|---|---|---|
| 2016 | 2.2725 | 1.92 |
| 2017 | 2.3225 | 1.96 |
| 2018 | 2.3725 | 2 |
| 2019 | 2.4225 | 2.04 |
| 2020 | 2.4725 | 2.08 |
| 2021 | 2.5225 | 2.08 |
| 2022 | 2.5725 | 1.3525 |
| 2023 | 2.6225 | 1.11 |
| 2024 | 2.6725 | 1.11 |
| 2025 | 2.7225 | 1.11 |
- Rows × columns
- 10 × 3
- 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 |
|---|---|---|---|
year |
number | 2,016 to 2,025 | |
vz_dps |
number | 2.2725 to 2.7225 | |
t_dps |
number | 1.11 to 2.08 |
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 paid AS
(
SELECT
id,
any(ticker) AS tkr,
any(ex_dividend_date) AS ex_date,
any(toFloat64(cash_amount)) AS amount
FROM global_markets.stocks_dividends
WHERE ticker IN ('VZ', 'T')
AND cash_amount > 0
GROUP BY id
)
SELECT
toYear(ex_date) AS year,
round(sumIf(amount, tkr = 'VZ'), 4) AS vz_dps,
round(sumIf(amount, tkr = 'T'), 4) AS t_dps
FROM paid
WHERE toYear(ex_date) BETWEEN toYear(today()) - 10 AND toYear(today()) - 1
GROUP BY year
HAVING countIf(tkr = 'VZ') > 0 AND countIf(tkr = 'T') > 0
ORDER BY year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.