mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 02:11:57 +00:00
Use correct unit for trade profits
This commit is contained in:
parent
5d05338486
commit
303b036d89
|
@ -65,7 +65,7 @@ export default {
|
|||
methods: {
|
||||
...mapActions('ftbot', ['forcesell']),
|
||||
formatPercent(value) {
|
||||
return `${value.toFixed(3)}%`;
|
||||
return `${(value * 100).toFixed(3)}%`;
|
||||
},
|
||||
forcesellHandler(item) {
|
||||
this.forcesell(item.trade_id)
|
||||
|
|
Loading…
Reference in New Issue
Block a user