gawio_makampuni
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-23, from how-to-buy-us-stocks-from-kenya.
| ticker | gawio_mwaka_usd | kodi_ya_marekani_usd | baada_ya_kodi_usd |
|---|---|---|---|
| JNJ | 5.28 | 1.58 | 3.7 |
| PG | 4.29 | 1.29 | 3 |
| XOM | 4.12 | 1.24 | 2.88 |
| MSFT | 3.64 | 1.09 | 2.55 |
| KO | 2.1 | 0.63 | 1.47 |
| AAPL | 1.06 | 0.32 | 0.74 |
- Rows × columns
- 6 × 4
- 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 | 6 distinct values (AAPL, JNJ, KO…) | |
gawio_mwaka_usd |
number | 1.06 to 5.28 | US dollars |
kodi_ya_marekani_usd |
number | 0.32 to 1.58 | US dollars |
baada_ya_kodi_usd |
number | 0.74 to 3.7 | US dollars |
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
ticker,
round(sum(gawio), 2) AS gawio_mwaka_usd,
round(sum(gawio) * 0.30, 2) AS kodi_ya_marekani_usd,
round(sum(gawio) * 0.70, 2) AS baada_ya_kodi_usd
FROM
(
SELECT
ticker,
ex_dividend_date,
toFloat64(any(cash_amount)) AS gawio
FROM global_markets.stocks_dividends
WHERE ticker IN ('AAPL', 'MSFT', 'KO', 'JNJ', 'PG', 'XOM')
AND ex_dividend_date >= today() - 365
AND ex_dividend_date <= today()
GROUP BY ticker, ex_dividend_date
)
GROUP BY ticker
ORDER BY gawio_mwaka_usd DESC
Work with this data in your AI assistant
Opens ready to query, with this page's data. Free, no account.