diff --git a/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+layout.svelte b/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+layout.svelte
index 8882bde6..1a6b8b0c 100644
--- a/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+layout.svelte
+++ b/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+layout.svelte
@@ -74,7 +74,7 @@
>
{abbreviateNumber(item?.relativeFTD)}% | {item?.relativeFTD > 0.01 abbreviateNumber(item?.relativeFTD)+"%" : '< 0.01%'}
{/if}
diff --git a/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte b/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte
index 940aa15f..fd692d5c 100644
--- a/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte
+++ b/src/routes/stocks/[tickerID]/statistics/fail-to-deliver/+page.svelte
@@ -15,6 +15,14 @@
let rawData = data?.getData || [];
let changePercentageYearAgo = 0;
+ let relativeFTD =
+ data?.getStockQuote?.avgVolume > 0
+ ? (
+ (rawData?.slice(-1)?.at(0)?.failToDeliver /
+ data?.getStockQuote?.avgVolume) *
+ 100
+ )?.toFixed(2) + "%"
+ : "n/a";
function computeYearOverYearChange(rawData) {
if (rawData.length < 2) {
@@ -133,13 +141,7 @@
- {data?.getStockQuote?.avgVolume > 0
- ? (
- (rawData?.slice(-1)?.at(0)?.failToDeliver /
- data?.getStockQuote?.avgVolume) *
- 100
- )?.toFixed(2) + "%"
- : "n/a"}
+ {relativeFTD > 0.01 ? relativeFTD : "< 0.01%"}