diff --git a/core/exchanges/oanda.py b/core/exchanges/oanda.py index e1d8f66..f9fe40a 100644 --- a/core/exchanges/oanda.py +++ b/core/exchanges/oanda.py @@ -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) diff --git a/core/lib/market.py b/core/lib/market.py index ca9b0e5..e7d6822 100644 --- a/core/lib/market.py +++ b/core/lib/market.py @@ -224,7 +224,6 @@ def execute_strategy(callback, strategy): log.error(f"Symbol not supported by account: {symbol}") return - print("INSTRUMENTS", instruments) # Extract the information for the symbol instrument = strategy.account.client.extract_instrument(instruments, symbol) if not instrument: