From 90036f534040d2147468088954b55b1d7c5c0661 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sat, 30 Mar 2024 11:07:40 +0100 Subject: [PATCH] Remove Cum Profit % from output --- src/components/ftbot/BacktestResultAnalysis.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/ftbot/BacktestResultAnalysis.vue b/src/components/ftbot/BacktestResultAnalysis.vue index 1f9dedcf..008542b0 100644 --- a/src/components/ftbot/BacktestResultAnalysis.vue +++ b/src/components/ftbot/BacktestResultAnalysis.vue @@ -90,7 +90,6 @@ const perPairFields = computed(() => { label: 'Avg Profit %', formatter: (value) => formatPercent(value, 2), }, - { key: 'profit_sum', label: 'Cum Profit %', formatter: (value) => formatPercent(value, 2) }, { key: 'profit_total_abs', label: `Tot Profit ${props.backtestResult.stake_currency}`, @@ -117,7 +116,6 @@ const perExitReason = computed(() => { label: 'Avg Profit %', formatter: (value) => formatPercent(value, 2), }, - { key: 'profit_sum', label: 'Cum Profit %', formatter: (value) => formatPercent(value, 2) }, { key: 'profit_total_abs', label: `Tot Profit ${props.backtestResult.stake_currency}`,