rythme
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-25, from ex-dividend-dates-on-euronext-paris.
| rythme | emetteurs |
|---|---|
| Trimestriel | 4448 |
| Mensuel | 1914 |
| Annuel | 1336 |
| Autre ou non renseigné | 1174 |
| Semestriel | 1064 |
- Rows × columns
- 5 × 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 |
|---|---|---|---|
rythme |
text | 5 distinct values (Annuel, Autre ou non renseigné, Mensuel…) | |
emetteurs |
number | 1,064 to 4,448 |
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(freq = 12, 'Mensuel',
freq = 4, 'Trimestriel',
freq = 2, 'Semestriel',
freq = 1, 'Annuel',
'Autre ou non renseigné') AS rythme,
countDistinct(sym) AS emetteurs
FROM
(
SELECT
any(ticker) AS sym,
any(frequency) AS freq,
any(ex_dividend_date) AS ex_date
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= today() - 365
AND ex_dividend_date < today()
AND currency = 'USD'
AND cash_amount > 0
GROUP BY id
)
GROUP BY rythme
ORDER BY emetteurs DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.