{#if sentimentList?.length !== 0}

Average Score

{oneMonthResult}
{#if oneMonthResult !== 0 && oneYearResult !== 0} In the past month, major news and social media rated the company {oneMonthResult > 5 ? "positively" : oneMonthResult < 5 ? "negatively" : "neutral"} at {oneMonthResult} and with a yearly average of {oneYearResult}. {:else} Not much news coverage and discussion for {$displayCompanyName}. {/if}

Average Score Trend

{#each sentimentList as item}
{#if data?.user?.tier === "Pro"} {item?.value !== 0 ? item?.value : "-"} {:else if ["1M", "1Y"]?.includes(item?.label)} {item?.value} {:else} {/if}
{#if data?.user?.tier === "Pro"}
{:else if ["1M", "1Y"]?.includes(item?.label)}
{:else}
{/if}
{item?.label}
{/each}
{/if}