STRASMORE/EXPLORE 2,648 QUERIES

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.

as of ranking 10×2read in context →
payout_frequency — 10 rows by 2 columns, computed from US exchange, SIP and OPRA data.
payout_scheduletickers
Каждый месяц1928
Раз в квартал4436
Два раза в год1057
Раз в год1328
Разово или без графика989
Частота 1041
Частота 2411
Частота 32
Частота 52191
Частота 3651
Rows × columns
10 × 2
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 payout_frequency, derived from the stored result.
ColumnTypeRangeNotes
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)
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.