{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} Earnings Calendar · stocknear

Earnings Calendar

{#each weekday as day, index}
{/each}
{#each weekday as day, index} {#if index === selectedWeekday} {#if day?.length !== 0}

{formattedWeekday[index]?.split(", ")[1]} · {day?.length} Earnings

{#each day as item, index} {/each}
{item?.name.length > 20 ? item?.name?.slice(0, 20) + "..." : item?.name} {item?.marketCap !== null ? abbreviateNumber(item?.marketCap) : "-"}
{item?.revenueEst !== null ? abbreviateNumber(item?.revenueEst) : "-"} {#if item?.revenueEst !== null && item?.revenueEst !== null} {#if item?.revenueEst / item?.revenuePrior - 1 >= 0} +{( (item?.revenueEst / item?.revenuePrior - 1) * 100 )?.toFixed(2)}% {:else} {( (item?.revenueEst / item?.revenuePrior - 1) * 100 )?.toFixed(2)}% {/if} {/if}
{item?.epsEst !== null ? item?.epsEst?.toFixed(2) : "-"} {#if item?.epsEst !== null && item?.epsPrior !== null && item?.epsPrior !== 0} {#if item?.epsEst / item?.epsPrior - 1 >= 0} +{( (item?.epsEst / item?.epsPrior - 1) * 100 )?.toFixed(2)}% {:else} {( (item?.epsEst / item?.epsPrior - 1) * 100 )?.toFixed(2)}% {/if} {/if}
{#if item?.release === "amc"} After Close {:else} Before Open {/if}
{:else}
No Earnings reports available for the day.
{/if} {/if} {/each}