carlosmiei

Results 926 comments of carlosmiei

Hello @untoreh, thanks for reporting it, we will take a look and let you know.

@untoreh Can you post the complete snippet? (especifically what you do with coro1/coro2). But yes, I see how this can be a problem when they're triggered "in parallel". A lock...

@untoreh Actually using this snippet i can't reproduce the issue: ```Python markets = await exchange.load_markets(True) exchange.verbose = True sym = 'BTC/USDT' await asyncio.gather( e.watchMyTrades(sym), e.watchOrders(sym), ) ```

Hello @Crypto7816, if you enable the verbose mode `exchange.verbose = True`, can you see the raw update from the exchange in the logs?

Hello @Zakariaair, `ccxtpro` is not a different package anymore, can you update your `ccxt` package to the latest and try again?

@Zakariaair No, it should work with `newUpdates: true` but please make sure you have an updated version of ccxt

Hello @bernardaugustpaulus, I just tested it and locally seems to be working fine. Can you please double-check your python-binance version?

Hello @Shaheer78611, I think this is related to your location and not python-binance directly

@alkhachatryan Hello, I'm afraid your fix broke something because with it, the code just hangs (using python3.12 now) Example ```Python def main(): symbol = "BNBBTC" twm = ThreadedWebsocketManager(api_key=api_key, api_secret=api_secret) #...