payout_frequency
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-26, from monthly-dividend-stocks-for-russian-investors.
| payout_schedule | tickers |
|---|---|
| Каждый месяц | 1928 |
| Раз в квартал | 4436 |
| Два раза в год | 1057 |
| Раз в год | 1328 |
| Разово или без графика | 989 |
| Частота 104 | 1 |
| Частота 24 | 11 |
| Частота 3 | 2 |
| Частота 52 | 191 |
| Частота 365 | 1 |
- Rows × columns
- 10 × 2
- 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 |
|---|---|---|---|
payout_schedule |
text | 10 distinct values (Два раза в год, Каждый месяц, Раз в год…) | |
tickers |
number | 1 to 4,436 |
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.
SELECT
multiIf(frequency = 12, 'Каждый месяц',
frequency = 4, 'Раз в квартал',
frequency = 2, 'Два раза в год',
frequency = 1, 'Раз в год',
frequency = 0, 'Разово или без графика',
concat('Частота ', toString(frequency))) AS payout_schedule,
countDistinct(ticker) AS tickers
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= addMonths(toStartOfMonth(today()), -12)
AND ex_dividend_date < toStartOfMonth(today())
AND currency = 'USD'
AND cash_amount > 0
AND ticker NOT IN ('SPCX')
GROUP BY frequency
ORDER BY multiIf(frequency = 12, 1, frequency = 4, 2, frequency = 2, 3, frequency = 1, 4, 5)
Работайте с этими данными в своём ИИ-ассистенте
Открывается готовым к запросам, с данными этой страницы. Бесплатно, без аккаунта.