diff --git a/src/components/ftbot/ProfitSymbol.vue b/src/components/ftbot/ProfitSymbol.vue index 5bed471b..09bab2ad 100644 --- a/src/components/ftbot/ProfitSymbol.vue +++ b/src/components/ftbot/ProfitSymbol.vue @@ -14,7 +14,7 @@ export default class ProfitSymbol extends Vue { get isProfitable() { console.log(this.trade); - const res = (this.trade.close_profit ?? 1) < 0 || (this.trade.current_profit ?? 1) < 0; + const res = (this.trade.close_profit ?? 0) > 0 || (this.trade.current_profit ?? 0) > 0; console.log(res); return res; }