STRASMORE/EXPLORE 2,648 QUERIES

o_monthly_trace

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 series 24×4read in context →
o_monthly_trace — 24 rows by 4 columns, computed from US exchange, SIP and OPRA data.
monthmonth_labelgross_per_share_usdnet_per_share_usd
2024-09-0109.20240.2630.1841
2024-10-0110.20240.26350.1844
2024-11-0111.20240.26350.1844
2024-12-0112.20240.26350.1844
2025-01-0101.20250.2640.1848
2025-02-0102.20250.2640.1848
2025-03-0103.20250.2680.1876
2025-04-0104.20250.26850.188
2025-05-0105.20250.26850.188
2025-06-0106.20250.26850.188
2025-07-0107.20250.2690.1883
2025-08-0108.20250.2690.1883
2025-09-0109.20250.2690.1883
2025-10-0110.20250.5390.3773
2025-11-0111.20250.26950.1887
2025-12-0112.20250.270.189
2026-01-0101.20260.270.189
2026-02-0102.20260.270.189
2026-03-0103.20260.27050.1894
2026-04-0104.20260.27050.1894
2026-05-0105.20260.27050.1894
2026-06-0106.20260.2710.1897
2026-07-0107.20260.2710.1897
2026-08-0108.20260.2710.1897
Rows × columns
24 × 4
Period covered
to
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 o_monthly_trace, derived from the stored result.
ColumnTypeRangeNotes
month date 2024-09-01 to 2026-08-01
month_label text 24 distinct values (01.2025, 01.2026, 02.2025…)
gross_per_share_usd number 0.263 to 0.539 US dollars
net_per_share_usd number 0.1841 to 0.3773 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
    month                                              AS month,
    formatDateTime(month, '%m.%Y')                     AS month_label,
    round(toFloat64(sum(amount)), 4)                   AS gross_per_share_usd,
    round(toFloat64(sum(amount)) * 0.70, 4)            AS net_per_share_usd
FROM
(
    SELECT
        toStartOfMonth(ex_dividend_date) AS month,
        ex_dividend_date,
        max(cash_amount)                 AS amount
    FROM global_markets.stocks_dividends
    WHERE ticker = 'O'
      AND currency = 'USD'
      AND cash_amount > 0
      AND ex_dividend_date >= addMonths(toStartOfMonth(today()), -24)
      AND ex_dividend_date <  toStartOfMonth(today())
    GROUP BY month, ex_dividend_date
)
GROUP BY month
ORDER BY month
⌘/Ctrl + Enter

Work with this data in your AI assistant

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