STRASMORE/EXPLORE 2,500 QUERIES

rentabilidad

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 nke-dividend-for-spanish-investors.

as of series 26×5read in context →
rentabilidad — 26 rows by 5 columns, computed from US exchange, SIP and OPRA data.
monthmes_labelcierre_usddividendo_12m_usdrentabilidad_pct
2024-08-0108/202483.321.451.74
2024-09-0109/202488.41.481.67
2024-10-0110/202477.131.481.92
2024-11-0111/202478.771.481.88
2024-12-0112/202475.671.512
2025-01-0101/202576.91.511.96
2025-02-0102/202579.431.511.9
2025-03-0103/202563.481.542.43
2025-04-0104/202556.41.542.73
2025-05-0105/202560.591.542.54
2025-06-0106/202571.041.572.21
2025-07-0107/202574.691.572.1
2025-08-0108/202577.371.572.03
2025-09-0109/202569.731.62.29
2025-10-0110/202564.591.62.48
2025-11-0111/202564.631.62.48
2025-12-0112/202563.711.612.53
2026-01-0101/202661.811.612.6
2026-02-0102/202662.181.612.59
2026-03-0103/202652.821.623.07
2026-04-0104/202644.361.623.65
2026-05-0105/202646.231.623.5
2026-06-0106/202641.051.633.97
2026-07-0107/202641.711.633.91
2026-08-0108/202639.061.634.17
2026-09-0109/202636.141.644.54
Rows × columns
26 × 5
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 rentabilidad, derived from the stored result.
ColumnTypeRangeNotes
month date 2024-08-01 to 2026-09-01
mes_label text 26 distinct values (01/2025, 01/2026, 02/2025…)
cierre_usd number 36.14 to 88.4 US dollars
dividendo_12m_usd number 1.45 to 1.64 US dollars
rentabilidad_pct number 1.67 to 4.54 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 mensual AS
(
    SELECT
        toStartOfMonth(date)           AS mes,
        argMax(toFloat64(close), date) AS cierre
    FROM global_markets.stocks_daily_aggs
    WHERE ticker = 'NKE'
      AND date >= today() - 760
    GROUP BY mes
),
dividendos AS
(
    SELECT
        ex_dividend_date            AS fecha_ex,
        any(toFloat64(cash_amount)) AS importe
    FROM global_markets.stocks_dividends
    WHERE ticker = 'NKE'
      AND ex_dividend_date >= today() - 1300
    GROUP BY ex_dividend_date
)
SELECT
    m.mes                                          AS month,
    formatDateTime(m.mes, '%m/%Y')                 AS mes_label,
    round(any(m.cierre), 2)                        AS cierre_usd,
    round(sum(d.importe), 4)                       AS dividendo_12m_usd,
    round(100 * sum(d.importe) / any(m.cierre), 2) AS rentabilidad_pct
FROM mensual AS m
CROSS JOIN dividendos AS d
WHERE d.fecha_ex >= addMonths(m.mes, -11)
  AND d.fecha_ex <  addMonths(m.mes, 1)
GROUP BY m.mes
HAVING count() = 4
ORDER BY m.mes
⌘/Ctrl + Enter

Trabaja con estos datos en tu asistente de IA

Se abre listo para consultar, con los datos de esta página. Gratis, sin cuenta.