{#if isLoaded} {#if watchList.length !== 0}
{#if roundedMean >= 0} +{roundedMean}% {:else if roundedMean < 0} {roundedMean}% {/if}
{#each watchList as item, index} goto(`/${item?.type === 'stock' ? 'stocks' : item?.type === 'etf' ? 'etf' : 'crypto'}/${item?.symbol}`)} class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] border-b-[#09090B] cursor-pointer"> {/each}
Symbol Company EPS PE Ratio Volume Market Cap Price Change
{item?.symbol} {item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name} {item?.eps !== null ? item?.eps?.toFixed(2) : '-'} {item?.pe !== null ? item?.pe?.toFixed(2) : '-'} {new Intl.NumberFormat("en", { minimumFractionDigits: 2, maximumFractionDigits: 2 }).format(item?.volume)} {abbreviateNumber(item?.marketCap,true)} ${item.price?.toFixed(2)} {#if item?.changesPercentage >=0} +{item?.changesPercentage?.toFixed(2)}% {:else} {item?.changesPercentage?.toFixed(2)}% {/if}

Latest News

{:else}
Empty Watchlist Fill it up with your favorite stocks and get realtime data and the latest news in one place!
{/if} {:else}
{/if}