This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from queue import Queue | |
from threading import Thread, Event | |
from ibapi.client import EClient | |
from ibapi.wrapper import EWrapper | |
from ibapi.contract import Contract | |
class App: | |
def __init__(self, host='127.0.0.1', port=7497, clientId=1): |