STRASMORE/EXPLORE 2,595 QUERIES

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.

as of ranking 10×2read in context →
ecarts_paiement — 10 rows by 2 columns, computed from US exchange, SIP and OPRA data.
tickerjours_detachement_paiement
PEP27.1
XOM26.1
PG25.7
MSFT24.2
CVX22.8
KO16.8
JNJ14.5
HD14.2
MCD14.2
AAPL4
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 ecarts_paiement, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

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