ib_async icon indicating copy to clipboard operation
ib_async copied to clipboard

Python sync/async framework for Interactive Brokers API (replaces ib_insync)

Results 88 ib_async issues
Sort by recently updated
recently updated
newest added

If I'm reading this correctly, RT Trade Volume, [tick 77](https://interactivebrokers.github.io/tws-api/tick_types.html) is not included in the [update event `.trades`](https://github.com/ib-api-reloaded/ib_async/blob/main/ib_async/ticker.py#L177), but I think it should be. I will not claim to understand...

Hey guys, I'm trying to grab data outside of RTH for SPY, so I'd expect pre-market and post-market data, but I can only see pre-market data. Is there a way...

I am trying to use reqMultiPositions for an Advisor Group in my FA account such that I request and track aggregated positions across the Advisor group. I had help with...

Building an option chain for futures/indexes seems to be slightly different then for stocks it would be very helpful if we could have an example

Many people are building the option chain on their own. It could be nice having a built function that builds the option chain based on multiple params like: symbol,day to...

keepUpToDate does not work. I dont know if it has anything todo with ib.reqMarketDataType(3) ``` from ib_async import * util.startLoop() ib = IB() ib.connect( ) contract = Stock('IDIA', 'SMART','CHF') md=ib.reqMktData(contract,...

When using multiple file loggers, ib_insync outputs to the wrong file. I believe this is because logToFile is calling getLogger without passing a unique arg. Changing this line to logger...

Hi I'm new to ib_async I'm trying to get the modelGreeks property of the SPY option, the codes I used is shown below ``` from ib_async import * ib =...

Hello, I get this error while creating the trail and the stop order using the one cancels all logic (OCA), it's working fine in the paper account but not in...