compatibility with edge added

This commit is contained in:
misagh
2019-01-16 18:38:20 +01:00
parent 611b48dbb9
commit 5e2e96acd2
3 changed files with 113 additions and 4 deletions

View File

@@ -405,7 +405,7 @@ class Exchange(object):
order = self._api.create_order(pair, 'stop_loss_limit', 'sell',
amount, rate, {'stopPrice': stop_price})
logger.info('stoploss limit order added for %s. '
'stop price: %s. limit: %s' % (pair,stop_price,rate))
'stop price: %s. limit: %s' % (pair, stop_price, rate))
return order
except ccxt.InsufficientFunds as e: