ui fix
This commit is contained in:
parent
ab68effc98
commit
eef664b232
@ -5,6 +5,7 @@
|
|||||||
import HoverStockChart from "$lib/components/HoverStockChart.svelte";
|
import HoverStockChart from "$lib/components/HoverStockChart.svelte";
|
||||||
import DownloadData from "$lib/components/DownloadData.svelte";
|
import DownloadData from "$lib/components/DownloadData.svelte";
|
||||||
import Infobox from "$lib/components/Infobox.svelte";
|
import Infobox from "$lib/components/Infobox.svelte";
|
||||||
|
import SEO from "$lib/components/SEO.svelte";
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
@ -100,6 +101,11 @@
|
|||||||
$: charNumber = $screenWidth < 640 ? 15 : 20;
|
$: charNumber = $screenWidth < 640 ? 15 : 20;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<SEO
|
||||||
|
title="Bitcoin ETFs - A Complete List"
|
||||||
|
description="A list of all the bitcoin ETFs trading on the US stock market. These funds provide exposure to the price of bitcoin."
|
||||||
|
/>
|
||||||
|
|
||||||
<section class="w-full overflow-hidden m-auto">
|
<section class="w-full overflow-hidden m-auto">
|
||||||
<Infobox
|
<Infobox
|
||||||
text=" A list of all Bitcoin ETFs available for trading on the US stock market,
|
text=" A list of all Bitcoin ETFs available for trading on the US stock market,
|
||||||
|
|||||||
@ -2,6 +2,7 @@
|
|||||||
import { abbreviateNumber } from "$lib/utils";
|
import { abbreviateNumber } from "$lib/utils";
|
||||||
import Table from "$lib/components/Table/Table.svelte";
|
import Table from "$lib/components/Table/Table.svelte";
|
||||||
import Infobox from "$lib/components/Infobox.svelte";
|
import Infobox from "$lib/components/Infobox.svelte";
|
||||||
|
import SEO from "$lib/components/SEO.svelte";
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
@ -27,6 +28,11 @@
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<SEO
|
||||||
|
title={`List of ${countryNavigation[data?.getParams?.toLowerCase()]} Companies on the US Stock Market`}
|
||||||
|
description={`Explore a complete list of ${countryNavigation[data?.getParams?.toLowerCase()]} companies publicly traded on the US stock market. Find stock symbols, market data, and more.`}
|
||||||
|
/>
|
||||||
|
|
||||||
<section class="w-full overflow-hidden m-auto">
|
<section class="w-full overflow-hidden m-auto">
|
||||||
<Infobox
|
<Infobox
|
||||||
text={`A complete list of the ${countryNavigation[data?.getParams?.toLowerCase()]} companies
|
text={`A complete list of the ${countryNavigation[data?.getParams?.toLowerCase()]} companies
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Table from "$lib/components/Table/Table.svelte";
|
import Table from "$lib/components/Table/Table.svelte";
|
||||||
import Infobox from "$lib/components/Infobox.svelte";
|
import Infobox from "$lib/components/Infobox.svelte";
|
||||||
|
import SEO from "$lib/components/SEO.svelte";
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
@ -22,6 +23,11 @@
|
|||||||
]);
|
]);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<SEO
|
||||||
|
title="Most Shorted Stocks – High Short Interest Shares"
|
||||||
|
description="Discover the most shorted stocks with the highest short interest relative to float. Learn how short sellers target these stocks and what it means for investors."
|
||||||
|
/>
|
||||||
|
|
||||||
<section class="w-full overflow-hidden m-auto">
|
<section class="w-full overflow-hidden m-auto">
|
||||||
<Infobox
|
<Infobox
|
||||||
text="A list of the stocks with the highest number of shares shorted relative to
|
text="A list of the stocks with the highest number of shares shorted relative to
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Table from "$lib/components/Table/Table.svelte";
|
import Table from "$lib/components/Table/Table.svelte";
|
||||||
import Infobox from "$lib/components/Infobox.svelte";
|
import Infobox from "$lib/components/Infobox.svelte";
|
||||||
|
import SEO from "$lib/components/SEO.svelte";
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
@ -22,6 +23,11 @@
|
|||||||
]);
|
]);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<SEO
|
||||||
|
title="Overbought Stocks List – RSI Indicator Analysis"
|
||||||
|
description="Explore a list of overbought stocks based on the Relative Strength Index (RSI), a key technical analysis indicator used by traders to assess momentum and potential reversals."
|
||||||
|
/>
|
||||||
|
|
||||||
<section class="w-full overflow-hidden m-auto">
|
<section class="w-full overflow-hidden m-auto">
|
||||||
<Infobox
|
<Infobox
|
||||||
text="A list of stocks that are overbought according to the Relative Strength
|
text="A list of stocks that are overbought according to the Relative Strength
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Table from "$lib/components/Table/Table.svelte";
|
import Table from "$lib/components/Table/Table.svelte";
|
||||||
import Infobox from "$lib/components/Infobox.svelte";
|
import Infobox from "$lib/components/Infobox.svelte";
|
||||||
|
import SEO from "$lib/components/SEO.svelte";
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
|
|
||||||
@ -22,6 +23,11 @@
|
|||||||
]);
|
]);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<SEO
|
||||||
|
title="Oversold Stocks List – RSI Indicator Analysis"
|
||||||
|
description="Explore a list of oversold stocks based on the Relative Strength Index (RSI), a key technical indicator used to identify potential buying opportunities in the market."
|
||||||
|
/>
|
||||||
|
|
||||||
<section class="w-full overflow-hidden m-auto">
|
<section class="w-full overflow-hidden m-auto">
|
||||||
<Infobox
|
<Infobox
|
||||||
text=" A list of stocks that are oversold according to the Relative Strength
|
text=" A list of stocks that are oversold according to the Relative Strength
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user