ui fix
This commit is contained in:
parent
34363af877
commit
66e6610868
@ -1,72 +1,69 @@
|
|||||||
<script lang='ts'>
|
<script lang="ts">
|
||||||
import { goto } from '$app/navigation';
|
import { goto } from "$app/navigation";
|
||||||
import { numberOfUnreadNotification, screenWidth } from '$lib/store';
|
import { numberOfUnreadNotification, screenWidth } from "$lib/store";
|
||||||
import { onMount } from 'svelte';
|
import { onMount } from "svelte";
|
||||||
import ArrowLogo from "lucide-svelte/icons/move-up-right";
|
import ArrowLogo from "lucide-svelte/icons/move-up-right";
|
||||||
import * as Card from "$lib/components/shadcn/card/index.ts";
|
import * as Card from "$lib/components/shadcn/card/index.ts";
|
||||||
|
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
|
|
||||||
let cloudFrontUrl = import.meta.env.VITE_IMAGE_URL;
|
let cloudFrontUrl = import.meta.env.VITE_IMAGE_URL;
|
||||||
|
|
||||||
let isLoaded = false;
|
let isLoaded = false;
|
||||||
let rawData = data?.getCramerTracker ?? [];
|
let rawData = data?.getCramerTracker ?? [];
|
||||||
let displayList = rawData?.slice(0,50) ?? []
|
let displayList = rawData?.slice(0, 50) ?? [];
|
||||||
let cumulativeList = []
|
let cumulativeList = [];
|
||||||
let winRate;
|
let winRate;
|
||||||
|
|
||||||
function sectorSelector(sector) {
|
function sectorSelector(sector) {
|
||||||
let path;
|
let path;
|
||||||
switch (sector) {
|
switch (sector) {
|
||||||
case 'Financials':
|
case "Financials":
|
||||||
path = "financial-sector";
|
path = "financial-sector";
|
||||||
break;
|
break;
|
||||||
case 'Healthcare':
|
case "Healthcare":
|
||||||
path = "healthcare-sector";
|
path = "healthcare-sector";
|
||||||
break;
|
break;
|
||||||
case 'Information Technology':
|
case "Information Technology":
|
||||||
path = "technology-sector";
|
path = "technology-sector";
|
||||||
break;
|
break;
|
||||||
case 'Technology':
|
case "Technology":
|
||||||
path = "technology-sector";
|
path = "technology-sector";
|
||||||
break;
|
break;
|
||||||
case 'Financial Services':
|
case "Financial Services":
|
||||||
path = "financial-sector";
|
path = "financial-sector";
|
||||||
break;
|
break;
|
||||||
case 'Industrials':
|
case "Industrials":
|
||||||
path = "industrials-sector";
|
path = "industrials-sector";
|
||||||
break;
|
break;
|
||||||
case 'Energy':
|
case "Energy":
|
||||||
path = "energy-sector";
|
path = "energy-sector";
|
||||||
break;
|
break;
|
||||||
case 'Utilities':
|
case "Utilities":
|
||||||
path = "utilities-sector";
|
path = "utilities-sector";
|
||||||
break;
|
break;
|
||||||
case 'Consumer Cyclical':
|
case "Consumer Cyclical":
|
||||||
path = "consumer-cyclical-sector";
|
path = "consumer-cyclical-sector";
|
||||||
break;
|
break;
|
||||||
case 'Real Estate':
|
case "Real Estate":
|
||||||
path = "real-estate-sector";
|
path = "real-estate-sector";
|
||||||
break;
|
break;
|
||||||
case 'Basic Materials':
|
case "Basic Materials":
|
||||||
path = "basic-materials-sector";
|
path = "basic-materials-sector";
|
||||||
break;
|
break;
|
||||||
case 'Communication Services':
|
case "Communication Services":
|
||||||
path = "communication-services-sector";
|
path = "communication-services-sector";
|
||||||
break;
|
break;
|
||||||
case 'Consumer Defensive':
|
case "Consumer Defensive":
|
||||||
path = "consumer-defensive-sector";
|
path = "consumer-defensive-sector";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
// Handle default case if needed
|
// Handle default case if needed
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return path
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
async function handleScroll() {
|
async function handleScroll() {
|
||||||
const scrollThreshold = document.body.offsetHeight * 0.8; // 80% of the website height
|
const scrollThreshold = document.body.offsetHeight * 0.8; // 80% of the website height
|
||||||
const isBottom = window.innerHeight + window.scrollY >= scrollThreshold;
|
const isBottom = window.innerHeight + window.scrollY >= scrollThreshold;
|
||||||
@ -79,75 +76,87 @@ async function handleScroll() {
|
|||||||
|
|
||||||
function computeWinRate(data) {
|
function computeWinRate(data) {
|
||||||
// Filter sentiments that should be considered bullish/buy or bearish/sell
|
// Filter sentiments that should be considered bullish/buy or bearish/sell
|
||||||
const bullishSentiments = ['bullish', 'buy'];
|
const bullishSentiments = ["bullish", "buy"];
|
||||||
const bearishSentiments = ['bearish', 'sell'];
|
const bearishSentiments = ["bearish", "sell"];
|
||||||
|
|
||||||
// Reduce through the array to calculate the total trades and wins
|
// Reduce through the array to calculate the total trades and wins
|
||||||
const { wins, totalTrades } = data.reduce((acc, item) => {
|
const { wins, totalTrades } = data.reduce(
|
||||||
|
(acc, item) => {
|
||||||
const sentiment = item.sentiment.toLowerCase(); // Normalize to lower case for easier comparison
|
const sentiment = item.sentiment.toLowerCase(); // Normalize to lower case for easier comparison
|
||||||
const isBullish = bullishSentiments.some(keyword => sentiment.includes(keyword));
|
const isBullish = bullishSentiments.some((keyword) =>
|
||||||
const isBearish = bearishSentiments.some(keyword => sentiment.includes(keyword));
|
sentiment.includes(keyword),
|
||||||
|
);
|
||||||
|
const isBearish = bearishSentiments.some((keyword) =>
|
||||||
|
sentiment.includes(keyword),
|
||||||
|
);
|
||||||
|
|
||||||
// Count the total trades
|
// Count the total trades
|
||||||
acc.totalTrades++;
|
acc.totalTrades++;
|
||||||
|
|
||||||
// Evaluate the wins based on sentiment and returnSince
|
// Evaluate the wins based on sentiment and returnSince
|
||||||
if ((isBullish && item.returnSince > 0) || (isBearish && item.returnSince < 0)) {
|
if (
|
||||||
|
(isBullish && item.returnSince > 0) ||
|
||||||
|
(isBearish && item.returnSince < 0)
|
||||||
|
) {
|
||||||
acc.wins++;
|
acc.wins++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
}, { wins: 0, totalTrades: 0 });
|
},
|
||||||
|
{ wins: 0, totalTrades: 0 },
|
||||||
|
);
|
||||||
|
|
||||||
// Calculate and return the win rate percentage
|
// Calculate and return the win rate percentage
|
||||||
return (wins / totalTrades) ;
|
return wins / totalTrades;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
winRate = computeWinRate(rawData);
|
winRate = computeWinRate(rawData);
|
||||||
|
|
||||||
isLoaded = true;
|
isLoaded = true;
|
||||||
window.addEventListener('scroll', handleScroll);
|
window.addEventListener("scroll", handleScroll);
|
||||||
return () => {
|
return () => {
|
||||||
window.removeEventListener('scroll', handleScroll);
|
window.removeEventListener("scroll", handleScroll);
|
||||||
};
|
};
|
||||||
})
|
});
|
||||||
|
|
||||||
|
|
||||||
$: charNumber = 20;
|
$: charNumber = 20;
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
<title>
|
<title>
|
||||||
{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ''} Jim Carmer Tracker · stocknear
|
{$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""} Jim
|
||||||
|
Carmer Tracker · stocknear
|
||||||
</title>
|
</title>
|
||||||
<meta name="description" content={`Track the stock recommendations and performance of CNBC's Jim Cramer`} />
|
<meta
|
||||||
|
name="description"
|
||||||
|
content={`Track the stock recommendations and performance of CNBC's Jim Cramer`}
|
||||||
|
/>
|
||||||
|
|
||||||
<!-- Other meta tags -->
|
<!-- Other meta tags -->
|
||||||
<meta property="og:title" content={`Jim Carmer Tracker · stocknear`} />
|
<meta property="og:title" content={`Jim Carmer Tracker · stocknear`} />
|
||||||
<meta property="og:description" content={`Track the stock recommendations and performance of CNBC's Jim Cramer`} />
|
<meta
|
||||||
|
property="og:description"
|
||||||
|
content={`Track the stock recommendations and performance of CNBC's Jim Cramer`}
|
||||||
|
/>
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<!-- Add more Open Graph meta tags as needed -->
|
<!-- Add more Open Graph meta tags as needed -->
|
||||||
|
|
||||||
<!-- Twitter specific meta tags -->
|
<!-- Twitter specific meta tags -->
|
||||||
<meta name="twitter:card" content="summary_large_image" />
|
<meta name="twitter:card" content="summary_large_image" />
|
||||||
<meta name="twitter:title" content={`Jim Carmer Tracker · stocknear`} />
|
<meta name="twitter:title" content={`Jim Carmer Tracker · stocknear`} />
|
||||||
<meta name="twitter:description" content={`Track the stock recommendations and performance of CNBC's Jim Cramer`} />
|
<meta
|
||||||
|
name="twitter:description"
|
||||||
|
content={`Track the stock recommendations and performance of CNBC's Jim Cramer`}
|
||||||
|
/>
|
||||||
<!-- Add more Twitter meta tags as needed -->
|
<!-- Add more Twitter meta tags as needed -->
|
||||||
|
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
|
<section
|
||||||
|
class="w-full max-w-3xl sm:max-w-screen-2xl overflow-hidden min-h-screen pt-5 pb-40 lg:px-3"
|
||||||
<section class="w-full max-w-3xl sm:max-w-screen-2xl overflow-hidden min-h-screen pt-5 pb-40 lg:px-3">
|
>
|
||||||
|
|
||||||
<div class="text-sm sm:text-[1rem] breadcrumbs ml-4">
|
<div class="text-sm sm:text-[1rem] breadcrumbs ml-4">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/" class="text-gray-300">Home</a></li>
|
<li><a href="/" class="text-gray-300">Home</a></li>
|
||||||
@ -156,35 +165,43 @@ function computeWinRate(data) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="w-full overflow-hidden m-auto mt-5">
|
<div class="w-full overflow-hidden m-auto mt-5">
|
||||||
|
|
||||||
<div class="sm:p-0 flex justify-center w-full m-auto overflow-hidden">
|
<div class="sm:p-0 flex justify-center w-full m-auto overflow-hidden">
|
||||||
<div class="relative flex justify-center items-start overflow-hidden w-full">
|
<div
|
||||||
|
class="relative flex justify-center items-start overflow-hidden w-full"
|
||||||
|
>
|
||||||
<main class="w-full lg:w-3/4 lg:pr-5">
|
<main class="w-full lg:w-3/4 lg:pr-5">
|
||||||
|
<div
|
||||||
<div class="w-full m-auto sm:bg-[#27272A] sm:rounded-xl h-auto pl-10 pr-10 pt-5 sm:pb-10 sm:pt-10 mt-3 mb-8">
|
class="w-full m-auto sm:bg-[#27272A] sm:rounded-xl h-auto pl-10 pr-10 pt-5 sm:pb-10 sm:pt-10 mt-3 mb-8"
|
||||||
|
>
|
||||||
<div class="grid grid-cols-1 sm:grid-cols-2 gap-10">
|
<div class="grid grid-cols-1 sm:grid-cols-2 gap-10">
|
||||||
|
|
||||||
<!-- Start Column -->
|
<!-- Start Column -->
|
||||||
<div>
|
<div>
|
||||||
<div class="flex flex-row justify-center items-center">
|
<div class="flex flex-row justify-center items-center">
|
||||||
<h1 class="text-3xl sm:text-4xl text-white text-center font-bold mb-5">
|
<h1
|
||||||
|
class="text-3xl sm:text-4xl text-white text-center font-bold mb-5"
|
||||||
|
>
|
||||||
Jim Cramer Tracker
|
Jim Cramer Tracker
|
||||||
</h1>
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<span class="text-white text-md font-medium text-center flex justify-center items-center ">
|
<span
|
||||||
Track the stock recommendations and performance of CNBC's Jim Cramer
|
class="text-white text-md font-medium text-center flex justify-center items-center"
|
||||||
|
>
|
||||||
|
Track the stock recommendations and performance of CNBC's Jim
|
||||||
|
Cramer
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- End Column -->
|
<!-- End Column -->
|
||||||
|
|
||||||
<!-- Start Column -->
|
<!-- Start Column -->
|
||||||
<div class="hidden sm:block relative m-auto mb-5 mt-5 sm:mb-0 sm:mt-0">
|
<div
|
||||||
<svg class="w-40 -my-5" viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
class="hidden sm:block relative m-auto mb-5 mt-5 sm:mb-0 sm:mt-0"
|
||||||
|
>
|
||||||
|
<svg
|
||||||
|
class="w-40 -my-5"
|
||||||
|
viewBox="0 0 200 200"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
<defs>
|
<defs>
|
||||||
<filter id="glow">
|
<filter id="glow">
|
||||||
<feGaussianBlur stdDeviation="5" result="glow" />
|
<feGaussianBlur stdDeviation="5" result="glow" />
|
||||||
@ -194,24 +211,28 @@ function computeWinRate(data) {
|
|||||||
</feMerge>
|
</feMerge>
|
||||||
</filter>
|
</filter>
|
||||||
</defs>
|
</defs>
|
||||||
<path fill="#1E40AF" d="M57.6,-58.7C72.7,-42.6,81.5,-21.3,82,0.5C82.5,22.3,74.7,44.6,59.7,60.1C44.6,75.6,22.3,84.3,0,84.3C-22.3,84.2,-44.6,75.5,-61.1,60.1C-77.6,44.6,-88.3,22.3,-87.6,0.7C-86.9,-20.8,-74.7,-41.6,-58.2,-57.7C-41.6,-73.8,-20.8,-85.2,0.2,-85.4C21.3,-85.6,42.6,-74.7,57.6,-58.7Z" transform="translate(100 100)" filter="url(#glow)" />
|
<path
|
||||||
|
fill="#1E40AF"
|
||||||
|
d="M57.6,-58.7C72.7,-42.6,81.5,-21.3,82,0.5C82.5,22.3,74.7,44.6,59.7,60.1C44.6,75.6,22.3,84.3,0,84.3C-22.3,84.2,-44.6,75.5,-61.1,60.1C-77.6,44.6,-88.3,22.3,-87.6,0.7C-86.9,-20.8,-74.7,-41.6,-58.2,-57.7C-41.6,-73.8,-20.8,-85.2,0.2,-85.4C21.3,-85.6,42.6,-74.7,57.6,-58.7Z"
|
||||||
|
transform="translate(100 100)"
|
||||||
|
filter="url(#glow)"
|
||||||
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
|
|
||||||
<div class="z-1 absolute top-4">
|
<div class="z-1 absolute top-4">
|
||||||
<img class="w-24 ml-7" src={cloudFrontUrl+'/assets/cramer_logo.png'} alt="logo" loading="lazy">
|
<img
|
||||||
|
class="w-24 ml-7"
|
||||||
|
src={cloudFrontUrl + "/assets/cramer_logo.png"}
|
||||||
|
alt="logo"
|
||||||
|
loading="lazy"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- End Column -->
|
<!-- End Column -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{#if isLoaded}
|
{#if isLoaded}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="mb-8 w-full text-center sm:text-start sm:flex sm:flex-row sm:items-center m-auto text-gray-100 border border-gray-800 sm:rounded-lg h-auto p-5"
|
class="mb-8 w-full text-center sm:text-start sm:flex sm:flex-row sm:items-center m-auto text-gray-100 border border-gray-800 sm:rounded-lg h-auto p-5"
|
||||||
>
|
>
|
||||||
@ -226,74 +247,100 @@ function computeWinRate(data) {
|
|||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
<span>
|
<span>
|
||||||
Jim Cramer was accurate in <strong>{(winRate * 100)?.toFixed(0)}%</strong> of his last {rawData?.length} forecasts.
|
Jim Cramer was accurate in <strong
|
||||||
Is it time to consider the "Inverse Cramer" strategy?
|
>{(winRate * 100)?.toFixed(0)}%</strong
|
||||||
|
>
|
||||||
|
of his last {rawData?.length} forecasts. Is it time to consider the
|
||||||
|
"Inverse Cramer" strategy?
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="w-screen sm:w-full m-auto mt-20 sm:mt-10">
|
<div class="w-screen sm:w-full m-auto mt-20 sm:mt-10">
|
||||||
|
<div
|
||||||
|
class="w-screen sm:w-full m-auto rounded-none sm:rounded-lg mb-4 overflow-x-scroll"
|
||||||
<div class="w-screen sm:w-full m-auto rounded-none sm:rounded-lg mb-4 overflow-x-scroll">
|
>
|
||||||
<table class="table table-sm table-compact no-scrollbar rounded-none sm:rounded-md w-full bg-[#09090B] border-bg-[#09090B] m-auto">
|
<table
|
||||||
|
class="table table-sm table-compact no-scrollbar rounded-none sm:rounded-md w-full bg-[#09090B] border-bg-[#09090B] m-auto"
|
||||||
|
>
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="bg-[#09090B] border-b border-[#27272A]">
|
<tr class="bg-[#09090B] border-b border-[#27272A]">
|
||||||
<th class="text-start bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold">
|
<th
|
||||||
|
class="text-start bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold"
|
||||||
|
>
|
||||||
Company Name
|
Company Name
|
||||||
</th>
|
</th>
|
||||||
<th class="text-start bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold">
|
<th
|
||||||
|
class="text-start bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold"
|
||||||
|
>
|
||||||
Date
|
Date
|
||||||
</th>
|
</th>
|
||||||
<th class="text-center bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold">
|
<th
|
||||||
|
class="text-center bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold"
|
||||||
|
>
|
||||||
Sentiment
|
Sentiment
|
||||||
</th>
|
</th>
|
||||||
<th class="text-end bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold">
|
<th
|
||||||
|
class="text-end bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold"
|
||||||
|
>
|
||||||
Return Since
|
Return Since
|
||||||
</th>
|
</th>
|
||||||
<th class=" text-end bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold">
|
<th
|
||||||
|
class=" text-end bg-[#09090B] text-white text-sm sm:text-[1rem] font-semibold"
|
||||||
|
>
|
||||||
Sector
|
Sector
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{#each displayList as item, index}
|
{#each displayList as item, index}
|
||||||
|
<tr
|
||||||
<tr class="sm:hover:bg-[#245073] border-b border-[#27272A] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A]">
|
class="sm:hover:bg-[#245073] border-b border-[#27272A] sm:hover:bg-opacity-[0.2] odd:bg-[#27272A]"
|
||||||
|
>
|
||||||
<td class="text-sm sm:text-[1rem] text-start whitespace-nowrap">
|
<td
|
||||||
{#if index >= 5 && data?.user?.tier !== 'Pro'}
|
class="text-sm sm:text-[1rem] text-start whitespace-nowrap"
|
||||||
|
>
|
||||||
|
{#if index >= 5 && data?.user?.tier !== "Pro"}
|
||||||
<a class="block relative" href="/pricing">
|
<a class="block relative" href="/pricing">
|
||||||
<span class="text-base font-semibold text-blue-link blur group-hover:blur-[6px]">
|
<span
|
||||||
|
class="text-base font-semibold text-blue-link blur group-hover:blur-[6px]"
|
||||||
|
>
|
||||||
XXXX
|
XXXX
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div class="ml-px max-w-[130px] truncate text-sm text-default blur group-hover:blur-[6px] lg:max-w-[150px]">
|
<div
|
||||||
|
class="ml-px max-w-[130px] truncate text-sm text-default blur group-hover:blur-[6px] lg:max-w-[150px]"
|
||||||
|
>
|
||||||
XXXXXXXXXXXXXXXX
|
XXXXXXXXXXXXXXXX
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="absolute top-3 flex items-center">
|
<div class="absolute top-3 flex items-center">
|
||||||
<svg class="size-5 text-[#FBCE3C]"
|
<svg
|
||||||
|
class="size-5 text-[#FBCE3C]"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
style="max-width: 40px;">
|
style="max-width: 40px;"
|
||||||
<path fill-rule="evenodd"
|
>
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z"
|
d="M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z"
|
||||||
clip-rule="evenodd">
|
clip-rule="evenodd"
|
||||||
|
>
|
||||||
</path>
|
</path>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
||||||
<span class="ml-1 font-semibold text-muted group-hover:text-default">
|
<span
|
||||||
|
class="ml-1 font-semibold text-muted group-hover:text-default"
|
||||||
|
>
|
||||||
Upgrade
|
Upgrade
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
{:else}
|
{:else}
|
||||||
<div class="flex flex-col items-start">
|
<div class="flex flex-col items-start">
|
||||||
<a href={`/stocks/${item?.ticker}`}
|
<a
|
||||||
class="sm:hover:text-white text-blue-400 text-sm sm:text-[1rem]">
|
href={`/stocks/${item?.ticker}`}
|
||||||
|
class="sm:hover:text-white text-blue-400 text-sm sm:text-[1rem]"
|
||||||
|
>
|
||||||
{item?.ticker}
|
{item?.ticker}
|
||||||
</a>
|
</a>
|
||||||
<span class="text-white">
|
<span class="text-white">
|
||||||
@ -305,52 +352,81 @@ function computeWinRate(data) {
|
|||||||
{/if}
|
{/if}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td
|
||||||
<td class="text-start text-sm sm:text-[1rem] whitespace-nowrap text-white">
|
class="text-start text-sm sm:text-[1rem] whitespace-nowrap text-white"
|
||||||
{new Date(item?.date)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })}
|
>
|
||||||
|
{new Date(item?.date)?.toLocaleString("en-US", {
|
||||||
|
month: "short",
|
||||||
|
day: "numeric",
|
||||||
|
year: "numeric",
|
||||||
|
daySuffix: "2-digit",
|
||||||
|
})}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td
|
||||||
<td class="text-sm sm:text-[1rem] whitespace-nowrap {(['Bullish', 'Buy'].includes(item?.sentiment) || item?.sentiment?.includes('Buy')) ? 'text-[#37C97D]' : (['Bearish', 'Sell','Trim'].includes(item?.sentiment) || item?.sentiment?.includes('Sell') === 'Bearish') ? 'text-[#FF2F1F]' : 'text-[#C6A755]'} text-center">
|
class="text-sm sm:text-[1rem] whitespace-nowrap {[
|
||||||
|
'Bullish',
|
||||||
|
'Buy',
|
||||||
|
].includes(item?.sentiment) ||
|
||||||
|
item?.sentiment?.includes('Buy')
|
||||||
|
? 'text-[#37C97D]'
|
||||||
|
: ['Bearish', 'Sell', 'Trim'].includes(
|
||||||
|
item?.sentiment,
|
||||||
|
) ||
|
||||||
|
item?.sentiment?.includes('Sell') === 'Bearish'
|
||||||
|
? 'text-[#FF2F1F]'
|
||||||
|
: 'text-[#C6A755]'} text-center"
|
||||||
|
>
|
||||||
{item?.sentiment}
|
{item?.sentiment}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="text-sm sm:text-[1rem] {item?.returnSince >= 0 ? 'text-[#37C97D]' : 'text-[#FF2F1F]'} text-end">
|
<td
|
||||||
{item?.returnSince > 0 ? '+' : ''}{item?.returnSince}%
|
class="text-sm sm:text-[1rem] {item?.returnSince >= 0
|
||||||
|
? 'text-[#37C97D]'
|
||||||
|
: 'text-[#FF2F1F]'} text-end"
|
||||||
|
>
|
||||||
|
{item?.returnSince > 0 ? "+" : ""}{item?.returnSince}%
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td class="text-end text-sm sm:text-[1rem] whitespace-nowrap font-medium">
|
<td
|
||||||
<a href={"/list/"+sectorSelector(item?.sector)} class="sm:hover:text-white text-blue-400">
|
class="text-end text-sm sm:text-[1rem] whitespace-nowrap font-medium"
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href={"/list/" + sectorSelector(item?.sector)}
|
||||||
|
class="sm:hover:text-white text-blue-400"
|
||||||
|
>
|
||||||
{item?.sector}
|
{item?.sector}
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
{/each}
|
{/each}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{:else}
|
{:else}
|
||||||
<div class="flex justify-center items-center h-80">
|
<div class="flex justify-center items-center h-80">
|
||||||
<div class="relative">
|
<div class="relative">
|
||||||
<label class="bg-[#09090B] rounded-xl h-14 w-14 flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2">
|
<label
|
||||||
<span class="loading loading-spinner loading-md text-gray-400"></span>
|
class="bg-[#09090B] rounded-xl h-14 w-14 flex justify-center items-center absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
|
||||||
|
>
|
||||||
|
<span class="loading loading-spinner loading-md text-gray-400"
|
||||||
|
></span>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
<aside class="hidden lg:block relative fixed w-1/4 ml-4">
|
<aside class="hidden lg:block relative fixed w-1/4 ml-4">
|
||||||
|
{#if data?.user?.tier !== "Pro" || data?.user?.freeTrial}
|
||||||
{#if data?.user?.tier !== 'Pro' || data?.user?.freeTrial}
|
<div
|
||||||
<div on:click={() => goto('/pricing')} class="w-full bg-[#141417] duration-100 ease-out sm:hover:text-white text-gray-400 sm:hover:border-gray-700 border border-gray-800 rounded-lg h-fit pb-4 mt-4 cursor-pointer">
|
on:click={() => goto("/pricing")}
|
||||||
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
class="w-full bg-[#141417] duration-100 ease-out sm:hover:text-white text-gray-400 sm:hover:border-gray-700 border border-gray-800 rounded-lg h-fit pb-4 mt-4 cursor-pointer"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0"
|
||||||
|
>
|
||||||
<div class="w-full flex justify-between items-center p-3 mt-3">
|
<div class="w-full flex justify-between items-center p-3 mt-3">
|
||||||
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
||||||
Pro Subscription 🔥
|
Pro Subscription 🔥
|
||||||
@ -364,7 +440,10 @@ function computeWinRate(data) {
|
|||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div on:click={() => goto('/reddit-tracker')} class="w-full bg-[#141417] duration-100 ease-out sm:hover:text-white text-gray-400 sm:hover:border-gray-700 border border-gray-800 rounded-lg h-fit pb-4 mt-4 cursor-pointer">
|
<div
|
||||||
|
on:click={() => goto("/reddit-tracker")}
|
||||||
|
class="w-full bg-[#141417] duration-100 ease-out sm:hover:text-white text-gray-400 sm:hover:border-gray-700 border border-gray-800 rounded-lg h-fit pb-4 mt-4 cursor-pointer"
|
||||||
|
>
|
||||||
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
||||||
<div class="w-full flex justify-between items-center p-3 mt-3">
|
<div class="w-full flex justify-between items-center p-3 mt-3">
|
||||||
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
||||||
@ -378,11 +457,34 @@ function computeWinRate(data) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div on:click={() => goto('/most-retail-volume')} class="w-full bg-[#141417] duration-100 ease-out sm:hover:text-white text-gray-400 sm:hover:border-gray-700 border border-gray-800 rounded-lg h-fit pb-4 mt-4 cursor-pointer">
|
<div
|
||||||
|
on:click={() => goto("/insider-tracker")}
|
||||||
|
class="w-full bg-[#141417] duration-100 ease-out sm:hover:text-white text-gray-400 sm:hover:border-gray-700 border border-gray-800 rounded-lg h-fit pb-4 mt-4 cursor-pointer"
|
||||||
|
>
|
||||||
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
<div class="w-auto lg:w-full p-1 flex flex-col m-auto px-2 sm:px-0">
|
||||||
<div class="w-full flex justify-between items-center p-3 mt-3">
|
<div class="w-full flex justify-between items-center p-3 mt-3">
|
||||||
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
<h2 class="text-start text-xl font-semibold text-white ml-3">
|
||||||
Retail Trader Tracker 💳
|
Sentiment Tracker <svg
|
||||||
|
class="w-6 h-6 inline-block"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
viewBox="0 0 256 256"
|
||||||
|
><g fill="none"
|
||||||
|
><rect
|
||||||
|
width="256"
|
||||||
|
height="256"
|
||||||
|
fill="#fff"
|
||||||
|
rx="60"
|
||||||
|
/><rect
|
||||||
|
width="256"
|
||||||
|
height="256"
|
||||||
|
fill="#1d9bf0"
|
||||||
|
rx="60"
|
||||||
|
/><path
|
||||||
|
fill="#fff"
|
||||||
|
d="M199.572 91.411c.11 1.587.11 3.174.11 4.776c0 48.797-37.148 105.075-105.075 105.075v-.03A104.54 104.54 0 0 1 38 184.677q4.379.525 8.79.533a74.15 74.15 0 0 0 45.865-15.839a36.98 36.98 0 0 1-34.501-25.645a36.8 36.8 0 0 0 16.672-.636c-17.228-3.481-29.623-18.618-29.623-36.198v-.468a36.7 36.7 0 0 0 16.76 4.622c-16.226-10.845-21.228-32.432-11.43-49.31a104.8 104.8 0 0 0 76.111 38.582a36.95 36.95 0 0 1 10.683-35.283c14.874-13.982 38.267-13.265 52.249 1.601a74.1 74.1 0 0 0 23.451-8.965a37.06 37.06 0 0 1-16.234 20.424A73.5 73.5 0 0 0 218 72.282a75 75 0 0 1-18.428 19.13"
|
||||||
|
/></g
|
||||||
|
></svg
|
||||||
|
>
|
||||||
</h2>
|
</h2>
|
||||||
<ArrowLogo class="w-8 h-8 mr-3 flex-shrink-0" />
|
<ArrowLogo class="w-8 h-8 mr-3 flex-shrink-0" />
|
||||||
</div>
|
</div>
|
||||||
@ -391,24 +493,16 @@ function computeWinRate(data) {
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.app {
|
.app {
|
||||||
height: 150px;
|
height: 150px;
|
||||||
max-width: 100%; /* Ensure chart width doesn't exceed the container */
|
max-width: 100%; /* Ensure chart width doesn't exceed the container */
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 640px) {
|
@media (max-width: 640px) {
|
||||||
@ -420,5 +514,4 @@ max-width: 100%; /* Ensure chart width doesn't exceed the container */
|
|||||||
.chart {
|
.chart {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
Loading…
x
Reference in New Issue
Block a user