mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 10:21:59 +00:00
use 8 digits of precision for amount and rate in formatting
This commit is contained in:
parent
7ba4a5d24b
commit
be6939ee8a
|
@ -68,7 +68,7 @@ class Trade(_DECL_BASE):
|
|||
open_order_id = Column(String)
|
||||
|
||||
def __repr__(self):
|
||||
return 'Trade(id={}, pair={}, amount={}, open_rate={}, open_since={})'.format(
|
||||
return 'Trade(id={}, pair={}, amount={:.8f}, open_rate={:.8f}, open_since={})'.format(
|
||||
self.id,
|
||||
self.pair,
|
||||
self.amount,
|
||||
|
|
Loading…
Reference in New Issue
Block a user