STRASMORE/EXPLORE 2,469 QUERIES

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.

as of ranking 8×3read in context →
yillik_kayit_farki — 8 rows by 3 columns, computed from US exchange, SIP and OPRA data.
yearex_kayit_gun_deltaayni_gun_pct
20191.50
20201.430
20211.480.1
20221.490
20231.460
20240.4965.1
2025098.7
2026099
Rows × columns
8 × 3
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 yillik_kayit_farki, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter