{#if events.length > 0}

๐Ÿ“… Upcoming Events

{upcoming.length} upcoming {#if past.length > 0} {past.length} recent {/if}
{#each upcoming as ev}
{ev.date}
{ev.ticker} {eventIcon(ev.type)} {ev.label} {#if ev.detail}ยท {ev.detail}{/if} {#if ev.epsEstimate != null} EPS est. ${ev.epsEstimate.toFixed(2)} ยท Rev est. {fmtMoney(ev.revEstimate)} {/if}
{/each} {#if past.length > 0}
โ€” Past โ€”
{#each past as ev}
{ev.date}
{ev.ticker} {eventIcon(ev.type)} {ev.label}
{/each} {/if}
{/if}