gawio_kwa_mwaka
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-24, from index-funds-for-kenyan-investors.
| year | voo_gawio | spy_gawio | qqq_gawio | schd_gawio |
|---|---|---|---|---|
| 2019 | 5.571 | 5.618 | 1.582 | 0.575 |
| 2020 | 5.303 | 5.691 | 1.737 | 0.676 |
| 2021 | 5.437 | 5.718 | 1.697 | 0.75 |
| 2022 | 5.947 | 6.321 | 2.135 | 0.854 |
| 2023 | 6.357 | 6.634 | 2.536 | 0.886 |
| 2024 | 6.704 | 7.065 | 2.846 | 0.994 |
| 2025 | 7.068 | 7.281 | 2.795 | 1.048 |
- Rows × columns
- 7 × 5
- 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 | 7 distinct values (2019, 2020, 2021…) | |
voo_gawio |
number | 5.303 to 7.068 | |
spy_gawio |
number | 5.618 to 7.281 | |
qqq_gawio |
number | 1.582 to 2.846 | |
schd_gawio |
number | 0.575 to 1.048 |
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(sumIf(kiasi, ticker = 'VOO'), 3) AS voo_gawio,
round(sumIf(kiasi, ticker = 'SPY'), 3) AS spy_gawio,
round(sumIf(kiasi, ticker = 'QQQ'), 3) AS qqq_gawio,
round(sumIf(kiasi, ticker = 'SCHD'), 3) AS schd_gawio
FROM
(
SELECT
ticker,
id,
ex_dividend_date,
max(ifNull(nullIf(toFloat64(split_adjusted_cash_amount), 0.), toFloat64(cash_amount))) AS kiasi
FROM global_markets.stocks_dividends
WHERE ticker IN ('VOO', 'SPY', 'QQQ', 'SCHD')
AND ex_dividend_date >= '2019-01-01'
AND ex_dividend_date < '2026-01-01'
GROUP BY ticker, id, ex_dividend_date
)
GROUP BY year
ORDER BY year
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.