diff --git a/freqtrade/persistence.py b/freqtrade/persistence.py index cbe7c1de4..7753eabbf 100644 --- a/freqtrade/persistence.py +++ b/freqtrade/persistence.py @@ -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, diff --git a/requirements.txt b/requirements.txt index 1ed05807b..ba8b6cfcc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ --e git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex +python-bittrex==0.2.1 SQLAlchemy==1.1.14 python-telegram-bot==8.1.1 arrow==0.10.0 diff --git a/setup.py b/setup.py index 2c4a3f4c9..1514f6405 100644 --- a/setup.py +++ b/setup.py @@ -36,9 +36,6 @@ setup(name='freqtrade', 'tabulate', 'cachetools', ], - dependency_links=[ - "git+https://github.com/ericsomdahl/python-bittrex.git@0.2.0#egg=python-bittrex" - ], include_package_data=True, zip_safe=False, classifiers=[