|
sticky
Newbie Corner 413 messages
In this thread you can post anything newbie related such as install issues or questions etc.
In this thread you can post anything newbie related such as install issues or questions etc.
By Ewald de Wit
·
|
|
sticky
Introduce yourself here 63 messages
Feel free to give an introduction of yourself. Who you are, what your interests are. What you are using IB_Insync for, etc. Just reply to this post and enter what ever you feel like. (more or less ;-)
Feel free to give an introduction of yourself. Who you are, what your interests are. What you are using IB_Insync for, etc. Just reply to this post and enter what ever you feel like. (more or less ;-) )
By Ray Johnson
·
|
|
Bracketed buy/sell operations for stocks 2 messages
Does ib_insync supports bracketed but/sell for stocks? What is the best way to do that? Thanks
Does ib_insync supports bracketed but/sell for stocks? What is the best way to do that? Thanks
|
By cohenkobi1@...
·
|
|
IB TWS beta 983.0n version 2 messages
983.0n version is the latest one released yesterday. but for this version, IB official API removed below three attributes in Order() eTradeOnly firmQuoteOnly nbboPriceCap so i failed to to place any o
983.0n version is the latest one released yesterday. but for this version, IB official API removed below three attributes in Order() eTradeOnly firmQuoteOnly nbboPriceCap so i failed to to place any o
|
By alex
·
|
|
Catching System Messages 2 messages
This may be a rookie questions but here it goes - what is a good way to catch system messages (see attached example) delivered during execution? Currently if an order isn't executed as expected, my sc
This may be a rookie questions but here it goes - what is a good way to catch system messages (see attached example) delivered during execution? Currently if an order isn't executed as expected, my sc
|
By R Malhotra
·
|
|
Peer closed connection detection 6 messages
Sometimes, the connection with ib gateway close accidentically. Is there a way to detect this error? ERROR client.py:258 Peer closed connection For example: try: ib.connect except "peer closed connect
Sometimes, the connection with ib gateway close accidentically. Is there a way to detect this error? ERROR client.py:258 Peer closed connection For example: try: ib.connect except "peer closed connect
|
By jiechao0520@...
·
|
|
ib.waitOnUpdate() takes forever 2 messages
Hey, After noticing that fetching data related to the account (like orders) was not updating in real time, I read about ib.waitOnUpdate() and decided to implement it. Problem is that sometimes it take
Hey, After noticing that fetching data related to the account (like orders) was not updating in real time, I read about ib.waitOnUpdate() and decided to implement it. Problem is that sometimes it take
|
By danlinenberg@...
·
|
|
does ib positions allow querying by group instead of accounts
faDataType: * 1 = Groups: Offer traders a way to create a group of accounts and apply a single allocation method to all accounts in the group.
faDataType: * 1 = Groups: Offer traders a way to create a group of accounts and apply a single allocation method to all accounts in the group.
|
By mark M
·
|
|
reqpnlsingle for groups
16026090 is there a way to request pnl of a single position in a group allocation thanks the above link only provides a way to request pnl per account number thanks and hope you guys had a good weeken
16026090 is there a way to request pnl of a single position in a group allocation thanks the above link only provides a way to request pnl per account number thanks and hope you guys had a good weeken
|
By mark M
·
|
|
How would you get after hours close price? 2 messages
Hi all, wondering if there is a way to get the previous after hours close price? Would I need to get historical data and save the price at 20:59 previous day into a data frame? Thanks for the help.
Hi all, wondering if there is a way to get the previous after hours close price? Would I need to get historical data and save the price at 20:59 previous day into a data frame? Thanks for the help.
|
By johnmcg0000@...
·
|
|
ib.opentrades() is not refresh
I had 27 trades and when I called ib.opentrades(), I got the 27 trades. Then I called ib.reqGlobalCancel() and all the 27 trades have been canceled (Checked it on TWS) But then, when I called again to
I had 27 trades and when I called ib.opentrades(), I got the 27 trades. Then I called ib.reqGlobalCancel() and all the 27 trades have been canceled (Checked it on TWS) But then, when I called again to
|
By ofoyer@...
·
|
|
Just-In-Time Quantity Calculation
Is it possible to transmit an order with predetermined total amount but quantity calculated just before execution? Need this for TRAIL orders, since their limit price is not known ahead of time.
Is it possible to transmit an order with predetermined total amount but quantity calculated just before execution? Need this for TRAIL orders, since their limit price is not known ahead of time.
|
By R Malhotra
·
|
|
Potential bug? Trade object returned by ib.placeOrder fails to be live updated 3 messages
I'm placing `LimitOrder` and `StopLimitOrder`. in the documentation the `trade` object returned by `ib.placeOrder()` is supposed to be live updated, for example, keeping track of fills and order statu
I'm placing `LimitOrder` and `StopLimitOrder`. in the documentation the `trade` object returned by `ib.placeOrder()` is supposed to be live updated, for example, keeping track of fills and order statu
|
By Victor C
·
|
|
IB connecting slowly?
Is anyone else having trouble with IB taking much longer to connect than usual the past couple of days? I just spent hours trying to diagnose my problems connecting, and finally discovered that my tim
Is anyone else having trouble with IB taking much longer to connect than usual the past couple of days? I just spent hours trying to diagnose my problems connecting, and finally discovered that my tim
|
By ExStock
·
|
|
Behavior of trade.order.totalQuantity and trade.remaining() with manually modified order quantity
Greetings and thank you for this wonderful library. It's a joy to use. I observed the following behavior and I'm wondering if it is the expected one and if anyone else observed this. I noticed it beca
Greetings and thank you for this wonderful library. It's a joy to use. I observed the following behavior and I'm wondering if it is the expected one and if anyone else observed this. I noticed it beca
|
By David Anisman
·
|
|
Update ib-insync break condition order 4 messages
Hi, I upgrade ib-insync and ibapi from: ib-insync 0.9.22 ibapi 9.73.7 to: ib-insync 0.9.56 ibapi 9.76.1 When try to submit condition order got: "AttributeError: 'PriceCondition' object has no attribut
Hi, I upgrade ib-insync and ibapi from: ib-insync 0.9.22 ibapi 9.73.7 to: ib-insync 0.9.56 ibapi 9.76.1 When try to submit condition order got: "AttributeError: 'PriceCondition' object has no attribut
|
By
yossi.harari75@gmail.com
·
|
|
Wait for order filled or canceled
I have a function like this: def wait_until_trade_filled_or_canceled(trade): while not trade.isDone(): ib.waitOnUpdate() which I call after a trade is sent with the expectation that the code will WAIT
I have a function like this: def wait_until_trade_filled_or_canceled(trade): while not trade.isDone(): ib.waitOnUpdate() which I call after a trade is sent with the expectation that the code will WAIT
|
By John T. Foster
·
|
|
Issues qualifying warrant contracts 2 messages
I have run into several issues qualifying warrant contracts, and I was wondering if anyone else had these issues and found workarounds. Some warrants I have not found any way to look up from the stock
I have run into several issues qualifying warrant contracts, and I was wondering if anyone else had these issues and found workarounds. Some warrants I have not found any way to look up from the stock
|
By Scott Kister
·
|
|
IB's Stop Price Vs Trailing Amount
Any ideas on these two items’ meanings, in a TRAIL sell-order ?
Any ideas on these two items’ meanings, in a TRAIL sell-order ?
|
By Hoson Lam
·
|
|
Is it possible to Get option chain last price when market is closed 3 messages
Hello, Is it possible to get last close/price for options when the market is closed (ETH). That would be useful to prepare before open. When I use "tickers = ib.reqTickers(*contracts)" during close ti
Hello, Is it possible to get last close/price for options when the market is closed (ETH). That would be useful to prepare before open. When I use "tickers = ib.reqTickers(*contracts)" during close ti
|
By Loic
·
|