diff --git a/src/routes/stocks/[tickerID]/+page.svelte b/src/routes/stocks/[tickerID]/+page.svelte
index c06d79f0..c2dd9614 100644
--- a/src/routes/stocks/[tickerID]/+page.svelte
+++ b/src/routes/stocks/[tickerID]/+page.svelte
@@ -1202,29 +1202,17 @@
class="flex flex-col border-b border-gray-600 py-1 sm:table-row sm:py-0"
>
Shares Out
+ >Analyst
|
{@html data?.getStockQuote?.sharesOutstanding !== null
- ? abbreviateNumber(
- data?.getStockQuote?.sharesOutstanding,
- false,
- true,
- )
- : "n/a"} |
- | Short % of Shares Out |
- {stockDeck?.shortOutStandingPercent !== null
- ? stockDeck?.shortOutStandingPercent + "%"
+ >{data?.getAnalystRating?.consensusRating !== null &&
+ data?.getAnalystRating?.consensusRating !== "n/a"
+ ? data?.getAnalystRating?.consensusRating
: "n/a"} |
@@ -1260,6 +1248,19 @@
)}
+ | Avg. Volume (20D) |
+ {data?.getStockQuote?.avgVolume?.toLocaleString(
+ "en-us",
+ )} |
| {stockDeck?.beta?.toFixed(2)} |
- | Shares Float
- |
- {@html stockDeck?.floatShares !== null
- ? abbreviateNumber(stockDeck?.floatShares, false, true)
- : "n/a"} |
- | Short % of Float |
- {stockDeck?.shortFloatPercent !== null
- ? stockDeck?.shortFloatPercent + "%"
- : "n/a"} |