@@ -511,7 +509,7 @@ $: {
-
| PE Ratio |
{#each ratios as item}
{item?.priceEarningsRatio?.toFixed(2)} |
@@ -530,7 +528,7 @@ $: {
{item?.priceToBookRatio?.toFixed(2)} |
{/each}
| P/FCF Ratio |
{#each ratios as item}
{item?.priceToFreeCashFlowsRatio?.toFixed(2)} |
@@ -569,7 +567,7 @@ $: {
{/each}
- | Asset Turnover |
+ Asset Turnover |
{#each ratios as item}
{item?.assetTurnover?.toFixed(2)} |
{/each}
diff --git a/src/routes/stocks/[tickerID]/stats/ratios/+page.ts b/src/routes/stocks/[tickerID]/stats/ratios/+page.ts
index 65a0ddb0..2fba277d 100644
--- a/src/routes/stocks/[tickerID]/stats/ratios/+page.ts
+++ b/src/routes/stocks/[tickerID]/stats/ratios/+page.ts
@@ -12,6 +12,7 @@ export const load = async ({ parent, params }) => {
} else {
const {apiKey, apiURL} = await parent();
+
const postData = {
ticker: params.tickerID
};