You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I am going to request a group of orders and an error occurs in one of them, I want it to stop and delete any previous order that was executed.
I'm wondering if there is an official way on Binance to do this
Instead of using try and except then delete one by one, an error may also occur due to deletion
The text was updated successfully, but these errors were encountered:
You can make a wrapper function which records the order id of each order placed if it was successful or not, then if it wasn't, break and start cancelling them all.
If I am going to request a group of orders and an error occurs in one of them, I want it to stop and delete any previous order that was executed.
I'm wondering if there is an official way on Binance to do this
Instead of using try and except then delete one by one, an error may also occur due to deletion
The text was updated successfully, but these errors were encountered: