update ftd chart

This commit is contained in:
MuslemRahimi 2025-02-25 10:38:22 +01:00
parent 0f2c4d22f4
commit 3b705842a1
2 changed files with 138 additions and 155 deletions

View File

@ -17,7 +17,6 @@
let config = null; let config = null;
let isLoaded = false;
let avgFailToDeliver; let avgFailToDeliver;
let weightedFTD; let weightedFTD;
@ -85,7 +84,7 @@
rawData?.sort((a, b) => new Date(a?.date) - new Date(b?.date)); rawData?.sort((a, b) => new Date(a?.date) - new Date(b?.date));
rawData?.forEach((item) => { rawData?.forEach((item) => {
dates?.push(item?.date); dates?.push(item?.date);
priceList?.push(item?.price); priceList?.push(Number(item?.price));
failToDeliverList?.push(item?.failToDeliver); failToDeliverList?.push(item?.failToDeliver);
}); });
@ -150,7 +149,6 @@
})}</span> <br> <span class="text-black font-normal text-sm">${abbreviateNumber(this.y)}</span>`; })}</span> <br> <span class="text-black font-normal text-sm">${abbreviateNumber(this.y)}</span>`;
}, },
}, },
xAxis: { xAxis: {
categories: dates, categories: dates,
labels: { labels: {
@ -167,12 +165,15 @@
}, },
yAxis: [ yAxis: [
{ {
gridLineWidth: 1,
gridLineColor: "#111827",
labels: { labels: {
enabled: false, enabled: false,
}, },
title: { title: {
text: null, text: null,
}, },
opposite: true,
}, },
{ {
gridLineWidth: 1, gridLineWidth: 1,
@ -219,7 +220,6 @@
$: { $: {
const ticker = $assetType === "stock" ? $stockTicker : $etfTicker; const ticker = $assetType === "stock" ? $stockTicker : $etfTicker;
if (ticker) { if (ticker) {
isLoaded = false;
if (rawData?.length > 0) { if (rawData?.length > 0) {
weightedFTD = ( weightedFTD = (
(rawData?.slice(-1)?.at(0)?.failToDeliver / (rawData?.slice(-1)?.at(0)?.failToDeliver /
@ -228,7 +228,6 @@
)?.toFixed(2); )?.toFixed(2);
config = getPlotOptions(); config = getPlotOptions();
} }
isLoaded = true;
} }
} }
</script> </script>
@ -239,12 +238,10 @@
<h1 class="text-xl sm:text-2xl text-white font-bold">FTD Chart</h1> <h1 class="text-xl sm:text-2xl text-white font-bold">FTD Chart</h1>
</div> </div>
{#if isLoaded}
{#if rawData?.length !== 0} {#if rawData?.length !== 0}
<div class="w-full flex flex-col items-start"> <div class="w-full flex flex-col items-start">
<div class="text-white text-[1rem] mt-2 mb-2 w-full"> <div class="text-white text-[1rem] mt-2 mb-2 w-full">
Over the past year, {$displayCompanyName} has seen a monthly average Over the past year, {$displayCompanyName} has seen a monthly average of
of
<span class="font-semibold" <span class="font-semibold"
>{avgFailToDeliver?.toLocaleString("en-US")} >{avgFailToDeliver?.toLocaleString("en-US")}
</span> fail to deliver shares. </span> fail to deliver shares.
@ -320,14 +317,12 @@
> >
<thead class="bg-default"> <thead class="bg-default">
<tr> <tr>
<th class="text-white font-semibold text-start text-sm">Date</th <th class="text-white font-semibold text-start text-sm">Date</th>
>
<th class="text-white font-semibold text-end text-sm">Price</th> <th class="text-white font-semibold text-end text-sm">Price</th>
<th class="text-white font-semibold text-end text-sm" <th class="text-white font-semibold text-end text-sm"
>FTD Shares</th >FTD Shares</th
> >
<th class="text-white font-semibold text-end text-sm" <th class="text-white font-semibold text-end text-sm">% Change</th
>% Change</th
> >
</tr> </tr>
</thead> </thead>
@ -389,18 +384,6 @@
</table> </table>
</div> </div>
{/if} {/if}
{:else}
<div class="flex justify-center items-center h-80">
<div class="relative">
<label
class="bg-secondary rounded-md 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}
</main> </main>
</section> </section>

View File

@ -19,19 +19,19 @@
: "n/a"; : "n/a";
function computeYearOverYearChange(rawData) { function computeYearOverYearChange(rawData) {
if (rawData.length < 2) { if (rawData?.length < 2) {
return null; // Not enough rawData to compute change return null; // Not enough rawData to compute change
} }
// Step 1: Get the last entry in the list // Step 1: Get the last entry in the list
const lastEntry = rawData[rawData.length - 1]; const lastEntry = rawData[rawData?.length - 1];
const lastDate = new Date(lastEntry.date); const lastDate = new Date(lastEntry?.date);
const lastValue = rawData?.slice(-1)?.at(0).failToDeliver; const lastValue = rawData?.slice(-1)?.at(0)?.failToDeliver;
// Step 2: Find the entry closest to one year before the last date // Step 2: Find the entry closest to one year before the last date
let closestEntry = null; let closestEntry = null;
for (let i = rawData.length - 2; i >= 0; i--) { for (let i = rawData.length - 2; i >= 0; i--) {
const entryDate = new Date(rawData[i].date); const entryDate = new Date(rawData[i]?.date);
const oneYearAgo = new Date(lastDate); const oneYearAgo = new Date(lastDate);
oneYearAgo.setFullYear(lastDate.getFullYear() - 1); oneYearAgo.setFullYear(lastDate.getFullYear() - 1);