Remove some print statements
This commit is contained in:
parent
6902665ffb
commit
31a77e88ad
|
@ -55,7 +55,6 @@ def post_trade(trade):
|
||||||
log.error(f"Error placing limit order: {e}")
|
log.error(f"Error placing limit order: {e}")
|
||||||
return (False, e)
|
return (False, e)
|
||||||
|
|
||||||
print("ORDER", order)
|
|
||||||
else:
|
else:
|
||||||
raise Exception("Unknown trade type")
|
raise Exception("Unknown trade type")
|
||||||
trade.response = order
|
trade.response = order
|
||||||
|
|
|
@ -48,7 +48,6 @@ class ObjectList(ListView):
|
||||||
list_url_args = {}
|
list_url_args = {}
|
||||||
for arg in self.list_url_args:
|
for arg in self.list_url_args:
|
||||||
list_url_args[arg] = locals()[arg]
|
list_url_args[arg] = locals()[arg]
|
||||||
print("LIST URL ARGS", list_url_args)
|
|
||||||
|
|
||||||
if type == "page":
|
if type == "page":
|
||||||
type = "modal"
|
type = "modal"
|
||||||
|
@ -128,7 +127,6 @@ class ObjectCreate(CreateView):
|
||||||
list_url_args = {}
|
list_url_args = {}
|
||||||
for arg in self.list_url_args:
|
for arg in self.list_url_args:
|
||||||
list_url_args[arg] = locals()[arg]
|
list_url_args[arg] = locals()[arg]
|
||||||
print("LIST URL ARGS", list_url_args)
|
|
||||||
|
|
||||||
if type == "page":
|
if type == "page":
|
||||||
type = "modal"
|
type = "modal"
|
||||||
|
|
|
@ -18,7 +18,6 @@ def get_positions(user, account_id=None):
|
||||||
accounts = Account.objects.filter(user=user)
|
accounts = Account.objects.filter(user=user)
|
||||||
for account in accounts:
|
for account in accounts:
|
||||||
positions = account.client.get_all_positions()
|
positions = account.client.get_all_positions()
|
||||||
print("POSITIONS", positions)
|
|
||||||
|
|
||||||
for item in positions:
|
for item in positions:
|
||||||
item = dict(item)
|
item = dict(item)
|
||||||
|
@ -79,7 +78,6 @@ class PositionAction(LoginRequiredMixin, View):
|
||||||
|
|
||||||
account = Account.get_by_id(account_id, request.user)
|
account = Account.get_by_id(account_id, request.user)
|
||||||
success, info = trades.get_position_info(account, asset_id)
|
success, info = trades.get_position_info(account, asset_id)
|
||||||
print("INFO", info)
|
|
||||||
if not success:
|
if not success:
|
||||||
message = "Position does not exist"
|
message = "Position does not exist"
|
||||||
message_class = "danger"
|
message_class = "danger"
|
||||||
|
|
Loading…
Reference in New Issue