Keyboard Shortcuts
Likes
Search
Live and paper data mixed
I have a program that will place trades in either the paper or live account. I run both platforms simultaneously on the same machine. It crashes when I try get my account value after switching from one to the other because I get the first result over again. I have a support ticket in with IB, but they keep suggesting it's my code. Can anyone here create the problem to help me sort this out? With two instances of TWS open, one paper and one live, here's the simplest code I've run to show the problem: from ib_async import * def ensure_connection(ib: IB, host: str, desired_port: int, client_id: int): """Ensure IB is connected to the desired port. Reconnect if necessary."""
ib = IB() IBPort = 7496 ensure_connection(ib, "127.0.0.1", IBPort, 33) print(ib.isConnected()) print(ib.client.port) SummaryAccountValue = ib.accountSummary() print(SummaryAccountValue) IBPort = 7497 ensure_connection(ib, "127.0.0.1", IBPort, 33) print(ib.isConnected()) print(ib.client.port) SummaryAccountValue = ib.accountSummary() print(SummaryAccountValue) ib.disconnect() print(ib.isConnected()) print(ib.client.port) IBPort = 7497 ensure_connection(ib, "127.0.0.1", IBPort, 33) print(ib.isConnected()) print(ib.client.port) SummaryAccountValue = ib.accountSummary() print(SummaryAccountValue) IBPort = 7496 ensure_connection(ib, "127.0.0.1", IBPort, 33) print(ib.isConnected()) print(ib.client.port) SummaryAccountValue = ib.accountSummary() print(SummaryAccountValue) ib.disconnect() ''' ib.fills also seems to have problems. For the first connection, it will show correct information, but on the second connection, it will show the first plus the second. Is there a problem somewhere in the ib_async library or is this an IB issue? Can anyone reproduce this or suggest how I can fix it? Glenn |
开云体育Hi Glen, ? I have a similar setup but do not switch programmatically between the 2 gateways. However, how about adding a delay between the switching? This would ensure connection closure. ? Pranav |
What seems to be happening is the instance of IB() is keeping data and not actually sending a request to TWS. The API logs only show one request being sent per connection, not the two I was expecting from the code above. If I have two instances of IB(), and switch between those, I get correct data. Just disconnecting, changing port, and reconnecting within the same instance of IB() seems to be causing the confusion. Any delay between disconnect and reconnect, makes no difference as long as it's still the same instance of IB(). Could someone who maintains the library investigate? |