This commit is contained in:
MuslemRahimi 2024-11-01 10:30:07 +01:00
parent 0bb2afb4a7
commit 87c0f355a2
2 changed files with 20 additions and 18 deletions

View File

@ -813,23 +813,25 @@ function handleTypeOfTrade(state:string)
/>
</li>
{/if}
<li class="cursor-pointer flex flex-col items-center">
<a
href={`/stocks/${$stockTicker}/forecast`}
on:click={() => changeSection("forecast")}
class="px-3 text-sm sm:text-[1rem] font-medium text-gray-400 sm:hover:text-white {displaySection ===
'forecast'
? 'text-white '
: 'bg-[#09090B]'}"
>
Forecast
</a>
<div
class="{displaySection === 'forecast'
? 'bg-[#75D377]'
: 'bg-[#09090B]'} mt-1 h-[3px] rounded-full w-[2.5rem]"
/>
</li>
{#if Object?.keys(data?.getAnalystRating ?? {})?.length > 0}
<li class="cursor-pointer flex flex-col items-center">
<a
href={`/stocks/${$stockTicker}/forecast`}
on:click={() => changeSection("forecast")}
class="px-3 text-sm sm:text-[1rem] font-medium text-gray-400 sm:hover:text-white {displaySection ===
'forecast'
? 'text-white '
: 'bg-[#09090B]'}"
>
Forecast
</a>
<div
class="{displaySection === 'forecast'
? 'bg-[#75D377]'
: 'bg-[#09090B]'} mt-1 h-[3px] rounded-full w-[2.5rem]"
/>
</li>
{/if}
<li class="cursor-pointer flex flex-col items-center">
<a
href={`/stocks/${$stockTicker}/options`}

View File

@ -48,7 +48,7 @@
const highChange = calculatePriceChange(highPriceTarget);
const rawAnalystList = data?.getAnalystRating?.recommendationList || [];
const recommendationList =
rawAnalystList?.length > 5 ? rawAnalystList?.slice(-6, -1) : rawAnalystList;
rawAnalystList?.length > 5 ? rawAnalystList?.slice(-6) : rawAnalystList;
const categories = ["Strong Buy", "Buy", "Hold", "Sell", "Strong Sell"];
function findIndex(data) {