我已经安装了TWS并检查了API配置的具体项目。
我还使用pip install IbPy2安装了IbPy
我认为一切都是对的。但是,当我尝试连接TWS时出错。
这是我的代码:
from ib.opt import ibConnection, message
from ib.ext.Contract import Contract
from ib.ext.Order import Order
conn = ibConnection()
conn.connect()
我使用的是最新版本的TWS,我有一个带有用户名和密码的免费试用帐户。这会影响连接吗?
代码输出为“False”
答案 0 :(得分:-1)
def watcher(msg):
print(msg)
conn = ibConnection(port=7497, clientId=123)
conn.registerAll(watcher)
conn.connect()