{#if isLoaded} {#if historyData?.length !== 0}
Over the past year, {$displayCompanyName} has seen a weekly average of {abbreviateNumber(avgTradeCount)} trades, involving an average of {abbreviateNumber(avgShareQuantity)} shares bought and sold. This activity sums up to an average total notional value of {abbreviateNumber(avgNotionalSum, true)}.
Notional Sum
Share Quantity

Latest Information

Date {formatDateRange(historyData?.slice(-1)?.at(0)?.date)}
Total Notional Sum ${abbreviateNumber( historyData?.slice(-1)?.at(0)?.totalNotionalSum, )}
Total Trade Count {abbreviateNumber( historyData?.slice(-1)?.at(0)?.totalWeeklyTradeCount, )}
Total Share Quantity {abbreviateNumber( historyData?.slice(-1)?.at(0)?.totalWeeklyShareQuantity, )}

Top 10 Market Makers Activity

These market makers represent the highest average trading activity for {$displayCompanyName} over the past 12 months, calculated on a weekly basis.
{#each showFullStats ? topMarketMakers?.slice(0, 10) : topMarketMakers?.slice(0, 3) as item, index} {/each}
Name Trade Count Share Quantity Notional Sum
{item?.name?.length > charNumber ? formatString(item?.name?.slice(0, charNumber)) + "..." : formatString(item?.name)} {abbreviateNumber(Math.floor(item?.avgWeeklyTradeCount))} {abbreviateNumber(Math.floor(item?.avgWeeklyShareQuantity))} {abbreviateNumber(item?.avgNotionalSum, true)}
{/if} {:else}
{/if}