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

Dividends

{#if stockDividends?.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(stockDividends?.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}. Likely, the stock has never paid dividends. {/if}
{#if stockDividends?.length !== 0}
Dividend Yield
{dividendYield !== '0.00' ? dividendYield : '0'}%
Annual Dividend
${annualDividend !== '0.00' ? annualDividend : '0'}
Ex-Dividend Date
{new Date(exDividendDate)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })}
Payout Frequency
{payoutFrequency === 4 ? 'Quartely' : payoutFrequency === 2 ? 'Half-Yearly' : payoutFrequency === 1 ? 'Annually' : 'n/a'}
Payout Ratio
{payoutRatio !== '0.00' ? payoutRatio : '0'}%
Dividend Growth
{dividendGrowth !== 'NaN' ? dividendGrowth+'%' : '-'}

Dividends History

{#if stockDividends?.length !== 0} {#if mode}
* Dividend amounts are adjusted for stock splits when applicable. {:else}
{#each stockDividends as item} {/each}
Ex-Divid. Date Cash Amount Pay Date
{new Date(item?.date)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })} ${item?.adjDividend?.toFixed(2)} {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. {/if} {:else}

No history found

{/if} {/if}