Flow Sentiment
{flowSentiment}
Put/Call
{putCallRatio?.toFixed(3)}
{putCallRatio?.toFixed(2)}
Call Flow
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(displayCallVolume)}
Put Flow
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(displayPutVolume)}
{#if showMore}
Most Traded Option
{mostFrequentTicker?.ticker}
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(mostFrequentTicker?.count)}
Highest Premium
{highestPremiumTicker?.ticker}
${new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(highestPremiumTicker?.costBasis)}
Highest Volume
{highestVolumeTicker?.ticker}
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(highestVolumeTicker?.volume)}
Highest Open Interest
{highestOpenInterestTicker?.ticker}
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(highestOpenInterestTicker?.openInterest)}
{/if}