mavuno_gawio
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.
| ticker | tarehe_bei | gawio_kwa_hisa | malipo_mwaka | mavuno_ghafi_pct | kodi_pct | mavuno_halisi_pct |
|---|---|---|---|---|---|---|
| SCHD | 2026-09-24 | 1.0541 | 4 | 3.16 | 0.95 | 2.21 |
| VOO | 2026-09-24 | 7.3456 | 4 | 1.04 | 0.31 | 0.73 |
| SPY | 2026-09-24 | 7.5827 | 4 | 0.99 | 0.3 | 0.7 |
| QQQ | 2026-09-24 | 3.0918 | 4 | 0.42 | 0.13 | 0.29 |
- Rows × columns
- 4 × 7
- Period covered
- 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 |
|---|---|---|---|
ticker |
text | 4 distinct values (QQQ, SCHD, SPY…) | |
tarehe_bei |
date | 2026-09-24 | |
gawio_kwa_hisa |
number | 1.0541 to 7.5827 | |
malipo_mwaka |
number | every row is 4 | |
mavuno_ghafi_pct |
number | 0.42 to 3.16 | percent |
kodi_pct |
number | 0.13 to 0.95 | percent |
mavuno_halisi_pct |
number | 0.29 to 2.21 | 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.
WITH bei_hivi_sasa AS
(
SELECT
ticker,
argMax(toFloat64(close), date) AS bei,
toString(max(date)) AS tarehe_bei
FROM global_markets.stocks_daily_aggs
WHERE ticker IN ('VOO', 'SPY', 'QQQ', 'SCHD')
AND date >= today() - 30
GROUP BY ticker
),
gawio_miezi_12 AS
(
SELECT
ticker,
sum(kiasi) AS jumla,
count() AS malipo
FROM
(
SELECT
ticker,
id,
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 > today() - 365
AND ex_dividend_date <= today()
GROUP BY ticker, id
)
GROUP BY ticker
)
SELECT
g.ticker AS ticker,
b.tarehe_bei AS tarehe_bei,
round(g.jumla, 4) AS gawio_kwa_hisa,
toUInt8(g.malipo) AS malipo_mwaka,
round(100 * g.jumla / b.bei, 2) AS mavuno_ghafi_pct,
round(100 * g.jumla * 0.30 / b.bei, 2) AS kodi_pct,
round(100 * g.jumla * 0.70 / b.bei, 2) AS mavuno_halisi_pct
FROM gawio_miezi_12 AS g
INNER JOIN bei_hivi_sasa AS b ON b.ticker = g.ticker
ORDER BY mavuno_ghafi_pct DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.