{#if isLoaded} {#if shareholderList?.length !== 0}
As of {new Date(rawData?.date)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })}, {new Intl.NumberFormat("en", { minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(rawData?.investorsHolding)} Hedge Funds hold a total of {abbreviateNumber(rawData?.numberOf13Fshares)} {$displayCompanyName} shares, with a combined investment of {abbreviateNumber(rawData?.totalInvested, true)}.
{#if optionsPieChart !== null}
Others: {otherOwner >= 99.99 ? 99.99 : otherOwner?.toFixed(2)}%
Institutions: {institutionalOwner <= 0.01 ? "< 0.01%" : institutionalOwner?.toFixed(2)+'%'}
{/if}
{#if putCallRatio !== 0}

Options Activity

Hedge Funds are holding {callPercentage > 55 ? 'more Calls Contracts as Puts Contracts, indicating a bullish sentiment.' : callPercentage < 45 ? 'more Puts Contracts as Calls Contracts, indicating a bearish sentiment.' : 'Calls/Puts contracts nearly balanced, indicating a neutral sentiment.'}
Put/Call {putCallRatio?.toFixed(3)}
=1 ? 0 : 100-(putCallRatio*100)?.toFixed(2)}>
{putCallRatio?.toFixed(2)}
Call Flow {new Intl.NumberFormat("en", { minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(rawData?.totalCalls)}
{callPercentage?.toFixed(0)}%
Put Flow {new Intl.NumberFormat("en", { minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(rawData?.totalPuts)}
{putPercentage?.toFixed(0)}%
{/if}

Top Shareholders

{#if topHolders !== 0} The Top 10 shareholders own {topHolders <= 0.01 ? "< 0.01%" : topHolders?.toFixed(2)+'%'} of the company. {/if}
{#each (showFullStats ? shareholderList?.slice(0,10) : shareholderList?.slice(0,3)) as item,index} {#if item?.investorName?.length > 0} {/if} {/each}
Institute Ownership Portfolio
{item?.investorName?.length > charNumber ? formatString(item?.investorName?.slice(0,charNumber)) + "..." : formatString(item?.investorName)} {item?.ownership <= 0.01 ? "< 0.01%" : item?.ownership?.toFixed(2)+'%'} {item?.weight <= 0.01 ? "< 0.01%" : item?.weight?.toFixed(2)+'%'}
{/if} {:else}
{/if}