STRASMORE/EXPLORE 2,595 QUERIES

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.

as of ranking 5×2read in context →
rythme — 5 rows by 2 columns, computed from US exchange, SIP and OPRA data.
rythmeemetteurs
Trimestriel4448
Mensuel1914
Annuel1336
Autre ou non renseigné1174
Semestriel1064
Rows × columns
5 × 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 rythme, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Travaillez ces données dans votre assistant IA

S'ouvre prêt à interroger, avec les données de cette page. Gratuit, sans compte.