ecarts_paiement
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.
| ticker | jours_detachement_paiement |
|---|---|
| PEP | 27.1 |
| XOM | 26.1 |
| PG | 25.7 |
| MSFT | 24.2 |
| CVX | 22.8 |
| KO | 16.8 |
| JNJ | 14.5 |
| HD | 14.2 |
| MCD | 14.2 |
| AAPL | 4 |
- 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 |
|---|---|---|---|
ticker |
text | 10 distinct values (AAPL, CVX, HD…) | |
jours_detachement_paiement |
number | 4 to 27.1 |
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
sym AS ticker,
round(avg(dateDiff('day', ex_date, pay_dt)), 1) AS jours_detachement_paiement
FROM
(
SELECT
any(ticker) AS sym,
any(ex_dividend_date) AS ex_date,
any(pay_date) AS pay_dt
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'PG', 'JNJ', 'XOM', 'CVX', 'PEP', 'MCD', 'HD')
AND ex_dividend_date >= today() - 1095
AND ex_dividend_date < today()
AND currency = 'USD'
AND pay_date >= ex_dividend_date
AND pay_date <= ex_dividend_date + 120
GROUP BY id
)
GROUP BY sym
HAVING count() >= 4
ORDER BY jours_detachement_paiement DESC
Travaillez ces données dans votre assistant IA
S'ouvre prêt à interroger, avec les données de cette page. Gratuit, sans compte.