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

Dividends

{#if rawData?.history?.length !== 0} {#if !dateDistance} {$displayCompanyName} has an annual dividend of ${annualDividend} per share, with a forward yield of {dividendYield}%. The dividend is paid every {payoutFrequency === 4 ? "3 months" : payoutFrequency === 2 ? "6 months" : payoutFrequency === 1 ? "12 months" : "n/a"} and the last ex-dividend date was {new Date(exDividendDate)?.toLocaleString("en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", })} {:else} {$displayCompanyName} issued its most recent dividend on {new Date(rawData?.history?.at(0)?.date)?.toLocaleString( "en-US", { month: "short", day: "numeric", year: "numeric", daySuffix: "2-digit", }, )}. Since then, the company has not distributed any further dividends for over 12 months. {/if} {:else} No dividend history available for {$displayCompanyName}. {/if}
{#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}