diff --git a/src/components/ftbot/ProfitSymbol.vue b/src/components/ftbot/ProfitSymbol.vue index 31516d89..f774d817 100644 --- a/src/components/ftbot/ProfitSymbol.vue +++ b/src/components/ftbot/ProfitSymbol.vue @@ -13,7 +13,7 @@ export default class ProfitSymbol extends Vue { @Prop({ required: true }) trade!: Trade; get isProfitable() { - const res = (this.trade.profit_ratio ?? 0) > 0; + const res = (this.trade.profit_ratio ?? 0) > 0 || (this.trade.profit_abs ?? 0) > 0; return res; } }