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", link: "/list/most-shorted-stocks",
}, },
{ {
title: "Hottest Options Contracts", title: "Highest OI Change",
link: "/list/hottest-contracts", link: "/list/highest-open-interest-change",
}, },
]; ];

View File

@ -36,7 +36,8 @@
<li> <li>
<a <a
class="text-blue-400 sm:hover:text-white" 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> </li>
</ul> </ul>

View File

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