{"slug":"nke-dividend-for-spanish-investors","qid":"rentabilidad","label":"rentabilidad","post_title":"nke-dividend-for-spanish-investors","post_url":"/blog/lang/es/nke-dividend-for-spanish-investors#q-rentabilidad","columns":["month","mes_label","cierre_usd","dividendo_12m_usd","rentabilidad_pct"],"rows":[{"month":"2024-08-01","mes_label":"08/2024","cierre_usd":83.32,"dividendo_12m_usd":1.45,"rentabilidad_pct":1.74},{"month":"2024-09-01","mes_label":"09/2024","cierre_usd":88.4,"dividendo_12m_usd":1.48,"rentabilidad_pct":1.67},{"month":"2024-10-01","mes_label":"10/2024","cierre_usd":77.13,"dividendo_12m_usd":1.48,"rentabilidad_pct":1.92},{"month":"2024-11-01","mes_label":"11/2024","cierre_usd":78.77,"dividendo_12m_usd":1.48,"rentabilidad_pct":1.88},{"month":"2024-12-01","mes_label":"12/2024","cierre_usd":75.67,"dividendo_12m_usd":1.51,"rentabilidad_pct":2},{"month":"2025-01-01","mes_label":"01/2025","cierre_usd":76.9,"dividendo_12m_usd":1.51,"rentabilidad_pct":1.96},{"month":"2025-02-01","mes_label":"02/2025","cierre_usd":79.43,"dividendo_12m_usd":1.51,"rentabilidad_pct":1.9},{"month":"2025-03-01","mes_label":"03/2025","cierre_usd":63.48,"dividendo_12m_usd":1.54,"rentabilidad_pct":2.43},{"month":"2025-04-01","mes_label":"04/2025","cierre_usd":56.4,"dividendo_12m_usd":1.54,"rentabilidad_pct":2.73},{"month":"2025-05-01","mes_label":"05/2025","cierre_usd":60.59,"dividendo_12m_usd":1.54,"rentabilidad_pct":2.54},{"month":"2025-06-01","mes_label":"06/2025","cierre_usd":71.04,"dividendo_12m_usd":1.57,"rentabilidad_pct":2.21},{"month":"2025-07-01","mes_label":"07/2025","cierre_usd":74.69,"dividendo_12m_usd":1.57,"rentabilidad_pct":2.1},{"month":"2025-08-01","mes_label":"08/2025","cierre_usd":77.37,"dividendo_12m_usd":1.57,"rentabilidad_pct":2.03},{"month":"2025-09-01","mes_label":"09/2025","cierre_usd":69.73,"dividendo_12m_usd":1.6,"rentabilidad_pct":2.29},{"month":"2025-10-01","mes_label":"10/2025","cierre_usd":64.59,"dividendo_12m_usd":1.6,"rentabilidad_pct":2.48},{"month":"2025-11-01","mes_label":"11/2025","cierre_usd":64.63,"dividendo_12m_usd":1.6,"rentabilidad_pct":2.48},{"month":"2025-12-01","mes_label":"12/2025","cierre_usd":63.71,"dividendo_12m_usd":1.61,"rentabilidad_pct":2.53},{"month":"2026-01-01","mes_label":"01/2026","cierre_usd":61.81,"dividendo_12m_usd":1.61,"rentabilidad_pct":2.6},{"month":"2026-02-01","mes_label":"02/2026","cierre_usd":62.18,"dividendo_12m_usd":1.61,"rentabilidad_pct":2.59},{"month":"2026-03-01","mes_label":"03/2026","cierre_usd":52.82,"dividendo_12m_usd":1.62,"rentabilidad_pct":3.07},{"month":"2026-04-01","mes_label":"04/2026","cierre_usd":44.36,"dividendo_12m_usd":1.62,"rentabilidad_pct":3.65},{"month":"2026-05-01","mes_label":"05/2026","cierre_usd":46.23,"dividendo_12m_usd":1.62,"rentabilidad_pct":3.5},{"month":"2026-06-01","mes_label":"06/2026","cierre_usd":41.05,"dividendo_12m_usd":1.63,"rentabilidad_pct":3.97},{"month":"2026-07-01","mes_label":"07/2026","cierre_usd":41.71,"dividendo_12m_usd":1.63,"rentabilidad_pct":3.91},{"month":"2026-08-01","mes_label":"08/2026","cierre_usd":39.06,"dividendo_12m_usd":1.63,"rentabilidad_pct":4.17},{"month":"2026-09-01","mes_label":"09/2026","cierre_usd":36.14,"dividendo_12m_usd":1.64,"rentabilidad_pct":4.54}],"shape":"series","sql":"WITH mensual AS\n(\n    SELECT\n        toStartOfMonth(date)           AS mes,\n        argMax(toFloat64(close), date) AS cierre\n    FROM global_markets.stocks_daily_aggs\n    WHERE ticker = 'NKE'\n      AND date >= today() - 760\n    GROUP BY mes\n),\ndividendos AS\n(\n    SELECT\n        ex_dividend_date            AS fecha_ex,\n        any(toFloat64(cash_amount)) AS importe\n    FROM global_markets.stocks_dividends\n    WHERE ticker = 'NKE'\n      AND ex_dividend_date >= today() - 1300\n    GROUP BY ex_dividend_date\n)\nSELECT\n    m.mes                                          AS month,\n    formatDateTime(m.mes, '%m/%Y')                 AS mes_label,\n    round(any(m.cierre), 2)                        AS cierre_usd,\n    round(sum(d.importe), 4)                       AS dividendo_12m_usd,\n    round(100 * sum(d.importe) / any(m.cierre), 2) AS rentabilidad_pct\nFROM mensual AS m\nCROSS JOIN dividendos AS d\nWHERE d.fecha_ex >= addMonths(m.mes, -11)\n  AND d.fecha_ex <  addMonths(m.mes, 1)\nGROUP BY m.mes\nHAVING count() = 4\nORDER BY m.mes","computed_at":"2026-09-23T14:48:31.553558+00:00","elapsed":0.155324579}