A list of the 30 stocks in the Dow Jones Industrial Average stock index, which is an index of 30 major companies listed on stock exchanges in the U.S.
Total Stocks
{rawData?.length}
Total Market Cap
{abbreviateNumber(totalMarketCap,true)}
Total Revenue
{abbreviateNumber(totalRevenue,true)}
Total Profits
{abbreviateNumber(totalProfits,true)}
{#each marketCapList as item} goto("/stocks/"+item?.symbol)} class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A] border-b-[#09090B] shake-ticker cursor-pointer"> {/each}
Symbol Company Market Cap Revenue Profits Price
{item?.symbol} {item?.name?.length > charNumber ? item?.name?.slice(0,charNumber) + "..." : item?.name} {abbreviateNumber(item?.marketCap,true)} {item?.revenue !== null ? abbreviateNumber(item?.revenue,true) : '-'} {item?.netIncome !== null ? abbreviateNumber(item?.netIncome,true) : '-'}
${item.price?.toFixed(2)}
{#if item.changesPercentage >=0} +{item.changesPercentage?.toFixed(2)}% {:else} {item.changesPercentage?.toFixed(2)}% {/if}