我试图从 HistoricalData 回调中获取价格以用于我算法的其他部分。这是我的代码:
def historicalData(self, reqId, bar):
print("HISTORICAL DATA REQUEST: {}, reqId: {}".format(contract.symbol, reqId))
print("****************************************************")
print("Date:", bar.date, "Open:", bar.open, "High:", bar.high, "Low:", bar.low,
"Close:", bar.close, "Volume:", bar.volume, "Count:", bar.barCount, "WAP:", bar.average, "\n")
self.close = bar.close
app = IBapi()
app.connect('127.0.0.1', 7497, 123)
api_thread = threading.Thread(target=run_loop, daemon=True)
api_thread.start()
app.reqHistoricalData(1, con, "", "1 D", "1 day", "MIDPOINT", 1, 1, False, [])
print(app.close)
我希望价格作为一个变量,我可以使用它来为我的主订单设置子限价/止损订单等。
它可以很好地作为历史数据请求输出。
Date: 20210507 Open: 0.868075 High: 0.87009 Low: 0.86654 Close: 0.86875 Volume:
-1 Count: -1 WAP: -1.0
但是当我尝试打印变量本身时,不行。
AttributeError: 'IBapi' object has no attribute 'close'
有人可以告诉我如何获取这个值并在我的其余代码中使用它吗?这个过程适用于其他事情,比如我是否想要我的账户中的资金或我的订单 ID,但不是这个。
谢谢