mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 03:25:15 +00:00
Merge pull request #1803 from slimatic/fix-incorrect-ui-metric-value
fix(BotProfit.vue): fix incorrect ROI metric
This commit is contained in:
commit
3d14f24429
|
@ -28,7 +28,7 @@ const profitItems = computed<TableItem[]>(() => {
|
||||||
if (!props.profit) return [];
|
if (!props.profit) return [];
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
metric: 'ROI open trades',
|
metric: 'ROI closed trades',
|
||||||
value: props.profit.profit_closed_coin
|
value: props.profit.profit_closed_coin
|
||||||
? `${formatPriceCurrency(
|
? `${formatPriceCurrency(
|
||||||
props.profit.profit_closed_coin,
|
props.profit.profit_closed_coin,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user