我尝试制作一个简单的 Python 程序,通过 IB 原生 API 连接到我的模拟账户。但是当我运行程序时出现错误:IB AttributeError: 'IBapi' object has no attribute 'connState'
该程序如下所示:
from ibapi.wrapper import EWrapper
class IBapi(EWrapper, EClient):
def init(self):
EClient.init(self, self)
app = IBapi()
app.connect('127.0.0.1', 7497, 123)
app.run()
我使用了这个网站上的教程:https ://algotrading101.com/learn/interactive-brokers-python-api-native-guide/
感谢您的帮助!