diff --git a/src/app.css b/src/app.css index 7d3cc2cf..7f0053a2 100644 --- a/src/app.css +++ b/src/app.css @@ -32,14 +32,6 @@ -ms-overflow-style: -ms-autohiding-scrollbar; } -@utility shake-ticker { - &:hover img { - animation-name: shake; - animation-duration: 0.5s; - animation-iteration-count: infinite; - animation-timing-function: ease-in-out; - } -} @layer utilities { @@ -51,25 +43,3 @@ } } - -@layer utilities { - - @keyframes shake { - 0% { - transform: rotate(0deg); - } - 25% { - transform: rotate(10deg); - } - 50% { - transform: rotate(0deg); - } - 75% { - transform: rotate(-10deg); - } - 100% { - transform: rotate(0deg); - } - } -} - diff --git a/src/lib/components/AddToWatchlist.svelte b/src/lib/components/AddToWatchlist.svelte index cb0ab50b..03c329a3 100644 --- a/src/lib/components/AddToWatchlist.svelte +++ b/src/lib/components/AddToWatchlist.svelte @@ -1,4 +1,25 @@ - - -

Add to Watchlist

- star-solid \ No newline at end of file +

Add to Watchlist

+ + star-solid + + + + + + + + + diff --git a/src/lib/components/AnalystCard.svelte b/src/lib/components/AnalystCard.svelte index 91fa1d6d..6c84d0e9 100644 --- a/src/lib/components/AnalystCard.svelte +++ b/src/lib/components/AnalystCard.svelte @@ -64,12 +64,10 @@
- + Signal - - Price Target - + Price Target
{#if consensusRating === "Buy" || consensusRating === "Strong Buy"} @@ -122,10 +120,8 @@
- - Buy - - + Buy + {buyCount}%
@@ -138,10 +134,8 @@
- - Hold - - + Hold + {holdCount}%
@@ -154,10 +148,8 @@
- - Sell - - + Sell + {sellCount}%
diff --git a/src/lib/components/AnalystEstimate.svelte b/src/lib/components/AnalystEstimate.svelte index 2b49e52e..30e4981e 100644 --- a/src/lib/components/AnalystEstimate.svelte +++ b/src/lib/components/AnalystEstimate.svelte @@ -789,13 +789,13 @@ Revenue {#each tableCombinedRevenue as item} {item?.val === "0.00" || item?.val === null || @@ -808,13 +808,13 @@ Revenue Growth {#each computeGrowthList(tableActualRevenue, tableCombinedRevenue) as item, index} {#if index === 0 || item?.growth === null} n/a @@ -843,13 +843,13 @@ EPS {#each tableCombinedEPS as item} {item?.val === "0.00" || item?.val === null || @@ -862,13 +862,13 @@ EPS Growth {#each computeGrowthList(tableActualEPS, tableCombinedEPS) as item, index} {#if index === 0 || item?.growth === null} n/a @@ -896,13 +896,13 @@ Net Income {#each tableCombinedNetIncome as item} {item?.val === "0.00" || item?.val === null || @@ -915,13 +915,13 @@ Net Income Growth {#each computeGrowthList(tableActualNetIncome, tableCombinedNetIncome) as item, index} {#if index === 0 || item?.growth === null} n/a @@ -950,13 +950,13 @@ EBITDA {#each tableCombinedEbitda as item} {item?.val === "0.00" || item?.val === null || @@ -969,13 +969,13 @@ EBITDA Growth {#each computeGrowthList(tableActualEbitda, tableCombinedEbitda) as item, index} {#if index === 0 || item?.growth === null} n/a @@ -1004,12 +1004,12 @@ No. Analysts {#each tableCombinedRevenue as item} {#if item?.FY > 24} {item?.numOfAnalysts === (null || 0) diff --git a/src/lib/components/AnalystInsight.svelte b/src/lib/components/AnalystInsight.svelte index 664e5d6b..f61ace44 100644 --- a/src/lib/components/AnalystInsight.svelte +++ b/src/lib/components/AnalystInsight.svelte @@ -85,7 +85,7 @@ > {#if latestInfoDate(data?.getAnalystInsight?.date)} {/if} diff --git a/src/lib/components/Cookie.svelte b/src/lib/components/Cookie.svelte index 6d4825eb..56de9f45 100644 --- a/src/lib/components/Cookie.svelte +++ b/src/lib/components/Cookie.svelte @@ -61,7 +61,7 @@ diff --git a/src/lib/components/DarkPool/HistoricalVolume.svelte b/src/lib/components/DarkPool/HistoricalVolume.svelte index eb882041..edcaf769 100644 --- a/src/lib/components/DarkPool/HistoricalVolume.svelte +++ b/src/lib/components/DarkPool/HistoricalVolume.svelte @@ -357,11 +357,9 @@ {#each tableList as item, index} - + {new Date(item?.date)?.toLocaleDateString("en-US", { day: "2-digit", // Include day number month: "short", // Display short month name @@ -382,7 +380,7 @@ {#if index === tableList?.length - 1} n/a diff --git a/src/lib/components/DividendCard.svelte b/src/lib/components/DividendCard.svelte index 85397df5..280eb318 100644 --- a/src/lib/components/DividendCard.svelte +++ b/src/lib/components/DividendCard.svelte @@ -64,7 +64,7 @@ - + {new Date(item?.date)?.toLocaleString("en-US", { month: "short", day: "numeric", @@ -73,7 +73,7 @@ })} - + {item?.paymentDate?.length !== 0 ? new Date(item?.paymentDate)?.toLocaleString("en-US", { month: "short", @@ -84,7 +84,7 @@ : "n/a"} - + ${item?.adjDividend?.toFixed(2)} @@ -102,7 +102,7 @@ {:else}

No data available
-
+
Asset Class - {assetClass}
@@ -275,7 +273,7 @@
- + {numberOfFemales === 0 ? 0 : ( @@ -104,10 +102,8 @@ class="w-3 h-3 bg-[#FF2F1F] border-4 box-content border-gray-900 rounded-full transform -translate-x-1/2" aria-hidden="true" >
- - Male ({numberOfMales}) + + Male ({numberOfMales})

@@ -124,7 +120,7 @@
{item?.name} diff --git a/src/lib/components/FailToDeliver.svelte b/src/lib/components/FailToDeliver.svelte index 74573b38..f108644e 100644 --- a/src/lib/components/FailToDeliver.svelte +++ b/src/lib/components/FailToDeliver.svelte @@ -337,10 +337,12 @@ {#each tableList as item, index} - - {item?.date} + + {new Date(item?.date)?.toLocaleDateString("en-US", { + day: "2-digit", // Include day number + month: "short", // Display short month name + year: "numeric", // Include year + })} {#if index === tableList?.length - 1} n/a diff --git a/src/lib/components/FundamentalAnalysis.svelte b/src/lib/components/FundamentalAnalysis.svelte index 58eb978a..0e519e2d 100644 --- a/src/lib/components/FundamentalAnalysis.svelte +++ b/src/lib/components/FundamentalAnalysis.svelte @@ -35,7 +35,7 @@ class="flex flex-row items-center flex-wrap w-full px-3 sm:px-5 bg-primary shadow-lg rounded-md h-20" >
- Quarter Sentiment {#if !deactivateContent} @@ -48,7 +48,7 @@ {:else} Unlock with Pro Realized Volatility @@ -117,7 +117,7 @@ Date {formatDateRange(rawData?.slice(-1)?.at(0)?.date)} @@ -127,7 +127,7 @@ IV Range {lowestIV + "%" + "-" + highestIV + "%"} @@ -137,7 +137,7 @@ RV Range {lowestRV + "%" + "-" + highestRV + "%"} diff --git a/src/lib/components/IndustryTable.svelte b/src/lib/components/IndustryTable.svelte index 17d56d79..9397917b 100644 --- a/src/lib/components/IndustryTable.svelte +++ b/src/lib/components/IndustryTable.svelte @@ -99,9 +99,9 @@ {#each displayList as item} - + {abbreviateNumber(item?.totalMarketCap) ?? "n/a"} {item?.avgDividendYield?.toFixed(2) ?? "n/a"}% {item?.pe?.toFixed(2) ?? "n/a"} @@ -139,7 +139,7 @@ {abbreviateNumber(item?.profitMargin)}% @@ -147,7 +147,7 @@ {item?.avgChange1D?.toFixed(2) ?? "n/a"}% @@ -155,7 +155,7 @@ {item?.avgChange1Y?.toFixed(2) ?? "n/a"}% diff --git a/src/lib/components/Input.svelte b/src/lib/components/Input.svelte index 4af53056..fa5287df 100644 --- a/src/lib/components/Input.svelte +++ b/src/lib/components/Input.svelte @@ -1,5 +1,4 @@
-
- - diff --git a/src/lib/components/MiniPlot.svelte b/src/lib/components/MiniPlot.svelte index 678d8b42..e658eaab 100644 --- a/src/lib/components/MiniPlot.svelte +++ b/src/lib/components/MiniPlot.svelte @@ -151,7 +151,7 @@ > - +{changesPercentage?.toFixed(2)}% {:else} @@ -169,7 +169,7 @@ > - {changesPercentage?.toFixed(2)}% {/if} diff --git a/src/lib/components/Options/GreekByExpiry.svelte b/src/lib/components/Options/GreekByExpiry.svelte index 55333301..32145d66 100644 --- a/src/lib/components/Options/GreekByExpiry.svelte +++ b/src/lib/components/Options/GreekByExpiry.svelte @@ -343,7 +343,7 @@ {#each data?.user?.tier === "Pro" ? displayList : displayList?.slice(0, 3) as item, index} {#each data?.user?.tier === "Pro" ? displayList : displayList?.slice(0, 3) as item, index} {#each data?.user?.tier === "Pro" ? displayList : displayList?.slice(0, 3) as item, index} {#each volumeList as item, index} {#each openInterestList as item, index} {#each data?.user?.tier === "Pro" ? displayList : displayList?.slice(0, 3) as item, index} {#each data?.user?.tier === "Pro" ? displayList : displayList?.slice(0, 3) as item, index} {#each data?.user?.tier !== "Pro" ? displayList?.slice(0, 3) : displayList as item, index} {#each data?.user?.tier === "Pro" ? displayList : displayList?.slice(0, 3) as item, index} Reported Revenue {#each tableRevenue as item, index} {#if index !== 0} {#if userTier !== "Pro"} @@ -162,13 +162,13 @@ Est. Revenue {#each tableRevenueEst as item, index} {#if index !== 0} {#if userTier !== "Pro"} @@ -202,7 +202,7 @@ Revenue Surprise @@ -258,13 +258,13 @@ Reported EPS {#each tableEPS as item, index} {#if index !== 0} {#if userTier !== "Pro"} @@ -298,13 +298,13 @@ Est. EPS {#each tableEPSEst as item, index} {#if index !== 0} {#if userTier !== "Pro"} @@ -338,7 +338,7 @@ EPS Surprise @@ -394,7 +394,7 @@ Volatility diff --git a/src/lib/components/PriceAnalysis.svelte b/src/lib/components/PriceAnalysis.svelte index e084398c..0a019ae0 100644 --- a/src/lib/components/PriceAnalysis.svelte +++ b/src/lib/components/PriceAnalysis.svelte @@ -165,9 +165,7 @@ class="flex flex-row items-center flex-wrap w-full px-3 sm:px-5 bg-primary shadow-lg rounded-md h-20" >
- Price Sentiment + Price Sentiment
- R2 Score - + {r2Score >= 65 ? "Good" : r2Score >= 50 ? "Moderate" : "Bad"}
@@ -242,10 +238,8 @@ class="flex flex-row items-center flex-wrap w-full px-3 sm:px-5 bg-primary shadow-lg rounded-md h-20" >
- MAPE - + MAPE + {mape <= 15 ? "Good" : mape <= 35 ? "Moderate" : "Bad"}
diff --git a/src/lib/components/RevenueSegmentation.svelte b/src/lib/components/RevenueSegmentation.svelte index 249dc1df..ad8470bb 100644 --- a/src/lib/components/RevenueSegmentation.svelte +++ b/src/lib/components/RevenueSegmentation.svelte @@ -318,7 +318,7 @@
{item?.name?.length > charNumber ? formatString(item?.name)?.slice(0, charNumber) + @@ -327,9 +327,7 @@ item?.value, )} - + {( (item?.value / totalGeographicRevenue) * 100 diff --git a/src/lib/components/ReviewCard.svelte b/src/lib/components/ReviewCard.svelte index 5fdf0427..f5e22aa4 100644 --- a/src/lib/components/ReviewCard.svelte +++ b/src/lib/components/ReviewCard.svelte @@ -1,27 +1,26 @@ - -
-
- -
- -
- {name} -
-
+ +
+
+ +
+ +
+ {name} +
-
{body}
-
- \ No newline at end of file +
+
{body}
+
diff --git a/src/lib/components/RuleControl.svelte b/src/lib/components/RuleControl.svelte index 905abd98..00891654 100644 --- a/src/lib/components/RuleControl.svelte +++ b/src/lib/components/RuleControl.svelte @@ -23,7 +23,7 @@
@@ -180,13 +178,13 @@
-

+

Average Score Trend

{#each sentimentList as item}
- + {#if data?.user?.tier === "Pro"} {item?.value !== 0 ? item?.value : "-"} {:else if ["1M", "1Y"]?.includes(item?.label)} @@ -228,7 +226,7 @@ >
{/if}
- + {item?.label}
diff --git a/src/lib/components/Share.svelte b/src/lib/components/Share.svelte index 44a1f9e9..94a3c169 100644 --- a/src/lib/components/Share.svelte +++ b/src/lib/components/Share.svelte @@ -31,7 +31,7 @@ /> diff --git a/src/lib/components/ShareHolders.svelte b/src/lib/components/ShareHolders.svelte index 23030874..f9ab51c6 100644 --- a/src/lib/components/ShareHolders.svelte +++ b/src/lib/components/ShareHolders.svelte @@ -276,9 +276,7 @@ class="w-4 h-4 bg-[#fff] border-4 box-content border-[#27272A] rounded-full transform -translate-x-1/2" aria-hidden="true" >
- + Others: {otherOwner >= 99.99 ? 99.99 : otherOwner?.toFixed(2)}% @@ -294,9 +292,7 @@ class="w-4 h-4 bg-blue-500 border-4 box-content border-[#27272A] rounded-full transform -translate-x-1/2" aria-hidden="true" >
- + Institutions: {institutionalOwner <= 0.01 ? "< 0.01%" : institutionalOwner?.toFixed(2) + "%"} @@ -331,12 +327,8 @@ class="flex flex-row items-center flex-wrap w-full px-3 sm:px-5 border border-gray-600 bg-primary rounded-md h-20" >
- Put/Call - + Put/Call + {putCallRatio?.toFixed(3)}
@@ -389,12 +381,9 @@ class="flex flex-row items-center flex-wrap w-full px-3 sm:px-5 border border-gray-600 bg-primary rounded-md h-20" >
- Call Flow - Call Flow + {new Intl.NumberFormat("en", { minimumFractionDigits: 0, maximumFractionDigits: 0, @@ -449,12 +438,8 @@ class="flex flex-row items-center flex-wrap w-full px-3 sm:px-5 border border-gray-600 bg-primary rounded-md h-20" >
- Put Flow - + Put Flow + {new Intl.NumberFormat("en", { minimumFractionDigits: 0, maximumFractionDigits: 0, @@ -542,15 +527,13 @@ {#each displayList as item, index} {#if item?.investorName?.length > 0} - + {item?.ownership <= 0.01 ? "< 0.01%" @@ -572,7 +555,7 @@ {@html item?.sharesNumber !== null ? abbreviateNumber(item?.sharesNumber, false, true) @@ -580,7 +563,7 @@ {#if item?.changeInSharesNumberPercentage >= 0} {item?.marketValue !== null ? abbreviateNumber(item?.marketValue) @@ -608,7 +591,7 @@ {item?.weight <= 0.01 ? "< 0.01%" diff --git a/src/lib/components/ShareStatistics.svelte b/src/lib/components/ShareStatistics.svelte index 432f112d..49899406 100644 --- a/src/lib/components/ShareStatistics.svelte +++ b/src/lib/components/ShareStatistics.svelte @@ -116,7 +116,7 @@ Short Interest {abbreviateNumber(rawData?.sharesShort)} @@ -126,7 +126,7 @@ Short Previous Month {abbreviateNumber(rawData?.sharesShortPriorMonth)} @@ -136,7 +136,7 @@ Short % of Shares Out {rawData?.shortOutStandingPercent}% @@ -146,7 +146,7 @@ Short % of Float {rawData?.shortFloatPercent}% @@ -156,7 +156,7 @@ Short Ratio (days to cover) {rawData?.shortRatio} diff --git a/src/lib/components/Sidecard.svelte b/src/lib/components/Sidecard.svelte index 75798c0c..ba55df1c 100644 --- a/src/lib/components/Sidecard.svelte +++ b/src/lib/components/Sidecard.svelte @@ -100,7 +100,7 @@
[Show more] @@ -189,10 +189,8 @@
- - Buy - - + Buy + {buyCount}%
@@ -205,10 +203,8 @@
- - Hold - - + Hold + {holdCount}%
@@ -221,10 +217,8 @@
- - Sell - - + Sell + {sellCount}%
diff --git a/src/lib/components/SimilarETFCard.svelte b/src/lib/components/SimilarETFCard.svelte index cd81ddea..77fe40d4 100644 --- a/src/lib/components/SimilarETFCard.svelte +++ b/src/lib/components/SimilarETFCard.svelte @@ -55,7 +55,7 @@ {#each similarTicker as item, index} etfSelector(item?.symbol)} - class="shake-ticker sm:hover:text-white text-blue-400 cursor-pointer sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] bg-[#000] sm:bg-default border-b border-[#000] sm:border-[#27272A]" + class="shake-ticker sm:hover:text-white text-blue-400 cursor-pointer sm:hover:bg-[#245073]/10 bg-[#000] sm:bg-default border-b border-[#000] sm:border-[#27272A]" > {#if index <= 6} @@ -71,8 +71,7 @@ />
- {item?.symbol} + {item?.symbol} {#if typeof item?.name !== "undefined"} {item?.name?.length > 20 @@ -129,7 +128,7 @@
-

+

Similar Ticker

@@ -190,8 +189,7 @@ />
- {item?.symbol}{item?.symbol} {#if typeof item?.name !== "undefined"} diff --git a/src/lib/components/SimilarTickerCard.svelte b/src/lib/components/SimilarTickerCard.svelte index 9f6b64b6..7b97c144 100644 --- a/src/lib/components/SimilarTickerCard.svelte +++ b/src/lib/components/SimilarTickerCard.svelte @@ -57,7 +57,7 @@ {#each similarstock as item, index} stockSelector(item?.symbol)} - class="shake-ticker sm:hover:text-white text-blue-400 cursor-pointer sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] bg-[#000] sm:bg-default border-b border-[#000] sm:border-[#27272A]" + class="shake-ticker sm:hover:text-white text-blue-400 cursor-pointer sm:hover:bg-[#245073]/10 bg-[#000] sm:bg-default border-b border-[#000] sm:border-[#27272A]" > {#if index <= 6} @@ -73,7 +73,7 @@ />
- {item?.symbol} @@ -165,8 +165,7 @@
- {item?.symbol}{item?.symbol} {#if typeof item?.name !== "undefined"} diff --git a/src/lib/components/StockKeyInformation.svelte b/src/lib/components/StockKeyInformation.svelte index bc7722a8..b500827a 100644 --- a/src/lib/components/StockKeyInformation.svelte +++ b/src/lib/components/StockKeyInformation.svelte @@ -31,7 +31,7 @@
@@ -39,7 +39,7 @@ @@ -47,24 +47,24 @@ diff --git a/src/lib/components/StockSlider.svelte b/src/lib/components/StockSlider.svelte index 971d7496..c9d04c90 100644 --- a/src/lib/components/StockSlider.svelte +++ b/src/lib/components/StockSlider.svelte @@ -25,7 +25,7 @@ > - +{item?.changesPercentage?.toFixed(2)}% {:else if item?.changesPercentage < 0} @@ -43,7 +43,7 @@ > - {item?.changesPercentage?.toFixed(2)}% {/if} diff --git a/src/lib/components/StockSplits.svelte b/src/lib/components/StockSplits.svelte index f10be51c..c3ded5d7 100644 --- a/src/lib/components/StockSplits.svelte +++ b/src/lib/components/StockSplits.svelte @@ -64,13 +64,11 @@
Date - + {new Date(item?.date)?.toLocaleString("en-US", { month: "short", day: "numeric", @@ -82,13 +80,13 @@
From {item?.denominator}
To {item?.numerator} diff --git a/src/lib/components/Swap.svelte b/src/lib/components/Swap.svelte index 03fbce22..d0364ae5 100644 --- a/src/lib/components/Swap.svelte +++ b/src/lib/components/Swap.svelte @@ -233,9 +233,7 @@ {#if activeIdx === i}
{/if} - + {item.title} @@ -280,7 +278,7 @@ aria-hidden="true" >
Notional Quantity diff --git a/src/lib/components/TagSearchbar.svelte b/src/lib/components/TagSearchbar.svelte index cc811733..df61c439 100644 --- a/src/lib/components/TagSearchbar.svelte +++ b/src/lib/components/TagSearchbar.svelte @@ -263,7 +263,7 @@
-
+
{item?.type}
@@ -413,7 +413,7 @@ >
-
+
{item?.type}
@@ -459,7 +459,7 @@ d="M9.125 21.1L.7 12.7q-.15-.15-.213-.325T.425 12q0-.2.063-.375T.7 11.3l8.425-8.425q.35-.35.875-.35t.9.375q.375.375.375.875t-.375.875L3.55 12l7.35 7.35q.35.35.35.863t-.375.887q-.375.375-.875.375t-.875-.375Z" /> - Return + Return
@@ -563,7 +563,7 @@ >
-
+
{item?.type}
@@ -598,7 +598,7 @@ >
-
+
{item?.type}
diff --git a/src/lib/components/TextArea.svelte b/src/lib/components/TextArea.svelte index 54061f93..e6ff063c 100644 --- a/src/lib/components/TextArea.svelte +++ b/src/lib/components/TextArea.svelte @@ -39,7 +39,7 @@
-
diff --git a/src/routes/hedge-funds/[slug]/+page.svelte b/src/routes/hedge-funds/[slug]/+page.svelte index de149a38..85dfc06b 100644 --- a/src/routes/hedge-funds/[slug]/+page.svelte +++ b/src/routes/hedge-funds/[slug]/+page.svelte @@ -175,7 +175,7 @@ href={sectorNavigation?.find( (listItem) => listItem?.title === item, )?.link} - class="px-3 text-sm py-1 sm:text-[1rem] rounded-md bg-white bg-opacity-[0.1] sm:hover:bg-opacity-[0.2] ml-0" + class="px-3 text-sm py-1 sm:text-[1rem] rounded-md bg-white/10 sm:hover:bg-white/20 ml-0" > {item} @@ -190,7 +190,7 @@ {#each data?.getHedgeFundsData?.mainIndustries as item} {item} diff --git a/src/routes/index/[tickerID]/+layout.svelte b/src/routes/index/[tickerID]/+layout.svelte index 99f18612..ac34d919 100644 --- a/src/routes/index/[tickerID]/+layout.svelte +++ b/src/routes/index/[tickerID]/+layout.svelte @@ -406,7 +406,7 @@ {$indexTicker} - + {#if $currentPortfolioPrice !== null && $currentPortfolioPrice !== 0} {$currentPortfolioPrice} {:else} @@ -969,10 +969,10 @@ : 'border-gray-600'}" >
- + {item?.title} - + {item?.ticker?.length} {item?.ticker?.length !== 1 ? "Companies" : "Company"} diff --git a/src/routes/index/[tickerID]/options/+page.svelte b/src/routes/index/[tickerID]/options/+page.svelte index aea8250a..2961fd15 100644 --- a/src/routes/index/[tickerID]/options/+page.svelte +++ b/src/routes/index/[tickerID]/options/+page.svelte @@ -419,7 +419,7 @@ {#each data?.user?.tier === "Pro" ? optionList : optionList?.slice(0, 3) as item, index} {#each volumeList as item, index} {#each openInterestList as item, index} - + {abbreviateNumber(item?.totalMarketCap) ?? "n/a"} {item?.avgDividendYield?.toFixed(2) ?? "n/a"}% {item?.pe?.toFixed(2) ?? "n/a"} @@ -152,7 +152,7 @@ {abbreviateNumber(item?.profitMargin)}% @@ -160,7 +160,7 @@ {item?.avgChange1D?.toFixed(2) ?? "n/a"}% @@ -168,7 +168,7 @@ {item?.avgChange1Y?.toFixed(2) ?? "n/a"}% diff --git a/src/routes/industry/sectors/+page.svelte b/src/routes/industry/sectors/+page.svelte index 6959ecff..0d205540 100644 --- a/src/routes/industry/sectors/+page.svelte +++ b/src/routes/industry/sectors/+page.svelte @@ -111,9 +111,9 @@ {#each displayList as item} - + listItem?.title === item?.sector, @@ -133,19 +133,19 @@ {abbreviateNumber(item?.totalMarketCap) ?? "n/a"} {item?.avgDividendYield?.toFixed(2) ?? "n/a"}% {item?.pe?.toFixed(2) ?? "n/a"} @@ -153,7 +153,7 @@ {abbreviateNumber(item?.profitMargin)}% @@ -161,7 +161,7 @@ {item?.avgChange1D?.toFixed(2) ?? "n/a"}% @@ -169,7 +169,7 @@ {item?.avgChange1Y?.toFixed(2) ?? "n/a"}% diff --git a/src/routes/insider-tracker/+page.svelte b/src/routes/insider-tracker/+page.svelte index 7568c64a..4a0a7a5b 100644 --- a/src/routes/insider-tracker/+page.svelte +++ b/src/routes/insider-tracker/+page.svelte @@ -237,7 +237,7 @@
diff --git a/src/routes/politicians/[slug]/+page.svelte b/src/routes/politicians/[slug]/+page.svelte index 505de8aa..7bfd0b7a 100644 --- a/src/routes/politicians/[slug]/+page.svelte +++ b/src/routes/politicians/[slug]/+page.svelte @@ -239,7 +239,7 @@ href={sectorNavigation?.find( (listItem) => listItem?.title === item, )?.link} - class="px-3 text-sm py-1 sm:text-[1rem] rounded-md bg-white bg-opacity-[0.1] sm:hover:bg-opacity-[0.2] ml-0" + class="px-3 text-sm py-1 sm:text-[1rem] rounded-md bg-white/10 sm:hover:bg-white/20 ml-0" > {item} @@ -254,7 +254,7 @@ {#each mainIndustries as item} {item} @@ -318,12 +318,12 @@ {#each tableData as item}
-
+
@@ -255,7 +255,7 @@ > changeTimePeriod(i)} - class="group relative z-1 rounded-full w-1/2 min-w-24 md:w-auto px-5 py-1 {timeIdx === + class="cursor-pointer group relative z-1 rounded-full w-1/2 min-w-24 md:w-auto px-5 py-1 {timeIdx === i ? 'z-0' : ''} " @@ -386,7 +386,7 @@ {#if data?.user?.tier !== "Pro" && i > 0} {#each watchList as item}
IV:
{item?.iv ?? "-"}
@@ -392,7 +392,7 @@
RSI:
{item?.rsi ?? "n/a"}
@@ -438,40 +438,40 @@ >
= 0 - ? "bg-positive bg-opacity-[0.5] before:content-['+'] " - : 'bg-negative bg-opacity-[0.6]'}" + ? "bg-positive/60 before:content-['+'] " + : 'bg-negative/70'}" > {item?.open_change_percent?.toFixed(2)}%
= 0 - ? "bg-positive bg-opacity-[0.5] before:content-['+'] " - : 'bg-negative bg-opacity-[0.6]'}" + ? "bg-positive/60 before:content-['+'] " + : 'bg-negative/70'}" > {item?.high_change_percent?.toFixed(2)}%
= 0 - ? "bg-positive bg-opacity-[0.5] before:content-['+'] " - : 'bg-negative bg-opacity-[0.6]'}" + ? "bg-positive/60 before:content-['+'] " + : 'bg-negative/70'}" > {item?.low_change_percent?.toFixed(2)}%
= 0 - ? "bg-positive bg-opacity-[0.5] before:content-['+'] " - : 'bg-negative bg-opacity-[0.6]'}" + ? "bg-positive/60 before:content-['+'] " + : 'bg-negative/70'}" > {item?.close_change_percent?.toFixed(2)}%
- {item?.date} + {new Date(item?.date)?.toLocaleDateString("en-US", { + day: "2-digit", // Include day number + month: "short", // Display short month name + year: "numeric", // Include year + })} {#if index === tableList?.length - 1} n/a diff --git a/src/routes/watchlist/options/+page.svelte b/src/routes/watchlist/options/+page.svelte index 79e8582b..a364d8f2 100644 --- a/src/routes/watchlist/options/+page.svelte +++ b/src/routes/watchlist/options/+page.svelte @@ -351,7 +351,7 @@ {new Intl.NumberFormat("en", { minimumFractionDigits: 0, @@ -378,7 +378,7 @@ {new Intl.NumberFormat("en", { minimumFractionDigits: 0, @@ -395,7 +395,7 @@ class="flex flex-col justify-center items-center m-auto pt-8" > Add your unusual options contracts and start tracking them now! @@ -420,7 +420,7 @@ Add your unusual options contracts and start tracking them now! diff --git a/src/routes/watchlist/stocks/+page.svelte b/src/routes/watchlist/stocks/+page.svelte index 1854ad83..2729f921 100644 --- a/src/routes/watchlist/stocks/+page.svelte +++ b/src/routes/watchlist/stocks/+page.svelte @@ -1547,11 +1547,11 @@
handleFilter(item?.symbol)} - class="text-blue-400 font-medium text-sm sm:text-[1rem] whitespace-nowrap text-start flex flex-row items-center" + class="text-blue-400 text-sm sm:text-[1rem] whitespace-nowrap text-start flex flex-row items-center" > 0}