ecart_record
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.
| annee | ecart_moyen_jours | part_meme_jour_pct |
|---|---|---|
| 2019 | 1.54 | 0 |
| 2020 | 1.53 | 0 |
| 2021 | 1.56 | 0 |
| 2022 | 1.54 | 0.1 |
| 2023 | 1.47 | 0 |
| 2024 | 0.52 | 64.9 |
| 2025 | 0.04 | 97.5 |
| 2026 | 0.03 | 98.1 |
- Rows × columns
- 8 × 3
- 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 |
|---|---|---|---|
annee |
text | 8 distinct values (2019, 2020, 2021…) | |
ecart_moyen_jours |
number | 0.03 to 1.56 | |
part_meme_jour_pct |
number | 0 to 98.1 | percent |
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
toString(toYear(ex_date)) AS annee,
round(avg(dateDiff('day', ex_date, rec_date)), 2) AS ecart_moyen_jours,
round(100 * countIf(rec_date = ex_date) / count(), 1) AS part_meme_jour_pct
FROM
(
SELECT
any(ex_dividend_date) AS ex_date,
any(record_date) AS rec_date
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= '2019-01-01'
AND ex_dividend_date < today()
AND currency = 'USD'
AND frequency = 4
AND record_date >= ex_dividend_date
AND record_date <= ex_dividend_date + 10
GROUP BY id
)
GROUP BY annee
ORDER BY annee
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.