Hello guys,
I work in jupyter notebook and I did the following code:
while True:
now = datetime.now()
if now.hour >= 0 and now.minute >= 0 and now.minute <=57:
for ticker in dict_tickers.items():
client.enable_isolated_margin_account(symbol=ticker[1])
client.transfer_spot_to_isolated_margin(
asset='USDT',
symbol=ticker[1],
amount='20'
)
So because of some errors in my code I entered in endless loop and I think my program sent many request for spot transfer to margin account. In this case I am unable to cancel all those request and all the money in my spot account goes to margin pair.
Could you please help me stop / revert the requests?
Thank you