STRASMORE/EXPLORE 2,500 QUERIES

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.

as of ranking 6×4read in context →
gawio_makampuni — 6 rows by 4 columns, computed from US exchange, SIP and OPRA data.
tickergawio_mwaka_usdkodi_ya_marekani_usdbaada_ya_kodi_usd
JNJ5.281.583.7
PG4.291.293
XOM4.121.242.88
MSFT3.641.092.55
KO2.10.631.47
AAPL1.060.320.74
Rows × columns
6 × 4
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 gawio_makampuni, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

Opens ready to query, with this page's data. Free, no account.