Remove some debug statements

This commit is contained in:
2022-11-11 07:20:00 +00:00
parent afb0504dca
commit 3f855dfb59
2 changed files with 0 additions and 3 deletions

View File

@@ -62,11 +62,9 @@ class OANDAExchange(BaseExchange):
}
}
if trade.price is not None:
print("PRICE IS NOT NONE")
if trade.type == "limit":
data["order"]["price"] = str(trade.price)
elif trade.type == "market":
print("IS MARKET")
data["order"]["priceBound"] = str(trade.price)
r = orders.OrderCreate(self.account_id, data=data)
response = self.call(r)