erdewit / ib_insync

Python sync/async framework for Interactive Brokers API
BSD 2-Clause "Simplified" License
2.75k stars 723 forks source link

Watchdog restarts IB when not necessary #93

Closed eduedix closed 5 years ago

eduedix commented 5 years ago

Hello,

I am currently testing Watchdog and happy to have found such a solution. I have been facing some issues and hoping that these can be solved.

Code:

from ib_insync import *
util.startLoop()
util.patchAsyncio()

ibc = IBC(963, gateway=True, tradingMode='paper', appStartupTime=40)
ib = IB()
app = Watchdog(ibc, ib, port=4002, clientId=12)
app.start()
IB.run()

Scenario:

1- Run the code above. 2- Let IB gateway start and client get connected 3- Disconnect internet connection. 4- Wait for a while for IB gateway restart. 4- Connect internet connection.

What happens when I follow the scenario:

After IB restart, the client is connected. After a while even though there is internet connection and the client is connected, IB restarts. and this happens in an endless loop. I get multiple times of the following logs:

ERROR:ib_insync.Watchdog:Hard timeout
ERROR:ib_insync.wrapper:Error 504, reqId -1: Not connected

I will be happy to help with figuring out the problem. Just let me know what else you would need.

Best

eduedix commented 5 years ago

sometimes multiple IB gateway instances popup and sometimes after a while IB gateway stops popping up until there is none available.

eduedix commented 5 years ago

Here are some debug logs:

2018-08-17 13:16:21,189 ib_insync.Watchdog INFO Starting
2018-08-17 13:16:21,190 ib_insync.IBC INFO Starting
2018-08-17 13:16:21,190 asyncio DEBUG execute program '/opt/ibc/scripts/ibcstart.sh' stdout=<pipe>
2018-08-17 13:16:21,192 asyncio DEBUG process '/opt/ibc/scripts/ibcstart.sh' created: pid 4104
2018-08-17 13:16:21,195 asyncio DEBUG Read pipe 7 connected: (<_UnixReadPipeTransport fd=7 polling>, <ReadSubprocessPipeProto fd=1 pipe=<_UnixReadPipeTransport fd=7 polling>>)
2018-08-17 13:16:21,196 asyncio INFO execute program '/opt/ibc/scripts/ibcstart.sh': <_UnixSubprocessTransport pid=4104 running stdout=<_UnixReadPipeTransport fd=7 polling>>
/opt/ibc/scripts/ibcstart.sh: line 157: ${mode^^}: bad substitution
2018-08-17 13:16:21,198 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,198 ib_insync.IBC DEBUG ================================================================================
2018-08-17 13:16:21,198 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,202 asyncio DEBUG poll 39999.311 ms took 3.908 ms: 1 events
2018-08-17 13:16:21,202 ib_insync.IBC DEBUG Starting IBC version  on 2018-08-17 at 13:16:21
2018-08-17 13:16:21,202 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,204 asyncio DEBUG poll 39994.766 ms took 1.607 ms: 1 events
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG Operating system: Darwin BarisKayas-Mac-Pro.local 17.7.0 Darwin Kernel Version 17.7.0: Thu Jun 21 22:53:14 PDT 2018; root:xnu-4570.71.2~1/RELEASE_X86_64 x86_64
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG Arguments:
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG TWS version = 963
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG Entry point = ibcalpha.ibc.IbcGateway
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG --tws-path =
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG --tws-settings-path =
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG --ibc-path = /opt/ibc
2018-08-17 13:16:21,205 ib_insync.IBC DEBUG --ibc-ini =
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG --mode = paper
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG --java-path =
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG --user =
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG --pw =
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG --fix-user =
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG --fix-pw =
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG =================================
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG Generating the classpath
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG Classpath=/Users/BK/Applications/IB Gateway 963/jars/jts4launch-963.jar:/Users/BK/Applications/IB Gateway 963/jars/locales.jar:/Users/BK/Applications/IB Gateway 963/jars/log4j-api-2.5.jar:/Users/BK/Applications/IB Gateway 963/jars/log4j-core-2.5.jar:/Users/BK/Applications/IB Gateway 963/jars/total-2015c.jar:/Users/BK/Applications/IB Gateway 963/jars/twslaunch-963.jar:/Users/BK/Applications/IB Gateway 963/jars/twslaunch-install4j-1.8.jar:/opt/ibc/IBC.jar
2018-08-17 13:16:21,206 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,207 ib_insync.IBC DEBUG Generating the JAVA VM options
2018-08-17 13:16:21,210 asyncio DEBUG poll 39990.453 ms took 3.172 ms: 1 events
2018-08-17 13:16:21,210 ib_insync.IBC DEBUG Java VM Options=-Xmx768m
2018-08-17 13:16:21,210 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,210 ib_insync.IBC DEBUG Determining the location of java executable
2018-08-17 13:16:21,211 ib_insync.IBC DEBUG Location of java executable=/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/bin
2018-08-17 13:16:21,211 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,211 ib_insync.IBC DEBUG Starting Gateway with this command:
2018-08-17 13:16:21,211 ib_insync.IBC DEBUG "/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/bin/java" -cp "/Users/BK/Applications/IB Gateway 963/jars/jts4launch-963.jar:/Users/BK/Applications/IB Gateway 963/jars/locales.jar:/Users/BK/Applications/IB Gateway 963/jars/log4j-api-2.5.jar:/Users/BK/Applications/IB Gateway 963/jars/log4j-core-2.5.jar:/Users/BK/Applications/IB Gateway 963/jars/total-2015c.jar:/Users/BK/Applications/IB Gateway 963/jars/twslaunch-963.jar:/Users/BK/Applications/IB Gateway 963/jars/twslaunch-install4j-1.8.jar:/opt/ibc/IBC.jar" -Xmx768m ibcalpha.ibc.IbcGateway "/Users/BK/ibc/config.ini"  paper
2018-08-17 13:16:21,211 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,356 asyncio DEBUG poll 39985.922 ms took 144.935 ms: 1 events
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG System Properties
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG ------------------------------------------------------------
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG java.runtime.name = Java(TM) SE Runtime Environment
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG sun.boot.library.path = /Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG java.vm.version = 25.152-b16
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG gopherProxySet = false
2018-08-17 13:16:21,357 ib_insync.IBC DEBUG java.vm.vendor = Oracle Corporation
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG java.vendor.url = http://java.oracle.com/
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG path.separator = :
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG java.vm.name = Java HotSpot(TM) 64-Bit Server VM
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG file.encoding.pkg = sun.io
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG user.country = TR
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG sun.java.launcher = SUN_STANDARD
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG sun.os.patch.level = unknown
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG java.vm.specification.name = Java Virtual Machine Specification
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG user.dir = /Users/BK/Applications
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG java.runtime.version = 1.8.0_152-b16
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG java.awt.graphicsenv = sun.awt.CGraphicsEnvironment
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG java.endorsed.dirs = /Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/endorsed
2018-08-17 13:16:21,358 ib_insync.IBC DEBUG os.arch = x86_64
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG java.io.tmpdir = /var/folders/hk/mkwprv4n3qb10k1t3dntp7080000gn/T/
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG line.separator =
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG 
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG java.vm.specification.vendor = Oracle Corporation
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG os.name = Mac OS X
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG sun.jnu.encoding = UTF-8
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG java.library.path = /Users/BK/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:.
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG java.specification.name = Java Platform API Specification
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG java.class.version = 52.0
2018-08-17 13:16:21,359 ib_insync.IBC DEBUG sun.management.compiler = HotSpot 64-Bit Tiered Compilers
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG os.version = 10.13.6
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG http.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG user.home = /Users/BK
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG user.timezone = Europe/Istanbul
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.awt.printerjob = sun.lwawt.macosx.CPrinterJob
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG file.encoding = UTF-8
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.specification.version = 1.8
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.class.path = /Users/BK/Applications/IB Gateway 963/jars/jts4launch-963.jar:/Users/BK/Applications/IB Gateway 963/jars/locales.jar:/Users/BK/Applications/IB Gateway 963/jars/log4j-api-2.5.jar:/Users/BK/Applications/IB Gateway 963/jars/log4j-core-2.5.jar:/Users/BK/Applications/IB Gateway 963/jars/total-2015c.jar:/Users/BK/Applications/IB Gateway 963/jars/twslaunch-963.jar:/Users/BK/Applications/IB Gateway 963/jars/twslaunch-install4j-1.8.jar:/opt/ibc/IBC.jar
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG user.name = BK
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.vm.specification.version = 1.8
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG sun.java.command = ibcalpha.ibc.IbcGateway /Users/BK/ibc/config.ini paper
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.home = /Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG sun.arch.data.model = 64
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG user.language = en
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.specification.vendor = Oracle Corporation
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG awt.toolkit = sun.lwawt.macosx.LWCToolkit
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.vm.info = mixed mode
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.version = 1.8.0_152
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG java.ext.dirs = /Users/BK/Library/Java/Extensions:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java
2018-08-17 13:16:21,360 ib_insync.IBC DEBUG sun.boot.class.path = /Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/resources.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/rt.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/sunrsasign.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/jsse.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/jce.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/charsets.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/lib/jfr.jar:/Users/BK/Applications/IB Gateway 963/.install4j/jre.bundle/Contents/Home/jre/classes
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG java.vendor = Oracle Corporation
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG file.separator = /
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG java.vendor.url.bug = http://bugreport.sun.com/bugreport/
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG sun.io.unicode.encoding = UnicodeBig
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG sun.cpu.endian = little
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG socksNonProxyHosts = local|*.local|169.254/16|*.169.254/16
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG ftp.nonProxyHosts = local|*.local|169.254/16|*.169.254/16
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG sun.cpu.isalist =
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG ------------------------------------------------------------
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG 2018-08-17 13:16:21:358 IBC: Using default settings provider: ini file is /Users/BK/ibc/config.ini
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG 2018-08-17 13:16:21:358 IBC: Using default login manager: getting username and password from args but not found. Will get from settings
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG 2018-08-17 13:16:21:358 IBC: Using default config dialog manager: constructor parameter isGateway=true
2018-08-17 13:16:21,361 ib_insync.IBC DEBUG 2018-08-17 13:16:21:359 IBC: Using default trading mode manager: constructor parameter args: tradingMode=paper
2018-08-17 13:16:21,362 ib_insync.IBC DEBUG 2018-08-17 13:16:21:360 IBC: Using default config dialog manager
2018-08-17 13:16:21,365 asyncio DEBUG poll 39835.124 ms took 2.478 ms: 1 events
2018-08-17 13:16:21,365 ib_insync.IBC DEBUG 2018-08-17 13:16:21:364 IBC: CommandServer is not started because the port is not configured
2018-08-17 13:16:21,557 asyncio DEBUG poll 39831.963 ms took 191.478 ms: 1 events
2018-08-17 13:16:21,557 ib_insync.IBC DEBUG 2018-08-17 13:16:21:556 IBC: TWS Settings directory is: /Users/BK/Applications
2018-08-17 13:16:21,558 asyncio DEBUG poll 39639.687 ms took 0.584 ms: 1 events
2018-08-17 13:16:21,559 ib_insync.IBC DEBUG 2018-08-17 13:16:21:558 IBC: Ensuring /Users/BK/Applications/jts.ini contains required minimal lines
2018-08-17 13:16:21,559 ib_insync.IBC DEBUG 2018-08-17 13:16:21:558 IBC: Found section: [Logon]
2018-08-17 13:16:21,559 ib_insync.IBC DEBUG 2018-08-17 13:16:21:558 IBC: Can't find setting: s3store=false
2018-08-17 13:16:21,559 ib_insync.IBC DEBUG 2018-08-17 13:16:21:558 IBC: Found section: [Logon]
2018-08-17 13:16:21,560 ib_insync.IBC DEBUG 2018-08-17 13:16:21:558 IBC: Found setting: s3store=true
2018-08-17 13:16:21,560 ib_insync.IBC DEBUG 2018-08-17 13:16:21:558 IBC: Found section: [IBGateway]
2018-08-17 13:16:21,560 ib_insync.IBC DEBUG 2018-08-17 13:16:21:559 IBC: Found setting: ApiOnly=true
2018-08-17 13:16:21,560 ib_insync.IBC DEBUG 2018-08-17 13:16:21:559 IBC: Confirmed /Users/BK/Applications/jts.ini contains required minimal lines
2018-08-17 13:16:24,464 asyncio INFO poll 39637.020 ms took 2903.938 ms: 1 events
2018-08-17 13:16:24,464 ib_insync.IBC DEBUG 2018-08-17 13:16:24:464 IBC: Detected frame entitled: IB Gateway; event=Activated
2018-08-17 13:16:24,468 asyncio DEBUG poll 36732.307 ms took 2.976 ms: 1 events
2018-08-17 13:16:24,468 ib_insync.IBC DEBUG 2018-08-17 13:16:24:468 IBC: Detected frame entitled: IB Gateway; event=Opened
2018-08-17 13:16:24,468 asyncio DEBUG poll 36728.750 ms took 0.010 ms: 1 events
2018-08-17 13:16:24,469 ib_insync.IBC DEBUG 2018-08-17 13:16:24:468 IBC: Setting Trading mode = paper
2018-08-17 13:16:24,487 asyncio DEBUG poll 36728.207 ms took 18.062 ms: 1 events
2018-08-17 13:16:24,487 ib_insync.IBC DEBUG 2018-08-17 13:16:24:487 IBC: Click button: Login
2018-08-17 13:16:24,982 asyncio DEBUG poll 36709.300 ms took 494.652 ms: 1 events
2018-08-17 13:16:24,983 ib_insync.IBC DEBUG 2018-08-17 13:16:24:982 IBC: Detected frame entitled: IB Gateway.  API Account: burko777; event=Opened
2018-08-17 13:16:24,983 ib_insync.IBC DEBUG 2018-08-17 13:16:24:983 IBC: Found Gateway main window
2018-08-17 13:16:24,983 ib_insync.IBC DEBUG 2018-08-17 13:16:24:983 IBC: Detected frame entitled: IB Gateway.  API Account: burko777; event=Activated
2018-08-17 13:16:25,449 asyncio DEBUG poll 36213.319 ms took 465.726 ms: 1 events
2018-08-17 13:16:25,450 ib_insync.IBC DEBUG 2018-08-17 13:16:25:449 IBC: Detected frame entitled: Authenticating...; event=Opened
2018-08-17 13:16:25,450 asyncio DEBUG poll 35746.692 ms took 0.152 ms: 1 events
2018-08-17 13:16:25,451 ib_insync.IBC DEBUG 2018-08-17 13:16:25:450 IBC: Detected frame entitled: Authenticating...; event=Activated
2018-08-17 13:16:28,405 asyncio INFO poll 35745.979 ms took 2953.703 ms: 1 events
2018-08-17 13:16:28,405 ib_insync.IBC DEBUG LogModuleConfigurator-Init: Log4j Ver2.x found on classpath
2018-08-17 13:16:28,405 ib_insync.IBC DEBUG LogModuleConfigurator-Init: LogModuleConfigurator initialized with Log4j Verd.x
2018-08-17 13:16:28,715 asyncio DEBUG poll 32791.481 ms took 309.776 ms: 1 events
2018-08-17 13:16:28,716 ib_insync.IBC DEBUG 2018-08-17 13:16:28:715 IBC: Detected frame entitled: IB Gateway.  API Account: burko777; event=Activated
2018-08-17 13:16:28,718 asyncio DEBUG poll 32480.657 ms took 1.655 ms: 1 events
2018-08-17 13:16:28,718 ib_insync.IBC DEBUG 2018-08-17 13:16:28:718 IBC: Detected frame entitled: Starting application...; event=Closed
2018-08-17 13:16:28,797 asyncio DEBUG poll 32478.216 ms took 77.995 ms: 1 events
2018-08-17 13:16:28,797 ib_insync.IBC DEBUG 2018-08-17 13:16:28:796 IBC: Detected dialog entitled: Warning; event=Activated
2018-08-17 13:16:28,807 asyncio DEBUG poll 32399.430 ms took 9.391 ms: 1 events
2018-08-17 13:16:28,807 ib_insync.IBC DEBUG 2018-08-17 13:16:28:807 IBC: Detected dialog entitled: Warning; event=Opened
2018-08-17 13:16:28,808 ib_insync.IBC DEBUG 2018-08-17 13:16:28:807 IBC: Click button: I understand and accept
2018-08-17 13:16:28,891 asyncio DEBUG poll 32388.607 ms took 82.571 ms: 1 events
2018-08-17 13:16:28,891 ib_insync.IBC DEBUG 2018-08-17 13:16:28:891 IBC: Detected frame entitled: IB Gateway.  API Account: burko777; event=Activated
2018-08-17 13:16:28,892 asyncio DEBUG poll 32305.158 ms took 0.253 ms: 1 events
2018-08-17 13:16:28,892 ib_insync.IBC DEBUG 2018-08-17 13:16:28:892 IBC: Detected dialog entitled: Warning; event=Closed
2018-08-17 13:17:01,200 asyncio INFO poll 32304.194 ms took 32309.237 ms: timeout
2018-08-17 13:17:01,202 ib_insync.client INFO Connecting to 127.0.0.1:4002 with clientId 30...
2018-08-17 13:17:01,205 asyncio DEBUG connect <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('0.0.0.0', 0)> to ('127.0.0.1', 4002)
2018-08-17 13:17:01,206 asyncio DEBUG poll 1998.288 ms took 0.010 ms: 1 events
2018-08-17 13:17:01,208 asyncio DEBUG <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 50956), raddr=('127.0.0.1', 4002)> connected to 127.0.0.1:4002: (<_SelectorSocketTransport fd=8 read=polling write=<idle, bufsize=0>>, <ib_insync.client.Socket object at 0x10bbee860>)
2018-08-17 13:17:01,208 ib_insync.client INFO Connected
2018-08-17 13:17:01,208 ib_insync.connection DEBUG >>> ,,,  v100..142
2018-08-17 13:17:01,232 asyncio DEBUG poll 1993.159 ms took 21.342 ms: 1 events
2018-08-17 13:17:01,233 ib_insync.client DEBUG <<< 118,20180817 13:17:00 Eastern European Time
2018-08-17 13:17:01,233 ib_insync.connection DEBUG >>> 71,2,30,,
2018-08-17 13:17:01,233 ib_insync.client INFO Logged on to server version 118
2018-08-17 13:17:01,237 asyncio DEBUG poll 1970.683 ms took 3.101 ms: 1 events
2018-08-17 13:17:01,237 ib_insync.client DEBUG <<< 15,1,DU1120207
2018-08-17 13:17:01,238 ib_insync.client DEBUG <<< 9,1,1
2018-08-17 13:17:01,239 ib_insync.client INFO API connection ready
2018-08-17 13:17:01,239 ib_insync.connection DEBUG >>> 6,2,1,DU1120207,
2018-08-17 13:17:01,240 ib_insync.connection DEBUG >>> 61,1,
2018-08-17 13:17:01,240 ib_insync.connection DEBUG >>> 7,3,1,0,,,,,,,
2018-08-17 13:17:01,241 ib_insync.connection DEBUG >>> 76,1,2,DU1120207,,0,
2018-08-17 13:17:01,243 asyncio DEBUG poll took 1.615 ms: 1 events
2018-08-17 13:17:01,243 ib_insync.client DEBUG <<< 6,2,AccountCode,DU1120207,,DU1120207
2018-08-17 13:17:01,244 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,BASE,DU1120207
2018-08-17 13:17:01,244 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,CAD,DU1120207
2018-08-17 13:17:01,245 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,USD,DU1120207
2018-08-17 13:17:01,246 ib_insync.client DEBUG <<< 6,2,AccountReady,true,,DU1120207
2018-08-17 13:17:01,246 ib_insync.client DEBUG <<< 6,2,AccountType,INDIVIDUAL,,DU1120207
2018-08-17 13:17:01,247 asyncio DEBUG poll took 0.019 ms: 1 events
2018-08-17 13:17:01,247 ib_insync.client DEBUG <<< 6,2,AccruedCash,543,BASE,DU1120207
2018-08-17 13:17:01,248 ib_insync.client DEBUG <<< 6,2,AccruedCash,0,CAD,DU1120207
2018-08-17 13:17:01,249 ib_insync.client DEBUG <<< 6,2,AccruedCash,543,USD,DU1120207
2018-08-17 13:17:01,249 ib_insync.client DEBUG <<< 6,2,AccruedCash-C,0.00,USD,DU1120207
2018-08-17 13:17:01,250 ib_insync.client DEBUG <<< 6,2,AccruedCash-S,543.10,USD,DU1120207
2018-08-17 13:17:01,250 ib_insync.client DEBUG <<< 6,2,AccruedDividend,0.00,USD,DU1120207
2018-08-17 13:17:01,251 ib_insync.client DEBUG <<< 6,2,AccruedDividend-C,0.00,USD,DU1120207
2018-08-17 13:17:01,251 ib_insync.client DEBUG <<< 6,2,AccruedDividend-S,0.00,USD,DU1120207
2018-08-17 13:17:01,251 ib_insync.client DEBUG <<< 6,2,AvailableFunds,1000409.61,USD,DU1120207
2018-08-17 13:17:01,252 ib_insync.client DEBUG <<< 6,2,AvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:17:01,252 ib_insync.client DEBUG <<< 6,2,AvailableFunds-S,1000409.61,USD,DU1120207
2018-08-17 13:17:01,253 ib_insync.client DEBUG <<< 6,2,Billable,0.00,USD,DU1120207
2018-08-17 13:17:01,253 ib_insync.client DEBUG <<< 6,2,Billable-C,0.00,USD,DU1120207
2018-08-17 13:17:01,253 ib_insync.client DEBUG <<< 6,2,Billable-S,0.00,USD,DU1120207
2018-08-17 13:17:01,254 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.46,USD,DU1120207
2018-08-17 13:17:01,254 ib_insync.client DEBUG <<< 6,2,CashBalance,999871,BASE,DU1120207
2018-08-17 13:17:01,254 ib_insync.client DEBUG <<< 6,2,CashBalance,-258,CAD,DU1120207
2018-08-17 13:17:01,255 ib_insync.client DEBUG <<< 6,2,CashBalance,1000068,USD,DU1120207
2018-08-17 13:17:01,255 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,BASE,DU1120207
2018-08-17 13:17:01,255 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,CAD,DU1120207
2018-08-17 13:17:01,256 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,USD,DU1120207
2018-08-17 13:17:01,256 ib_insync.client DEBUG <<< 6,2,Currency,BASE,BASE,DU1120207
2018-08-17 13:17:01,256 ib_insync.client DEBUG <<< 6,2,Currency,CAD,CAD,DU1120207
2018-08-17 13:17:01,257 ib_insync.client DEBUG <<< 6,2,Currency,USD,USD,DU1120207
2018-08-17 13:17:01,257 ib_insync.client DEBUG <<< 6,2,Cushion,0.999995,,DU1120207
2018-08-17 13:17:01,258 ib_insync.client DEBUG <<< 6,2,DayTradesRemaining,-1,,DU1120207
2018-08-17 13:17:01,258 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+1,-1,,DU1120207
2018-08-17 13:17:01,259 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+2,-1,,DU1120207
2018-08-17 13:17:01,259 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+3,-1,,DU1120207
2018-08-17 13:17:01,260 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+4,-1,,DU1120207
2018-08-17 13:17:01,260 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue,1000414.51,USD,DU1120207
2018-08-17 13:17:01,261 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-C,0.00,USD,DU1120207
2018-08-17 13:17:01,261 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-S,1000414.51,USD,DU1120207
2018-08-17 13:17:01,262 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity,1000409.61,USD,DU1120207
2018-08-17 13:17:01,262 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:17:01,262 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-S,1000409.61,USD,DU1120207
2018-08-17 13:17:01,263 ib_insync.client DEBUG <<< 6,2,ExchangeRate,1.00,BASE,DU1120207
2018-08-17 13:17:01,263 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7602424,CAD,DU1120207
2018-08-17 13:17:01,263 ib_insync.client DEBUG <<< 6,2,ExchangeRate,1.00,USD,DU1120207
2018-08-17 13:17:01,264 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds,1000409.61,USD,DU1120207
2018-08-17 13:17:01,264 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:17:01,264 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-S,1000409.61,USD,DU1120207
2018-08-17 13:17:01,264 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity,1000409.61,USD,DU1120207
2018-08-17 13:17:01,265 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:17:01,265 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-S,1000409.61,USD,DU1120207
2018-08-17 13:17:01,266 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq,4.91,USD,DU1120207
2018-08-17 13:17:01,266 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:17:01,266 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:17:01,267 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:17:01,267 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:17:01,268 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:17:01,268 ib_insync.client DEBUG <<< 6,2,FundValue,0,BASE,DU1120207
2018-08-17 13:17:01,268 ib_insync.client DEBUG <<< 6,2,FundValue,0,CAD,DU1120207
2018-08-17 13:17:01,269 ib_insync.client DEBUG <<< 6,2,FundValue,0,USD,DU1120207
2018-08-17 13:17:01,269 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,BASE,DU1120207
2018-08-17 13:17:01,269 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,CAD,DU1120207
2018-08-17 13:17:01,270 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,USD,DU1120207
2018-08-17 13:17:01,270 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,BASE,DU1120207
2018-08-17 13:17:01,271 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,CAD,DU1120207
2018-08-17 13:17:01,271 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,USD,DU1120207
2018-08-17 13:17:01,272 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,BASE,DU1120207
2018-08-17 13:17:01,272 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,CAD,DU1120207
2018-08-17 13:17:01,272 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,USD,DU1120207
2018-08-17 13:17:01,272 ib_insync.client DEBUG <<< 6,2,GrossPositionValue,0.00,USD,DU1120207
2018-08-17 13:17:01,273 ib_insync.client DEBUG <<< 6,2,GrossPositionValue-S,0.00,USD,DU1120207
2018-08-17 13:17:01,273 ib_insync.client DEBUG <<< 6,2,Guarantee,0.00,USD,DU1120207
2018-08-17 13:17:01,273 ib_insync.client DEBUG <<< 6,2,Guarantee-C,0.00,USD,DU1120207
2018-08-17 13:17:01,273 ib_insync.client DEBUG <<< 6,2,Guarantee-S,0.00,USD,DU1120207
2018-08-17 13:17:01,274 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut,0.00,USD,DU1120207
2018-08-17 13:17:01,274 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut-C,0.00,USD,DU1120207
2018-08-17 13:17:01,274 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut-S,0.00,USD,DU1120207
2018-08-17 13:17:01,274 ib_insync.client DEBUG <<< 6,2,InitMarginReq,4.91,USD,DU1120207
2018-08-17 13:17:01,275 ib_insync.client DEBUG <<< 6,2,InitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:17:01,275 ib_insync.client DEBUG <<< 6,2,InitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:17:01,275 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,BASE,DU1120207
2018-08-17 13:17:01,275 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,CAD,DU1120207
2018-08-17 13:17:01,276 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,USD,DU1120207
2018-08-17 13:17:01,276 ib_insync.client DEBUG <<< 6,2,Leverage-S,0.00,,DU1120207
2018-08-17 13:17:01,276 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds,1000409.61,USD,DU1120207
2018-08-17 13:17:01,276 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:17:01,277 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-S,1000409.61,USD,DU1120207
2018-08-17 13:17:01,277 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity,1000409.61,USD,DU1120207
2018-08-17 13:17:01,277 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:17:01,278 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-S,1000409.61,USD,DU1120207
2018-08-17 13:17:01,278 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq,4.91,USD,DU1120207
2018-08-17 13:17:01,278 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:17:01,278 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:17:01,279 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:17:01,279 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:17:01,279 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:17:01,280 asyncio DEBUG poll took 0.020 ms: 2 events
2018-08-17 13:17:01,280 ib_insync.client DEBUG <<< 6,2,LookAheadNextChange,0,,DU1120207
2018-08-17 13:17:01,280 ib_insync.client DEBUG <<< 6,2,MaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:17:01,280 ib_insync.client DEBUG <<< 6,2,MaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:17:01,281 ib_insync.client DEBUG <<< 6,2,MaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:17:01,281 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,BASE,DU1120207
2018-08-17 13:17:01,281 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,CAD,DU1120207
2018-08-17 13:17:01,281 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,USD,DU1120207
2018-08-17 13:17:01,282 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,BASE,DU1120207
2018-08-17 13:17:01,282 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,CAD,DU1120207
2018-08-17 13:17:01,282 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,USD,DU1120207
2018-08-17 13:17:01,282 ib_insync.client DEBUG <<< 6,2,NLVAndMarginInReview,false,,DU1120207
2018-08-17 13:17:01,283 ib_insync.client DEBUG <<< 6,2,NetDividend,0,BASE,DU1120207
2018-08-17 13:17:01,283 ib_insync.client DEBUG <<< 6,2,NetDividend,0,CAD,DU1120207
2018-08-17 13:17:01,283 ib_insync.client DEBUG <<< 6,2,NetDividend,0,USD,DU1120207
2018-08-17 13:17:01,283 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.52,USD,DU1120207
2018-08-17 13:17:01,284 ib_insync.client DEBUG <<< 6,2,NetLiquidation-C,0.00,USD,DU1120207
2018-08-17 13:17:01,284 ib_insync.client DEBUG <<< 6,2,NetLiquidation-S,1000414.51,USD,DU1120207
2018-08-17 13:17:01,284 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000415,BASE,DU1120207
2018-08-17 13:17:01,284 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,-258,CAD,DU1120207
2018-08-17 13:17:01,285 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000611,USD,DU1120207
2018-08-17 13:17:01,285 ib_insync.client DEBUG <<< 6,2,NetLiquidationUncertainty,0.00,USD,DU1120207
2018-08-17 13:17:01,285 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,BASE,DU1120207
2018-08-17 13:17:01,286 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,CAD,DU1120207
2018-08-17 13:17:01,286 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,USD,DU1120207
2018-08-17 13:17:01,286 ib_insync.client DEBUG <<< 6,2,PASharesValue,0.00,USD,DU1120207
2018-08-17 13:17:01,286 ib_insync.client DEBUG <<< 6,2,PASharesValue-C,0.00,USD,DU1120207
2018-08-17 13:17:01,287 ib_insync.client DEBUG <<< 6,2,PASharesValue-S,0.00,USD,DU1120207
2018-08-17 13:17:01,287 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess,0.00,USD,DU1120207
2018-08-17 13:17:01,287 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess-C,0.00,USD,DU1120207
2018-08-17 13:17:01,287 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess-S,0.00,USD,DU1120207
2018-08-17 13:17:01,288 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin,0.00,USD,DU1120207
2018-08-17 13:17:01,288 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin-C,0.00,USD,DU1120207
2018-08-17 13:17:01,288 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin-S,0.00,USD,DU1120207
2018-08-17 13:17:01,289 ib_insync.client DEBUG <<< 6,2,RealCurrency,BASE,BASE,DU1120207
2018-08-17 13:17:01,289 ib_insync.client DEBUG <<< 6,2,RealCurrency,CAD,CAD,DU1120207
2018-08-17 13:17:01,289 ib_insync.client DEBUG <<< 6,2,RealCurrency,USD,USD,DU1120207
2018-08-17 13:17:01,289 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,BASE,DU1120207
2018-08-17 13:17:01,290 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,CAD,DU1120207
2018-08-17 13:17:01,290 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,USD,DU1120207
2018-08-17 13:17:01,290 ib_insync.client DEBUG <<< 6,2,RegTEquity,1000414.51,USD,DU1120207
2018-08-17 13:17:01,290 ib_insync.client DEBUG <<< 6,2,RegTEquity-S,1000414.51,USD,DU1120207
2018-08-17 13:17:01,291 ib_insync.client DEBUG <<< 6,2,RegTMargin,0.00,USD,DU1120207
2018-08-17 13:17:01,291 ib_insync.client DEBUG <<< 6,2,RegTMargin-S,0.00,USD,DU1120207
2018-08-17 13:17:01,291 ib_insync.client DEBUG <<< 6,2,SMA,2000000.00,USD,DU1120207
2018-08-17 13:17:01,291 ib_insync.client DEBUG <<< 6,2,SMA-S,2000000.00,USD,DU1120207
2018-08-17 13:17:01,292 ib_insync.client DEBUG <<< 6,2,SegmentTitle-C,US Commodities,,DU1120207
2018-08-17 13:17:01,292 ib_insync.client DEBUG <<< 6,2,SegmentTitle-S,US Securities,,DU1120207
2018-08-17 13:17:01,292 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,BASE,DU1120207
2018-08-17 13:17:01,292 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,CAD,DU1120207
2018-08-17 13:17:01,293 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,USD,DU1120207
2018-08-17 13:17:01,293 ib_insync.client DEBUG <<< 6,2,TBillValue,0,BASE,DU1120207
2018-08-17 13:17:01,293 ib_insync.client DEBUG <<< 6,2,TBillValue,0,CAD,DU1120207
2018-08-17 13:17:01,293 ib_insync.client DEBUG <<< 6,2,TBillValue,0,USD,DU1120207
2018-08-17 13:17:01,294 ib_insync.client DEBUG <<< 6,2,TBondValue,0,BASE,DU1120207
2018-08-17 13:17:01,294 ib_insync.client DEBUG <<< 6,2,TBondValue,0,CAD,DU1120207
2018-08-17 13:17:01,294 ib_insync.client DEBUG <<< 6,2,TBondValue,0,USD,DU1120207
2018-08-17 13:17:01,295 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,999871,BASE,DU1120207
2018-08-17 13:17:01,295 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,-258,CAD,DU1120207
2018-08-17 13:17:01,295 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,1000068,USD,DU1120207
2018-08-17 13:17:01,296 ib_insync.client DEBUG <<< 6,2,TotalCashValue,999871.41,USD,DU1120207
2018-08-17 13:17:01,296 ib_insync.client DEBUG <<< 6,2,TotalCashValue-C,0.00,USD,DU1120207
2018-08-17 13:17:01,296 ib_insync.client DEBUG <<< 6,2,TotalCashValue-S,999871.41,USD,DU1120207
2018-08-17 13:17:01,296 ib_insync.client DEBUG <<< 6,2,TradingType-S,STKNOPT,,DU1120207
2018-08-17 13:17:01,297 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,BASE,DU1120207
2018-08-17 13:17:01,297 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,CAD,DU1120207
2018-08-17 13:17:01,297 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,USD,DU1120207
2018-08-17 13:17:01,298 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,BASE,DU1120207
2018-08-17 13:17:01,298 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,CAD,DU1120207
2018-08-17 13:17:01,298 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,USD,DU1120207
2018-08-17 13:17:01,298 ib_insync.client DEBUG <<< 6,2,WhatIfPMEnabled,true,,DU1120207
2018-08-17 13:17:01,299 ib_insync.client DEBUG <<< 8,1,13:16
2018-08-17 13:17:01,299 ib_insync.client DEBUG <<< 54,1,DU1120207
2018-08-17 13:17:01,299 ib_insync.client DEBUG <<< 62,1
2018-08-17 13:17:01,299 ib_insync.client DEBUG <<< 55,1,1
2018-08-17 13:17:01,300 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountCode,DU1120207,
2018-08-17 13:17:01,300 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountReady,true,
2018-08-17 13:17:01,300 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountType,INDIVIDUAL,
2018-08-17 13:17:01,301 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543.10,USD
2018-08-17 13:17:01,301 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash-C,0.00,USD
2018-08-17 13:17:01,301 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash-S,543.10,USD
2018-08-17 13:17:01,302 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend,0.00,USD
2018-08-17 13:17:01,302 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend-C,0.00,USD
2018-08-17 13:17:01,302 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend-S,0.00,USD
2018-08-17 13:17:01,303 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.61,USD
2018-08-17 13:17:01,303 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-C,0.00,USD
2018-08-17 13:17:01,303 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.61,USD
2018-08-17 13:17:01,304 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable,0.00,USD
2018-08-17 13:17:01,304 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable-C,0.00,USD
2018-08-17 13:17:01,304 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable-S,0.00,USD
2018-08-17 13:17:01,305 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.46,USD
2018-08-17 13:17:01,305 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Cushion,0.999995,
2018-08-17 13:17:01,305 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemaining,-1,
2018-08-17 13:17:01,306 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+1,-1,
2018-08-17 13:17:01,306 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+2,-1,
2018-08-17 13:17:01,306 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+3,-1,
2018-08-17 13:17:01,307 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+4,-1,
2018-08-17 13:17:01,307 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.51,USD
2018-08-17 13:17:01,307 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-C,0.00,USD
2018-08-17 13:17:01,308 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.51,USD
2018-08-17 13:17:01,308 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.61,USD
2018-08-17 13:17:01,308 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-C,0.00,USD
2018-08-17 13:17:01,309 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.61,USD
2018-08-17 13:17:01,309 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.61,USD
2018-08-17 13:17:01,309 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-C,0.00,USD
2018-08-17 13:17:01,310 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.61,USD
2018-08-17 13:17:01,310 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.61,USD
2018-08-17 13:17:01,310 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-C,0.00,USD
2018-08-17 13:17:01,311 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.61,USD
2018-08-17 13:17:01,311 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq,4.91,USD
2018-08-17 13:17:01,311 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq-C,0.00,USD
2018-08-17 13:17:01,312 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq-S,4.91,USD
2018-08-17 13:17:01,312 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq,4.91,USD
2018-08-17 13:17:01,312 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq-C,0.00,USD
2018-08-17 13:17:01,313 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq-S,4.91,USD
2018-08-17 13:17:01,313 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,GrossPositionValue,0.00,USD
2018-08-17 13:17:01,314 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,GrossPositionValue-S,0.00,USD
2018-08-17 13:17:01,314 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee,0.00,USD
2018-08-17 13:17:01,314 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee-C,0.00,USD
2018-08-17 13:17:01,315 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee-S,0.00,USD
2018-08-17 13:17:01,315 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut,0.00,USD
2018-08-17 13:17:01,315 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut-C,0.00,USD
2018-08-17 13:17:01,316 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut-S,0.00,USD
2018-08-17 13:17:01,316 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq,4.91,USD
2018-08-17 13:17:01,316 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq-C,0.00,USD
2018-08-17 13:17:01,317 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq-S,4.91,USD
2018-08-17 13:17:01,317 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Leverage-S,0.00,
2018-08-17 13:17:01,317 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.61,USD
2018-08-17 13:17:01,318 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-C,0.00,USD
2018-08-17 13:17:01,318 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.61,USD
2018-08-17 13:17:01,318 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.61,USD
2018-08-17 13:17:01,319 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-C,0.00,USD
2018-08-17 13:17:01,319 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.61,USD
2018-08-17 13:17:01,319 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq,4.91,USD
2018-08-17 13:17:01,320 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq-C,0.00,USD
2018-08-17 13:17:01,320 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq-S,4.91,USD
2018-08-17 13:17:01,320 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq,4.91,USD
2018-08-17 13:17:01,321 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq-C,0.00,USD
2018-08-17 13:17:01,321 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq-S,4.91,USD
2018-08-17 13:17:01,321 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadNextChange,0,
2018-08-17 13:17:01,322 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq,4.91,USD
2018-08-17 13:17:01,322 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq-C,0.00,USD
2018-08-17 13:17:01,322 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq-S,4.91,USD
2018-08-17 13:17:01,323 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NLVAndMarginInReview,false,
2018-08-17 13:17:01,323 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.52,USD
2018-08-17 13:17:01,323 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-C,0.00,USD
2018-08-17 13:17:01,324 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.51,USD
2018-08-17 13:17:01,324 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationUncertainty,0.00,USD
2018-08-17 13:17:01,324 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue,0.00,USD
2018-08-17 13:17:01,325 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue-C,0.00,USD
2018-08-17 13:17:01,325 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue-S,0.00,USD
2018-08-17 13:17:01,325 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess,0.00,USD
2018-08-17 13:17:01,326 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess-C,0.00,USD
2018-08-17 13:17:01,326 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess-S,0.00,USD
2018-08-17 13:17:01,326 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin,0.00,USD
2018-08-17 13:17:01,327 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin-C,0.00,USD
2018-08-17 13:17:01,327 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin-S,0.00,USD
2018-08-17 13:17:01,327 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.51,USD
2018-08-17 13:17:01,328 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.51,USD
2018-08-17 13:17:01,328 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTMargin,0.00,USD
2018-08-17 13:17:01,328 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTMargin-S,0.00,USD
2018-08-17 13:17:01,329 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SMA,2000000.00,USD
2018-08-17 13:17:01,329 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SMA-S,2000000.00,USD
2018-08-17 13:17:01,329 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SegmentTitle-C,US Commodities,
2018-08-17 13:17:01,330 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SegmentTitle-S,US Securities,
2018-08-17 13:17:01,330 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.41,USD
2018-08-17 13:17:01,330 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-C,0.00,USD
2018-08-17 13:17:01,331 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.41,USD
2018-08-17 13:17:01,331 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TradingType-S,STKNOPT,
2018-08-17 13:17:01,331 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WhatIfPMEnabled,true,
2018-08-17 13:17:01,332 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:17:01,332 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:17:01,332 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:17:01,333 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:17:01,333 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:17:01,333 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:17:01,334 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:17:01,334 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:17:01,334 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:17:01,335 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:17:01,335 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:17:01,335 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7602424,CAD
2018-08-17 13:17:01,336 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:17:01,336 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:17:01,336 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:17:01,337 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:17:01,337 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:17:01,337 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:17:01,338 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:17:01,338 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:17:01,338 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:17:01,339 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:17:01,339 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:17:01,339 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:17:01,340 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,USD,USD
2018-08-17 13:17:01,340 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,1000068,USD
2018-08-17 13:17:01,340 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,1000068,USD
2018-08-17 13:17:01,341 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,USD
2018-08-17 13:17:01,341 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,USD
2018-08-17 13:17:01,341 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,USD
2018-08-17 13:17:01,342 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,USD
2018-08-17 13:17:01,342 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,USD
2018-08-17 13:17:01,342 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000611,USD
2018-08-17 13:17:01,343 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,USD
2018-08-17 13:17:01,343 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,USD
2018-08-17 13:17:01,344 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,USD
2018-08-17 13:17:01,344 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,USD
2018-08-17 13:17:01,344 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,USD
2018-08-17 13:17:01,345 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,USD
2018-08-17 13:17:01,345 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,USD
2018-08-17 13:17:01,345 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,USD
2018-08-17 13:17:01,346 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,USD
2018-08-17 13:17:01,346 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,USD
2018-08-17 13:17:01,346 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,USD
2018-08-17 13:17:01,347 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,USD
2018-08-17 13:17:01,347 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,USD
2018-08-17 13:17:01,347 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,USD,USD
2018-08-17 13:17:01,348 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,USD
2018-08-17 13:17:01,348 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:17:01,348 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:17:01,349 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:17:01,349 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:17:01,349 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:17:01,350 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:17:01,350 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:17:01,350 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:17:01,351 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:17:01,351 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:17:01,351 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:17:01,352 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:17:01,352 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:17:01,352 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:17:01,353 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:17:01,353 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:17:01,353 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:17:01,354 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:17:01,354 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:17:01,354 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:17:01,355 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:17:01,355 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:17:01,355 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:17:01,356 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:17:01,356 ib_insync.client DEBUG <<< 74,1,2
2018-08-17 13:17:01,357 ib_insync.ib INFO Synchronization complete
2018-08-17 13:17:01,357 ib_insync.IBC DEBUG remove Client 30
2018-08-17 13:17:21,356 asyncio INFO poll 19999.876 ms took 20000.117 ms: timeout
2018-08-17 13:17:21,357 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:17:21,357 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:17:21,358 ib_insync.connection DEBUG >>> 20,6,3,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:17:22,857 asyncio INFO poll 3999.870 ms took 1498.614 ms: 1 events
2018-08-17 13:17:22,857 ib_insync.client DEBUG <<< 4,2,-1,2106,HMDS data farm connection is OK:cashhmds
2018-08-17 13:17:22,857 ib_insync.wrapper INFO Warning 2106, reqId -1: HMDS data farm connection is OK:cashhmds
2018-08-17 13:17:22,987 asyncio DEBUG poll 2500.664 ms took 130.024 ms: 1 events
2018-08-17 13:17:22,988 ib_insync.client DEBUG <<< 17,3,3,20180817  13:16:51,20180817  13:17:21,7,20180817  13:16:50,1.13784,1.13789,1.13784,1.13789,-1,-1.00000,false,-1,20180817  13:16:55,1.13789,1.137895,1.13788,1.137895,-1,-1.00000,false,-1,20180817  13:17:00,1.137895,1.13793,1.13789,1.13793,-1,-1.00000,false,-1,20180817  13:17:05,1.13793,1.137935,1.137905,1.13793,-1,-1.00000,false,-1,20180817  13:17:10,1.13793,1.137935,1.13789,1.13789,-1,-1.00000,false,-1,20180817  13:17:15,1.13789,1.137935,1.13784,1.13793,-1,-1.00000,false,-1,20180817  13:17:20,1.13793,1.13793,1.13793,1.13793,-1,-1.00000,false,-1
2018-08-17 13:17:42,993 asyncio INFO poll 19999.765 ms took 20001.201 ms: timeout
2018-08-17 13:17:42,993 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:17:42,993 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:17:42,994 ib_insync.connection DEBUG >>> 20,6,4,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:17:43,169 asyncio DEBUG poll 3999.852 ms took 174.701 ms: 1 events
2018-08-17 13:17:43,169 ib_insync.client DEBUG <<< 17,3,4,20180817  13:17:12,20180817  13:17:42,7,20180817  13:17:10,1.13793,1.137935,1.13789,1.13789,-1,-1.00000,false,-1,20180817  13:17:15,1.13789,1.137935,1.13784,1.13793,-1,-1.00000,false,-1,20180817  13:17:20,1.13793,1.13793,1.13793,1.13793,-1,-1.00000,false,-1,20180817  13:17:25,1.13793,1.13798,1.13793,1.137935,-1,-1.00000,false,-1,20180817  13:17:30,1.137935,1.137935,1.13786,1.13786,-1,-1.00000,false,-1,20180817  13:17:35,1.13786,1.13786,1.13783,1.137835,-1,-1.00000,false,-1,20180817  13:17:40,1.137835,1.137835,1.137835,1.137835,-1,-1.00000,false,-1
2018-08-17 13:18:03,171 asyncio INFO poll 19999.768 ms took 20000.978 ms: timeout
2018-08-17 13:18:03,171 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:18:03,171 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:18:03,172 ib_insync.connection DEBUG >>> 20,6,5,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:18:03,371 asyncio DEBUG poll 3999.857 ms took 198.526 ms: 1 events
2018-08-17 13:18:03,371 ib_insync.client DEBUG <<< 17,3,5,20180817  13:17:33,20180817  13:18:03,7,20180817  13:17:30,1.137935,1.137935,1.13786,1.13786,-1,-1.00000,false,-1,20180817  13:17:35,1.13786,1.13786,1.13783,1.137835,-1,-1.00000,false,-1,20180817  13:17:40,1.137835,1.137835,1.137835,1.137835,-1,-1.00000,false,-1,20180817  13:17:45,1.137835,1.137835,1.137835,1.137835,-1,-1.00000,false,-1,20180817  13:17:50,1.137835,1.13785,1.137825,1.137835,-1,-1.00000,false,-1,20180817  13:17:55,1.137835,1.137835,1.13783,1.13783,-1,-1.00000,false,-1,20180817  13:18:00,1.13783,1.13783,1.137825,1.137825,-1,-1.00000,false,-1
2018-08-17 13:18:23,373 asyncio INFO poll 19999.755 ms took 20001.275 ms: timeout
2018-08-17 13:18:23,374 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:18:23,374 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:18:23,374 ib_insync.connection DEBUG >>> 20,6,6,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:18:23,549 asyncio DEBUG poll 3999.871 ms took 173.990 ms: 1 events
2018-08-17 13:18:23,549 ib_insync.client DEBUG <<< 17,3,6,20180817  13:17:53,20180817  13:18:23,7,20180817  13:17:50,1.137835,1.13785,1.137825,1.137835,-1,-1.00000,false,-1,20180817  13:17:55,1.137835,1.137835,1.13783,1.13783,-1,-1.00000,false,-1,20180817  13:18:00,1.13783,1.13783,1.137805,1.137805,-1,-1.00000,false,-1,20180817  13:18:05,1.137805,1.137825,1.137635,1.137645,-1,-1.00000,false,-1,20180817  13:18:10,1.137645,1.137685,1.137625,1.137635,-1,-1.00000,false,-1,20180817  13:18:15,1.137635,1.137635,1.137535,1.13759,-1,-1.00000,false,-1,20180817  13:18:20,1.13759,1.13759,1.137575,1.137575,-1,-1.00000,false,-1
2018-08-17 13:18:43,555 asyncio INFO poll 19999.759 ms took 20004.769 ms: timeout
2018-08-17 13:18:43,555 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:18:43,555 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:18:43,556 ib_insync.connection DEBUG >>> 20,6,7,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:18:43,785 asyncio DEBUG poll 3999.871 ms took 229.190 ms: 1 events
2018-08-17 13:18:43,785 ib_insync.client DEBUG <<< 17,3,7,20180817  13:18:13,20180817  13:18:43,7,20180817  13:18:10,1.137645,1.137685,1.137625,1.137635,-1,-1.00000,false,-1,20180817  13:18:15,1.137635,1.137635,1.137535,1.13759,-1,-1.00000,false,-1,20180817  13:18:20,1.13759,1.137595,1.137575,1.13759,-1,-1.00000,false,-1,20180817  13:18:25,1.13759,1.13768,1.137555,1.13768,-1,-1.00000,false,-1,20180817  13:18:30,1.13768,1.13768,1.137625,1.137635,-1,-1.00000,false,-1,20180817  13:18:35,1.137635,1.137655,1.137635,1.137635,-1,-1.00000,false,-1,20180817  13:18:40,1.137635,1.137635,1.137635,1.137635,-1,-1.00000,false,-1
2018-08-17 13:19:03,787 asyncio INFO poll 19999.770 ms took 20000.893 ms: timeout
2018-08-17 13:19:03,788 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:19:03,788 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:19:03,788 ib_insync.connection DEBUG >>> 20,6,8,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:19:03,963 asyncio DEBUG poll 3999.847 ms took 174.004 ms: 1 events
2018-08-17 13:19:03,963 ib_insync.client DEBUG <<< 17,3,8,20180817  13:18:33,20180817  13:19:03,7,20180817  13:18:30,1.13768,1.13768,1.137625,1.137635,-1,-1.00000,false,-1,20180817  13:18:35,1.137635,1.137655,1.137635,1.137635,-1,-1.00000,false,-1,20180817  13:18:40,1.137635,1.137685,1.137635,1.137685,-1,-1.00000,false,-1,20180817  13:18:45,1.137685,1.137755,1.13768,1.137745,-1,-1.00000,false,-1,20180817  13:18:50,1.137745,1.137745,1.13768,1.13768,-1,-1.00000,false,-1,20180817  13:18:55,1.13768,1.137735,1.13768,1.137735,-1,-1.00000,false,-1,20180817  13:19:00,1.137735,1.137835,1.137735,1.137835,-1,-1.00000,false,-1
2018-08-17 13:19:23,969 asyncio INFO poll 19999.759 ms took 20004.777 ms: timeout
2018-08-17 13:19:23,969 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:19:23,970 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:19:23,970 ib_insync.connection DEBUG >>> 20,6,9,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:19:24,156 asyncio DEBUG poll 3999.871 ms took 186.095 ms: 1 events
2018-08-17 13:19:24,157 ib_insync.client DEBUG <<< 17,3,9,20180817  13:18:53,20180817  13:19:23,7,20180817  13:18:50,1.137745,1.137745,1.13768,1.13768,-1,-1.00000,false,-1,20180817  13:18:55,1.13768,1.137735,1.13768,1.137735,-1,-1.00000,false,-1,20180817  13:19:00,1.137735,1.137845,1.137735,1.13784,-1,-1.00000,false,-1,20180817  13:19:05,1.13784,1.13789,1.137835,1.13789,-1,-1.00000,false,-1,20180817  13:19:10,1.13789,1.13789,1.137845,1.13785,-1,-1.00000,false,-1,20180817  13:19:15,1.13785,1.137855,1.137825,1.13784,-1,-1.00000,false,-1,20180817  13:19:20,1.13784,1.13784,1.13784,1.13784,-1,-1.00000,false,-1
2018-08-17 13:19:40,678 asyncio INFO poll 19999.771 ms took 16520.320 ms: 1 events
2018-08-17 13:19:40,679 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.51,USD
2018-08-17 13:19:40,679 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.51,USD,DU1120207
2018-08-17 13:19:40,680 asyncio DEBUG poll 3478.282 ms took 0.013 ms: 1 events
2018-08-17 13:19:40,680 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.41,USD
2018-08-17 13:19:40,680 ib_insync.client DEBUG <<< 8,1,13:19
2018-08-17 13:19:40,680 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.41,USD,DU1120207
2018-08-17 13:19:40,680 ib_insync.client DEBUG <<< 8,1,13:19
2018-08-17 13:19:40,681 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.51,USD
2018-08-17 13:19:40,681 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.41,USD
2018-08-17 13:19:40,681 ib_insync.client DEBUG <<< 8,1,13:19
2018-08-17 13:19:40,681 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.51,USD
2018-08-17 13:19:40,682 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.41,USD
2018-08-17 13:19:40,782 asyncio DEBUG poll 3475.760 ms took 99.935 ms: 1 events
2018-08-17 13:19:40,782 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:19:40,783 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:19:40,783 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:19:40,784 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:19:40,784 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:19:40,785 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:19:40,785 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:19:40,785 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:19:40,786 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:19:40,786 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:19:40,786 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:19:40,787 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7602857,CAD
2018-08-17 13:19:40,787 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:19:40,787 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:19:40,788 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:19:40,788 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:19:40,788 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:19:40,789 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:19:40,789 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:19:40,789 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:19:40,790 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:19:40,790 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:19:40,790 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:19:40,791 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:19:40,791 asyncio DEBUG poll 3366.763 ms took 0.013 ms: 1 events
2018-08-17 13:19:40,791 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7602857,CAD,DU1120207
2018-08-17 13:19:40,791 ib_insync.client DEBUG <<< 8,1,13:19
2018-08-17 13:19:40,792 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:19:40,792 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:19:40,792 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:19:40,793 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:19:40,793 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:19:40,793 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:19:40,794 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:19:40,794 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:19:40,794 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:19:40,795 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:19:40,795 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:19:40,795 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:19:40,796 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:19:40,796 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:19:40,796 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:19:40,797 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:19:40,797 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:19:40,797 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:19:40,798 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:19:40,798 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:19:40,798 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:19:40,799 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:19:40,799 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:19:40,799 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:19:40,800 ib_insync.client DEBUG <<< 8,1,13:19
2018-08-17 13:19:40,800 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:19:40,800 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:19:40,800 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:19:40,801 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:19:40,801 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:19:40,801 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:19:40,802 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:19:40,802 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:19:40,802 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:19:40,803 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:19:40,803 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:19:40,803 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:19:40,804 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:19:40,804 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:19:40,804 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:19:40,805 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:19:40,805 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:19:40,805 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:19:40,806 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:19:40,806 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:19:40,806 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:19:40,807 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:19:40,807 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:19:40,807 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:19:44,163 asyncio INFO poll 3350.026 ms took 3354.975 ms: timeout
2018-08-17 13:20:00,795 asyncio INFO poll 16628.140 ms took 16633.092 ms: timeout
2018-08-17 13:20:00,795 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:20:00,796 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:20:00,796 ib_insync.connection DEBUG >>> 20,6,10,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:20:00,970 asyncio DEBUG poll 3999.841 ms took 173.848 ms: 1 events
2018-08-17 13:20:00,971 ib_insync.client DEBUG <<< 17,3,10,20180817  13:19:30,20180817  13:20:00,6,20180817  13:19:30,1.13789,1.13789,1.13789,1.13789,-1,-1.00000,false,-1,20180817  13:19:35,1.13789,1.13789,1.137855,1.13788,-1,-1.00000,false,-1,20180817  13:19:40,1.13788,1.137975,1.13784,1.137955,-1,-1.00000,false,-1,20180817  13:19:45,1.137955,1.137985,1.13794,1.137945,-1,-1.00000,false,-1,20180817  13:19:50,1.137945,1.137975,1.13794,1.137975,-1,-1.00000,false,-1,20180817  13:19:55,1.137975,1.13798,1.13789,1.13798,-1,-1.00000,false,-1
2018-08-17 13:20:20,976 asyncio INFO poll 19999.771 ms took 20004.789 ms: timeout
2018-08-17 13:20:20,977 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:20:20,977 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:20:20,977 ib_insync.connection DEBUG >>> 20,6,11,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:20:21,160 asyncio DEBUG poll 3999.871 ms took 182.296 ms: 1 events
2018-08-17 13:20:21,160 ib_insync.client DEBUG <<< 17,3,11,20180817  13:19:50,20180817  13:20:20,6,20180817  13:19:50,1.137945,1.137975,1.13794,1.137975,-1,-1.00000,false,-1,20180817  13:19:55,1.137975,1.13798,1.13789,1.13798,-1,-1.00000,false,-1,20180817  13:20:00,1.13798,1.13798,1.137885,1.137895,-1,-1.00000,false,-1,20180817  13:20:05,1.137895,1.137895,1.13789,1.137895,-1,-1.00000,false,-1,20180817  13:20:10,1.137895,1.13790,1.137895,1.13790,-1,-1.00000,false,-1,20180817  13:20:15,1.13790,1.137995,1.137895,1.13798,-1,-1.00000,false,-1
2018-08-17 13:20:41,162 asyncio INFO poll 19999.769 ms took 20000.766 ms: timeout
2018-08-17 13:20:41,162 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:20:41,162 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:20:41,163 ib_insync.connection DEBUG >>> 20,6,12,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:20:41,336 asyncio DEBUG poll 3999.844 ms took 173.048 ms: 1 events
2018-08-17 13:20:41,336 ib_insync.client DEBUG <<< 17,3,12,20180817  13:20:11,20180817  13:20:41,7,20180817  13:20:10,1.137895,1.13790,1.137895,1.13790,-1,-1.00000,false,-1,20180817  13:20:15,1.13790,1.137995,1.137895,1.13798,-1,-1.00000,false,-1,20180817  13:20:20,1.13798,1.13804,1.13795,1.13804,-1,-1.00000,false,-1,20180817  13:20:25,1.13804,1.13804,1.138035,1.138035,-1,-1.00000,false,-1,20180817  13:20:30,1.138035,1.138095,1.137925,1.137945,-1,-1.00000,false,-1,20180817  13:20:35,1.137945,1.137945,1.137925,1.137935,-1,-1.00000,false,-1,20180817  13:20:40,1.137935,1.137945,1.137935,1.137935,-1,-1.00000,false,-1
2018-08-17 13:21:01,339 asyncio INFO poll 19999.762 ms took 20001.021 ms: timeout
2018-08-17 13:21:01,339 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:21:01,339 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:21:01,340 ib_insync.connection DEBUG >>> 20,6,13,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:21:01,515 asyncio DEBUG poll 3999.869 ms took 174.793 ms: 1 events
2018-08-17 13:21:01,515 ib_insync.client DEBUG <<< 17,3,13,20180817  13:20:31,20180817  13:21:01,7,20180817  13:20:30,1.138035,1.138095,1.137925,1.137945,-1,-1.00000,false,-1,20180817  13:20:35,1.137945,1.137945,1.137925,1.137935,-1,-1.00000,false,-1,20180817  13:20:40,1.137935,1.137995,1.137935,1.13798,-1,-1.00000,false,-1,20180817  13:20:45,1.13798,1.137985,1.137935,1.137945,-1,-1.00000,false,-1,20180817  13:20:50,1.137945,1.137995,1.137945,1.137995,-1,-1.00000,false,-1,20180817  13:20:55,1.137995,1.138005,1.13799,1.137995,-1,-1.00000,false,-1,20180817  13:21:00,1.137995,1.13800,1.137995,1.137995,-1,-1.00000,false,-1
2018-08-17 13:21:21,521 asyncio INFO poll 19999.759 ms took 20004.752 ms: timeout
2018-08-17 13:21:21,521 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:21:21,522 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:21:21,522 ib_insync.connection DEBUG >>> 20,6,14,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:21:21,696 asyncio DEBUG poll 3999.870 ms took 173.603 ms: 1 events
2018-08-17 13:21:21,696 ib_insync.client DEBUG <<< 17,3,14,20180817  13:20:51,20180817  13:21:21,7,20180817  13:20:50,1.137945,1.137995,1.137945,1.137995,-1,-1.00000,false,-1,20180817  13:20:55,1.137995,1.138005,1.13799,1.137995,-1,-1.00000,false,-1,20180817  13:21:00,1.137995,1.138035,1.137995,1.13803,-1,-1.00000,false,-1,20180817  13:21:05,1.13803,1.13803,1.13803,1.13803,-1,-1.00000,false,-1,20180817  13:21:10,1.13803,1.138095,1.13803,1.13809,-1,-1.00000,false,-1,20180817  13:21:15,1.13809,1.138195,1.13809,1.138195,-1,-1.00000,false,-1,20180817  13:21:20,1.138195,1.138205,1.138195,1.138195,-1,-1.00000,false,-1
2018-08-17 13:21:41,702 asyncio INFO poll 19999.759 ms took 20004.804 ms: timeout
2018-08-17 13:21:41,702 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:21:41,703 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:21:41,703 ib_insync.connection DEBUG >>> 20,6,15,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:21:41,877 asyncio DEBUG poll 3999.871 ms took 174.045 ms: 1 events
2018-08-17 13:21:41,878 ib_insync.client DEBUG <<< 17,3,15,20180817  13:21:11,20180817  13:21:41,7,20180817  13:21:10,1.13803,1.138095,1.13803,1.13809,-1,-1.00000,false,-1,20180817  13:21:15,1.13809,1.138195,1.13809,1.138195,-1,-1.00000,false,-1,20180817  13:21:20,1.138195,1.138205,1.138155,1.138165,-1,-1.00000,false,-1,20180817  13:21:25,1.138165,1.138165,1.138105,1.138125,-1,-1.00000,false,-1,20180817  13:21:30,1.138125,1.138125,1.138095,1.138095,-1,-1.00000,false,-1,20180817  13:21:35,1.138095,1.138105,1.138095,1.138095,-1,-1.00000,false,-1,20180817  13:21:40,1.138095,1.138095,1.138095,1.138095,-1,-1.00000,false,-1
2018-08-17 13:22:01,883 asyncio INFO poll 19999.759 ms took 20004.810 ms: timeout
2018-08-17 13:22:01,883 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:22:01,884 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:22:01,884 ib_insync.connection DEBUG >>> 20,6,16,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:22:02,057 asyncio DEBUG poll 3999.871 ms took 173.222 ms: 1 events
2018-08-17 13:22:02,058 ib_insync.client DEBUG <<< 17,3,16,20180817  13:21:31,20180817  13:22:01,7,20180817  13:21:30,1.138125,1.138125,1.138095,1.138095,-1,-1.00000,false,-1,20180817  13:21:35,1.138095,1.138105,1.138095,1.138095,-1,-1.00000,false,-1,20180817  13:21:40,1.138095,1.13813,1.138095,1.13813,-1,-1.00000,false,-1,20180817  13:21:45,1.13813,1.138175,1.138125,1.138145,-1,-1.00000,false,-1,20180817  13:21:50,1.138145,1.138175,1.138145,1.13816,-1,-1.00000,false,-1,20180817  13:21:55,1.13816,1.138165,1.13813,1.13813,-1,-1.00000,false,-1,20180817  13:22:00,1.13813,1.138135,1.13813,1.138135,-1,-1.00000,false,-1
2018-08-17 13:22:22,057 asyncio INFO poll 19999.758 ms took 20000.917 ms: timeout
2018-08-17 13:22:22,060 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:22:22,060 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:22:22,061 ib_insync.connection DEBUG >>> 20,6,17,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:22:22,236 asyncio DEBUG poll 3999.871 ms took 175.001 ms: 1 events
2018-08-17 13:22:22,236 ib_insync.client DEBUG <<< 17,3,17,20180817  13:21:51,20180817  13:22:21,7,20180817  13:21:50,1.138145,1.138175,1.138145,1.13816,-1,-1.00000,false,-1,20180817  13:21:55,1.13816,1.138165,1.13813,1.13813,-1,-1.00000,false,-1,20180817  13:22:00,1.13813,1.138135,1.13813,1.138135,-1,-1.00000,false,-1,20180817  13:22:05,1.138135,1.138155,1.138125,1.138145,-1,-1.00000,false,-1,20180817  13:22:10,1.138145,1.138295,1.138145,1.138255,-1,-1.00000,false,-1,20180817  13:22:15,1.138255,1.138345,1.138255,1.138345,-1,-1.00000,false,-1,20180817  13:22:20,1.138345,1.138345,1.138345,1.138345,-1,-1.00000,false,-1
2018-08-17 13:22:40,682 asyncio INFO poll 19999.770 ms took 18444.790 ms: 1 events
2018-08-17 13:22:40,682 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.47,USD
2018-08-17 13:22:40,683 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-S,1000414.47,USD,DU1120207
2018-08-17 13:22:40,683 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.47,USD
2018-08-17 13:22:40,684 ib_insync.client DEBUG <<< 6,2,NetLiquidation-S,1000414.47,USD,DU1120207
2018-08-17 13:22:40,684 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.37,USD
2018-08-17 13:22:40,685 ib_insync.client DEBUG <<< 6,2,TotalCashValue-S,999871.37,USD,DU1120207
2018-08-17 13:22:40,685 asyncio DEBUG poll 1551.737 ms took 0.015 ms: 1 events
2018-08-17 13:22:40,685 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.47,USD
2018-08-17 13:22:40,685 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue,1000414.47,USD,DU1120207
2018-08-17 13:22:40,686 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.47,USD
2018-08-17 13:22:40,686 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.47,USD,DU1120207
2018-08-17 13:22:40,686 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.37,USD
2018-08-17 13:22:40,687 ib_insync.client DEBUG <<< 6,2,TotalCashValue,999871.37,USD,DU1120207
2018-08-17 13:22:40,687 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.27,USD
2018-08-17 13:22:40,687 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.27,USD,DU1120207
2018-08-17 13:22:40,688 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.47,USD
2018-08-17 13:22:40,688 ib_insync.client DEBUG <<< 6,2,RegTEquity-S,1000414.47,USD,DU1120207
2018-08-17 13:22:40,688 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.47,USD
2018-08-17 13:22:40,689 ib_insync.client DEBUG <<< 6,2,RegTEquity,1000414.47,USD,DU1120207
2018-08-17 13:22:40,689 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,689 ib_insync.client DEBUG <<< 6,2,AvailableFunds-S,1000409.57,USD,DU1120207
2018-08-17 13:22:40,689 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,690 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-S,1000409.57,USD,DU1120207
2018-08-17 13:22:40,690 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.57,USD
2018-08-17 13:22:40,690 ib_insync.client DEBUG <<< 6,2,AvailableFunds,1000409.57,USD,DU1120207
2018-08-17 13:22:40,691 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,691 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity,1000409.57,USD,DU1120207
2018-08-17 13:22:40,691 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,692 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-S,1000409.57,USD,DU1120207
2018-08-17 13:22:40,692 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,692 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-S,1000409.57,USD,DU1120207
2018-08-17 13:22:40,692 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.57,USD
2018-08-17 13:22:40,693 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds,1000409.57,USD,DU1120207
2018-08-17 13:22:40,693 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,693 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity,1000409.57,USD,DU1120207
2018-08-17 13:22:40,694 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,694 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-S,1000409.57,USD,DU1120207
2018-08-17 13:22:40,694 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,695 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-S,1000409.57,USD,DU1120207
2018-08-17 13:22:40,695 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.57,USD
2018-08-17 13:22:40,695 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds,1000409.57,USD,DU1120207
2018-08-17 13:22:40,695 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,696 ib_insync.client DEBUG <<< 8,1,13:22
2018-08-17 13:22:40,696 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity,1000409.57,USD,DU1120207
2018-08-17 13:22:40,696 ib_insync.client DEBUG <<< 8,1,13:22
2018-08-17 13:22:40,696 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.47,USD
2018-08-17 13:22:40,697 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.47,USD
2018-08-17 13:22:40,697 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.37,USD
2018-08-17 13:22:40,697 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.47,USD
2018-08-17 13:22:40,698 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.47,USD
2018-08-17 13:22:40,698 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.37,USD
2018-08-17 13:22:40,698 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.27,USD
2018-08-17 13:22:40,699 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.47,USD
2018-08-17 13:22:40,699 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.47,USD
2018-08-17 13:22:40,699 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,700 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,700 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.57,USD
2018-08-17 13:22:40,700 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,701 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,701 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,701 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.57,USD
2018-08-17 13:22:40,702 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,702 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,702 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,703 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.57,USD
2018-08-17 13:22:40,703 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,703 ib_insync.client DEBUG <<< 8,1,13:22
2018-08-17 13:22:40,704 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.47,USD
2018-08-17 13:22:40,704 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.47,USD
2018-08-17 13:22:40,704 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.37,USD
2018-08-17 13:22:40,705 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.47,USD
2018-08-17 13:22:40,705 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.47,USD
2018-08-17 13:22:40,705 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.37,USD
2018-08-17 13:22:40,706 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.27,USD
2018-08-17 13:22:40,706 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.47,USD
2018-08-17 13:22:40,706 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.47,USD
2018-08-17 13:22:40,707 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,707 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,707 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.57,USD
2018-08-17 13:22:40,708 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,708 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,708 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,709 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.57,USD
2018-08-17 13:22:40,709 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,709 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.57,USD
2018-08-17 13:22:40,710 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.57,USD
2018-08-17 13:22:40,710 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.57,USD
2018-08-17 13:22:40,710 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.57,USD
2018-08-17 13:22:40,760 asyncio DEBUG poll 1526.156 ms took 49.152 ms: 1 events
2018-08-17 13:22:40,760 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:22:40,761 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:22:40,761 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:22:40,762 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:22:40,762 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:22:40,762 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:22:40,763 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:22:40,763 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:22:40,763 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:22:40,764 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:22:40,764 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:22:40,764 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7604245,CAD
2018-08-17 13:22:40,765 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:22:40,765 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:22:40,765 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:22:40,766 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:22:40,766 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:22:40,766 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:22:40,767 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:22:40,767 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:22:40,767 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:22:40,768 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:22:40,768 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:22:40,768 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:22:40,769 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7604245,CAD,DU1120207
2018-08-17 13:22:40,769 asyncio DEBUG poll 1467.836 ms took 0.015 ms: 1 events
2018-08-17 13:22:40,769 ib_insync.client DEBUG <<< 8,1,13:22
2018-08-17 13:22:40,769 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:22:40,770 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:22:40,770 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:22:40,770 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:22:40,771 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:22:40,771 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:22:40,771 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:22:40,772 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:22:40,772 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000414,BASE
2018-08-17 13:22:40,772 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:22:40,773 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:22:40,773 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:22:40,773 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:22:40,774 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:22:40,774 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:22:40,774 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:22:40,775 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:22:40,775 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:22:40,775 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:22:40,776 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:22:40,776 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:22:40,776 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:22:40,777 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:22:40,777 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:22:40,777 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000414,BASE,DU1120207
2018-08-17 13:22:40,777 ib_insync.client DEBUG <<< 8,1,13:22
2018-08-17 13:22:40,778 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:22:40,778 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:22:40,778 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:22:40,779 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:22:40,779 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:22:40,779 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:22:40,780 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:22:40,780 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:22:40,780 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000414,BASE
2018-08-17 13:22:40,781 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:22:40,781 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:22:40,781 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:22:40,782 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:22:40,782 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:22:40,782 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:22:40,783 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:22:40,783 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:22:40,783 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:22:40,784 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:22:40,784 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:22:40,784 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:22:40,785 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:22:40,785 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:22:40,785 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:22:42,242 asyncio INFO poll 1451.129 ms took 1456.184 ms: timeout
2018-08-17 13:23:00,773 asyncio INFO poll 18526.851 ms took 18531.888 ms: timeout
2018-08-17 13:23:00,773 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:23:00,773 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:23:00,774 ib_insync.connection DEBUG >>> 20,6,18,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:23:00,950 asyncio DEBUG poll 3999.871 ms took 175.606 ms: 1 events
2018-08-17 13:23:00,950 ib_insync.client DEBUG <<< 17,3,18,20180817  13:22:30,20180817  13:23:00,6,20180817  13:22:30,1.138285,1.138355,1.138285,1.138335,-1,-1.00000,false,-1,20180817  13:22:35,1.138335,1.138385,1.13833,1.13838,-1,-1.00000,false,-1,20180817  13:22:40,1.13838,1.138405,1.138365,1.138385,-1,-1.00000,false,-1,20180817  13:22:45,1.138385,1.138435,1.138355,1.138435,-1,-1.00000,false,-1,20180817  13:22:50,1.138435,1.138555,1.138435,1.13848,-1,-1.00000,false,-1,20180817  13:22:55,1.13848,1.138485,1.138455,1.138455,-1,-1.00000,false,-1
2018-08-17 13:23:20,956 asyncio INFO poll 19999.771 ms took 20004.765 ms: timeout
2018-08-17 13:23:20,956 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:23:20,956 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:23:20,957 ib_insync.connection DEBUG >>> 20,6,19,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:23:21,132 asyncio DEBUG poll 3999.870 ms took 175.339 ms: 1 events
2018-08-17 13:23:21,132 ib_insync.client DEBUG <<< 17,3,19,20180817  13:22:50,20180817  13:23:20,6,20180817  13:22:50,1.138435,1.138555,1.138435,1.13848,-1,-1.00000,false,-1,20180817  13:22:55,1.13848,1.138485,1.138455,1.138455,-1,-1.00000,false,-1,20180817  13:23:00,1.138455,1.138475,1.13839,1.13844,-1,-1.00000,false,-1,20180817  13:23:05,1.13844,1.13847,1.13844,1.13844,-1,-1.00000,false,-1,20180817  13:23:10,1.13844,1.13847,1.13842,1.13845,-1,-1.00000,false,-1,20180817  13:23:15,1.13845,1.13847,1.13845,1.13847,-1,-1.00000,false,-1
2018-08-17 13:23:41,136 asyncio INFO poll 19999.758 ms took 20001.643 ms: timeout
2018-08-17 13:23:41,136 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:23:41,136 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:23:41,137 ib_insync.connection DEBUG >>> 20,6,20,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:23:41,310 asyncio DEBUG poll 3999.872 ms took 172.663 ms: 1 events
2018-08-17 13:23:41,310 ib_insync.client DEBUG <<< 17,3,20,20180817  13:23:11,20180817  13:23:41,7,20180817  13:23:10,1.13844,1.13847,1.13842,1.13845,-1,-1.00000,false,-1,20180817  13:23:15,1.13845,1.138495,1.13845,1.13848,-1,-1.00000,false,-1,20180817  13:23:20,1.13848,1.138505,1.138435,1.138435,-1,-1.00000,false,-1,20180817  13:23:25,1.138435,1.13847,1.138415,1.13845,-1,-1.00000,false,-1,20180817  13:23:30,1.13845,1.138455,1.138385,1.138385,-1,-1.00000,false,-1,20180817  13:23:35,1.138385,1.138415,1.13833,1.13839,-1,-1.00000,false,-1,20180817  13:23:40,1.13839,1.13839,1.13838,1.138385,-1,-1.00000,false,-1
2018-08-17 13:24:01,321 asyncio INFO poll 19999.759 ms took 20009.849 ms: timeout
2018-08-17 13:24:01,321 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:24:01,322 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:24:01,322 ib_insync.connection DEBUG >>> 20,6,21,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:24:01,495 asyncio DEBUG poll 3999.857 ms took 172.388 ms: 1 events
2018-08-17 13:24:01,495 ib_insync.client DEBUG <<< 17,3,21,20180817  13:23:31,20180817  13:24:01,7,20180817  13:23:30,1.13845,1.138455,1.138385,1.138385,-1,-1.00000,false,-1,20180817  13:23:35,1.138385,1.138415,1.13833,1.13839,-1,-1.00000,false,-1,20180817  13:23:40,1.13839,1.13839,1.13838,1.138385,-1,-1.00000,false,-1,20180817  13:23:45,1.138385,1.138385,1.138285,1.138295,-1,-1.00000,false,-1,20180817  13:23:50,1.138295,1.138295,1.138255,1.138265,-1,-1.00000,false,-1,20180817  13:23:55,1.138265,1.13830,1.138255,1.138275,-1,-1.00000,false,-1,20180817  13:24:00,1.138275,1.13828,1.138275,1.13828,-1,-1.00000,false,-1
2018-08-17 13:24:21,506 asyncio INFO poll 19999.757 ms took 20009.806 ms: timeout
2018-08-17 13:24:21,506 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:24:21,507 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:24:21,507 ib_insync.connection DEBUG >>> 20,6,22,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:24:21,682 asyncio DEBUG poll 3999.870 ms took 174.643 ms: 1 events
2018-08-17 13:24:21,682 ib_insync.client DEBUG <<< 17,3,22,20180817  13:23:51,20180817  13:24:21,7,20180817  13:23:50,1.138295,1.138295,1.138255,1.138265,-1,-1.00000,false,-1,20180817  13:23:55,1.138265,1.13830,1.138255,1.138275,-1,-1.00000,false,-1,20180817  13:24:00,1.138275,1.138285,1.138275,1.13828,-1,-1.00000,false,-1,20180817  13:24:05,1.13828,1.138295,1.138275,1.138285,-1,-1.00000,false,-1,20180817  13:24:10,1.138285,1.138285,1.13827,1.13828,-1,-1.00000,false,-1,20180817  13:24:15,1.13828,1.138285,1.138275,1.138275,-1,-1.00000,false,-1,20180817  13:24:20,1.138275,1.13828,1.138255,1.138265,-1,-1.00000,false,-1
2018-08-17 13:24:41,691 asyncio INFO poll 19999.759 ms took 20007.322 ms: timeout
2018-08-17 13:24:41,691 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:24:41,691 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:24:41,692 ib_insync.connection DEBUG >>> 20,6,23,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:24:41,864 asyncio DEBUG poll 3999.871 ms took 171.970 ms: 1 events
2018-08-17 13:24:41,864 ib_insync.client DEBUG <<< 17,3,23,20180817  13:24:11,20180817  13:24:41,7,20180817  13:24:10,1.138285,1.138285,1.13827,1.13828,-1,-1.00000,false,-1,20180817  13:24:15,1.13828,1.138285,1.138275,1.138275,-1,-1.00000,false,-1,20180817  13:24:20,1.138275,1.13828,1.138255,1.138265,-1,-1.00000,false,-1,20180817  13:24:25,1.138265,1.138285,1.138185,1.138195,-1,-1.00000,false,-1,20180817  13:24:30,1.138195,1.13823,1.13819,1.138195,-1,-1.00000,false,-1,20180817  13:24:35,1.138195,1.138285,1.138195,1.138285,-1,-1.00000,false,-1,20180817  13:24:40,1.138285,1.13830,1.13828,1.13830,-1,-1.00000,false,-1
2018-08-17 13:25:01,869 asyncio INFO poll 19999.758 ms took 20003.555 ms: timeout
2018-08-17 13:25:01,869 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:25:01,870 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:25:01,870 ib_insync.connection DEBUG >>> 20,6,24,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:25:02,042 asyncio DEBUG poll 3999.871 ms took 171.543 ms: 1 events
2018-08-17 13:25:02,042 ib_insync.client DEBUG <<< 17,3,24,20180817  13:24:31,20180817  13:25:01,7,20180817  13:24:30,1.138195,1.13823,1.13819,1.138195,-1,-1.00000,false,-1,20180817  13:24:35,1.138195,1.138285,1.138195,1.138285,-1,-1.00000,false,-1,20180817  13:24:40,1.138285,1.13830,1.13828,1.13829,-1,-1.00000,false,-1,20180817  13:24:45,1.13829,1.13830,1.138285,1.138295,-1,-1.00000,false,-1,20180817  13:24:50,1.138295,1.138295,1.138285,1.138285,-1,-1.00000,false,-1,20180817  13:24:55,1.138285,1.138405,1.138285,1.138405,-1,-1.00000,false,-1,20180817  13:25:00,1.138405,1.138435,1.13839,1.138435,-1,-1.00000,false,-1
2018-08-17 13:25:22,048 asyncio INFO poll 19999.770 ms took 20004.822 ms: timeout
2018-08-17 13:25:22,048 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:25:22,049 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:25:22,049 ib_insync.connection DEBUG >>> 20,6,25,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:25:22,227 asyncio DEBUG poll 3999.852 ms took 177.206 ms: 1 events
2018-08-17 13:25:22,227 ib_insync.client DEBUG <<< 17,3,25,20180817  13:24:51,20180817  13:25:21,7,20180817  13:24:50,1.138295,1.138295,1.138285,1.138285,-1,-1.00000,false,-1,20180817  13:24:55,1.138285,1.138405,1.138285,1.138405,-1,-1.00000,false,-1,20180817  13:25:00,1.138405,1.138435,1.13839,1.138425,-1,-1.00000,false,-1,20180817  13:25:05,1.138425,1.138425,1.138275,1.138275,-1,-1.00000,false,-1,20180817  13:25:10,1.138275,1.138325,1.138275,1.138285,-1,-1.00000,false,-1,20180817  13:25:15,1.138285,1.138325,1.138275,1.138325,-1,-1.00000,false,-1,20180817  13:25:20,1.138325,1.13833,1.138325,1.138325,-1,-1.00000,false,-1
2018-08-17 13:25:40,708 asyncio INFO poll 19999.771 ms took 18479.935 ms: 1 events
2018-08-17 13:25:40,708 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.49,USD
2018-08-17 13:25:40,709 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-S,1000414.49,USD,DU1120207
2018-08-17 13:25:40,709 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.49,USD
2018-08-17 13:25:40,710 ib_insync.client DEBUG <<< 6,2,NetLiquidation-S,1000414.49,USD,DU1120207
2018-08-17 13:25:40,710 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.39,USD
2018-08-17 13:25:40,710 ib_insync.client DEBUG <<< 6,2,TotalCashValue-S,999871.39,USD,DU1120207
2018-08-17 13:25:40,711 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.49,USD
2018-08-17 13:25:40,711 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue,1000414.49,USD,DU1120207
2018-08-17 13:25:40,711 asyncio DEBUG poll 1516.389 ms took 0.014 ms: 1 events
2018-08-17 13:25:40,711 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.49,USD
2018-08-17 13:25:40,712 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.49,USD,DU1120207
2018-08-17 13:25:40,712 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.39,USD
2018-08-17 13:25:40,712 ib_insync.client DEBUG <<< 6,2,TotalCashValue,999871.39,USD,DU1120207
2018-08-17 13:25:40,713 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.33,USD
2018-08-17 13:25:40,713 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.33,USD,DU1120207
2018-08-17 13:25:40,713 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.49,USD
2018-08-17 13:25:40,714 ib_insync.client DEBUG <<< 6,2,RegTEquity-S,1000414.49,USD,DU1120207
2018-08-17 13:25:40,714 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.49,USD
2018-08-17 13:25:40,714 ib_insync.client DEBUG <<< 6,2,RegTEquity,1000414.49,USD,DU1120207
2018-08-17 13:25:40,714 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,715 ib_insync.client DEBUG <<< 6,2,AvailableFunds-S,1000409.58,USD,DU1120207
2018-08-17 13:25:40,715 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,715 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-S,1000409.58,USD,DU1120207
2018-08-17 13:25:40,716 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.58,USD
2018-08-17 13:25:40,716 ib_insync.client DEBUG <<< 6,2,AvailableFunds,1000409.58,USD,DU1120207
2018-08-17 13:25:40,716 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,717 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity,1000409.58,USD,DU1120207
2018-08-17 13:25:40,717 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,717 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-S,1000409.58,USD,DU1120207
2018-08-17 13:25:40,717 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,718 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-S,1000409.58,USD,DU1120207
2018-08-17 13:25:40,718 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.58,USD
2018-08-17 13:25:40,718 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds,1000409.58,USD,DU1120207
2018-08-17 13:25:40,719 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,719 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity,1000409.58,USD,DU1120207
2018-08-17 13:25:40,719 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,720 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-S,1000409.58,USD,DU1120207
2018-08-17 13:25:40,720 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,720 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-S,1000409.58,USD,DU1120207
2018-08-17 13:25:40,720 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.58,USD
2018-08-17 13:25:40,721 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds,1000409.58,USD,DU1120207
2018-08-17 13:25:40,721 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,721 ib_insync.client DEBUG <<< 8,1,13:25
2018-08-17 13:25:40,722 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity,1000409.58,USD,DU1120207
2018-08-17 13:25:40,722 ib_insync.client DEBUG <<< 8,1,13:25
2018-08-17 13:25:40,722 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.49,USD
2018-08-17 13:25:40,722 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.49,USD
2018-08-17 13:25:40,723 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.39,USD
2018-08-17 13:25:40,723 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.49,USD
2018-08-17 13:25:40,723 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.49,USD
2018-08-17 13:25:40,724 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.39,USD
2018-08-17 13:25:40,724 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.33,USD
2018-08-17 13:25:40,724 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.49,USD
2018-08-17 13:25:40,725 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.49,USD
2018-08-17 13:25:40,725 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,725 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,726 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.58,USD
2018-08-17 13:25:40,726 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,726 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,727 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,727 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.58,USD
2018-08-17 13:25:40,727 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,728 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,728 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,728 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.58,USD
2018-08-17 13:25:40,729 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,729 ib_insync.client DEBUG <<< 8,1,13:25
2018-08-17 13:25:40,729 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.49,USD
2018-08-17 13:25:40,729 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.49,USD
2018-08-17 13:25:40,730 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.39,USD
2018-08-17 13:25:40,730 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.49,USD
2018-08-17 13:25:40,730 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.49,USD
2018-08-17 13:25:40,731 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.39,USD
2018-08-17 13:25:40,731 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.33,USD
2018-08-17 13:25:40,732 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.49,USD
2018-08-17 13:25:40,732 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.49,USD
2018-08-17 13:25:40,732 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,733 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,733 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.58,USD
2018-08-17 13:25:40,733 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,734 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,734 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,734 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.58,USD
2018-08-17 13:25:40,735 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,735 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.58,USD
2018-08-17 13:25:40,735 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.58,USD
2018-08-17 13:25:40,736 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.58,USD
2018-08-17 13:25:40,736 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.58,USD
2018-08-17 13:25:40,786 asyncio DEBUG poll 1491.545 ms took 49.514 ms: 1 events
2018-08-17 13:25:40,786 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:25:40,787 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:25:40,787 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:25:40,787 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:25:40,788 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:25:40,788 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:25:40,788 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:25:40,789 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:25:40,789 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:25:40,789 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:25:40,790 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:25:40,790 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7603695,CAD
2018-08-17 13:25:40,790 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:25:40,791 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:25:40,791 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:25:40,791 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:25:40,792 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:25:40,792 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:25:40,792 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:25:40,793 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:25:40,793 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:25:40,793 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:25:40,794 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:25:40,794 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:25:40,794 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7603695,CAD,DU1120207
2018-08-17 13:25:40,795 ib_insync.client DEBUG <<< 8,1,13:25
2018-08-17 13:25:40,795 asyncio DEBUG poll 1432.917 ms took 0.013 ms: 1 events
2018-08-17 13:25:40,795 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:25:40,795 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:25:40,796 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:25:40,796 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:25:40,796 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:25:40,797 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:25:40,797 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:25:40,797 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:25:40,798 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000414,BASE
2018-08-17 13:25:40,798 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:25:40,798 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:25:40,799 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:25:40,799 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:25:40,799 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:25:40,800 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:25:40,800 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:25:40,800 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:25:40,801 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:25:40,801 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:25:40,801 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:25:40,802 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:25:40,802 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:25:40,802 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:25:40,803 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:25:40,803 ib_insync.client DEBUG <<< 8,1,13:25
2018-08-17 13:25:40,803 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:25:40,803 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:25:40,804 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:25:40,804 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:25:40,804 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:25:40,805 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:25:40,805 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:25:40,805 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:25:40,806 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000414,BASE
2018-08-17 13:25:40,806 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:25:40,806 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:25:40,807 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:25:40,807 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:25:40,807 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:25:40,808 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:25:40,808 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:25:40,808 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:25:40,809 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:25:40,809 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:25:40,809 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:25:40,810 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:25:40,810 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:25:40,810 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:25:40,811 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:25:42,232 asyncio INFO poll 1416.580 ms took 1420.822 ms: timeout
2018-08-17 13:26:00,799 asyncio INFO poll 18562.534 ms took 18567.593 ms: timeout
2018-08-17 13:26:00,799 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:26:00,800 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:26:00,800 ib_insync.connection DEBUG >>> 20,6,26,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:26:00,977 asyncio DEBUG poll 3999.870 ms took 176.348 ms: 1 events
2018-08-17 13:26:00,977 ib_insync.client DEBUG <<< 17,3,26,20180817  13:25:30,20180817  13:26:00,6,20180817  13:25:30,1.13839,1.13842,1.138375,1.138405,-1,-1.00000,false,-1,20180817  13:25:35,1.138405,1.138425,1.138405,1.138405,-1,-1.00000,false,-1,20180817  13:25:40,1.138405,1.138435,1.138405,1.13843,-1,-1.00000,false,-1,20180817  13:25:45,1.13843,1.13843,1.13843,1.13843,-1,-1.00000,false,-1,20180817  13:25:50,1.13843,1.13847,1.138405,1.13845,-1,-1.00000,false,-1,20180817  13:25:55,1.13845,1.13848,1.138435,1.13844,-1,-1.00000,false,-1
2018-08-17 13:26:20,983 asyncio INFO poll 19999.770 ms took 20004.769 ms: timeout
2018-08-17 13:26:20,983 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:26:20,983 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:26:20,983 ib_insync.connection DEBUG >>> 20,6,27,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:26:21,155 asyncio DEBUG poll 3999.871 ms took 170.813 ms: 1 events
2018-08-17 13:26:21,155 ib_insync.client DEBUG <<< 17,3,27,20180817  13:25:50,20180817  13:26:20,6,20180817  13:25:50,1.13843,1.13847,1.138405,1.13845,-1,-1.00000,false,-1,20180817  13:25:55,1.13845,1.13848,1.138435,1.13844,-1,-1.00000,false,-1,20180817  13:26:00,1.13844,1.138445,1.13843,1.13844,-1,-1.00000,false,-1,20180817  13:26:05,1.13844,1.13844,1.13842,1.138425,-1,-1.00000,false,-1,20180817  13:26:10,1.138425,1.13844,1.138425,1.13844,-1,-1.00000,false,-1,20180817  13:26:15,1.13844,1.13844,1.13843,1.13843,-1,-1.00000,false,-1
2018-08-17 13:26:41,161 asyncio INFO poll 19999.759 ms took 20004.698 ms: timeout
2018-08-17 13:26:41,161 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:26:41,161 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:26:41,161 ib_insync.connection DEBUG >>> 20,6,28,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:26:41,556 asyncio DEBUG poll 3999.850 ms took 394.358 ms: 1 events
2018-08-17 13:26:41,556 ib_insync.client DEBUG <<< 17,3,28,20180817  13:26:10,20180817  13:26:40,6,20180817  13:26:10,1.138425,1.13844,1.138425,1.13844,-1,-1.00000,false,-1,20180817  13:26:15,1.13844,1.13844,1.13843,1.13843,-1,-1.00000,false,-1,20180817  13:26:20,1.13843,1.13848,1.13843,1.13848,-1,-1.00000,false,-1,20180817  13:26:25,1.13848,1.13848,1.13844,1.13844,-1,-1.00000,false,-1,20180817  13:26:30,1.13844,1.138445,1.138405,1.13843,-1,-1.00000,false,-1,20180817  13:26:35,1.13843,1.138435,1.13839,1.13843,-1,-1.00000,false,-1
2018-08-17 13:27:01,562 asyncio INFO poll 19999.770 ms took 20004.749 ms: timeout
2018-08-17 13:27:01,562 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:27:01,563 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:27:01,563 ib_insync.connection DEBUG >>> 20,6,29,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:27:01,923 asyncio DEBUG poll 3999.870 ms took 359.401 ms: 1 events
2018-08-17 13:27:01,923 ib_insync.client DEBUG <<< 17,3,29,20180817  13:26:31,20180817  13:27:01,7,20180817  13:26:30,1.13844,1.138445,1.138405,1.13843,-1,-1.00000,false,-1,20180817  13:26:35,1.13843,1.138435,1.13839,1.13843,-1,-1.00000,false,-1,20180817  13:26:40,1.13843,1.138435,1.13843,1.13843,-1,-1.00000,false,-1,20180817  13:26:45,1.13843,1.13843,1.13843,1.13843,-1,-1.00000,false,-1,20180817  13:26:50,1.13843,1.138435,1.13843,1.138435,-1,-1.00000,false,-1,20180817  13:26:55,1.138435,1.138545,1.138435,1.138545,-1,-1.00000,false,-1,20180817  13:27:00,1.138545,1.138545,1.138545,1.138545,-1,-1.00000,false,-1
2018-08-17 13:27:21,924 asyncio INFO poll 19999.761 ms took 20000.097 ms: timeout
2018-08-17 13:27:21,925 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:27:21,925 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:27:21,926 ib_insync.connection DEBUG >>> 20,6,30,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:27:22,635 asyncio DEBUG poll 3999.850 ms took 708.683 ms: 1 events
2018-08-17 13:27:22,635 ib_insync.client DEBUG <<< 17,3,30,20180817  13:26:51,20180817  13:27:21,7,20180817  13:26:50,1.13843,1.138435,1.13843,1.138435,-1,-1.00000,false,-1,20180817  13:26:55,1.138435,1.138545,1.138435,1.138545,-1,-1.00000,false,-1,20180817  13:27:00,1.138545,1.138545,1.138505,1.138505,-1,-1.00000,false,-1,20180817  13:27:05,1.138505,1.138515,1.13848,1.13848,-1,-1.00000,false,-1,20180817  13:27:10,1.13848,1.13848,1.13845,1.13847,-1,-1.00000,false,-1,20180817  13:27:15,1.13847,1.138475,1.13842,1.13842,-1,-1.00000,false,-1,20180817  13:27:20,1.13842,1.138425,1.13842,1.13842,-1,-1.00000,false,-1
2018-08-17 13:27:32,854 asyncio INFO poll 19999.761 ms took 10217.018 ms: 1 events
2018-08-17 13:27:32,854 ib_insync.client DEBUG <<< 4,2,-1,2105,HMDS data farm connection is broken:cashhmds
2018-08-17 13:27:32,854 ib_insync.wrapper INFO Warning 2105, reqId -1: HMDS data farm connection is broken:cashhmds
2018-08-17 13:27:42,641 asyncio INFO poll 9782.141 ms took 9787.151 ms: timeout
2018-08-17 13:27:46,970 asyncio INFO poll 10212.545 ms took 4328.989 ms: 1 events
2018-08-17 13:27:46,971 ib_insync.IBC DEBUG 2018-08-17 13:27:46:970 IBC: Detected frame entitled: IB Gateway.  API Account: burko777; event=Activated
2018-08-17 13:27:52,855 asyncio INFO poll 5882.303 ms took 5883.396 ms: timeout
2018-08-17 13:27:52,855 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:27:52,855 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:27:52,856 ib_insync.connection DEBUG >>> 20,6,31,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:27:56,856 asyncio INFO poll 3999.864 ms took 4000.405 ms: timeout
2018-08-17 13:27:56,857 ib_insync.Watchdog ERROR Hard timeout
2018-08-17 13:27:56,857 ib_insync.Watchdog INFO Stopping
2018-08-17 13:27:56,857 ib_insync.ib INFO Disconnecting from 127.0.0.1:4002, 2.27 kB sent in 35 messages, 50.6 kB received in 782 messages, session time 696 s.
2018-08-17 13:27:56,860 ib_insync.IBC INFO Terminating
2018-08-17 13:27:57,319 asyncio DEBUG poll took 458.445 ms: 1 events
2018-08-17 13:27:57,320 asyncio INFO <_UnixReadPipeTransport fd=7 polling> was closed by peer
2018-08-17 13:27:57,321 asyncio DEBUG process 4104 exited with returncode 143
2018-08-17 13:27:57,322 asyncio INFO <_UnixSubprocessTransport pid=4104 running stdout=<_UnixReadPipeTransport closed fd=7 closed>> exited with return code 143
2018-08-17 13:27:57,322 ib_insync.Watchdog INFO Schedule restart in 2s
2018-08-17 13:27:57,322 asyncio WARNING Executing <Task pending coro=<Watchdog._watchAsync() running at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:431> wait_for=<Future pending cb=[Task._wakeup()] created at /Users/BK/anaconda3/lib/python3.6/asyncio/base_events.py:275> created at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:379> took 0.466 seconds
2018-08-17 13:27:57,323 ib_insync.client INFO Disconnected
2018-08-17 13:27:57,323 ib_insync.Watchdog INFO Stopping
2018-08-17 13:27:57,324 ib_insync.Watchdog INFO Schedule restart in 2s
2018-08-17 13:27:59,325 asyncio INFO poll 1998.330 ms took 2001.080 ms: timeout
2018-08-17 13:27:59,325 ib_insync.Watchdog INFO Starting
2018-08-17 13:27:59,326 ib_insync.IBC INFO Starting
2018-08-17 13:27:59,326 asyncio DEBUG execute program '/opt/ibc/scripts/ibcstart.sh' stdout=<pipe>
2018-08-17 13:27:59,328 asyncio DEBUG process '/opt/ibc/scripts/ibcstart.sh' created: pid 4197
2018-08-17 13:27:59,330 asyncio DEBUG Read pipe 7 connected: (<_UnixReadPipeTransport fd=7 polling>, <ReadSubprocessPipeProto fd=1 pipe=<_UnixReadPipeTransport fd=7 polling>>)
2018-08-17 13:27:59,330 asyncio INFO execute program '/opt/ibc/scripts/ibcstart.sh': <_UnixSubprocessTransport pid=4197 running stdout=<_UnixReadPipeTransport fd=7 polling>>
/opt/ibc/scripts/ibcstart.sh: line 157: ${mode^^}: bad substitution
2018-08-17 13:27:59,333 asyncio DEBUG poll 39999.881 ms took 1.336 ms: 1 events
2018-08-17 13:27:59,338 asyncio DEBUG poll 39998.187 ms took 4.789 ms: 1 events
2018-08-17 13:27:59,341 asyncio DEBUG poll 39992.942 ms took 2.253 ms: 1 events
2018-08-17 13:27:59,342 asyncio DEBUG poll 39990.129 ms took 0.607 ms: 1 events
2018-08-17 13:27:59,343 asyncio DEBUG poll 39989.199 ms took 0.287 ms: 1 events
2018-08-17 13:27:59,347 asyncio DEBUG poll 39988.597 ms took 4.053 ms: 1 events
2018-08-17 13:27:59,347 asyncio DEBUG poll 39984.253 ms took 0.019 ms: 1 events
2018-08-17 13:27:59,495 asyncio DEBUG poll 39983.846 ms took 146.962 ms: 1 events
2018-08-17 13:27:59,497 asyncio DEBUG poll 39835.171 ms took 0.339 ms: 1 events
2018-08-17 13:27:59,498 asyncio DEBUG poll 39834.258 ms took 0.584 ms: 1 events
2018-08-17 13:27:59,502 asyncio DEBUG poll 39833.447 ms took 3.615 ms: 1 events
2018-08-17 13:27:59,699 asyncio DEBUG poll 39829.567 ms took 196.515 ms: 1 events
2018-08-17 13:27:59,700 asyncio DEBUG poll 39632.494 ms took 0.988 ms: 1 events
2018-08-17 13:28:02,407 asyncio INFO poll 39630.484 ms took 2705.968 ms: 1 events
2018-08-17 13:28:02,411 asyncio DEBUG poll 36924.076 ms took 3.288 ms: 1 events
2018-08-17 13:28:02,411 asyncio DEBUG poll 36920.492 ms took 0.242 ms: 1 events
2018-08-17 13:28:02,429 asyncio DEBUG poll 36919.968 ms took 17.892 ms: 1 events
2018-08-17 13:28:02,935 asyncio DEBUG poll 36901.526 ms took 505.115 ms: 1 events
2018-08-17 13:28:03,506 asyncio DEBUG poll 36395.736 ms took 570.362 ms: 1 events
2018-08-17 13:28:03,507 asyncio DEBUG poll 35824.824 ms took 0.405 ms: 1 events
2018-08-17 13:28:39,331 asyncio INFO poll 35824.163 ms took 35825.948 ms: timeout
2018-08-17 13:28:39,333 ib_insync.client INFO Connecting to 127.0.0.1:4002 with clientId 30...
2018-08-17 13:28:39,335 asyncio DEBUG connect <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('0.0.0.0', 0)> to ('127.0.0.1', 4002)
2018-08-17 13:28:39,336 asyncio DEBUG poll 1998.317 ms took 0.010 ms: 1 events
2018-08-17 13:28:39,337 ib_insync.client ERROR API connection failed: ConnectionRefusedError(61, "Connect call failed ('127.0.0.1', 4002)")
2018-08-17 13:28:39,337 ib_insync.client ERROR Make sure API port on TWS/IBG is open
2018-08-17 13:28:39,337 ib_insync.IBC INFO Terminating
2018-08-17 13:28:39,550 asyncio DEBUG poll took 212.347 ms: 1 events
2018-08-17 13:28:39,551 asyncio INFO <_UnixReadPipeTransport fd=7 polling> was closed by peer
2018-08-17 13:28:39,552 asyncio DEBUG process 4197 exited with returncode 143
2018-08-17 13:28:39,552 asyncio INFO <_UnixSubprocessTransport pid=4197 running stdout=<_UnixReadPipeTransport closed fd=7 closed>> exited with return code 143
2018-08-17 13:28:39,553 ib_insync.Watchdog INFO Schedule restart in 2s
2018-08-17 13:28:39,553 asyncio WARNING Executing <TimerHandle when=8794.931548313 Watchdog.start() created at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:421> took 40.231 seconds
2018-08-17 13:28:39,553 ib_insync.Watchdog INFO Starting
2018-08-17 13:28:39,554 ib_insync.IBC INFO Starting
2018-08-17 13:28:39,554 asyncio DEBUG execute program '/opt/ibc/scripts/ibcstart.sh' stdout=<pipe>
2018-08-17 13:28:39,556 asyncio DEBUG process '/opt/ibc/scripts/ibcstart.sh' created: pid 4213
2018-08-17 13:28:39,558 asyncio DEBUG Read pipe 7 connected: (<_UnixReadPipeTransport fd=7 polling>, <ReadSubprocessPipeProto fd=1 pipe=<_UnixReadPipeTransport fd=7 polling>>)
2018-08-17 13:28:39,559 asyncio INFO execute program '/opt/ibc/scripts/ibcstart.sh': <_UnixSubprocessTransport pid=4213 running stdout=<_UnixReadPipeTransport fd=7 polling>>
/opt/ibc/scripts/ibcstart.sh: line 157: ${mode^^}: bad substitution
2018-08-17 13:28:39,563 asyncio DEBUG poll 1992.377 ms took 1.914 ms: 1 events
2018-08-17 13:28:39,569 asyncio DEBUG poll 1989.710 ms took 5.489 ms: 1 events
2018-08-17 13:28:39,571 asyncio DEBUG poll 1983.832 ms took 1.906 ms: 1 events
2018-08-17 13:28:39,572 asyncio DEBUG poll 1981.364 ms took 0.612 ms: 1 events
2018-08-17 13:28:39,573 asyncio DEBUG poll 1980.523 ms took 0.383 ms: 1 events
2018-08-17 13:28:39,578 asyncio DEBUG poll 1979.908 ms took 4.433 ms: 1 events
2018-08-17 13:28:39,729 asyncio DEBUG poll 1974.648 ms took 150.824 ms: 1 events
2018-08-17 13:28:39,731 asyncio DEBUG poll 1821.992 ms took 0.374 ms: 1 events
2018-08-17 13:28:39,733 asyncio DEBUG poll 1821.121 ms took 0.965 ms: 1 events
2018-08-17 13:28:39,738 asyncio DEBUG poll 1819.855 ms took 4.416 ms: 1 events
2018-08-17 13:28:39,947 asyncio DEBUG poll 1814.790 ms took 208.363 ms: 1 events
2018-08-17 13:28:39,949 asyncio DEBUG poll 1605.832 ms took 1.284 ms: 1 events
2018-08-17 13:28:41,554 asyncio INFO poll 1603.429 ms took 1604.855 ms: timeout
2018-08-17 13:28:41,555 ib_insync.Watchdog INFO Starting
2018-08-17 13:28:43,128 asyncio INFO poll 38004.472 ms took 1572.001 ms: 1 events
2018-08-17 13:28:43,132 asyncio DEBUG poll 36432.039 ms took 3.302 ms: 1 events
2018-08-17 13:28:43,132 asyncio DEBUG poll 36428.432 ms took 0.209 ms: 1 events
2018-08-17 13:28:43,150 asyncio DEBUG poll 36427.978 ms took 17.993 ms: 1 events
2018-08-17 13:28:43,658 asyncio DEBUG poll 36409.473 ms took 506.902 ms: 1 events
2018-08-17 13:28:44,219 asyncio DEBUG poll 35901.952 ms took 560.193 ms: 1 events
2018-08-17 13:28:44,220 asyncio DEBUG poll 35341.103 ms took 0.488 ms: 1 events
2018-08-17 13:28:48,320 asyncio INFO poll 35340.194 ms took 4099.693 ms: 1 events
2018-08-17 13:28:48,660 asyncio DEBUG poll 31240.070 ms took 340.348 ms: 1 events
2018-08-17 13:28:48,661 asyncio DEBUG poll 30899.064 ms took 0.257 ms: 1 events
2018-08-17 13:28:48,737 asyncio DEBUG poll 30898.431 ms took 75.117 ms: 1 events
2018-08-17 13:28:48,749 asyncio DEBUG poll 30822.878 ms took 11.960 ms: 1 events
2018-08-17 13:28:48,833 asyncio DEBUG poll 30810.298 ms took 82.965 ms: 1 events
2018-08-17 13:28:48,833 asyncio DEBUG poll 30726.785 ms took 0.157 ms: 1 events
2018-08-17 13:29:19,563 asyncio INFO poll 30726.325 ms took 30730.505 ms: timeout
2018-08-17 13:29:21,554 asyncio INFO poll 1990.598 ms took 1990.952 ms: timeout
2018-08-17 13:29:21,555 ib_insync.client INFO Connecting to 127.0.0.1:4002 with clientId 30...
2018-08-17 13:29:21,557 asyncio DEBUG connect <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('0.0.0.0', 0)> to ('127.0.0.1', 4002)
2018-08-17 13:29:21,558 asyncio DEBUG poll 1998.652 ms took 0.010 ms: 1 events
2018-08-17 13:29:21,559 asyncio DEBUG <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 50988), raddr=('127.0.0.1', 4002)> connected to 127.0.0.1:4002: (<_SelectorSocketTransport fd=8 read=polling write=<idle, bufsize=0>>, <ib_insync.client.Socket object at 0x10bda45c0>)
2018-08-17 13:29:21,560 ib_insync.client INFO Connected
2018-08-17 13:29:21,560 ib_insync.connection DEBUG >>> ,,,  v100..142
2018-08-17 13:29:21,583 asyncio DEBUG poll 1994.634 ms took 21.292 ms: 1 events
2018-08-17 13:29:21,584 ib_insync.client DEBUG <<< 118,20180817 13:29:20 Eastern European Time
2018-08-17 13:29:21,584 ib_insync.connection DEBUG >>> 71,2,30,,
2018-08-17 13:29:21,584 ib_insync.client INFO Logged on to server version 118
2018-08-17 13:29:21,587 asyncio DEBUG poll 1972.498 ms took 2.915 ms: 1 events
2018-08-17 13:29:21,587 ib_insync.client DEBUG <<< 15,1,DU1120207
2018-08-17 13:29:21,588 ib_insync.client DEBUG <<< 9,1,1
2018-08-17 13:29:21,589 ib_insync.client INFO API connection ready
2018-08-17 13:29:21,589 ib_insync.connection DEBUG >>> 6,2,1,DU1120207,
2018-08-17 13:29:21,590 ib_insync.connection DEBUG >>> 61,1,
2018-08-17 13:29:21,590 ib_insync.connection DEBUG >>> 7,3,1,0,,,,,,,
2018-08-17 13:29:21,591 ib_insync.connection DEBUG >>> 76,1,2,DU1120207,,0,
2018-08-17 13:29:21,594 asyncio DEBUG poll took 2.523 ms: 1 events
2018-08-17 13:29:21,594 ib_insync.client DEBUG <<< 6,2,AccountCode,DU1120207,,DU1120207
2018-08-17 13:29:21,595 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,BASE,DU1120207
2018-08-17 13:29:21,595 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,CAD,DU1120207
2018-08-17 13:29:21,596 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,USD,DU1120207
2018-08-17 13:29:21,596 ib_insync.client DEBUG <<< 6,2,AccountReady,true,,DU1120207
2018-08-17 13:29:21,597 ib_insync.client DEBUG <<< 6,2,AccountType,INDIVIDUAL,,DU1120207
2018-08-17 13:29:21,597 ib_insync.client DEBUG <<< 6,2,AccruedCash,543,BASE,DU1120207
2018-08-17 13:29:21,598 ib_insync.client DEBUG <<< 6,2,AccruedCash,0,CAD,DU1120207
2018-08-17 13:29:21,599 ib_insync.client DEBUG <<< 6,2,AccruedCash,543,USD,DU1120207
2018-08-17 13:29:21,599 ib_insync.client DEBUG <<< 6,2,AccruedCash-C,0.00,USD,DU1120207
2018-08-17 13:29:21,600 ib_insync.client DEBUG <<< 6,2,AccruedCash-S,543.10,USD,DU1120207
2018-08-17 13:29:21,601 asyncio DEBUG poll took 0.023 ms: 1 events
2018-08-17 13:29:21,601 ib_insync.client DEBUG <<< 6,2,AccruedDividend,0.00,USD,DU1120207
2018-08-17 13:29:21,601 ib_insync.client DEBUG <<< 6,2,AccruedDividend-C,0.00,USD,DU1120207
2018-08-17 13:29:21,602 ib_insync.client DEBUG <<< 6,2,AccruedDividend-S,0.00,USD,DU1120207
2018-08-17 13:29:21,602 ib_insync.client DEBUG <<< 6,2,AvailableFunds,1000409.59,USD,DU1120207
2018-08-17 13:29:21,603 ib_insync.client DEBUG <<< 6,2,AvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:29:21,603 ib_insync.client DEBUG <<< 6,2,AvailableFunds-S,1000409.59,USD,DU1120207
2018-08-17 13:29:21,604 ib_insync.client DEBUG <<< 6,2,Billable,0.00,USD,DU1120207
2018-08-17 13:29:21,604 ib_insync.client DEBUG <<< 6,2,Billable-C,0.00,USD,DU1120207
2018-08-17 13:29:21,605 ib_insync.client DEBUG <<< 6,2,Billable-S,0.00,USD,DU1120207
2018-08-17 13:29:21,605 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.38,USD,DU1120207
2018-08-17 13:29:21,605 ib_insync.client DEBUG <<< 6,2,CashBalance,999871,BASE,DU1120207
2018-08-17 13:29:21,606 ib_insync.client DEBUG <<< 6,2,CashBalance,-258,CAD,DU1120207
2018-08-17 13:29:21,606 ib_insync.client DEBUG <<< 6,2,CashBalance,1000068,USD,DU1120207
2018-08-17 13:29:21,607 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,BASE,DU1120207
2018-08-17 13:29:21,608 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,CAD,DU1120207
2018-08-17 13:29:21,608 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,USD,DU1120207
2018-08-17 13:29:21,609 ib_insync.client DEBUG <<< 6,2,Currency,BASE,BASE,DU1120207
2018-08-17 13:29:21,609 ib_insync.client DEBUG <<< 6,2,Currency,CAD,CAD,DU1120207
2018-08-17 13:29:21,610 ib_insync.client DEBUG <<< 6,2,Currency,USD,USD,DU1120207
2018-08-17 13:29:21,610 ib_insync.client DEBUG <<< 6,2,Cushion,0.999995,,DU1120207
2018-08-17 13:29:21,611 ib_insync.client DEBUG <<< 6,2,DayTradesRemaining,-1,,DU1120207
2018-08-17 13:29:21,611 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+1,-1,,DU1120207
2018-08-17 13:29:21,611 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+2,-1,,DU1120207
2018-08-17 13:29:21,612 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+3,-1,,DU1120207
2018-08-17 13:29:21,612 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+4,-1,,DU1120207
2018-08-17 13:29:21,612 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue,1000414.50,USD,DU1120207
2018-08-17 13:29:21,612 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-C,0.00,USD,DU1120207
2018-08-17 13:29:21,613 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-S,1000414.50,USD,DU1120207
2018-08-17 13:29:21,613 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity,1000409.59,USD,DU1120207
2018-08-17 13:29:21,613 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:29:21,614 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-S,1000409.59,USD,DU1120207
2018-08-17 13:29:21,614 ib_insync.client DEBUG <<< 6,2,ExchangeRate,1.00,BASE,DU1120207
2018-08-17 13:29:21,614 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7603117,CAD,DU1120207
2018-08-17 13:29:21,614 ib_insync.client DEBUG <<< 6,2,ExchangeRate,1.00,USD,DU1120207
2018-08-17 13:29:21,615 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds,1000409.59,USD,DU1120207
2018-08-17 13:29:21,615 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:29:21,615 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-S,1000409.59,USD,DU1120207
2018-08-17 13:29:21,616 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity,1000409.59,USD,DU1120207
2018-08-17 13:29:21,616 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:29:21,616 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-S,1000409.59,USD,DU1120207
2018-08-17 13:29:21,617 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq,4.91,USD,DU1120207
2018-08-17 13:29:21,617 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:29:21,617 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:29:21,617 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:29:21,618 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:29:21,618 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:29:21,618 ib_insync.client DEBUG <<< 6,2,FundValue,0,BASE,DU1120207
2018-08-17 13:29:21,619 ib_insync.client DEBUG <<< 6,2,FundValue,0,CAD,DU1120207
2018-08-17 13:29:21,619 ib_insync.client DEBUG <<< 6,2,FundValue,0,USD,DU1120207
2018-08-17 13:29:21,619 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,BASE,DU1120207
2018-08-17 13:29:21,620 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,CAD,DU1120207
2018-08-17 13:29:21,620 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,USD,DU1120207
2018-08-17 13:29:21,621 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,BASE,DU1120207
2018-08-17 13:29:21,621 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,CAD,DU1120207
2018-08-17 13:29:21,622 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,USD,DU1120207
2018-08-17 13:29:21,622 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,BASE,DU1120207
2018-08-17 13:29:21,623 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,CAD,DU1120207
2018-08-17 13:29:21,623 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,USD,DU1120207
2018-08-17 13:29:21,623 ib_insync.client DEBUG <<< 6,2,GrossPositionValue,0.00,USD,DU1120207
2018-08-17 13:29:21,624 ib_insync.client DEBUG <<< 6,2,GrossPositionValue-S,0.00,USD,DU1120207
2018-08-17 13:29:21,624 ib_insync.client DEBUG <<< 6,2,Guarantee,0.00,USD,DU1120207
2018-08-17 13:29:21,624 ib_insync.client DEBUG <<< 6,2,Guarantee-C,0.00,USD,DU1120207
2018-08-17 13:29:21,625 ib_insync.client DEBUG <<< 6,2,Guarantee-S,0.00,USD,DU1120207
2018-08-17 13:29:21,625 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut,0.00,USD,DU1120207
2018-08-17 13:29:21,626 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut-C,0.00,USD,DU1120207
2018-08-17 13:29:21,626 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut-S,0.00,USD,DU1120207
2018-08-17 13:29:21,626 ib_insync.client DEBUG <<< 6,2,InitMarginReq,4.91,USD,DU1120207
2018-08-17 13:29:21,627 ib_insync.client DEBUG <<< 6,2,InitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:29:21,627 ib_insync.client DEBUG <<< 6,2,InitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:29:21,627 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,BASE,DU1120207
2018-08-17 13:29:21,628 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,CAD,DU1120207
2018-08-17 13:29:21,628 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,USD,DU1120207
2018-08-17 13:29:21,628 ib_insync.client DEBUG <<< 6,2,Leverage-S,0.00,,DU1120207
2018-08-17 13:29:21,628 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds,1000409.59,USD,DU1120207
2018-08-17 13:29:21,629 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:29:21,629 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-S,1000409.59,USD,DU1120207
2018-08-17 13:29:21,629 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity,1000409.59,USD,DU1120207
2018-08-17 13:29:21,629 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:29:21,630 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-S,1000409.59,USD,DU1120207
2018-08-17 13:29:21,630 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq,4.91,USD,DU1120207
2018-08-17 13:29:21,630 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:29:21,631 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:29:21,631 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:29:21,631 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:29:21,631 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:29:21,632 ib_insync.client DEBUG <<< 6,2,LookAheadNextChange,0,,DU1120207
2018-08-17 13:29:21,632 ib_insync.client DEBUG <<< 6,2,MaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:29:21,632 ib_insync.client DEBUG <<< 6,2,MaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:29:21,633 ib_insync.client DEBUG <<< 6,2,MaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:29:21,633 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,BASE,DU1120207
2018-08-17 13:29:21,633 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,CAD,DU1120207
2018-08-17 13:29:21,633 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,USD,DU1120207
2018-08-17 13:29:21,634 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,BASE,DU1120207
2018-08-17 13:29:21,634 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,CAD,DU1120207
2018-08-17 13:29:21,634 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,USD,DU1120207
2018-08-17 13:29:21,634 ib_insync.client DEBUG <<< 6,2,NLVAndMarginInReview,false,,DU1120207
2018-08-17 13:29:21,635 ib_insync.client DEBUG <<< 6,2,NetDividend,0,BASE,DU1120207
2018-08-17 13:29:21,635 ib_insync.client DEBUG <<< 6,2,NetDividend,0,CAD,DU1120207
2018-08-17 13:29:21,635 ib_insync.client DEBUG <<< 6,2,NetDividend,0,USD,DU1120207
2018-08-17 13:29:21,635 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.50,USD,DU1120207
2018-08-17 13:29:21,636 ib_insync.client DEBUG <<< 6,2,NetLiquidation-C,0.00,USD,DU1120207
2018-08-17 13:29:21,636 ib_insync.client DEBUG <<< 6,2,NetLiquidation-S,1000414.50,USD,DU1120207
2018-08-17 13:29:21,636 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000415,BASE,DU1120207
2018-08-17 13:29:21,636 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,-258,CAD,DU1120207
2018-08-17 13:29:21,637 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000611,USD,DU1120207
2018-08-17 13:29:21,637 ib_insync.client DEBUG <<< 6,2,NetLiquidationUncertainty,0.00,USD,DU1120207
2018-08-17 13:29:21,637 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,BASE,DU1120207
2018-08-17 13:29:21,637 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,CAD,DU1120207
2018-08-17 13:29:21,638 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,USD,DU1120207
2018-08-17 13:29:21,638 ib_insync.client DEBUG <<< 6,2,PASharesValue,0.00,USD,DU1120207
2018-08-17 13:29:21,638 ib_insync.client DEBUG <<< 6,2,PASharesValue-C,0.00,USD,DU1120207
2018-08-17 13:29:21,639 ib_insync.client DEBUG <<< 6,2,PASharesValue-S,0.00,USD,DU1120207
2018-08-17 13:29:21,639 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess,0.00,USD,DU1120207
2018-08-17 13:29:21,639 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess-C,0.00,USD,DU1120207
2018-08-17 13:29:21,640 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess-S,0.00,USD,DU1120207
2018-08-17 13:29:21,640 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin,0.00,USD,DU1120207
2018-08-17 13:29:21,640 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin-C,0.00,USD,DU1120207
2018-08-17 13:29:21,640 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin-S,0.00,USD,DU1120207
2018-08-17 13:29:21,641 ib_insync.client DEBUG <<< 6,2,RealCurrency,BASE,BASE,DU1120207
2018-08-17 13:29:21,641 ib_insync.client DEBUG <<< 6,2,RealCurrency,CAD,CAD,DU1120207
2018-08-17 13:29:21,641 ib_insync.client DEBUG <<< 6,2,RealCurrency,USD,USD,DU1120207
2018-08-17 13:29:21,641 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,BASE,DU1120207
2018-08-17 13:29:21,642 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,CAD,DU1120207
2018-08-17 13:29:21,642 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,USD,DU1120207
2018-08-17 13:29:21,642 ib_insync.client DEBUG <<< 6,2,RegTEquity,1000414.50,USD,DU1120207
2018-08-17 13:29:21,642 ib_insync.client DEBUG <<< 6,2,RegTEquity-S,1000414.50,USD,DU1120207
2018-08-17 13:29:21,643 ib_insync.client DEBUG <<< 6,2,RegTMargin,0.00,USD,DU1120207
2018-08-17 13:29:21,643 ib_insync.client DEBUG <<< 6,2,RegTMargin-S,0.00,USD,DU1120207
2018-08-17 13:29:21,643 ib_insync.client DEBUG <<< 6,2,SMA,2000000.00,USD,DU1120207
2018-08-17 13:29:21,643 ib_insync.client DEBUG <<< 6,2,SMA-S,2000000.00,USD,DU1120207
2018-08-17 13:29:21,644 ib_insync.client DEBUG <<< 6,2,SegmentTitle-C,US Commodities,,DU1120207
2018-08-17 13:29:21,644 ib_insync.client DEBUG <<< 6,2,SegmentTitle-S,US Securities,,DU1120207
2018-08-17 13:29:21,644 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,BASE,DU1120207
2018-08-17 13:29:21,644 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,CAD,DU1120207
2018-08-17 13:29:21,645 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,USD,DU1120207
2018-08-17 13:29:21,645 ib_insync.client DEBUG <<< 6,2,TBillValue,0,BASE,DU1120207
2018-08-17 13:29:21,645 ib_insync.client DEBUG <<< 6,2,TBillValue,0,CAD,DU1120207
2018-08-17 13:29:21,645 ib_insync.client DEBUG <<< 6,2,TBillValue,0,USD,DU1120207
2018-08-17 13:29:21,646 ib_insync.client DEBUG <<< 6,2,TBondValue,0,BASE,DU1120207
2018-08-17 13:29:21,646 ib_insync.client DEBUG <<< 6,2,TBondValue,0,CAD,DU1120207
2018-08-17 13:29:21,646 ib_insync.client DEBUG <<< 6,2,TBondValue,0,USD,DU1120207
2018-08-17 13:29:21,646 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,999871,BASE,DU1120207
2018-08-17 13:29:21,647 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,-258,CAD,DU1120207
2018-08-17 13:29:21,647 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,1000068,USD,DU1120207
2018-08-17 13:29:21,647 ib_insync.client DEBUG <<< 6,2,TotalCashValue,999871.40,USD,DU1120207
2018-08-17 13:29:21,648 ib_insync.client DEBUG <<< 6,2,TotalCashValue-C,0.00,USD,DU1120207
2018-08-17 13:29:21,648 ib_insync.client DEBUG <<< 6,2,TotalCashValue-S,999871.40,USD,DU1120207
2018-08-17 13:29:21,648 ib_insync.client DEBUG <<< 6,2,TradingType-S,STKNOPT,,DU1120207
2018-08-17 13:29:21,648 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,BASE,DU1120207
2018-08-17 13:29:21,649 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,CAD,DU1120207
2018-08-17 13:29:21,649 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,USD,DU1120207
2018-08-17 13:29:21,649 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,BASE,DU1120207
2018-08-17 13:29:21,649 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,CAD,DU1120207
2018-08-17 13:29:21,650 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,USD,DU1120207
2018-08-17 13:29:21,650 ib_insync.client DEBUG <<< 6,2,WhatIfPMEnabled,true,,DU1120207
2018-08-17 13:29:21,650 ib_insync.client DEBUG <<< 8,1,13:28
2018-08-17 13:29:21,650 ib_insync.client DEBUG <<< 54,1,DU1120207
2018-08-17 13:29:21,651 ib_insync.client DEBUG <<< 62,1
2018-08-17 13:29:21,651 ib_insync.client DEBUG <<< 55,1,1
2018-08-17 13:29:21,651 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountCode,DU1120207,
2018-08-17 13:29:21,651 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountReady,true,
2018-08-17 13:29:21,652 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountType,INDIVIDUAL,
2018-08-17 13:29:21,652 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543.10,USD
2018-08-17 13:29:21,653 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash-C,0.00,USD
2018-08-17 13:29:21,653 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash-S,543.10,USD
2018-08-17 13:29:21,653 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend,0.00,USD
2018-08-17 13:29:21,654 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend-C,0.00,USD
2018-08-17 13:29:21,654 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend-S,0.00,USD
2018-08-17 13:29:21,655 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.59,USD
2018-08-17 13:29:21,655 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-C,0.00,USD
2018-08-17 13:29:21,655 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.59,USD
2018-08-17 13:29:21,656 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable,0.00,USD
2018-08-17 13:29:21,656 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable-C,0.00,USD
2018-08-17 13:29:21,656 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable-S,0.00,USD
2018-08-17 13:29:21,657 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.38,USD
2018-08-17 13:29:21,657 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Cushion,0.999995,
2018-08-17 13:29:21,657 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemaining,-1,
2018-08-17 13:29:21,658 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+1,-1,
2018-08-17 13:29:21,658 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+2,-1,
2018-08-17 13:29:21,658 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+3,-1,
2018-08-17 13:29:21,659 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+4,-1,
2018-08-17 13:29:21,659 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.50,USD
2018-08-17 13:29:21,659 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-C,0.00,USD
2018-08-17 13:29:21,660 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.50,USD
2018-08-17 13:29:21,660 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.59,USD
2018-08-17 13:29:21,660 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-C,0.00,USD
2018-08-17 13:29:21,661 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.59,USD
2018-08-17 13:29:21,661 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.59,USD
2018-08-17 13:29:21,661 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-C,0.00,USD
2018-08-17 13:29:21,662 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.59,USD
2018-08-17 13:29:21,662 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.59,USD
2018-08-17 13:29:21,662 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-C,0.00,USD
2018-08-17 13:29:21,663 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.59,USD
2018-08-17 13:29:21,663 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq,4.91,USD
2018-08-17 13:29:21,663 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq-C,0.00,USD
2018-08-17 13:29:21,664 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq-S,4.91,USD
2018-08-17 13:29:21,664 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq,4.91,USD
2018-08-17 13:29:21,664 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq-C,0.00,USD
2018-08-17 13:29:21,665 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq-S,4.91,USD
2018-08-17 13:29:21,665 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,GrossPositionValue,0.00,USD
2018-08-17 13:29:21,665 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,GrossPositionValue-S,0.00,USD
2018-08-17 13:29:21,666 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee,0.00,USD
2018-08-17 13:29:21,666 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee-C,0.00,USD
2018-08-17 13:29:21,666 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee-S,0.00,USD
2018-08-17 13:29:21,667 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut,0.00,USD
2018-08-17 13:29:21,667 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut-C,0.00,USD
2018-08-17 13:29:21,667 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut-S,0.00,USD
2018-08-17 13:29:21,668 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq,4.91,USD
2018-08-17 13:29:21,668 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq-C,0.00,USD
2018-08-17 13:29:21,668 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq-S,4.91,USD
2018-08-17 13:29:21,669 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Leverage-S,0.00,
2018-08-17 13:29:21,669 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.59,USD
2018-08-17 13:29:21,669 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-C,0.00,USD
2018-08-17 13:29:21,670 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.59,USD
2018-08-17 13:29:21,670 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.59,USD
2018-08-17 13:29:21,670 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-C,0.00,USD
2018-08-17 13:29:21,671 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.59,USD
2018-08-17 13:29:21,671 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq,4.91,USD
2018-08-17 13:29:21,671 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq-C,0.00,USD
2018-08-17 13:29:21,672 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq-S,4.91,USD
2018-08-17 13:29:21,672 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq,4.91,USD
2018-08-17 13:29:21,672 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq-C,0.00,USD
2018-08-17 13:29:21,673 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq-S,4.91,USD
2018-08-17 13:29:21,673 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadNextChange,0,
2018-08-17 13:29:21,673 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq,4.91,USD
2018-08-17 13:29:21,674 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq-C,0.00,USD
2018-08-17 13:29:21,674 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq-S,4.91,USD
2018-08-17 13:29:21,674 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NLVAndMarginInReview,false,
2018-08-17 13:29:21,675 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.50,USD
2018-08-17 13:29:21,675 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-C,0.00,USD
2018-08-17 13:29:21,675 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.50,USD
2018-08-17 13:29:21,676 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationUncertainty,0.00,USD
2018-08-17 13:29:21,676 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue,0.00,USD
2018-08-17 13:29:21,677 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue-C,0.00,USD
2018-08-17 13:29:21,677 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue-S,0.00,USD
2018-08-17 13:29:21,677 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess,0.00,USD
2018-08-17 13:29:21,678 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess-C,0.00,USD
2018-08-17 13:29:21,678 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess-S,0.00,USD
2018-08-17 13:29:21,678 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin,0.00,USD
2018-08-17 13:29:21,679 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin-C,0.00,USD
2018-08-17 13:29:21,679 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin-S,0.00,USD
2018-08-17 13:29:21,679 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.50,USD
2018-08-17 13:29:21,680 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.50,USD
2018-08-17 13:29:21,680 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTMargin,0.00,USD
2018-08-17 13:29:21,680 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTMargin-S,0.00,USD
2018-08-17 13:29:21,681 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SMA,2000000.00,USD
2018-08-17 13:29:21,681 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SMA-S,2000000.00,USD
2018-08-17 13:29:21,681 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SegmentTitle-C,US Commodities,
2018-08-17 13:29:21,682 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SegmentTitle-S,US Securities,
2018-08-17 13:29:21,682 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.40,USD
2018-08-17 13:29:21,682 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-C,0.00,USD
2018-08-17 13:29:21,683 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.40,USD
2018-08-17 13:29:21,683 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TradingType-S,STKNOPT,
2018-08-17 13:29:21,683 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WhatIfPMEnabled,true,
2018-08-17 13:29:21,684 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:29:21,684 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:29:21,684 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:29:21,684 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:29:21,685 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:29:21,685 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:29:21,685 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:29:21,686 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:29:21,686 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:29:21,687 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:29:21,687 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:29:21,687 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7603117,CAD
2018-08-17 13:29:21,687 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:29:21,688 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:29:21,688 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:29:21,688 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:29:21,689 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:29:21,689 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:29:21,689 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:29:21,690 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:29:21,690 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:29:21,690 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:29:21,691 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:29:21,691 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:29:21,691 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,USD,USD
2018-08-17 13:29:21,692 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,1000068,USD
2018-08-17 13:29:21,692 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,1000068,USD
2018-08-17 13:29:21,692 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,USD
2018-08-17 13:29:21,693 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,USD
2018-08-17 13:29:21,693 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,USD
2018-08-17 13:29:21,693 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,USD
2018-08-17 13:29:21,694 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,USD
2018-08-17 13:29:21,694 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000611,USD
2018-08-17 13:29:21,694 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,USD
2018-08-17 13:29:21,695 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,USD
2018-08-17 13:29:21,695 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,USD
2018-08-17 13:29:21,695 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,USD
2018-08-17 13:29:21,696 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,USD
2018-08-17 13:29:21,696 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,USD
2018-08-17 13:29:21,696 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,USD
2018-08-17 13:29:21,697 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,USD
2018-08-17 13:29:21,697 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,USD
2018-08-17 13:29:21,697 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,USD
2018-08-17 13:29:21,698 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,USD
2018-08-17 13:29:21,698 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,USD
2018-08-17 13:29:21,698 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,USD
2018-08-17 13:29:21,699 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,USD,USD
2018-08-17 13:29:21,699 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,USD
2018-08-17 13:29:21,699 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:29:21,700 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:29:21,700 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:29:21,700 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:29:21,701 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:29:21,701 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:29:21,701 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:29:21,702 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:29:21,702 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:29:21,702 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:29:21,703 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:29:21,703 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:29:21,703 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:29:21,704 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:29:21,704 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:29:21,704 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:29:21,705 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:29:21,705 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:29:21,705 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:29:21,706 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:29:21,706 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:29:21,706 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:29:21,707 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:29:21,707 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:29:21,707 ib_insync.client DEBUG <<< 74,1,2
2018-08-17 13:29:21,708 ib_insync.ib INFO Synchronization complete
2018-08-17 13:29:21,708 asyncio WARNING Executing <TimerHandle when=8837.164868959 Watchdog.start() created at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:421> took 40.156 seconds
2018-08-17 13:29:21,709 ib_insync.client INFO Connecting to 127.0.0.1:4002 with clientId 30...
2018-08-17 13:29:21,711 asyncio DEBUG connect <socket.socket fd=9, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('0.0.0.0', 0)> to ('127.0.0.1', 4002)
2018-08-17 13:29:21,711 asyncio DEBUG poll 1998.688 ms took 0.010 ms: 1 events
2018-08-17 13:29:21,713 asyncio DEBUG <socket.socket fd=9, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 50989), raddr=('127.0.0.1', 4002)> connected to 127.0.0.1:4002: (<_SelectorSocketTransport fd=9 read=polling write=<idle, bufsize=0>>, <ib_insync.client.Socket object at 0x10b4e7320>)
2018-08-17 13:29:21,713 ib_insync.client INFO Connected
2018-08-17 13:29:21,713 ib_insync.connection DEBUG >>> ,,,  v100..142
2018-08-17 13:29:21,716 ib_insync.client DEBUG <<< 118,20180817 13:29:20 Eastern European Time
2018-08-17 13:29:21,717 ib_insync.client INFO API connection ready
2018-08-17 13:29:21,717 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:29:21,717 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:29:21,717 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:29:21,718 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:29:41,712 asyncio INFO poll 19990.164 ms took 19995.206 ms: timeout
2018-08-17 13:29:41,717 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:29:41,717 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:29:41,718 ib_insync.wrapper ERROR Error 504, reqId 5: Not connected, contract: Forex('EURUSD', exchange='IDEALPRO')
2018-08-17 13:29:41,718 ib_insync.Watchdog ERROR Hard timeout
2018-08-17 13:29:41,718 ib_insync.Watchdog INFO Stopping
2018-08-17 13:29:41,719 ib_insync.IBC INFO Terminating
2018-08-17 13:29:42,178 asyncio DEBUG poll took 458.844 ms: 2 events
2018-08-17 13:29:42,178 asyncio DEBUG <_SelectorSocketTransport fd=9 read=polling write=<idle, bufsize=0>> received EOF
2018-08-17 13:29:42,180 asyncio DEBUG <_SelectorSocketTransport fd=8 read=polling write=<idle, bufsize=0>> received EOF
2018-08-17 13:29:42,180 ib_insync.client INFO Disconnected
2018-08-17 13:29:42,180 ib_insync.Watchdog INFO Stopping
2018-08-17 13:29:42,182 ib_insync.IBC INFO Terminating
2018-08-17 13:29:42,182 asyncio DEBUG process 4213 exited with returncode 143
2018-08-17 13:29:42,183 asyncio INFO <_UnixReadPipeTransport fd=7 polling> was closed by peer
2018-08-17 13:29:42,183 asyncio INFO <_UnixSubprocessTransport pid=4213 running stdout=<_UnixReadPipeTransport closing fd=7 idle>> exited with return code 143
2018-08-17 13:29:42,184 ib_insync.Watchdog INFO Schedule restart in 2s
2018-08-17 13:29:42,184 ib_insync.client INFO Disconnected
2018-08-17 13:29:42,184 ib_insync.Watchdog INFO Stopping
2018-08-17 13:29:42,185 ib_insync.Watchdog INFO Schedule restart in 2s
2018-08-17 13:29:42,186 ib_insync.Watchdog INFO Schedule restart in 2s
2018-08-17 13:29:42,186 asyncio WARNING Executing <Task pending coro=<Watchdog._watchAsync() running at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:431> wait_for=<Future pending cb=[Task._wakeup()] created at /Users/BK/anaconda3/lib/python3.6/asyncio/base_events.py:275> created at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:379> took 0.468 seconds
2018-08-17 13:29:44,188 asyncio INFO poll 1997.914 ms took 2001.911 ms: timeout
2018-08-17 13:29:44,188 ib_insync.Watchdog INFO Starting
2018-08-17 13:29:44,189 ib_insync.IBC INFO Starting
2018-08-17 13:29:44,189 asyncio DEBUG execute program '/opt/ibc/scripts/ibcstart.sh' stdout=<pipe>
2018-08-17 13:29:44,191 asyncio DEBUG process '/opt/ibc/scripts/ibcstart.sh' created: pid 4228
2018-08-17 13:29:44,193 asyncio DEBUG Read pipe 7 connected: (<_UnixReadPipeTransport fd=7 polling>, <ReadSubprocessPipeProto fd=1 pipe=<_UnixReadPipeTransport fd=7 polling>>)
2018-08-17 13:29:44,194 asyncio INFO execute program '/opt/ibc/scripts/ibcstart.sh': <_UnixSubprocessTransport pid=4228 running stdout=<_UnixReadPipeTransport fd=7 polling>>
/opt/ibc/scripts/ibcstart.sh: line 157: ${mode^^}: bad substitution
2018-08-17 13:29:44,196 asyncio DEBUG poll 39999.882 ms took 1.028 ms: 1 events
2018-08-17 13:29:44,202 asyncio DEBUG poll 39998.483 ms took 5.436 ms: 1 events
2018-08-17 13:29:44,204 asyncio DEBUG poll 39992.577 ms took 1.785 ms: 1 events
2018-08-17 13:29:44,205 asyncio DEBUG poll 39990.189 ms took 0.567 ms: 1 events
2018-08-17 13:29:44,206 asyncio DEBUG poll 39989.335 ms took 0.329 ms: 1 events
2018-08-17 13:29:44,210 asyncio DEBUG poll 39988.636 ms took 3.902 ms: 1 events
2018-08-17 13:29:44,211 asyncio DEBUG poll 39984.414 ms took 0.008 ms: 1 events
2018-08-17 13:29:44,358 asyncio DEBUG poll 39983.995 ms took 146.509 ms: 1 events
2018-08-17 13:29:44,360 asyncio DEBUG poll 39835.759 ms took 0.439 ms: 1 events
2018-08-17 13:29:44,361 asyncio DEBUG poll 39834.893 ms took 0.721 ms: 1 events
2018-08-17 13:29:44,365 asyncio DEBUG poll 39833.941 ms took 3.955 ms: 1 events
2018-08-17 13:29:44,562 asyncio DEBUG poll 39829.655 ms took 196.307 ms: 1 events
2018-08-17 13:29:44,563 asyncio DEBUG poll 39632.853 ms took 1.192 ms: 1 events
2018-08-17 13:29:47,749 asyncio INFO poll 39630.663 ms took 3184.904 ms: 1 events
2018-08-17 13:29:47,753 asyncio DEBUG poll 36445.315 ms took 3.311 ms: 1 events
2018-08-17 13:29:47,753 asyncio DEBUG poll 36441.670 ms took 0.152 ms: 1 events
2018-08-17 13:29:47,771 asyncio DEBUG poll 36441.281 ms took 17.618 ms: 1 events
2018-08-17 13:29:48,274 asyncio DEBUG poll 36423.210 ms took 502.061 ms: 1 events
2018-08-17 13:29:48,830 asyncio DEBUG poll 35920.456 ms took 555.750 ms: 1 events
2018-08-17 13:29:48,831 asyncio DEBUG poll 35364.125 ms took 0.326 ms: 1 events
2018-08-17 13:29:52,716 asyncio INFO poll 35363.405 ms took 3884.301 ms: 1 events
2018-08-17 13:29:53,036 asyncio DEBUG poll 31478.690 ms took 319.747 ms: 1 events
2018-08-17 13:29:53,039 asyncio DEBUG poll 31158.301 ms took 2.249 ms: 1 events
2018-08-17 13:29:53,124 asyncio DEBUG poll 31155.501 ms took 84.484 ms: 1 events
2018-08-17 13:29:53,132 asyncio DEBUG poll 31070.458 ms took 8.253 ms: 1 events
2018-08-17 13:29:53,215 asyncio DEBUG poll 31061.588 ms took 82.389 ms: 1 events
2018-08-17 13:29:53,216 asyncio DEBUG poll 30978.593 ms took 0.466 ms: 1 events
2018-08-17 13:30:24,198 asyncio INFO poll 30977.754 ms took 30982.736 ms: timeout
2018-08-17 13:30:24,199 ib_insync.client INFO Connecting to 127.0.0.1:4002 with clientId 30...
2018-08-17 13:30:24,201 asyncio DEBUG connect <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('0.0.0.0', 0)> to ('127.0.0.1', 4002)
2018-08-17 13:30:24,202 asyncio DEBUG poll 1998.635 ms took 0.010 ms: 1 events
2018-08-17 13:30:24,203 asyncio DEBUG <socket.socket fd=8, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 50995), raddr=('127.0.0.1', 4002)> connected to 127.0.0.1:4002: (<_SelectorSocketTransport fd=8 read=polling write=<idle, bufsize=0>>, <ib_insync.client.Socket object at 0x10bdbdb70>)
2018-08-17 13:30:24,203 ib_insync.client INFO Connected
2018-08-17 13:30:24,204 ib_insync.connection DEBUG >>> ,,,  v100..142
2018-08-17 13:30:24,227 asyncio DEBUG poll 1994.644 ms took 21.398 ms: 1 events
2018-08-17 13:30:24,228 ib_insync.client DEBUG <<< 118,20180817 13:30:23 Eastern European Time
2018-08-17 13:30:24,228 ib_insync.connection DEBUG >>> 71,2,30,,
2018-08-17 13:30:24,228 ib_insync.client INFO Logged on to server version 118
2018-08-17 13:30:24,231 asyncio DEBUG poll 1972.395 ms took 2.411 ms: 1 events
2018-08-17 13:30:24,231 ib_insync.client DEBUG <<< 15,1,DU1120207
2018-08-17 13:30:24,231 ib_insync.client DEBUG <<< 9,1,1
2018-08-17 13:30:24,232 ib_insync.client INFO API connection ready
2018-08-17 13:30:24,232 ib_insync.connection DEBUG >>> 6,2,1,DU1120207,
2018-08-17 13:30:24,233 ib_insync.connection DEBUG >>> 61,1,
2018-08-17 13:30:24,233 ib_insync.connection DEBUG >>> 7,3,1,0,,,,,,,
2018-08-17 13:30:24,234 ib_insync.connection DEBUG >>> 76,1,2,DU1120207,,0,
2018-08-17 13:30:24,236 asyncio DEBUG poll took 1.839 ms: 1 events
2018-08-17 13:30:24,236 ib_insync.client DEBUG <<< 6,2,AccountCode,DU1120207,,DU1120207
2018-08-17 13:30:24,237 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,BASE,DU1120207
2018-08-17 13:30:24,238 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,CAD,DU1120207
2018-08-17 13:30:24,238 ib_insync.client DEBUG <<< 6,2,AccountOrGroup,DU1120207,USD,DU1120207
2018-08-17 13:30:24,239 ib_insync.client DEBUG <<< 6,2,AccountReady,true,,DU1120207
2018-08-17 13:30:24,240 ib_insync.client DEBUG <<< 6,2,AccountType,INDIVIDUAL,,DU1120207
2018-08-17 13:30:24,240 asyncio DEBUG poll took 0.022 ms: 1 events
2018-08-17 13:30:24,241 ib_insync.client DEBUG <<< 6,2,AccruedCash,543,BASE,DU1120207
2018-08-17 13:30:24,241 ib_insync.client DEBUG <<< 6,2,AccruedCash,0,CAD,DU1120207
2018-08-17 13:30:24,242 ib_insync.client DEBUG <<< 6,2,AccruedCash,543,USD,DU1120207
2018-08-17 13:30:24,243 ib_insync.client DEBUG <<< 6,2,AccruedCash-C,0.00,USD,DU1120207
2018-08-17 13:30:24,243 ib_insync.client DEBUG <<< 6,2,AccruedCash-S,543.10,USD,DU1120207
2018-08-17 13:30:24,243 ib_insync.client DEBUG <<< 6,2,AccruedDividend,0.00,USD,DU1120207
2018-08-17 13:30:24,244 ib_insync.client DEBUG <<< 6,2,AccruedDividend-C,0.00,USD,DU1120207
2018-08-17 13:30:24,244 ib_insync.client DEBUG <<< 6,2,AccruedDividend-S,0.00,USD,DU1120207
2018-08-17 13:30:24,245 ib_insync.client DEBUG <<< 6,2,AvailableFunds,1000409.61,USD,DU1120207
2018-08-17 13:30:24,245 ib_insync.client DEBUG <<< 6,2,AvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:30:24,246 ib_insync.client DEBUG <<< 6,2,AvailableFunds-S,1000409.61,USD,DU1120207
2018-08-17 13:30:24,246 ib_insync.client DEBUG <<< 6,2,Billable,0.00,USD,DU1120207
2018-08-17 13:30:24,246 ib_insync.client DEBUG <<< 6,2,Billable-C,0.00,USD,DU1120207
2018-08-17 13:30:24,247 ib_insync.client DEBUG <<< 6,2,Billable-S,0.00,USD,DU1120207
2018-08-17 13:30:24,247 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.44,USD,DU1120207
2018-08-17 13:30:24,248 ib_insync.client DEBUG <<< 6,2,CashBalance,999871,BASE,DU1120207
2018-08-17 13:30:24,248 ib_insync.client DEBUG <<< 6,2,CashBalance,-258,CAD,DU1120207
2018-08-17 13:30:24,249 ib_insync.client DEBUG <<< 6,2,CashBalance,1000068,USD,DU1120207
2018-08-17 13:30:24,249 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,BASE,DU1120207
2018-08-17 13:30:24,250 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,CAD,DU1120207
2018-08-17 13:30:24,250 ib_insync.client DEBUG <<< 6,2,CorporateBondValue,0,USD,DU1120207
2018-08-17 13:30:24,251 ib_insync.client DEBUG <<< 6,2,Currency,BASE,BASE,DU1120207
2018-08-17 13:30:24,251 ib_insync.client DEBUG <<< 6,2,Currency,CAD,CAD,DU1120207
2018-08-17 13:30:24,252 ib_insync.client DEBUG <<< 6,2,Currency,USD,USD,DU1120207
2018-08-17 13:30:24,253 ib_insync.client DEBUG <<< 6,2,Cushion,0.999995,,DU1120207
2018-08-17 13:30:24,253 ib_insync.client DEBUG <<< 6,2,DayTradesRemaining,-1,,DU1120207
2018-08-17 13:30:24,253 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+1,-1,,DU1120207
2018-08-17 13:30:24,254 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+2,-1,,DU1120207
2018-08-17 13:30:24,254 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+3,-1,,DU1120207
2018-08-17 13:30:24,254 ib_insync.client DEBUG <<< 6,2,DayTradesRemainingT+4,-1,,DU1120207
2018-08-17 13:30:24,255 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue,1000414.51,USD,DU1120207
2018-08-17 13:30:24,255 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-C,0.00,USD,DU1120207
2018-08-17 13:30:24,255 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-S,1000414.51,USD,DU1120207
2018-08-17 13:30:24,255 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity,1000409.61,USD,DU1120207
2018-08-17 13:30:24,256 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:30:24,256 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-S,1000409.61,USD,DU1120207
2018-08-17 13:30:24,256 ib_insync.client DEBUG <<< 6,2,ExchangeRate,1.00,BASE,DU1120207
2018-08-17 13:30:24,257 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7602684,CAD,DU1120207
2018-08-17 13:30:24,257 ib_insync.client DEBUG <<< 6,2,ExchangeRate,1.00,USD,DU1120207
2018-08-17 13:30:24,257 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds,1000409.61,USD,DU1120207
2018-08-17 13:30:24,258 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:30:24,258 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-S,1000409.61,USD,DU1120207
2018-08-17 13:30:24,258 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity,1000409.61,USD,DU1120207
2018-08-17 13:30:24,258 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:30:24,259 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-S,1000409.61,USD,DU1120207
2018-08-17 13:30:24,259 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq,4.91,USD,DU1120207
2018-08-17 13:30:24,259 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:30:24,260 ib_insync.client DEBUG <<< 6,2,FullInitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:30:24,260 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:30:24,260 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:30:24,261 ib_insync.client DEBUG <<< 6,2,FullMaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:30:24,261 ib_insync.client DEBUG <<< 6,2,FundValue,0,BASE,DU1120207
2018-08-17 13:30:24,262 ib_insync.client DEBUG <<< 6,2,FundValue,0,CAD,DU1120207
2018-08-17 13:30:24,262 ib_insync.client DEBUG <<< 6,2,FundValue,0,USD,DU1120207
2018-08-17 13:30:24,262 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,BASE,DU1120207
2018-08-17 13:30:24,263 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,CAD,DU1120207
2018-08-17 13:30:24,263 ib_insync.client DEBUG <<< 6,2,FutureOptionValue,0,USD,DU1120207
2018-08-17 13:30:24,263 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,BASE,DU1120207
2018-08-17 13:30:24,264 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,CAD,DU1120207
2018-08-17 13:30:24,264 ib_insync.client DEBUG <<< 6,2,FuturesPNL,0,USD,DU1120207
2018-08-17 13:30:24,264 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,BASE,DU1120207
2018-08-17 13:30:24,264 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,CAD,DU1120207
2018-08-17 13:30:24,265 ib_insync.client DEBUG <<< 6,2,FxCashBalance,0,USD,DU1120207
2018-08-17 13:30:24,265 ib_insync.client DEBUG <<< 6,2,GrossPositionValue,0.00,USD,DU1120207
2018-08-17 13:30:24,266 ib_insync.client DEBUG <<< 6,2,GrossPositionValue-S,0.00,USD,DU1120207
2018-08-17 13:30:24,266 ib_insync.client DEBUG <<< 6,2,Guarantee,0.00,USD,DU1120207
2018-08-17 13:30:24,266 ib_insync.client DEBUG <<< 6,2,Guarantee-C,0.00,USD,DU1120207
2018-08-17 13:30:24,266 ib_insync.client DEBUG <<< 6,2,Guarantee-S,0.00,USD,DU1120207
2018-08-17 13:30:24,267 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut,0.00,USD,DU1120207
2018-08-17 13:30:24,267 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut-C,0.00,USD,DU1120207
2018-08-17 13:30:24,267 ib_insync.client DEBUG <<< 6,2,IndianStockHaircut-S,0.00,USD,DU1120207
2018-08-17 13:30:24,267 ib_insync.client DEBUG <<< 6,2,InitMarginReq,4.91,USD,DU1120207
2018-08-17 13:30:24,268 ib_insync.client DEBUG <<< 6,2,InitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:30:24,268 ib_insync.client DEBUG <<< 6,2,InitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:30:24,268 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,BASE,DU1120207
2018-08-17 13:30:24,268 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,CAD,DU1120207
2018-08-17 13:30:24,269 ib_insync.client DEBUG <<< 6,2,IssuerOptionValue,0,USD,DU1120207
2018-08-17 13:30:24,269 ib_insync.client DEBUG <<< 6,2,Leverage-S,0.00,,DU1120207
2018-08-17 13:30:24,269 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds,1000409.61,USD,DU1120207
2018-08-17 13:30:24,270 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-C,0.00,USD,DU1120207
2018-08-17 13:30:24,270 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-S,1000409.61,USD,DU1120207
2018-08-17 13:30:24,270 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity,1000409.61,USD,DU1120207
2018-08-17 13:30:24,271 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-C,0.00,USD,DU1120207
2018-08-17 13:30:24,271 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-S,1000409.61,USD,DU1120207
2018-08-17 13:30:24,271 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq,4.91,USD,DU1120207
2018-08-17 13:30:24,272 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:30:24,272 ib_insync.client DEBUG <<< 6,2,LookAheadInitMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:30:24,272 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:30:24,272 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:30:24,273 ib_insync.client DEBUG <<< 6,2,LookAheadMaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:30:24,273 ib_insync.client DEBUG <<< 6,2,LookAheadNextChange,0,,DU1120207
2018-08-17 13:30:24,273 ib_insync.client DEBUG <<< 6,2,MaintMarginReq,4.91,USD,DU1120207
2018-08-17 13:30:24,274 ib_insync.client DEBUG <<< 6,2,MaintMarginReq-C,0.00,USD,DU1120207
2018-08-17 13:30:24,274 ib_insync.client DEBUG <<< 6,2,MaintMarginReq-S,4.91,USD,DU1120207
2018-08-17 13:30:24,274 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,BASE,DU1120207
2018-08-17 13:30:24,275 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,CAD,DU1120207
2018-08-17 13:30:24,275 ib_insync.client DEBUG <<< 6,2,MoneyMarketFundValue,0,USD,DU1120207
2018-08-17 13:30:24,275 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,BASE,DU1120207
2018-08-17 13:30:24,275 asyncio DEBUG poll took 0.020 ms: 2 events
2018-08-17 13:30:24,276 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,CAD,DU1120207
2018-08-17 13:30:24,276 ib_insync.client DEBUG <<< 6,2,MutualFundValue,0,USD,DU1120207
2018-08-17 13:30:24,276 ib_insync.client DEBUG <<< 6,2,NLVAndMarginInReview,false,,DU1120207
2018-08-17 13:30:24,276 ib_insync.client DEBUG <<< 6,2,NetDividend,0,BASE,DU1120207
2018-08-17 13:30:24,277 ib_insync.client DEBUG <<< 6,2,NetDividend,0,CAD,DU1120207
2018-08-17 13:30:24,277 ib_insync.client DEBUG <<< 6,2,NetDividend,0,USD,DU1120207
2018-08-17 13:30:24,277 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.51,USD,DU1120207
2018-08-17 13:30:24,277 ib_insync.client DEBUG <<< 6,2,NetLiquidation-C,0.00,USD,DU1120207
2018-08-17 13:30:24,278 ib_insync.client DEBUG <<< 6,2,NetLiquidation-S,1000414.51,USD,DU1120207
2018-08-17 13:30:24,278 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000415,BASE,DU1120207
2018-08-17 13:30:24,278 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,-258,CAD,DU1120207
2018-08-17 13:30:24,279 ib_insync.client DEBUG <<< 6,2,NetLiquidationByCurrency,1000611,USD,DU1120207
2018-08-17 13:30:24,279 ib_insync.client DEBUG <<< 6,2,NetLiquidationUncertainty,0.00,USD,DU1120207
2018-08-17 13:30:24,279 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,BASE,DU1120207
2018-08-17 13:30:24,279 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,CAD,DU1120207
2018-08-17 13:30:24,280 ib_insync.client DEBUG <<< 6,2,OptionMarketValue,0,USD,DU1120207
2018-08-17 13:30:24,280 ib_insync.client DEBUG <<< 6,2,PASharesValue,0.00,USD,DU1120207
2018-08-17 13:30:24,280 ib_insync.client DEBUG <<< 6,2,PASharesValue-C,0.00,USD,DU1120207
2018-08-17 13:30:24,280 ib_insync.client DEBUG <<< 6,2,PASharesValue-S,0.00,USD,DU1120207
2018-08-17 13:30:24,281 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess,0.00,USD,DU1120207
2018-08-17 13:30:24,281 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess-C,0.00,USD,DU1120207
2018-08-17 13:30:24,281 ib_insync.client DEBUG <<< 6,2,PostExpirationExcess-S,0.00,USD,DU1120207
2018-08-17 13:30:24,281 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin,0.00,USD,DU1120207
2018-08-17 13:30:24,282 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin-C,0.00,USD,DU1120207
2018-08-17 13:30:24,282 ib_insync.client DEBUG <<< 6,2,PostExpirationMargin-S,0.00,USD,DU1120207
2018-08-17 13:30:24,282 ib_insync.client DEBUG <<< 6,2,RealCurrency,BASE,BASE,DU1120207
2018-08-17 13:30:24,282 ib_insync.client DEBUG <<< 6,2,RealCurrency,CAD,CAD,DU1120207
2018-08-17 13:30:24,283 ib_insync.client DEBUG <<< 6,2,RealCurrency,USD,USD,DU1120207
2018-08-17 13:30:24,283 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,BASE,DU1120207
2018-08-17 13:30:24,283 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,CAD,DU1120207
2018-08-17 13:30:24,283 ib_insync.client DEBUG <<< 6,2,RealizedPnL,0,USD,DU1120207
2018-08-17 13:30:24,284 ib_insync.client DEBUG <<< 6,2,RegTEquity,1000414.51,USD,DU1120207
2018-08-17 13:30:24,284 ib_insync.client DEBUG <<< 6,2,RegTEquity-S,1000414.51,USD,DU1120207
2018-08-17 13:30:24,284 ib_insync.client DEBUG <<< 6,2,RegTMargin,0.00,USD,DU1120207
2018-08-17 13:30:24,285 ib_insync.client DEBUG <<< 6,2,RegTMargin-S,0.00,USD,DU1120207
2018-08-17 13:30:24,285 ib_insync.client DEBUG <<< 6,2,SMA,2000000.00,USD,DU1120207
2018-08-17 13:30:24,285 ib_insync.client DEBUG <<< 6,2,SMA-S,2000000.00,USD,DU1120207
2018-08-17 13:30:24,285 ib_insync.client DEBUG <<< 6,2,SegmentTitle-C,US Commodities,,DU1120207
2018-08-17 13:30:24,286 ib_insync.client DEBUG <<< 6,2,SegmentTitle-S,US Securities,,DU1120207
2018-08-17 13:30:24,286 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,BASE,DU1120207
2018-08-17 13:30:24,286 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,CAD,DU1120207
2018-08-17 13:30:24,286 ib_insync.client DEBUG <<< 6,2,StockMarketValue,0,USD,DU1120207
2018-08-17 13:30:24,287 ib_insync.client DEBUG <<< 6,2,TBillValue,0,BASE,DU1120207
2018-08-17 13:30:24,287 ib_insync.client DEBUG <<< 6,2,TBillValue,0,CAD,DU1120207
2018-08-17 13:30:24,287 ib_insync.client DEBUG <<< 6,2,TBillValue,0,USD,DU1120207
2018-08-17 13:30:24,288 ib_insync.client DEBUG <<< 6,2,TBondValue,0,BASE,DU1120207
2018-08-17 13:30:24,288 ib_insync.client DEBUG <<< 6,2,TBondValue,0,CAD,DU1120207
2018-08-17 13:30:24,288 ib_insync.client DEBUG <<< 6,2,TBondValue,0,USD,DU1120207
2018-08-17 13:30:24,288 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,999871,BASE,DU1120207
2018-08-17 13:30:24,289 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,-258,CAD,DU1120207
2018-08-17 13:30:24,289 ib_insync.client DEBUG <<< 6,2,TotalCashBalance,1000068,USD,DU1120207
2018-08-17 13:30:24,289 ib_insync.client DEBUG <<< 6,2,TotalCashValue,999871.41,USD,DU1120207
2018-08-17 13:30:24,290 ib_insync.client DEBUG <<< 6,2,TotalCashValue-C,0.00,USD,DU1120207
2018-08-17 13:30:24,290 ib_insync.client DEBUG <<< 6,2,TotalCashValue-S,999871.41,USD,DU1120207
2018-08-17 13:30:24,290 ib_insync.client DEBUG <<< 6,2,TradingType-S,STKNOPT,,DU1120207
2018-08-17 13:30:24,290 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,BASE,DU1120207
2018-08-17 13:30:24,291 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,CAD,DU1120207
2018-08-17 13:30:24,291 ib_insync.client DEBUG <<< 6,2,UnrealizedPnL,0,USD,DU1120207
2018-08-17 13:30:24,291 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,BASE,DU1120207
2018-08-17 13:30:24,291 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,CAD,DU1120207
2018-08-17 13:30:24,292 ib_insync.client DEBUG <<< 6,2,WarrantValue,0,USD,DU1120207
2018-08-17 13:30:24,292 ib_insync.client DEBUG <<< 6,2,WhatIfPMEnabled,true,,DU1120207
2018-08-17 13:30:24,292 ib_insync.client DEBUG <<< 8,1,13:29
2018-08-17 13:30:24,292 ib_insync.client DEBUG <<< 54,1,DU1120207
2018-08-17 13:30:24,293 ib_insync.client DEBUG <<< 62,1
2018-08-17 13:30:24,293 ib_insync.client DEBUG <<< 55,1,1
2018-08-17 13:30:24,293 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountCode,DU1120207,
2018-08-17 13:30:24,294 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountReady,true,
2018-08-17 13:30:24,294 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountType,INDIVIDUAL,
2018-08-17 13:30:24,294 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543.10,USD
2018-08-17 13:30:24,295 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash-C,0.00,USD
2018-08-17 13:30:24,295 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash-S,543.10,USD
2018-08-17 13:30:24,295 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend,0.00,USD
2018-08-17 13:30:24,296 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend-C,0.00,USD
2018-08-17 13:30:24,296 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedDividend-S,0.00,USD
2018-08-17 13:30:24,296 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.61,USD
2018-08-17 13:30:24,297 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-C,0.00,USD
2018-08-17 13:30:24,297 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.61,USD
2018-08-17 13:30:24,297 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable,0.00,USD
2018-08-17 13:30:24,298 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable-C,0.00,USD
2018-08-17 13:30:24,298 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Billable-S,0.00,USD
2018-08-17 13:30:24,298 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.44,USD
2018-08-17 13:30:24,299 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Cushion,0.999995,
2018-08-17 13:30:24,299 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemaining,-1,
2018-08-17 13:30:24,299 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+1,-1,
2018-08-17 13:30:24,300 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+2,-1,
2018-08-17 13:30:24,300 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+3,-1,
2018-08-17 13:30:24,300 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,DayTradesRemainingT+4,-1,
2018-08-17 13:30:24,301 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.51,USD
2018-08-17 13:30:24,301 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-C,0.00,USD
2018-08-17 13:30:24,301 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.51,USD
2018-08-17 13:30:24,302 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.61,USD
2018-08-17 13:30:24,302 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-C,0.00,USD
2018-08-17 13:30:24,303 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.61,USD
2018-08-17 13:30:24,303 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.61,USD
2018-08-17 13:30:24,303 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-C,0.00,USD
2018-08-17 13:30:24,304 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.61,USD
2018-08-17 13:30:24,304 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.61,USD
2018-08-17 13:30:24,305 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-C,0.00,USD
2018-08-17 13:30:24,305 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.61,USD
2018-08-17 13:30:24,305 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq,4.91,USD
2018-08-17 13:30:24,306 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq-C,0.00,USD
2018-08-17 13:30:24,306 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullInitMarginReq-S,4.91,USD
2018-08-17 13:30:24,307 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq,4.91,USD
2018-08-17 13:30:24,307 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq-C,0.00,USD
2018-08-17 13:30:24,307 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullMaintMarginReq-S,4.91,USD
2018-08-17 13:30:24,308 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,GrossPositionValue,0.00,USD
2018-08-17 13:30:24,308 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,GrossPositionValue-S,0.00,USD
2018-08-17 13:30:24,308 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee,0.00,USD
2018-08-17 13:30:24,309 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee-C,0.00,USD
2018-08-17 13:30:24,309 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Guarantee-S,0.00,USD
2018-08-17 13:30:24,310 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut,0.00,USD
2018-08-17 13:30:24,310 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut-C,0.00,USD
2018-08-17 13:30:24,310 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IndianStockHaircut-S,0.00,USD
2018-08-17 13:30:24,311 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq,4.91,USD
2018-08-17 13:30:24,311 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq-C,0.00,USD
2018-08-17 13:30:24,311 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,InitMarginReq-S,4.91,USD
2018-08-17 13:30:24,312 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Leverage-S,0.00,
2018-08-17 13:30:24,312 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.61,USD
2018-08-17 13:30:24,312 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-C,0.00,USD
2018-08-17 13:30:24,313 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.61,USD
2018-08-17 13:30:24,313 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.61,USD
2018-08-17 13:30:24,313 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-C,0.00,USD
2018-08-17 13:30:24,314 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.61,USD
2018-08-17 13:30:24,314 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq,4.91,USD
2018-08-17 13:30:24,314 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq-C,0.00,USD
2018-08-17 13:30:24,315 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadInitMarginReq-S,4.91,USD
2018-08-17 13:30:24,315 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq,4.91,USD
2018-08-17 13:30:24,316 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq-C,0.00,USD
2018-08-17 13:30:24,316 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadMaintMarginReq-S,4.91,USD
2018-08-17 13:30:24,316 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadNextChange,0,
2018-08-17 13:30:24,317 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq,4.91,USD
2018-08-17 13:30:24,317 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq-C,0.00,USD
2018-08-17 13:30:24,317 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MaintMarginReq-S,4.91,USD
2018-08-17 13:30:24,318 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NLVAndMarginInReview,false,
2018-08-17 13:30:24,318 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.51,USD
2018-08-17 13:30:24,318 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-C,0.00,USD
2018-08-17 13:30:24,319 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.51,USD
2018-08-17 13:30:24,319 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationUncertainty,0.00,USD
2018-08-17 13:30:24,319 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue,0.00,USD
2018-08-17 13:30:24,320 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue-C,0.00,USD
2018-08-17 13:30:24,320 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PASharesValue-S,0.00,USD
2018-08-17 13:30:24,320 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess,0.00,USD
2018-08-17 13:30:24,321 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess-C,0.00,USD
2018-08-17 13:30:24,321 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationExcess-S,0.00,USD
2018-08-17 13:30:24,322 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin,0.00,USD
2018-08-17 13:30:24,322 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin-C,0.00,USD
2018-08-17 13:30:24,322 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,PostExpirationMargin-S,0.00,USD
2018-08-17 13:30:24,323 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.51,USD
2018-08-17 13:30:24,323 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.51,USD
2018-08-17 13:30:24,323 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTMargin,0.00,USD
2018-08-17 13:30:24,324 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTMargin-S,0.00,USD
2018-08-17 13:30:24,324 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SMA,2000000.00,USD
2018-08-17 13:30:24,325 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SMA-S,2000000.00,USD
2018-08-17 13:30:24,325 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SegmentTitle-C,US Commodities,
2018-08-17 13:30:24,325 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,SegmentTitle-S,US Securities,
2018-08-17 13:30:24,326 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.41,USD
2018-08-17 13:30:24,326 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-C,0.00,USD
2018-08-17 13:30:24,326 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.41,USD
2018-08-17 13:30:24,327 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TradingType-S,STKNOPT,
2018-08-17 13:30:24,327 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WhatIfPMEnabled,true,
2018-08-17 13:30:24,327 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:30:24,328 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:30:24,328 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:30:24,328 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:30:24,329 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:30:24,329 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:30:24,329 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:30:24,330 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:30:24,330 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:30:24,330 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:30:24,331 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:30:24,331 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7602684,CAD
2018-08-17 13:30:24,331 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:30:24,332 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:30:24,332 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:30:24,332 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:30:24,333 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:30:24,333 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:30:24,333 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:30:24,334 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:30:24,334 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:30:24,334 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:30:24,335 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:30:24,335 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:30:24,335 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,USD,USD
2018-08-17 13:30:24,336 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,1000068,USD
2018-08-17 13:30:24,336 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,1000068,USD
2018-08-17 13:30:24,336 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,USD
2018-08-17 13:30:24,337 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,USD
2018-08-17 13:30:24,337 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,USD
2018-08-17 13:30:24,338 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,USD
2018-08-17 13:30:24,338 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,USD
2018-08-17 13:30:24,338 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000611,USD
2018-08-17 13:30:24,339 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,USD
2018-08-17 13:30:24,339 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,USD
2018-08-17 13:30:24,339 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,USD
2018-08-17 13:30:24,340 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,USD
2018-08-17 13:30:24,340 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,USD
2018-08-17 13:30:24,340 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,USD
2018-08-17 13:30:24,341 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,USD
2018-08-17 13:30:24,341 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,USD
2018-08-17 13:30:24,341 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,USD
2018-08-17 13:30:24,342 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,USD
2018-08-17 13:30:24,342 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,USD
2018-08-17 13:30:24,342 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,USD
2018-08-17 13:30:24,343 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,USD
2018-08-17 13:30:24,343 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,USD,USD
2018-08-17 13:30:24,343 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,USD
2018-08-17 13:30:24,344 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:30:24,344 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:30:24,344 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:30:24,345 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:30:24,345 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:30:24,345 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:30:24,346 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:30:24,346 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:30:24,346 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:30:24,347 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:30:24,347 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:30:24,348 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:30:24,348 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:30:24,348 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:30:24,349 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:30:24,349 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:30:24,349 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:30:24,350 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:30:24,350 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:30:24,350 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:30:24,351 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:30:24,351 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:30:24,351 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:30:24,352 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:30:24,352 ib_insync.client DEBUG <<< 74,1,2
2018-08-17 13:30:24,353 ib_insync.ib INFO Synchronization complete
2018-08-17 13:30:24,353 asyncio WARNING Executing <TimerHandle when=8899.799264721 Watchdog.start() created at /Users/BK/.tmp/store/ib_insync/ibcontroller.py:421> took 40.167 seconds
2018-08-17 13:30:24,353 ib_insync.Watchdog INFO Starting
2018-08-17 13:30:44,357 asyncio INFO poll 19998.465 ms took 20003.527 ms: timeout
2018-08-17 13:30:44,357 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:30:44,357 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:30:44,358 ib_insync.connection DEBUG >>> 20,6,3,0,EUR,CASH,,0.0,,,IDEALPRO,,USD,,,0,,5 secs,30 S,0,MIDPOINT,1,,
2018-08-17 13:30:46,576 asyncio INFO poll 3999.865 ms took 2217.785 ms: 1 events
2018-08-17 13:30:46,576 ib_insync.client DEBUG <<< 4,2,-1,2106,HMDS data farm connection is OK:cashhmds
2018-08-17 13:30:46,576 ib_insync.wrapper INFO Warning 2106, reqId -1: HMDS data farm connection is OK:cashhmds
2018-08-17 13:30:46,796 asyncio DEBUG poll 1781.488 ms took 219.992 ms: 1 events
2018-08-17 13:30:46,797 ib_insync.client DEBUG <<< 17,3,3,20180817  13:30:13,20180817  13:30:43,7,20180817  13:30:10,1.138495,1.13852,1.13848,1.13852,-1,-1.00000,false,-1,20180817  13:30:15,1.13852,1.13852,1.13848,1.13852,-1,-1.00000,false,-1,20180817  13:30:20,1.13852,1.13852,1.138475,1.138485,-1,-1.00000,false,-1,20180817  13:30:25,1.138485,1.138485,1.13843,1.13843,-1,-1.00000,false,-1,20180817  13:30:30,1.13843,1.13843,1.138335,1.138345,-1,-1.00000,false,-1,20180817  13:30:35,1.138345,1.13838,1.13833,1.13838,-1,-1.00000,false,-1,20180817  13:30:40,1.13838,1.138435,1.13838,1.138385,-1,-1.00000,false,-1
2018-08-17 13:31:04,357 asyncio INFO poll 17554.117 ms took 17559.160 ms: timeout
2018-08-17 13:31:04,358 ib_insync.client INFO Connecting to 127.0.0.1:4002 with clientId 30...
2018-08-17 13:31:04,360 asyncio DEBUG connect <socket.socket fd=9, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('0.0.0.0', 0)> to ('127.0.0.1', 4002)
2018-08-17 13:31:04,361 asyncio DEBUG poll 1998.743 ms took 0.010 ms: 1 events
2018-08-17 13:31:04,362 asyncio DEBUG <socket.socket fd=9, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=6, laddr=('127.0.0.1', 50997), raddr=('127.0.0.1', 4002)> connected to 127.0.0.1:4002: (<_SelectorSocketTransport fd=9 read=polling write=<idle, bufsize=0>>, <ib_insync.client.Socket object at 0x10bdbd518>)
2018-08-17 13:31:04,362 ib_insync.client INFO Connected
2018-08-17 13:31:04,362 ib_insync.connection DEBUG >>> ,,,  v100..142
2018-08-17 13:31:04,365 ib_insync.client INFO API connection ready
2018-08-17 13:31:04,365 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:31:04,365 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:31:04,366 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:31:04,366 ib_insync.wrapper ERROR Error 504, reqId -1: Not connected
2018-08-17 13:31:04,367 asyncio DEBUG poll 2431.131 ms took 0.014 ms: 1 events
2018-08-17 13:31:04,367 ib_insync.client DEBUG <<< 118,20180817 13:31:03 Eastern European Time
2018-08-17 13:31:06,801 asyncio INFO poll 2430.852 ms took 2434.063 ms: timeout
2018-08-17 13:31:11,974 asyncio INFO poll 17565.466 ms took 5173.051 ms: 1 events
2018-08-17 13:31:11,974 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue-S,1000414.53,USD,DU1120207
2018-08-17 13:31:11,975 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.53,USD
2018-08-17 13:31:11,976 asyncio DEBUG poll 12390.861 ms took 0.017 ms: 1 events
2018-08-17 13:31:11,976 ib_insync.client DEBUG <<< 6,2,NetLiquidation-S,1000414.53,USD,DU1120207
2018-08-17 13:31:11,976 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.53,USD
2018-08-17 13:31:11,977 ib_insync.client DEBUG <<< 6,2,TotalCashValue-S,999871.43,USD,DU1120207
2018-08-17 13:31:11,978 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.43,USD
2018-08-17 13:31:11,978 ib_insync.client DEBUG <<< 6,2,EquityWithLoanValue,1000414.53,USD,DU1120207
2018-08-17 13:31:11,979 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.53,USD
2018-08-17 13:31:11,979 ib_insync.client DEBUG <<< 6,2,NetLiquidation,1000414.53,USD,DU1120207
2018-08-17 13:31:11,980 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.53,USD
2018-08-17 13:31:11,980 ib_insync.client DEBUG <<< 6,2,TotalCashValue,999871.43,USD,DU1120207
2018-08-17 13:31:11,980 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.43,USD
2018-08-17 13:31:11,981 ib_insync.client DEBUG <<< 6,2,BuyingPower,4001638.50,USD,DU1120207
2018-08-17 13:31:11,981 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.50,USD
2018-08-17 13:31:11,981 ib_insync.client DEBUG <<< 6,2,RegTEquity-S,1000414.53,USD,DU1120207
2018-08-17 13:31:11,981 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.53,USD
2018-08-17 13:31:11,982 ib_insync.client DEBUG <<< 6,2,RegTEquity,1000414.53,USD,DU1120207
2018-08-17 13:31:11,982 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.53,USD
2018-08-17 13:31:11,982 ib_insync.client DEBUG <<< 6,2,AvailableFunds-S,1000409.62,USD,DU1120207
2018-08-17 13:31:11,983 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.62,USD
2018-08-17 13:31:11,983 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity-S,1000409.62,USD,DU1120207
2018-08-17 13:31:11,983 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:11,984 ib_insync.client DEBUG <<< 6,2,AvailableFunds,1000409.62,USD,DU1120207
2018-08-17 13:31:11,984 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.62,USD
2018-08-17 13:31:11,984 ib_insync.client DEBUG <<< 6,2,ExcessLiquidity,1000409.62,USD,DU1120207
2018-08-17 13:31:11,984 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.62,USD
2018-08-17 13:31:11,985 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds-S,1000409.62,USD,DU1120207
2018-08-17 13:31:11,985 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.62,USD
2018-08-17 13:31:11,985 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity-S,1000409.62,USD,DU1120207
2018-08-17 13:31:11,986 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:11,986 asyncio DEBUG poll 12380.586 ms took 0.014 ms: 1 events
2018-08-17 13:31:11,986 ib_insync.client DEBUG <<< 6,2,LookAheadAvailableFunds,1000409.62,USD,DU1120207
2018-08-17 13:31:11,986 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.62,USD
2018-08-17 13:31:11,987 ib_insync.client DEBUG <<< 6,2,LookAheadExcessLiquidity,1000409.62,USD,DU1120207
2018-08-17 13:31:11,987 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.62,USD
2018-08-17 13:31:11,987 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds-S,1000409.62,USD,DU1120207
2018-08-17 13:31:11,987 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.62,USD
2018-08-17 13:31:11,988 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity-S,1000409.62,USD,DU1120207
2018-08-17 13:31:11,988 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:11,988 ib_insync.client DEBUG <<< 6,2,FullAvailableFunds,1000409.62,USD,DU1120207
2018-08-17 13:31:11,989 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.62,USD
2018-08-17 13:31:11,989 ib_insync.client DEBUG <<< 6,2,FullExcessLiquidity,1000409.62,USD,DU1120207
2018-08-17 13:31:11,989 ib_insync.client DEBUG <<< 8,1,13:31
2018-08-17 13:31:11,989 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.62,USD
2018-08-17 13:31:11,990 ib_insync.client DEBUG <<< 8,1,13:31
2018-08-17 13:31:11,990 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.53,USD
2018-08-17 13:31:11,990 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.53,USD
2018-08-17 13:31:11,991 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.43,USD
2018-08-17 13:31:11,991 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.53,USD
2018-08-17 13:31:11,991 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.53,USD
2018-08-17 13:31:11,992 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.43,USD
2018-08-17 13:31:11,992 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.50,USD
2018-08-17 13:31:11,992 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.53,USD
2018-08-17 13:31:11,993 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.53,USD
2018-08-17 13:31:11,993 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.62,USD
2018-08-17 13:31:11,993 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:11,994 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.62,USD
2018-08-17 13:31:11,994 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.62,USD
2018-08-17 13:31:11,994 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.62,USD
2018-08-17 13:31:11,995 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:11,995 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.62,USD
2018-08-17 13:31:11,995 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.62,USD
2018-08-17 13:31:11,996 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.62,USD
2018-08-17 13:31:11,996 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:11,996 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.62,USD
2018-08-17 13:31:11,997 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.62,USD
2018-08-17 13:31:11,997 ib_insync.client DEBUG <<< 8,1,13:31
2018-08-17 13:31:11,997 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue-S,1000414.53,USD
2018-08-17 13:31:11,997 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation-S,1000414.53,USD
2018-08-17 13:31:11,998 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue-S,999871.43,USD
2018-08-17 13:31:11,998 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,EquityWithLoanValue,1000414.53,USD
2018-08-17 13:31:11,998 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidation,1000414.53,USD
2018-08-17 13:31:11,999 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashValue,999871.43,USD
2018-08-17 13:31:11,999 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,BuyingPower,4001638.50,USD
2018-08-17 13:31:11,999 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity-S,1000414.53,USD
2018-08-17 13:31:12,000 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RegTEquity,1000414.53,USD
2018-08-17 13:31:12,000 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds-S,1000409.62,USD
2018-08-17 13:31:12,000 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:12,001 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AvailableFunds,1000409.62,USD
2018-08-17 13:31:12,001 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExcessLiquidity,1000409.62,USD
2018-08-17 13:31:12,001 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds-S,1000409.62,USD
2018-08-17 13:31:12,002 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:12,002 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadAvailableFunds,1000409.62,USD
2018-08-17 13:31:12,002 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,LookAheadExcessLiquidity,1000409.62,USD
2018-08-17 13:31:12,003 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds-S,1000409.62,USD
2018-08-17 13:31:12,003 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity-S,1000409.62,USD
2018-08-17 13:31:12,003 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullAvailableFunds,1000409.62,USD
2018-08-17 13:31:12,004 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FullExcessLiquidity,1000409.62,USD
2018-08-17 13:31:12,155 asyncio DEBUG poll 12362.449 ms took 151.359 ms: 1 events
2018-08-17 13:31:12,156 ib_insync.client DEBUG <<< 6,2,ExchangeRate,0.7602077,CAD,DU1120207
2018-08-17 13:31:12,156 ib_insync.client DEBUG <<< 8,1,13:31
2018-08-17 13:31:12,156 asyncio DEBUG poll 12210.043 ms took 0.012 ms: 1 events
2018-08-17 13:31:12,157 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,CAD,CAD
2018-08-17 13:31:12,157 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,-258,CAD
2018-08-17 13:31:12,158 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,-258,CAD
2018-08-17 13:31:12,158 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,0,CAD
2018-08-17 13:31:12,158 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,CAD
2018-08-17 13:31:12,159 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,CAD
2018-08-17 13:31:12,159 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,CAD
2018-08-17 13:31:12,159 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,CAD
2018-08-17 13:31:12,160 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,-258,CAD
2018-08-17 13:31:12,160 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,CAD
2018-08-17 13:31:12,160 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,CAD
2018-08-17 13:31:12,161 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,0.7602077,CAD
2018-08-17 13:31:12,161 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,CAD
2018-08-17 13:31:12,161 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,CAD
2018-08-17 13:31:12,162 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,CAD
2018-08-17 13:31:12,162 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,CAD
2018-08-17 13:31:12,162 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,CAD
2018-08-17 13:31:12,163 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,CAD
2018-08-17 13:31:12,163 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,CAD
2018-08-17 13:31:12,163 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,CAD
2018-08-17 13:31:12,164 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,CAD
2018-08-17 13:31:12,164 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,CAD
2018-08-17 13:31:12,164 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,CAD,CAD
2018-08-17 13:31:12,165 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,CAD
2018-08-17 13:31:12,165 ib_insync.client DEBUG <<< 8,1,13:31
2018-08-17 13:31:12,165 asyncio DEBUG poll 12201.372 ms took 0.012 ms: 1 events
2018-08-17 13:31:12,165 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:31:12,166 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:31:12,166 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:31:12,166 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:31:12,167 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:31:12,167 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:31:12,167 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:31:12,168 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:31:12,168 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:31:12,168 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:31:12,169 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:31:12,169 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:31:12,169 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:31:12,170 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:31:12,170 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:31:12,170 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:31:12,171 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:31:12,171 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:31:12,171 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:31:12,172 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:31:12,172 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:31:12,172 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:31:12,173 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:31:12,173 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:31:12,173 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,Currency,BASE,BASE
2018-08-17 13:31:12,174 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CashBalance,999871,BASE
2018-08-17 13:31:12,174 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TotalCashBalance,999871,BASE
2018-08-17 13:31:12,174 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccruedCash,543,BASE
2018-08-17 13:31:12,175 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,StockMarketValue,0,BASE
2018-08-17 13:31:12,175 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,OptionMarketValue,0,BASE
2018-08-17 13:31:12,175 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FutureOptionValue,0,BASE
2018-08-17 13:31:12,176 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FuturesPNL,0,BASE
2018-08-17 13:31:12,176 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetLiquidationByCurrency,1000415,BASE
2018-08-17 13:31:12,176 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,UnrealizedPnL,0,BASE
2018-08-17 13:31:12,177 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealizedPnL,0,BASE
2018-08-17 13:31:12,177 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,ExchangeRate,1.00,BASE
2018-08-17 13:31:12,177 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FundValue,0,BASE
2018-08-17 13:31:12,178 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,NetDividend,0,BASE
2018-08-17 13:31:12,178 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MutualFundValue,0,BASE
2018-08-17 13:31:12,178 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,MoneyMarketFundValue,0,BASE
2018-08-17 13:31:12,179 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,CorporateBondValue,0,BASE
2018-08-17 13:31:12,179 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBondValue,0,BASE
2018-08-17 13:31:12,179 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,TBillValue,0,BASE
2018-08-17 13:31:12,180 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,WarrantValue,0,BASE
2018-08-17 13:31:12,180 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,FxCashBalance,0,BASE
2018-08-17 13:31:12,180 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,AccountOrGroup,DU1120207,BASE
2018-08-17 13:31:12,181 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,RealCurrency,BASE,BASE
2018-08-17 13:31:12,181 ib_insync.client DEBUG <<< 73,1,2,DU1120207,,IssuerOptionValue,0,BASE
2018-08-17 13:31:24,371 asyncio INFO poll 12185.202 ms took 12190.254 ms: timeout
2018-08-17 13:31:32,170 asyncio INFO poll 7793.886 ms took 7798.904 ms: timeout
2018-08-17 13:31:32,170 ib_insync.wrapper DEBUG Timeout
2018-08-17 13:31:32,170 ib_insync.Watchdog DEBUG Soft timeout
2018-08-17 13:31:32,171 ib_insync.wrapper ERROR Error 504, reqId 6: Not connected, contract: Forex('EURUSD', exchange='IDEALPRO')
2018-08-17 13:31:32,171 ib_insync.Watchdog ERROR Hard timeout
2018-08-17 13:31:32,171 ib_insync.Watchdog INFO Stopping
2018-08-17 13:31:32,172 ib_insync.IBC INFO Terminating
2018-08-17 13:31:32,623 asyncio DEBUG poll took 450.519 ms: 1 events
2018-08-17 13:31:32,623 asyncio DEBUG <_SelectorSocketTransport fd=9 read=polling write=<idle, bufsize=0>> received EOF
2018-08-17 13:31:32,624 ib_insync.client INFO Disconnected
2018-08-17 13:31:32,624 ib_insync.Watchdog INFO Stopping
2018-08-17 13:31:32,626 ib_insync.IBC INFO Terminating
2018-08-17 13:31:32,627 asyncio DEBUG <_SelectorSocketTransport fd=8 read=polling write=<idle, bufsize=0>> received EOF
2018-08-17 13:31:32,627 ib_insync.client INFO Disconnected
2018-08-17 13:31:32,628 ib_insync.Watchdog INFO Stopping
2018-08-17 13:31:32,629 ib_insync.IBC INFO Terminating
2018-08-17 13:31:32,629 asyncio INFO <_UnixReadPipeTransport fd=7 polling> was closed by peer
erdewit commented 5 years ago

There was a regression introduced in Watchdog two weeks ago that led to multiple app instances being started up. This has been fixed in v0.9.30.