我已经安装了TWS并检查了API配置的特定项目。
我还通过使用pip安装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,并且我有一个带有用户名和密码的免费试用帐户。这会影响连接吗?
代码的输出为"假">
def watcher(msg):
print(msg)
conn = ibConnection(port=7497, clientId=123)
conn.registerAll(watcher)
conn.connect()