ib_async
ib_async copied to clipboard
Python sync/async framework for Interactive Brokers API (replaces ib_insync)
It should return `Optional[list[HistoricalNews]]` instead of `Optional[HistoricalNews]`
https://github.com/ib-api-reloaded/ib_async/blob/2afdae44a47f067bf3d1a23a4840234f2906ef64/ib_async/util.py#L578 ``` Error handling fields: ['17', '6', '20250714 08:59:54 US/Eastern', '20250715 08:59:54 US/Eastern', '13', '0714 09:30:00 US/Eastern', '209.93', '210.91', '207.67', '207.89', '5583527', '208.961', '28611', '0714 10:00:00 US/Eastern', '207.90', '208.78', '207.54',...
https://github.com/ib-api-reloaded/ib_async/issues/159 and https://github.com/ib-api-reloaded/ib_async/issues/103
Hi, thank you for maintaining ib_async! I have a question about the following code snippet in the logic that handles rt volume updates: ```python if price and size: if ticker.prevLast...
The following code (taken from the documentation) which is supposed to filters by event type is not filtering by event type and instead returning all event types. Additionally the `limit`...
Hi Like the title says, is it possible? For example, there is a mistake or unexpected error that stops the program but didn't close the connection, and that specific client...
I am trying to do a `reqHeadTimeStamp` for many contracts and I see that at around req n50 there is no response anymore. I use `reqHeadTimeStampAsync` within a `semaphore(1)` so...