STRASMORE/EXPLORE 2,549 QUERIES

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.

as of table 4×7read in context →
mavuno_gawio — 4 rows by 7 columns, computed from US exchange, SIP and OPRA data.
tickertarehe_beigawio_kwa_hisamalipo_mwakamavuno_ghafi_pctkodi_pctmavuno_halisi_pct
SCHD2026-09-241.054143.160.952.21
VOO2026-09-247.345641.040.310.73
SPY2026-09-247.582740.990.30.7
QQQ2026-09-243.091840.420.130.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
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for mavuno_gawio, derived from the stored result.
ColumnTypeRangeNotes
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
⌘/Ctrl + Enter

Work with this data in your AI assistant

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