t_levels
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.
| level_start | level_start_label | quarterly_dps | quarters_paid | latest_ex_label |
|---|---|---|---|---|
| 2014-01-08 | Jan 2014 | 0.46 | 4 | Oct 2014 |
| 2015-01-07 | Jan 2015 | 0.47 | 4 | Oct 2015 |
| 2016-01-06 | Jan 2016 | 0.48 | 4 | Oct 2016 |
| 2017-01-06 | Jan 2017 | 0.49 | 4 | Oct 2017 |
| 2018-01-09 | Jan 2018 | 0.5 | 4 | Oct 2018 |
| 2019-01-09 | Jan 2019 | 0.51 | 4 | Oct 2019 |
| 2020-01-09 | Jan 2020 | 0.52 | 9 | Jan 2022 |
| 2022-04-13 | Apr 2022 | 0.2775 | 18 | Jul 2026 |
- Rows × columns
- 8 × 5
- Period covered
- to
- 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 |
|---|---|---|---|
level_start |
date | 2014-01-08 to 2022-04-13 | |
level_start_label |
text | 8 distinct values (Apr 2022, Jan 2014, Jan 2015…) | |
quarterly_dps |
number | 0.2775 to 0.52 | |
quarters_paid |
number | 4 to 18 | |
latest_ex_label |
text | 8 distinct values (Jan 2022, Jul 2026, Oct 2014…) |
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(ex_dividend_date) AS ex_date,
any(toFloat64(cash_amount)) AS amount
FROM global_markets.stocks_dividends
WHERE ticker = 'T'
AND cash_amount > 0
AND ex_dividend_date >= toDate('2014-01-01')
GROUP BY id
)
SELECT
toString(min(ex_date)) AS level_start,
formatDateTime(min(ex_date), '%b %Y') AS level_start_label,
round(amount, 4) AS quarterly_dps,
count() AS quarters_paid,
formatDateTime(max(ex_date), '%b %Y') AS latest_ex_label
FROM paid
GROUP BY amount
ORDER BY min(ex_date)
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.