Remove Cum Profit % from output

This commit is contained in:
Matthias 2024-03-30 11:07:40 +01:00
parent 2128850dcf
commit 90036f5340

View File

@ -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}`,