STRASMORE/EXPLORE 2,648 QUERIES

gross_vs_net

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-26, from monthly-dividend-stocks-for-russian-investors.

as of ranking 12×3read in context →
gross_vs_net — 12 rows by 3 columns, computed from US exchange, SIP and OPRA data.
tickergross_yield_pctnet_yield_pct
SLJY23.7416.62
ECAT23.616.52
BCAT22.8415.99
CRF22.7515.92
CLM22.7315.91
MSFY21.715.19
DFII21.0414.72
XPAY20.9914.69
ARR20.4314.3
AMZP20.414.28
TLTX20.0414.03
NHS19.8513.9
Rows × columns
12 × 3
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 gross_vs_net, derived from the stored result.
ColumnTypeRangeNotes
ticker text 12 distinct values (AMZP, ARR, BCAT…)
gross_yield_pct number 19.85 to 23.74 percent
net_yield_pct number 13.9 to 16.62 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 monthly AS (
    SELECT
        ticker,
        ex_dividend_date,
        max(cash_amount) AS amount
    FROM global_markets.stocks_dividends
    WHERE ex_dividend_date >= addMonths(toStartOfMonth(today()), -12)
      AND ex_dividend_date <  toStartOfMonth(today())
      AND currency = 'USD'
      AND cash_amount > 0
      AND ticker NOT IN ('SPCX')
    GROUP BY ticker, ex_dividend_date
),
payers AS (
    SELECT
        ticker,
        round(toFloat64(sum(amount)), 4) AS annual_usd
    FROM monthly
    GROUP BY ticker
    HAVING count() = 12
       AND countDistinct(toStartOfMonth(ex_dividend_date)) = 12
),
last_price AS (
    SELECT
        ticker,
        toFloat64(argMax(close, date)) AS last_close
    FROM global_markets.stocks_daily_aggs
    WHERE date >= today() - 30
      AND ticker IN (SELECT ticker FROM payers)
    GROUP BY ticker
)
SELECT
    p.ticker                                                AS ticker,
    round(100 * p.annual_usd / x.last_close, 2)             AS gross_yield_pct,
    round(100 * p.annual_usd * 0.70 / x.last_close, 2)      AS net_yield_pct
FROM payers AS p
INNER JOIN last_price AS x ON x.ticker = p.ticker
WHERE x.last_close >= 5
  AND 100 * p.annual_usd / x.last_close BETWEEN 2 AND 25
ORDER BY 100 * p.annual_usd / x.last_close DESC
LIMIT 12
⌘/Ctrl + Enter

Work with this data in your AI assistant

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