stop loss limit order type corrected

This commit is contained in:
misagh 2018-11-27 17:09:51 +01:00
parent 6351fe7a7f
commit 7dbf0fed68

View File

@ -373,7 +373,7 @@ class Exchange(object):
return self._dry_run_open_orders[order_id]
try:
return self._api.create_order(pair, 'stop_loss', 'sell',
return self._api.create_order(pair, 'stop_loss_limit', 'sell',
amount, rate, {'stopPrice': stop_price})
except ccxt.InsufficientFunds as e: