ib_insync icon indicating copy to clipboard operation
ib_insync copied to clipboard

Python sync/async framework for Interactive Brokers API

Results 23 ib_insync issues
Sort by recently updated
recently updated
newest added

The code managing the cancellation of inactive orders (https://github.com/erdewit/ib_insync/blob/006fcfc19bb7578e267096e61ae74fae6aff90e1/ib_insync/ib.py#L681) declares them immediately as Cancelled, as opposed to PendingCancel. There is one common case where this seems premature: unavailable shares to...

This might be similar to #365? Not sure. I've noticed that `IB.trades()`/ `.executions()` methods don't return trades i make in the overnight session on futures? Reasons i can think of...

ib_insync's filled quantity algorithm performs a sum of the quantity of all the trade's fills: https://github.com/erdewit/ib_insync/blob/20180813c2c768c408f1febe7e1373423dd9d0f0/ib_insync/wrapper.py#L436 These fills are communicated as "executions" by IB through the execDetails callback. However IB...

Hi! Great project. I have a desire to run ib_insync + IBC in Containers - and optionally in the cloud. The repo below is a work-in-progress for doing both, leveraging...

Hello, I’m trying to set a bracket order, and I want to place a parent order with several take profits, each one with different targets. To do it, I place...

Hello, When using the logtofiles feature, the file becomes so large that it leads to problems. It seems that the operating system has limitations. Additionally, log messages are captured from...

Hey team-- I noticed that when I call reqAccountSummary it often times out, even when I give a timeout of 2 minutes. Does anyone know why this might be? Here...

Hello, I ran this notebook and it looks like I got troubles with ib.cancelOrder(order). The following code produced the reported output. Although the order is canceled anyway, the error is...

I have problem connecting to IB using ib_insync on a Mac, but without any problem on a PC. Below are some details: The ib_insync code I ran is simple, and...

I have a script that attempts to find the historical data for futures (lets say `ZF`), and in doing so loops through the contract months from 3 years ago to...