yillik_kayit_farki
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-22, from ex-dividend-date-for-turkish-investors.
| year | ex_kayit_gun_delta | ayni_gun_pct |
|---|---|---|
| 2019 | 1.5 | 0 |
| 2020 | 1.43 | 0 |
| 2021 | 1.48 | 0.1 |
| 2022 | 1.49 | 0 |
| 2023 | 1.46 | 0 |
| 2024 | 0.49 | 65.1 |
| 2025 | 0 | 98.7 |
| 2026 | 0 | 99 |
- 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 |
|---|---|---|---|
year |
text | 8 distinct values (2019, 2020, 2021…) | |
ex_kayit_gun_delta |
number | 0 to 1.5 | |
ayni_gun_pct |
number | 0 to 99 | 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_dividend_date)) AS year,
round(avg(dateDiff('day', ex_dividend_date, record_date)), 2) AS ex_kayit_gun_delta,
round(100 * countIf(record_date = ex_dividend_date) / count(), 1) AS ayni_gun_pct
FROM global_markets.stocks_dividends
WHERE ex_dividend_date >= '2019-01-01'
AND ex_dividend_date <= today()
AND record_date >= '2019-01-01'
AND currency = 'USD'
AND cash_amount > 0
AND ticker NOT IN ('SPCX')
GROUP BY year
ORDER BY year