{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} {$displayCompanyName} ({$etfTicker}) Dividend History, Dates & Yield · stocknear

Dividends

{#if rawData?.history?.length !== 0}
{dividendYield !== "0.00" ? dividendYield : "0"}%
{annualDividend !== "0.00" ? annualDividend : "0"}
{new Date(exDividendDate)?.toLocaleString("en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", })}
{payoutFrequency === 4 ? "Quartely" : payoutFrequency === 2 ? "Half-Yearly" : payoutFrequency === 1 ? "Annually" : "n/a"}
{payoutRatio !== "0.00" ? payoutRatio : "0"}%
{dividendGrowth !== "NaN" ? dividendGrowth + "%" : "-"}

Dividends History

{#if isLoaded} {#if rawData?.history?.length !== 0 && optionsDividend}
{#each rawData?.history as item} {/each}
Ex-Divid. Date Cash Amount Record Date Pay Date
{new Date(item?.date)?.toLocaleString("en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", })} {item?.adjDividend?.toFixed(3)} {item?.recordDate?.length !== 0 ? new Date(item?.recordDate)?.toLocaleString( "en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", }, ) : "n/a"} {item?.paymentDate?.length !== 0 ? new Date(item?.paymentDate)?.toLocaleString( "en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", }, ) : "n/a"}
* Dividend amounts are adjusted for stock splits when applicable. {:else}

No history found

{/if} {:else}
{/if} {/if}