mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
Round open/close rates to 8 digits
This commit is contained in:
parent
094d47eb7c
commit
dd0589776c
|
@ -168,12 +168,12 @@ export default class TradeList extends Vue {
|
||||||
{
|
{
|
||||||
key: 'open_rate',
|
key: 'open_rate',
|
||||||
label: 'Open rate',
|
label: 'Open rate',
|
||||||
formatter: (value: number) => this.formatPrice(value, 8),
|
formatter: (value: number) => this.formatPrice(value),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: this.activeTrades ? 'current_rate' : 'close_rate',
|
key: this.activeTrades ? 'current_rate' : 'close_rate',
|
||||||
label: this.activeTrades ? 'Current rate' : 'Close rate',
|
label: this.activeTrades ? 'Current rate' : 'Close rate',
|
||||||
formatter: (value: number) => this.formatPrice(value, 8),
|
formatter: (value: number) => this.formatPrice(value),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
key: 'profit',
|
key: 'profit',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user