mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Don't log in proitSymbol
This commit is contained in:
parent
7326f3f3c2
commit
b9dc102765
|
@ -13,9 +13,7 @@ export default class ProfitSymbol extends Vue {
|
||||||
@Prop({ required: true }) trade!: Trade;
|
@Prop({ required: true }) trade!: Trade;
|
||||||
|
|
||||||
get isProfitable() {
|
get isProfitable() {
|
||||||
console.log(this.trade);
|
|
||||||
const res = (this.trade.close_profit ?? 0) > 0 || (this.trade.current_profit ?? 0) > 0;
|
const res = (this.trade.close_profit ?? 0) > 0 || (this.trade.current_profit ?? 0) > 0;
|
||||||
console.log(res);
|
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user