STRASMORE/EXPLORE 2,173 QUERIES 22Y EQUITIES · 12Y OPTIONS

2,173 answered market questions

every one with its exact SQL, its result and the date it was computed · free, no signup

Hard-to-Borrow Lists and Borrow Fees
Every KO ex-dividend date a short position would have paid through, 2023 to mid-2026series · 2026-08-22 · 14×3Preview: a 14-point series, ending higher. Daily short volume as a share of total AAPL volume, May to July 2026series · 2026-08-22 · 53×3Preview: a 16-point series, roughly flat. How many liquid stocks sit in each days-to-cover bucketranking · 2026-08-22 · 5×2Preview: 5 ranked values, largest first. Days to cover across six household names, latest settlement dateranking · 2026-08-22 · 6×3Preview: 6 ranked values, largest first.
Every KO ex-dividend date a short position would have paid through, 2023 to mid-2026

Every KO ex-dividend date a short position would have paid through, 2023 to mid-2026

most recentas of series 14×3read in context →
Every KO ex-dividend date a short position would have paid through, 2023 to mid-2026 — 14 rows by 3 columns, computed from US exchange, SIP and OPRA data.
ex_dateex_date_labeldividend_per_share
2023-03-16Mar 16, 20230.46
2023-06-15Jun 15, 20230.46
2023-09-14Sep 14, 20230.46
2023-11-30Nov 30, 20230.46
2024-03-14Mar 14, 20240.485
2024-06-14Jun 14, 20240.485
2024-09-13Sep 13, 20240.485
2024-11-29Nov 29, 20240.485
2025-03-14Mar 14, 20250.51
2025-06-13Jun 13, 20250.51
2025-09-15Sep 15, 20250.51
2025-12-01Dec 1, 20250.51
2026-03-13Mar 13, 20260.53
2026-06-15Jun 15, 20260.53
the exact SQL behind every number
SELECT
    toString(ex_dividend_date)                    AS ex_date,
    formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,
    round(toFloat64(max(cash_amount)), 4)         AS dividend_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
  AND ex_dividend_date >= '2023-01-01'
  AND ex_dividend_date <  '2026-08-01'
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
$