Update exchange.py
This commit is contained in:
parent
062ef7b9da
commit
2acd504a4a
@ -396,7 +396,7 @@ class Exchange:
|
|||||||
# Note: ccxt has BaseCurrency/QuoteCurrency format for pairs
|
# Note: ccxt has BaseCurrency/QuoteCurrency format for pairs
|
||||||
if self.markets and pair not in self.markets:
|
if self.markets and pair not in self.markets:
|
||||||
raise OperationalException(
|
raise OperationalException(
|
||||||
f'Pair {pair} is not available on {self.name}. '
|
f'Pair {pair} is not available on {self.name}. '
|
||||||
f'Please remove {pair} from your whitelist.')
|
f'Please remove {pair} from your whitelist.')
|
||||||
|
|
||||||
# From ccxt Documentation:
|
# From ccxt Documentation:
|
||||||
@ -738,11 +738,9 @@ class Exchange:
|
|||||||
balances = self._api.fetch_balance(self)
|
balances = self._api.fetch_balance(self)
|
||||||
if (balances["free"] > self._BNB_min and self._name == "binance" and
|
if (balances["free"] > self._BNB_min and self._name == "binance" and
|
||||||
self._avoid_duplicate_order is False):
|
self._avoid_duplicate_order is False):
|
||||||
print("in line 741")
|
|
||||||
self.create_order(pair, ordertype, side, (self._BNB_max - balances["free"]), rate)
|
self.create_order(pair, ordertype, side, (self._BNB_max - balances["free"]), rate)
|
||||||
self._avoid_duplicate_order = True
|
self._avoid_duplicate_order = True
|
||||||
else:
|
else:
|
||||||
print("in line 744")
|
|
||||||
self._avoid_duplicate_order = False
|
self._avoid_duplicate_order = False
|
||||||
dry_order = self.create_dry_run_order(pair, ordertype, side, amount, rate)
|
dry_order = self.create_dry_run_order(pair, ordertype, side, amount, rate)
|
||||||
return dry_order
|
return dry_order
|
||||||
|
Loading…
Reference in New Issue
Block a user