0

我已经安装了 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,并且我有一个带有用户名和密码的免费试用帐户。这会影响连接吗?

代码的输出是“假”

4

1 回答 1

-1
def watcher(msg):
    print(msg) 

conn = ibConnection(port=7497, clientId=123)
conn.registerAll(watcher)
conn.connect()
于 2018-03-19T22:01:48.853 回答