James Hirschorn

Results 24 comments of James Hirschorn
trafficstars

I had to delete CMakeCache first, so it would build in a separate directory. However, this still did not fix the problem: Exactly the same error is occurring on `make...

I was able to install by making the following change to CMakeLists.txt: set(EXCLUDE_LIBS beast callable_traits mp11 poly_collection stacktrace)

I get this iff I set `app.config['SECRET_KEY'] = ...` in my flask app. **Edit**. Never mind, I checked my flask logs and the app was crashing due to a bug...

I'm seeing this issue, for BTC/USDT spot on bitmex, in both of the websocket APIs: watch_orders and watch_orderbook Using ccxt 4.3.13 Should this be reopened?

Hello @carlosmiei The api I'm using is `ccxt.pro.bitmex`, I am referring to the following two `async` calls: `bitmex.watch_order_book(symbol)` and `bitmex.watch_orders(symbol)` with `symbol == 'BTC/USDT'`. Basically, my bot is repeatedly calling...

Here is the relevant traceback for the watch_order_book case: ``` | File "/home/ubuntu/.virtualenvs/x-exchange-bot/lib/python3.11/site-packages/ccxt/pro/bitmex.py", line 822, in watch_orders | orders = await self.watch(url, messageHash, request, subscriptionHash) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | File "/home/ubuntu/.virtualenvs/x-exchange-bot/lib/python3.11/site-packages/ccxt/async_support/base/ws/fast_client.py",...

> @quantitative-technologies Did you have the chance to enable the verbose mode before getting this error? seeing the raw message sent by the exchange would be very helpful No, not...

This time I ran it with verbose mode enabled. I cannot see anything in the output that would explain it: The error appears to say that `symbol` is `None` but...

I guess running it through `pdb` would give some more insight.

The exception is raised in line 1402 which means it was `action == 'partial'`. Presumably it was a couple messages back where the following partial message is logged. It was...