This commit is contained in:
MuslemRahimi 2024-10-17 12:31:33 +02:00
parent aa8882ffbf
commit a1835f8a1c
2 changed files with 531 additions and 340 deletions

View File

@ -14,6 +14,10 @@ const pages = [
{ title: "/heatmaps" }, { title: "/heatmaps" },
{ title: "/donation" }, { title: "/donation" },
//{title: "/portfolio"}, //{title: "/portfolio"},
{ title: "/sentiment-tracker" },
{ title: "/industry" },
{ title: "/industry/sectors" },
{ title: "/industry/all" },
{ title: "/newsletter" }, { title: "/newsletter" },
{ title: "/options-flow" }, { title: "/options-flow" },
{ title: "/ipos" }, { title: "/ipos" },
@ -130,7 +134,7 @@ const sitemap = (
posts, posts,
articles, articles,
stocks, stocks,
pages pages,
) => `<?xml version="1.0" encoding="UTF-8" ?> ) => `<?xml version="1.0" encoding="UTF-8" ?>
<urlset <urlset
xmlns="https://www.sitemaps.org/schemas/sitemap/0.9" xmlns="https://www.sitemaps.org/schemas/sitemap/0.9"
@ -146,7 +150,7 @@ const sitemap = (
<url> <url>
<loc>${website}${page.title}</loc> <loc>${website}${page.title}</loc>
</url> </url>
` `,
) )
.join("")} .join("")}
${stocks ${stocks
@ -157,7 +161,7 @@ const sitemap = (
? "/stocks/" ? "/stocks/"
: ticker.type === "ETF" : ticker.type === "ETF"
? "/etf/" ? "/etf/"
: "/stocks/"; : "/crypto/";
return ` return `
<url> <url>
<loc>${website}${path}${ticker.id}</loc> <loc>${website}${path}${ticker.id}</loc>
@ -171,7 +175,7 @@ const sitemap = (
<url> <url>
<loc>${website}/blog/article/${article.id}</loc> <loc>${website}/blog/article/${article.id}</loc>
</url> </url>
` `,
) )
.join("")} .join("")}
${posts ${posts
@ -180,7 +184,7 @@ const sitemap = (
<url> <url>
<loc>${website}/community/post/${post.id}</loc> <loc>${website}/community/post/${post.id}</loc>
</url> </url>
` `,
) )
.join("")} .join("")}
</urlset>`; </urlset>`;

View File

@ -1,392 +1,579 @@
<script lang="ts"> <script lang="ts">
import { displayCompanyName, numberOfUnreadNotification, stockTicker } from '$lib/store'; import {
import { formatString, abbreviateNumber } from '$lib/utils'; displayCompanyName,
import UpgradeToPro from "$lib/components/UpgradeToPro.svelte"; numberOfUnreadNotification,
import { onMount } from 'svelte'; stockTicker,
} from "$lib/store";
import { formatString, abbreviateNumber } from "$lib/utils";
import UpgradeToPro from "$lib/components/UpgradeToPro.svelte";
import { onMount } from "svelte";
export let data; export let data;
let isLoaded = false; let isLoaded = false;
let statistics = {}; let statistics = {};
let buySellRatio = 0;
function calculateInsiderTradingStatistics(data) { function calculateInsiderTradingStatistics(data) {
const now = new Date(); const now = new Date();
const year = now.getFullYear(); const year = now.getFullYear();
const quarter = Math.floor(now.getMonth() / 3) + 1; const quarter = Math.floor(now.getMonth() / 3) + 1;
// Helper function to check if the transaction date is within the current quarter // Helper function to check if the transaction date is within the current quarter
const isInCurrentQuarter = (transactionDate) => { const isInCurrentQuarter = (transactionDate) => {
const date = new Date(transactionDate); const date = new Date(transactionDate);
return date.getFullYear() === year && Math.floor(date.getMonth() / 3) + 1 === quarter; return (
}; date.getFullYear() === year &&
Math.floor(date.getMonth() / 3) + 1 === quarter
);
};
// Initialize statistics object // Initialize statistics object
let statistics = { let statistics = {
soldShares: 0, soldShares: 0,
buyShares: 0, buyShares: 0,
buySharesPercentage: 0, buySharesPercentage: 0,
soldSharesPercentage: 0, soldSharesPercentage: 0,
quarter: quarter, quarter: quarter,
year: year, year: year,
}; };
// Summing up bought and sold shares efficiently in a single loop // Summing up bought and sold shares efficiently in a single loop
data.forEach(({ transactionType, securitiesTransacted, price, transactionDate }) => { data.forEach(
if (price > 0 && isInCurrentQuarter(transactionDate)) { ({ transactionType, securitiesTransacted, price, transactionDate }) => {
if (transactionType === "Sold") { if (price > 0 && isInCurrentQuarter(transactionDate)) {
statistics.soldShares += securitiesTransacted; if (transactionType === "Sold") {
} else if (transactionType === "Bought") { statistics.soldShares += securitiesTransacted;
statistics.buyShares += securitiesTransacted; } else if (transactionType === "Bought") {
} statistics.buyShares += securitiesTransacted;
}
}
},
);
const totalShares = statistics.buyShares + statistics.soldShares;
if (totalShares > 0) {
statistics.buySharesPercentage = Math.floor(
(statistics.buyShares / totalShares) * 100,
);
statistics.soldSharesPercentage = 100 - statistics.buySharesPercentage;
} }
});
const totalShares = statistics.buyShares + statistics.soldShares; return statistics;
if (totalShares > 0) {
statistics.buySharesPercentage = Math.floor((statistics.buyShares / totalShares) * 100);
statistics.soldSharesPercentage = 100 - statistics.buySharesPercentage;
} }
return statistics;
}
let rawData = data?.getInsiderTrading?.sort( let rawData = data?.getInsiderTrading?.sort(
(a, b) => new Date(b?.transactionDate) - new Date(a?.transactionDate) (a, b) => new Date(b?.transactionDate) - new Date(a?.transactionDate),
); );
let insiderTradingList = rawData?.slice(0,50) let insiderTradingList = rawData?.slice(0, 50);
function backToTop() { function backToTop() {
window.scrollTo({ window.scrollTo({
top: 0, top: 0,
}); });
} }
function extractOfficeInfo(inputString) { function extractOfficeInfo(inputString) {
const indexOfficer = inputString?.toLowerCase()?.indexOf("officer:"); const indexOfficer = inputString?.toLowerCase()?.indexOf("officer:");
const indexOther = inputString?.toLowerCase()?.indexOf("other:"); const indexOther = inputString?.toLowerCase()?.indexOf("other:");
if (indexOfficer !== -1) { if (indexOfficer !== -1) {
return inputString?.substring(indexOfficer + "officer:"?.length)?.trim(); return inputString?.substring(indexOfficer + "officer:"?.length)?.trim();
} } else if (indexOther !== -1) {
else if (indexOther !== -1) { return inputString?.substring(indexOther + "other:"?.length)?.trim();
return inputString?.substring(indexOther + "other:"?.length)?.trim(); } else if (inputString?.toLowerCase()?.includes("director")) {
} else if (inputString?.toLowerCase()?.includes('director')) { return "Director";
return 'Director'; } else if (inputString?.toLowerCase()?.includes("percent owner")) {
} return inputString?.replace("percent owner", "% Owner");
else if (inputString?.toLowerCase()?.includes('percent owner')) { } else {
return inputString?.replace('percent owner', '% Owner'); return "n/a";
}
else {
return "n/a";
}
}
async function handleScroll() {
const scrollThreshold = document.body.offsetHeight * 0.8; // 80% of the website height
const isBottom = window.innerHeight + window.scrollY >= scrollThreshold;
if (isBottom && insiderTradingList?.length !== rawData?.length) {
const nextIndex = insiderTradingList?.length;
const filteredNewResults = rawData?.slice(nextIndex, nextIndex + 50);
insiderTradingList = [...insiderTradingList, ...filteredNewResults];
} }
} }
async function handleScroll() {
const scrollThreshold = document.body.offsetHeight * 0.8; // 80% of the website height
const isBottom = window.innerHeight + window.scrollY >= scrollThreshold;
if (isBottom && insiderTradingList?.length !== rawData?.length) {
const nextIndex = insiderTradingList?.length;
const filteredNewResults = rawData?.slice(nextIndex, nextIndex + 50);
insiderTradingList = [...insiderTradingList, ...filteredNewResults];
}
}
onMount(() => { onMount(() => {
statistics = calculateInsiderTradingStatistics(rawData);
buySellRatio =
statistics?.soldShares !== 0
? (statistics?.buyShares / statistics?.soldShares)?.toFixed(2)
: 0;
isLoaded = true;
window.addEventListener("scroll", handleScroll);
return () => {
window.removeEventListener("scroll", handleScroll);
};
});
statistics = calculateInsiderTradingStatistics(rawData); const transactionStyles = {
Bought: {
isLoaded = true; text: "Bought",
window.addEventListener('scroll', handleScroll); class: "text-[#37C97D]",
return () => { border: "border-[#37C97D]",
window.removeEventListener('scroll', handleScroll); },
}; Grant: {
}) text: "Grant",
class: "text-[#F8901E]",
const transactionStyles = { border: "border-[#F8901E]",
'Bought': { text: 'Bought', class: 'text-[#37C97D]', border: 'border-[#37C97D]' }, },
'Grant': { text: 'Grant', class: 'text-[#F8901E]', border: 'border-[#F8901E]'}, Sold: { text: "Sold", class: "text-[#FF2F1F]", border: "border-[#FF2F1F]" },
'Sold': { text: 'Sold', class: 'text-[#FF2F1F]', border: 'border-[#FF2F1F]'}, Exercise: {
'Exercise': { text: 'Exercise', class: 'text-[#F8901E]', border: 'border-[#v]'}, text: "Exercise",
'n/a': { text: 'n/a', class: 'text-gray-300'} class: "text-[#F8901E]",
border: "border-[#v]",
},
"n/a": { text: "n/a", class: "text-gray-300" },
}; };
</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})` : ''} {$displayCompanyName} ({$stockTicker}) US Congress & Senate Trading · stocknear {$numberOfUnreadNotification > 0 ? `(${$numberOfUnreadNotification})` : ""}
{$displayCompanyName} ({$stockTicker}) US Congress & Senate Trading ·
stocknear
</title> </title>
<meta name="description" content={`Get the latest US congress & senate trading of ${$displayCompanyName} (${$stockTicker}) from democrates and republicans.`} /> <meta
name="description"
content={`Get the latest US congress & senate trading of ${$displayCompanyName} (${$stockTicker}) from democrates and republicans.`}
/>
<!-- Other meta tags --> <!-- Other meta tags -->
<meta property="og:title" content={`${$displayCompanyName} (${$stockTicker}) US Congress & Senate Trading · stocknear`}/> <meta
<meta property="og:description" content={`Get the latest US congress & senate trading of ${$displayCompanyName} (${$stockTicker}) from democrates and republicans.`} /> property="og:title"
<meta property="og:type" content="website"/> content={`${$displayCompanyName} (${$stockTicker}) US Congress & Senate Trading · stocknear`}
/>
<meta
property="og:description"
content={`Get the latest US congress & senate trading of ${$displayCompanyName} (${$stockTicker}) from democrates and republicans.`}
/>
<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={`${$displayCompanyName} (${$stockTicker}) US Congress & Senate Trading · stocknear`}/> <meta
<meta name="twitter:description" content={`Get the latest US congress & senate trading of ${$displayCompanyName} (${$stockTicker}) from democrates and republicans.`} /> name="twitter:title"
content={`${$displayCompanyName} (${$stockTicker}) US Congress & Senate Trading · stocknear`}
/>
<meta
name="twitter:description"
content={`Get the latest US congress & senate trading of ${$displayCompanyName} (${$stockTicker}) from democrates and republicans.`}
/>
<!-- Add more Twitter meta tags as needed --> <!-- Add more Twitter meta tags as needed -->
</svelte:head> </svelte:head>
<section
class="bg-[#09090B] overflow-hidden text-white h-full mb-40 sm:mb-0 w-full"
>
<div class="flex justify-center m-auto h-full overflow-hidden w-full">
<div
class="relative flex justify-center items-center overflow-hidden w-full"
>
<div class="xl:p-7 w-full m-auto mt-2">
<div class="mb-6">
<h1 class="text-2xl sm:text-3xl text-gray-200 font-bold mb-4">
Insider Trading
</h1>
<section class="bg-[#09090B] overflow-hidden text-white h-full mb-40 sm:mb-0 w-full"> <div
<div class="flex justify-center m-auto h-full overflow-hidden w-full"> class="w-fit text-white p-3 sm:p-5 mb-5 rounded-lg sm:flex sm:flex-row sm:items-center border border-slate-800 text-sm sm:text-[1rem]"
<div class="relative flex justify-center items-center overflow-hidden w-full"> >
<div class="xl:p-7 w-full m-auto mt-2"> <svg
<div class="mb-6"> class="w-6 h-6 flex-shrink-0 inline-block sm:mr-2"
<h1 class="text-2xl sm:text-3xl text-gray-200 font-bold mb-4"> xmlns="http://www.w3.org/2000/svg"
Insider Trading viewBox="0 0 256 256"
</h1> ><path
fill="#a474f6"
d="M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24m-4 48a12 12 0 1 1-12 12a12 12 0 0 1 12-12m12 112a16 16 0 0 1-16-16v-40a8 8 0 0 1 0-16a16 16 0 0 1 16 16v40a8 8 0 0 1 0 16"
/></svg
>
<div class="w-fit text-white p-3 sm:p-5 mb-5 rounded-lg sm:flex sm:flex-row sm:items-center border border-slate-800 text-sm sm:text-[1rem]"> {#if insiderTradingList?.length !== 0}
<svg class="w-6 h-6 flex-shrink-0 inline-block sm:mr-2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path fill="#a474f6" d="M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24m-4 48a12 12 0 1 1-12 12a12 12 0 0 1 12-12m12 112a16 16 0 0 1-16-16v-40a8 8 0 0 1 0-16a16 16 0 0 1 16 16v40a8 8 0 0 1 0 16"/></svg> Get detailed insights of Insiders who bought or sold {$displayCompanyName}
and the amounts involved!
{#if insiderTradingList?.length !== 0} {:else}
Get detailed insights of Insiders who bought or sold {$displayCompanyName} and the amounts involved! No trading history available for {$displayCompanyName}. Likely no
{:else} insider trading has happened yet.
No trading history available for {$displayCompanyName}. Likely no insider trading has happened yet. {/if}
{/if} </div>
</div> </div>
{#if isLoaded}
{#if insiderTradingList?.length !== 0}
{#if Object?.keys(statistics)?.length !== 0}
<h3 class="text-white text-lg font-semibold pt-5">
Q{statistics?.quarter}
{statistics?.year} Insider Statistics
</h3>
<!--Start Widget-->
<div
class="w-full mt-5 mb-10 m-auto flex justify-center items-center p-1"
>
<div
class="w-full grid grid-cols-2 lg:grid-cols-3 gap-y-3 lg:gap-y-3 gap-x-3"
>
<!--Start Put/Call-->
<div
class="flex flex-row items-center flex-wrap w-full px-3 sm:px-4 bg-[#262626] shadow-lg rounded-md h-20"
>
<div class="flex flex-col items-start">
<span
class="font-medium text-gray-200 text-sm sm:text-[1rem]"
>Buy/Sell</span
>
<span
class="text-start text-sm sm:text-[1rem] font-medium text-white"
>
{buySellRatio}
</span>
</div> </div>
<!-- Circular Progress -->
{#if isLoaded} <div class="relative size-12 sm:size-14 ml-auto">
<svg
class="size-full w-12 h-12 sm:w-14 sm:h-14"
viewBox="0 0 36 36"
xmlns="http://www.w3.org/2000/svg"
>
<!-- Background Circle -->
<circle
cx="18"
cy="18"
r="16"
fill="none"
class="stroke-current text-[#3E3E3E]"
stroke-width="3"
></circle>
<!-- Progress Circle inside a group with rotation -->
<g class="origin-center -rotate-90 transform">
<circle
cx="18"
cy="18"
r="16"
fill="none"
class="stroke-current text-blue-500"
stroke-width="3"
stroke-dasharray="100"
stroke-dashoffset={buySellRatio >= 1
? 0
: 100 - (buySellRatio * 100)?.toFixed(2)}
></circle>
</g>
</svg>
<!-- Percentage Text -->
<div
class="absolute top-1/2 start-1/2 transform -translate-y-1/2 -translate-x-1/2"
>
<span
class="text-center text-white text-sm sm:text-[1rem]"
>{buySellRatio}%</span
>
</div>
</div>
<!-- End Circular Progress -->
</div>
<!--End Put/Call-->
<!--Start Call Flow-->
<div
class="flex flex-row items-center flex-wrap w-full px-3 sm:px-4 bg-[#262626] shadow-lg rounded-md h-20"
>
<div class="flex flex-col items-start">
<span
class="font-medium text-gray-200 text-sm sm:text-[1rem]"
>Bought Shares</span
>
<span
class="text-start text-sm sm:text-[1rem] font-medium text-white"
>
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0,
}).format(statistics?.buyShares)}
</span>
</div>
<!-- Circular Progress -->
<div class="relative size-12 sm:size-14 ml-auto">
<svg
class="size-full w-12 h-12 sm:w-14 sm:h-14"
viewBox="0 0 36 36"
xmlns="http://www.w3.org/2000/svg"
>
<!-- Background Circle -->
<circle
cx="18"
cy="18"
r="16"
fill="none"
class="stroke-current text-[#3E3E3E]"
stroke-width="3"
></circle>
<!-- Progress Circle inside a group with rotation -->
<g class="origin-center -rotate-90 transform">
<circle
cx="18"
cy="18"
r="16"
fill="none"
class="stroke-current text-[#00FC50]"
stroke-width="3"
stroke-dasharray="100"
stroke-dashoffset={100 -
statistics?.buySharesPercentage}
></circle>
</g>
</svg>
<!-- Percentage Text -->
<div
class="absolute top-1/2 start-1/2 transform -translate-y-1/2 -translate-x-1/2"
>
<span
class="text-center text-white text-sm sm:text-[1rem]"
>{statistics?.buySharesPercentage}%</span
>
</div>
</div>
<!-- End Circular Progress -->
</div>
<!--End Call Flow-->
<!--Start Put Flow-->
<div
class="flex flex-row items-center flex-wrap w-full px-3 sm:px-4 bg-[#262626] shadow-lg rounded-md h-20"
>
<div class="flex flex-col items-start">
<span
class="font-medium text-gray-200 text-sm sm:text-[1rem]"
>Sold Shares</span
>
<span
class="text-start text-sm sm:text-[1rem] font-medium text-white"
>
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0,
}).format(statistics?.soldShares)}
</span>
</div>
<!-- Circular Progress -->
<div class="relative size-12 sm:size-14 ml-auto">
<svg
class="size-full w-12 h-12 sm:w-14 sm:h-14"
viewBox="0 0 36 36"
xmlns="http://www.w3.org/2000/svg"
>
<!-- Background Circle -->
<circle
cx="18"
cy="18"
r="16"
fill="none"
class="stroke-current text-[#3E3E3E]"
stroke-width="3"
></circle>
<!-- Progress Circle inside a group with rotation -->
<g class="origin-center -rotate-90 transform">
<circle
cx="18"
cy="18"
r="16"
fill="none"
class="stroke-current text-[#EE5365]"
stroke-width="3"
stroke-dasharray="100"
stroke-dashoffset={100 -
statistics?.soldSharesPercentage}
></circle>
</g>
</svg>
<!-- Percentage Text -->
<div
class="absolute top-1/2 start-1/2 transform -translate-y-1/2 -translate-x-1/2"
>
<span
class="text-center text-white text-sm sm:text-[1rem]"
>{statistics?.soldSharesPercentage}%</span
>
</div>
</div>
<!-- End Circular Progress -->
</div>
<!--End Put Flow-->
</div>
</div>
<!--End Widget-->
{/if}
{#if insiderTradingList?.length !== 0} <div
class="flex justify-start items-center w-full m-auto rounded-none sm:rounded-lg mb-4 overflow-x-scroll no-scrollbar"
>
<table
class="table table-sm table-pin-rows table-compact rounded-none sm:rounded-md w-full bg-[#09090B] border-bg-[#09090B] m-auto"
{#if Object?.keys(statistics)?.length !== 0 } >
<h3 class="text-white text-lg font-semibold pt-5"> <thead>
Q{statistics?.quarter} {statistics?.year} Insider Statistics <tr class="bg-[#09090B] shadow-md">
</h3> <th
<!--Start Widget--> class="text-start bg-[#09090B] text-white text-[1rem] font-semibold"
<div class="w-full mt-5 mb-10 m-auto flex justify-center items-center p-1"> >
<div class="w-full grid grid-cols-2 lg:grid-cols-3 gap-y-3 lg:gap-y-3 gap-x-3 "> Name
</th>
<!--Start Put/Call--> <th
<div class="flex flex-row items-center flex-wrap w-full px-3 sm:px-4 bg-[#262626] shadow-lg rounded-md h-20"> class="text-end bg-[#09090B] text-white text-[1rem] font-semibold"
<div class="flex flex-col items-start"> >
<span class="font-medium text-gray-200 text-sm sm:text-[1rem]">Buy/Sell</span> Date
<span class="text-start text-sm sm:text-[1rem] font-medium text-white"> </th>
{(statistics?.buyShares/statistics?.soldShares)?.toFixed(2) } <th
</span> class="text-end bg-[#09090B] text-white text-[1rem] font-semibold"
>
Shares
</th>
<th
class="text-end bg-[#09090B] text-white text-[1rem] font-semibold"
>
Price
</th>
<th class="text-white font-semibold text-end text-[1rem]"
>Value</th
>
</tr>
</thead>
<tbody>
{#each data?.user?.tier === "Pro" ? insiderTradingList : insiderTradingList?.slice(0, 3) as item, index}
{#if item?.price > 0}
<tr
class="text-white odd:bg-[#27272A] {index + 1 ===
insiderTradingList?.slice(0, 3)?.length &&
data?.user?.tier !== 'Pro'
? 'opacity-[0.1]'
: ''}"
>
<td
class="text-white text-sm sm:text-[1rem] border-b border-[#09090B] whitespace-nowrap"
>
<div class="flex flex-col">
<span class=""
>{formatString(item?.reportingName)?.replace(
"/de/",
"",
)}</span
>
<span class="text-sm text-white/80"
>{extractOfficeInfo(item?.typeOfOwner)}</span
>
</div> </div>
<!-- Circular Progress --> </td>
<div class="relative size-12 sm:size-14 ml-auto">
<svg class="size-full w-12 h-12 sm:w-14 sm:h-14" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"> <td
<!-- Background Circle --> class="text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]"
<circle cx="18" cy="18" r="16" fill="none" class="stroke-current text-[#3E3E3E]" stroke-width="3"></circle> >
<!-- Progress Circle inside a group with rotation --> {new Date(item?.transactionDate)?.toLocaleString(
<g class="origin-center -rotate-90 transform"> "en-US",
<circle cx="18" cy="18" r="16" fill="none" class="stroke-current text-blue-500" stroke-width="3" stroke-dasharray="100" stroke-dashoffset={statistics?.buyShares/statistics?.soldShares>= 1 ? 0 : 100-(statistics?.buyShares/statistics?.soldShares*100)?.toFixed(2)}></circle> {
</g> month: "short",
</svg> day: "numeric",
<!-- Percentage Text --> year: "numeric",
<div class="absolute top-1/2 start-1/2 transform -translate-y-1/2 -translate-x-1/2"> daySuffix: "2-digit",
<span class="text-center text-white text-sm sm:text-[1rem]">{(statistics?.buyShares/statistics?.soldShares)?.toFixed(2)}</span> },
)}
</td>
<td
class="text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]"
>
{abbreviateNumber(item?.securitiesTransacted)}
</td>
<td
class="text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]"
>
{item?.price?.toFixed(2)}
</td>
<td
class="font-medium text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]"
>
<div class="flex flex-row items-center justify-end">
{#if transactionStyles[item?.transactionType]}
<div
class={transactionStyles[item?.transactionType]
?.class}
>
{abbreviateNumber(
item?.securitiesTransacted * item?.price,
)}
</div> </div>
</div> <div
<!-- End Circular Progress --> class="{transactionStyles[item?.transactionType]
?.class} {transactionStyles[
</div> item?.transactionType
<!--End Put/Call--> ]
<!--Start Call Flow--> ?.border} ml-2 px-1.5 py-1.5 border text-center rounded-lg text-xs font-semibold"
<div class="flex flex-row items-center flex-wrap w-full px-3 sm:px-4 bg-[#262626] shadow-lg rounded-md h-20"> >
<div class="flex flex-col items-start"> {transactionStyles[item?.transactionType].text}
<span class="font-medium text-gray-200 text-sm sm:text-[1rem]">Bought Shares</span> </div>
<span class="text-start text-sm sm:text-[1rem] font-medium text-white"> {:else}
{new Intl.NumberFormat("en", { <span class="text-gray-300">n/a</span>
minimumFractionDigits: 0, {/if}
maximumFractionDigits: 0
}).format(statistics?.buyShares)}
</span>
</div>
<!-- Circular Progress -->
<div class="relative size-12 sm:size-14 ml-auto">
<svg class="size-full w-12 h-12 sm:w-14 sm:h-14" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg">
<!-- Background Circle -->
<circle cx="18" cy="18" r="16" fill="none" class="stroke-current text-[#3E3E3E]" stroke-width="3"></circle>
<!-- Progress Circle inside a group with rotation -->
<g class="origin-center -rotate-90 transform">
<circle cx="18" cy="18" r="16" fill="none" class="stroke-current text-[#00FC50]" stroke-width="3" stroke-dasharray="100" stroke-dashoffset={100-statistics?.buySharesPercentage}></circle>
</g>
</svg>
<!-- Percentage Text -->
<div class="absolute top-1/2 start-1/2 transform -translate-y-1/2 -translate-x-1/2">
<span class="text-center text-white text-sm sm:text-[1rem]">{statistics?.buySharesPercentage}%</span>
</div> </div>
</div> </td>
<!-- End Circular Progress --> </tr>
</div>
<!--End Call Flow-->
<!--Start Put Flow-->
<div class="flex flex-row items-center flex-wrap w-full px-3 sm:px-4 bg-[#262626] shadow-lg rounded-md h-20">
<div class="flex flex-col items-start">
<span class="font-medium text-gray-200 text-sm sm:text-[1rem]">Sold Shares</span>
<span class="text-start text-sm sm:text-[1rem] font-medium text-white">
{new Intl.NumberFormat("en", {
minimumFractionDigits: 0,
maximumFractionDigits: 0
}).format(statistics?.soldShares)}
</span>
</div>
<!-- Circular Progress -->
<div class="relative size-12 sm:size-14 ml-auto">
<svg class="size-full w-12 h-12 sm:w-14 sm:h-14" viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg">
<!-- Background Circle -->
<circle cx="18" cy="18" r="16" fill="none" class="stroke-current text-[#3E3E3E]" stroke-width="3"></circle>
<!-- Progress Circle inside a group with rotation -->
<g class="origin-center -rotate-90 transform">
<circle cx="18" cy="18" r="16" fill="none" class="stroke-current text-[#EE5365]" stroke-width="3" stroke-dasharray="100" stroke-dashoffset={100-statistics?.soldSharesPercentage}></circle>
</g>
</svg>
<!-- Percentage Text -->
<div class="absolute top-1/2 start-1/2 transform -translate-y-1/2 -translate-x-1/2">
<span class="text-center text-white text-sm sm:text-[1rem]">{statistics?.soldSharesPercentage}%</span>
</div>
</div>
<!-- End Circular Progress -->
</div>
<!--End Put Flow-->
</div>
</div>
<!--End Widget-->
{/if} {/if}
{/each}
</tbody>
<div class="flex justify-start items-center w-full m-auto rounded-none sm:rounded-lg mb-4 overflow-x-scroll no-scrollbar"> </table>
<table class="table table-sm table-pin-rows table-compact rounded-none sm:rounded-md w-full bg-[#09090B] border-bg-[#09090B] m-auto">
<thead>
<tr class="bg-[#09090B] shadow-md">
<th class="text-start bg-[#09090B] text-white text-[1rem] font-semibold">
Name
</th>
<th class="text-end bg-[#09090B] text-white text-[1rem] font-semibold">
Date
</th>
<th class="text-end bg-[#09090B] text-white text-[1rem] font-semibold">
Shares
</th>
<th class="text-end bg-[#09090B] text-white text-[1rem] font-semibold">
Price
</th>
<th class="text-white font-semibold text-end text-[1rem]">Value</th>
</tr>
</thead>
<tbody>
{#each (data?.user?.tier === 'Pro' ? insiderTradingList : insiderTradingList?.slice(0,3)) as item, index}
{#if item?.price > 0}
<tr class="text-white odd:bg-[#27272A] {index+1 === insiderTradingList?.slice(0,3)?.length && data?.user?.tier !== 'Pro' ? 'opacity-[0.1]' : ''}">
<td class="text-white text-sm sm:text-[1rem] border-b border-[#09090B] whitespace-nowrap">
<div class="flex flex-col">
<span class="">{formatString(item?.reportingName)?.replace('/de/','')}</span>
<span class="text-sm text-white/80">{extractOfficeInfo(item?.typeOfOwner)}</span>
</div>
</td>
<td class="text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]">
{new Date(item?.transactionDate)?.toLocaleString('en-US', { month: 'short', day: 'numeric', year: 'numeric', daySuffix: '2-digit' })}
</td>
<td class="text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]">
{abbreviateNumber(item?.securitiesTransacted)}
</td>
<td class="text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]">
{item?.price?.toFixed(2)}
</td>
<td class="font-medium text-end text-sm sm:text-[1rem] whitespace-nowrap text-white border-b border-[#09090B]">
<div class="flex flex-row items-center justify-end">
{#if transactionStyles[item?.transactionType]}
<div class="{transactionStyles[item?.transactionType]?.class}">{abbreviateNumber(item?.securitiesTransacted * item?.price)}</div>
<div class="{transactionStyles[item?.transactionType]?.class} {transactionStyles[item?.transactionType]?.border} ml-2 px-1.5 py-1.5 border text-center rounded-lg text-xs font-semibold">
{transactionStyles[item?.transactionType].text}
</div>
{:else}
<span class="text-gray-300">n/a</span>
{/if}
</div>
</td>
</tr>
{/if}
{/each}
</tbody>
</table>
</div>
{#if rawData?.length === insiderTradingList?.length}
<label on:click={backToTop} class="w-32 py-1.5 mt-10 hover:bg-white hover:bg-opacity-[0.05] cursor-pointer m-auto flex justify-center items-center border border-slate-800 rounded-full">
Back to top
</label>
{/if}
<UpgradeToPro data={data} title="Access {$displayCompanyName}'s insider transactions to track executive selling and purchasing activity"/>
{/if}
{:else}
<div class="flex justify-center items-center h-80">
<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">
<span class="loading loading-spinner loading-md text-gray-400"></span>
</label>
</div>
</div>
{/if}
</div>
</div> </div>
</div>
</section>
{#if rawData?.length === insiderTradingList?.length}
<label
on:click={backToTop}
class="w-32 py-1.5 mt-10 hover:bg-white hover:bg-opacity-[0.05] cursor-pointer m-auto flex justify-center items-center border border-slate-800 rounded-full"
>
Back to top
</label>
{/if}
<style> <UpgradeToPro
.app { {data}
height: 400px; title="Access {$displayCompanyName}'s insider transactions to track executive selling and purchasing activity"
width: 100%; />
} {/if}
{:else}
@media (max-width: 560px) { <div class="flex justify-center items-center h-80">
.app { <div class="relative">
width: 100%; <label
height: 300px; 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>
.chart { </label>
width: 100%; </div>
} </div>
</style> {/if}
</div>
</div>
</div>
</section>
<style>
.app {
height: 400px;
width: 100%;
}
@media (max-width: 560px) {
.app {
width: 100%;
height: 300px;
}
}
.chart {
width: 100%;
}
</style>