BLD: minor adjustments and updated release notes

This commit is contained in:
Frederic Fortier
2018-01-12 19:53:26 -05:00
parent fb36435231
commit 50dc322230
3 changed files with 7 additions and 0 deletions
@@ -259,6 +259,7 @@ if __name__ == '__main__':
live_graph=False,
simulate_orders=False,
stats_output=None,
# auth_aliases=dict(poloniex='auth2')
)
else:
+5
View File
@@ -1011,6 +1011,11 @@ class CCXT(Exchange):
return result
def get_trades(self, asset, my_trades=True, start_dt=None, limit=None):
if not my_trades:
raise NotImplemented(
'get_trades only supports "my trades"'
)
# TODO: is it possible to sort this? Limit is useless otherwise.
ccxt_symbol = self.get_symbol(asset)
try:
+1
View File
@@ -11,6 +11,7 @@ Bug Fixes
- Improved order execution for exchanges supporting trade lists (:issue:`151`)
- Fixed an issue where requesting history of multiple assets repeats values
- Raising an error for order amounts smaller than exchange lots
- Handling multiple req errors with tickers more gracefully (:issue:`160`)
Version 0.4.4
^^^^^^^^^^^^^