{"slug":"how-to-check-if-a-us-stock-is-sharia-compliant","qid":"dividend_stream","label":"dividend_stream","post_title":"how-to-check-if-a-us-stock-is-sharia-compliant","post_url":"/blog/lang/ar/how-to-check-if-a-us-stock-is-sharia-compliant#q-dividend_stream","columns":["ex_date","ex_date_label","cash_amount_usd","cumulative_usd"],"rows":[{"ex_date":"2025-11-10","ex_date_label":"Nov 10, 2025","cash_amount_usd":0.26,"cumulative_usd":0.26},{"ex_date":"2026-02-09","ex_date_label":"Feb 9, 2026","cash_amount_usd":0.26,"cumulative_usd":0.52},{"ex_date":"2026-05-11","ex_date_label":"May 11, 2026","cash_amount_usd":0.27,"cumulative_usd":0.79},{"ex_date":"2026-08-10","ex_date_label":"Aug 10, 2026","cash_amount_usd":0.27,"cumulative_usd":1.06}],"shape":"series","sql":"SELECT\n    ex_date,\n    ex_date_label,\n    cash_amount_usd,\n    round(sum(cash_amount_usd) OVER (ORDER BY ex_date), 4) AS cumulative_usd\nFROM\n(\n    SELECT\n        toString(ex_dividend_date)                    AS ex_date,\n        formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,\n        round(toFloat64(any(cash_amount)), 4)         AS cash_amount_usd\n    FROM global_markets.stocks_dividends\n    WHERE ticker = 'AAPL'\n      AND ex_dividend_date > today() - 366\n      AND ex_dividend_date <= today()\n      AND cash_amount > 0\n    GROUP BY ex_dividend_date\n    ORDER BY ex_dividend_date\n)\nORDER BY ex_date","computed_at":"2026-09-22T14:55:47.053331+00:00","elapsed":0.054016261}