bugfixing
This commit is contained in:
parent
b6facb9f07
commit
45841bfe7e
@ -1,12 +1,14 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { abbreviateNumberWithColor } from "$lib/utils";
|
import { abbreviateNumberWithColor } from "$lib/utils";
|
||||||
import * as HoverCard from "$lib/components/shadcn/hover-card/index.js";
|
import * as HoverCard from "$lib/components/shadcn/hover-card/index.js";
|
||||||
|
import TableHeader from "$lib/components/Table/TableHeader.svelte";
|
||||||
|
|
||||||
import UpgradeToPro from "$lib/components/UpgradeToPro.svelte";
|
import UpgradeToPro from "$lib/components/UpgradeToPro.svelte";
|
||||||
import Infobox from "$lib/components/Infobox.svelte";
|
import Infobox from "$lib/components/Infobox.svelte";
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
let volumeList = data?.getData;
|
let rawData = data?.getData;
|
||||||
let openInterestList = volumeList?.sort(
|
let openInterestList = rawData?.sort(
|
||||||
(a, b) => b?.open_interest - a?.open_interest,
|
(a, b) => b?.open_interest - a?.open_interest,
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -23,6 +25,87 @@
|
|||||||
|
|
||||||
return daysLeft + "D";
|
return daysLeft + "D";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$: columns = [
|
||||||
|
{ key: "date_expiration", label: "Chain", align: "left" },
|
||||||
|
{ key: "last_price", label: "Last", align: "right" },
|
||||||
|
{ key: "high_price", label: "Low-High", align: "right" },
|
||||||
|
{ key: "volume", label: "Volume", align: "right" },
|
||||||
|
{ key: "open_interest", label: "OI", align: "right" },
|
||||||
|
{ key: "open_interest_change", label: "OI Change", align: "right" },
|
||||||
|
{ key: "bid_volume", label: "Bid/Ask Vol", align: "right" },
|
||||||
|
{ key: "total_premium", label: "Total Prem", align: "right" },
|
||||||
|
];
|
||||||
|
|
||||||
|
$: sortOrders = {
|
||||||
|
date_expiration: { order: "none", type: "string" },
|
||||||
|
last_price: { order: "none", type: "number" },
|
||||||
|
high_price: { order: "none", type: "number" },
|
||||||
|
volume: { order: "none", type: "number" },
|
||||||
|
open_interest: { order: "none", type: "number" },
|
||||||
|
open_interest_change: { order: "none", type: "number" },
|
||||||
|
bid_volume: { order: "none", type: "number" },
|
||||||
|
total_premium: { order: "none", type: "number" },
|
||||||
|
};
|
||||||
|
|
||||||
|
const sortData = (key) => {
|
||||||
|
// Reset all other keys to 'none' except the current key
|
||||||
|
for (const k in sortOrders) {
|
||||||
|
if (k !== key) {
|
||||||
|
sortOrders[k].order = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cycle through 'none', 'asc', 'desc' for the clicked key
|
||||||
|
const orderCycle = ["none", "asc", "desc"];
|
||||||
|
let originalData = rawData?.sort(
|
||||||
|
(a, b) => b?.open_interest - a?.open_interest,
|
||||||
|
);
|
||||||
|
const currentOrderIndex = orderCycle.indexOf(sortOrders[key].order);
|
||||||
|
sortOrders[key].order =
|
||||||
|
orderCycle[(currentOrderIndex + 1) % orderCycle.length];
|
||||||
|
const sortOrder = sortOrders[key].order;
|
||||||
|
|
||||||
|
// Reset to original data when 'none' and stop further sorting
|
||||||
|
if (sortOrder === "none") {
|
||||||
|
originalData = [...rawData]; // Reset originalData to rawData
|
||||||
|
openInterestList = originalData;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Define a generic comparison function
|
||||||
|
const compareValues = (a, b) => {
|
||||||
|
const { type } = sortOrders[key];
|
||||||
|
let valueA, valueB;
|
||||||
|
|
||||||
|
switch (type) {
|
||||||
|
case "date":
|
||||||
|
valueA = new Date(a[key]);
|
||||||
|
valueB = new Date(b[key]);
|
||||||
|
break;
|
||||||
|
case "string":
|
||||||
|
valueA = a[key].toUpperCase();
|
||||||
|
valueB = b[key].toUpperCase();
|
||||||
|
return sortOrder === "asc"
|
||||||
|
? valueA.localeCompare(valueB)
|
||||||
|
: valueB.localeCompare(valueA);
|
||||||
|
case "number":
|
||||||
|
default:
|
||||||
|
valueA = parseFloat(a[key]);
|
||||||
|
valueB = parseFloat(b[key]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sortOrder === "asc") {
|
||||||
|
return valueA < valueB ? -1 : valueA > valueB ? 1 : 0;
|
||||||
|
} else {
|
||||||
|
return valueA > valueB ? -1 : valueA < valueB ? 1 : 0;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Sort using the generic comparison function
|
||||||
|
openInterestList = [...originalData].sort(compareValues);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<section
|
<section
|
||||||
@ -32,218 +115,19 @@
|
|||||||
<div
|
<div
|
||||||
class="w-full relative flex justify-center items-center overflow-hidden"
|
class="w-full relative flex justify-center items-center overflow-hidden"
|
||||||
>
|
>
|
||||||
{#if volumeList?.length > 0}
|
{#if rawData?.length > 0}
|
||||||
<div class="sm:p-7 w-full m-auto mt-2 sm:mt-0">
|
<div class="sm:p-7 w-full m-auto mt-2 sm:mt-0">
|
||||||
<h2
|
<h2
|
||||||
class=" flex flex-row items-center text-white text-xl sm:text-2xl font-bold w-fit"
|
class=" flex flex-row items-center text-white text-xl sm:text-2xl font-bold w-fit"
|
||||||
>
|
>
|
||||||
Hottest Contracts (Highest Volume)
|
Hottest Contracts (Highest OI)
|
||||||
</h2>
|
</h2>
|
||||||
<div class="w-full overflow-x-scroll text-white">
|
<div class="w-full overflow-x-scroll text-white">
|
||||||
<table
|
<table
|
||||||
class="w-full table table-sm table-compact bg-table border border-gray-800 rounded-none sm:rounded-md m-auto mt-4 overflow-x-auto"
|
class="w-full table table-sm table-compact bg-table border border-gray-800 rounded-none sm:rounded-md m-auto mt-4 overflow-x-auto"
|
||||||
>
|
>
|
||||||
<thead class="bg-default">
|
<thead>
|
||||||
<tr class="">
|
<TableHeader {columns} {sortOrders} {sortData} />
|
||||||
<td class="text-white font-semibold text-sm text-center"
|
|
||||||
>Chain</td
|
|
||||||
>
|
|
||||||
|
|
||||||
<td class="text-white font-semibold text-sm text-end">Last</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Low-High</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Volume</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end">OI</td>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>OI Change</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Bid/Ask Vol</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Total Prem</td
|
|
||||||
>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
{#each volumeList as item, index}
|
|
||||||
<tr
|
|
||||||
class="sm:hover:bg-[#245073] sm:hover:bg-opacity-[0.2] odd:bg-odd border-b border-gray-800 {index +
|
|
||||||
1 ===
|
|
||||||
volumeList?.slice(0, 3)?.length &&
|
|
||||||
data?.user?.tier !== 'Pro'
|
|
||||||
? 'opacity-[0.1]'
|
|
||||||
: ''}"
|
|
||||||
>
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-start whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{item?.strike_price}
|
|
||||||
<span
|
|
||||||
class={item?.option_type === "C"
|
|
||||||
? "text-[#00FC50]"
|
|
||||||
: "text-[#FF2F1F]"}
|
|
||||||
>
|
|
||||||
{item?.option_type === "C" ? "Call" : "Put"}
|
|
||||||
</span>
|
|
||||||
{" " +
|
|
||||||
item?.date_expiration +
|
|
||||||
" " +
|
|
||||||
`(${daysLeft(item?.date_expiration)})`}
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-end whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{item?.last_price}
|
|
||||||
</td>
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-end whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{item?.low_price}-{item?.high_price}
|
|
||||||
</td>
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-end whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{item?.volume?.toLocaleString("en-US")}
|
|
||||||
</td>
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-end whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{item?.open_interest?.toLocaleString("en-US")}
|
|
||||||
</td>
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-end whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{#if item?.open_interest_change >= 0}
|
|
||||||
<span class="text-[#00FC50]"
|
|
||||||
>+{item?.open_interest_change?.toLocaleString(
|
|
||||||
"en-US",
|
|
||||||
)}</span
|
|
||||||
>
|
|
||||||
{:else}
|
|
||||||
<span class="text-[#FF2F1F]"
|
|
||||||
>{item?.open_interest_change?.toLocaleString(
|
|
||||||
"en-US",
|
|
||||||
)}</span
|
|
||||||
>
|
|
||||||
{/if}
|
|
||||||
</td>
|
|
||||||
<td class="text-sm sm:text-[1rem] text-end">
|
|
||||||
<HoverCard.Root>
|
|
||||||
<HoverCard.Trigger
|
|
||||||
class="rounded-sm underline-offset-4 hover:underline focus-visible:outline-2 focus-visible:outline-offset-8 focus-visible:outline-black"
|
|
||||||
>
|
|
||||||
<div class="flex items-center justify-end">
|
|
||||||
<!-- Bar Container -->
|
|
||||||
<div
|
|
||||||
class="flex w-full max-w-28 h-5 bg-gray-200 rounded-md overflow-hidden"
|
|
||||||
>
|
|
||||||
<!-- Bearish -->
|
|
||||||
<div
|
|
||||||
class="bg-red-500 h-full"
|
|
||||||
style="width: calc(({item?.bid_volume} / ({item?.bid_volume} + {item?.mid_volume} + {item?.ask_volume})) * 100%)"
|
|
||||||
></div>
|
|
||||||
|
|
||||||
<!-- Neutral -->
|
|
||||||
<div
|
|
||||||
class="bg-gray-300 h-full"
|
|
||||||
style="width: calc(({item?.mid_volume} / ({item?.bid_volume} + {item?.mid_volume} + {item?.ask_volume})) * 100%)"
|
|
||||||
></div>
|
|
||||||
|
|
||||||
<!-- Bullish -->
|
|
||||||
<div
|
|
||||||
class="bg-green-500 h-full"
|
|
||||||
style="width: calc(({item?.ask_volume} / ({item?.bid_volume} + {item?.mid_volume} + {item?.ask_volume})) * 100%)"
|
|
||||||
></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</HoverCard.Trigger>
|
|
||||||
<HoverCard.Content
|
|
||||||
class="w-auto bg-secondary border border-gray-600"
|
|
||||||
>
|
|
||||||
<div class="flex justify-between space-x-4">
|
|
||||||
<div
|
|
||||||
class="space-y-1 flex flex-col items-start text-white"
|
|
||||||
>
|
|
||||||
<div>
|
|
||||||
Bid Vol: {@html abbreviateNumberWithColor(
|
|
||||||
item?.bid_volume,
|
|
||||||
false,
|
|
||||||
true,
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
Mid Vol: {@html abbreviateNumberWithColor(
|
|
||||||
item?.mid_volume,
|
|
||||||
false,
|
|
||||||
true,
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
Ask Vol: {@html abbreviateNumberWithColor(
|
|
||||||
item?.ask_volume,
|
|
||||||
false,
|
|
||||||
true,
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</HoverCard.Content>
|
|
||||||
</HoverCard.Root>
|
|
||||||
</td>
|
|
||||||
<td
|
|
||||||
class="text-white text-sm sm:text-[1rem] text-end whitespace-nowrap"
|
|
||||||
>
|
|
||||||
{@html abbreviateNumberWithColor(
|
|
||||||
item?.total_premium,
|
|
||||||
false,
|
|
||||||
true,
|
|
||||||
)}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
{/each}
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<h2
|
|
||||||
class="mt-10 flex flex-row items-center text-white text-xl sm:text-2xl font-bold w-fit"
|
|
||||||
>
|
|
||||||
Highest OI Contracts
|
|
||||||
</h2>
|
|
||||||
<div class="w-full overflow-x-scroll text-white">
|
|
||||||
<table
|
|
||||||
class="w-full table table-sm table-compact bg-table border border-gray-800 rounded-none sm:rounded-md m-auto mt-4 overflow-x-auto"
|
|
||||||
>
|
|
||||||
<thead class="bg-default">
|
|
||||||
<tr class="">
|
|
||||||
<td class="text-white font-semibold text-sm text-center"
|
|
||||||
>Chain</td
|
|
||||||
>
|
|
||||||
|
|
||||||
<td class="text-white font-semibold text-sm text-end">Last</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Low-High</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Volume</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end">OI</td>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>OI Change</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Bid/Ask Vol</td
|
|
||||||
>
|
|
||||||
<td class="text-white font-semibold text-sm text-end"
|
|
||||||
>Total Prem</td
|
|
||||||
>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{#each openInterestList as item, index}
|
{#each openInterestList as item, index}
|
||||||
@ -386,6 +270,7 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<UpgradeToPro {data} />
|
<UpgradeToPro {data} />
|
||||||
</div>
|
</div>
|
||||||
{:else}
|
{:else}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user