This commit is contained in:
MuslemRahimi 2025-01-02 00:38:55 +01:00
parent 9f3c441ecf
commit c7db5a77b4
4 changed files with 5 additions and 4 deletions

View File

@ -207,8 +207,8 @@
link: "/list/most-shorted-stocks",
},
{
title: "Hottest Options Contracts",
link: "/list/hottest-contracts",
title: "Highest OI Change",
link: "/list/highest-open-interest-change",
},
];

View File

@ -36,7 +36,8 @@
<li>
<a
class="text-blue-400 sm:hover:text-white"
href="/list/hottest-contracts">U.S. Companies with Highest OI Change</a
href="/list/highest-open-interest-change"
>U.S. Companies with Highest OI Change</a
>
</li>
</ul>

View File

@ -2,7 +2,7 @@ export const load = async ({ locals }) => {
const getStocks = async () => {
const { apiKey, apiURL } = locals;
const postData = { filterList: 'hottest-contracts' };
const postData = { filterList: 'highest-open-interest-change' };
const response = await fetch(apiURL + "/list-category", {
method: "POST",