1
from ibapi.client import EClient
from ibapi.wrapper import EWrapper
from ibapi.contract import Contract
from threading import Timer

class TestApp(EWrapper, EClient):
    def __init__(self):
        EClient.__init__(self, self)

    def error(self, reqId, errorCode, errorString):
        print("Error: ", reqId, " ", errorCode, " ", errorString)

    def nextValidId(self, orderId):
        self.start()

    def historicalData(self, reqId, bar):
        # print("HistoricalData. ", reqId, " Date:", ...., bar.average)
        return bar.high


    def start(self):
        contract = Contract()
        contract.symbol = "TSLA"
        contract.secType = "STK"
        contract.exchange = "SMART"
        contract.currency = "USD"
       x = self.reqHistoricalData(1, contract, "", "60 s", "1 min", "MIDPOINT", 0, 1, False, [])
        print(x)


    def stop(self):
        self.done = True
        self.disconnect()
def main():
    app = TestApp()
    app.nextOrderId = 0
    app.connect("127.0.0.1", 7497, 0)

    Timer(4, app.stop).start()
    app.run()


if __name__ == "__main__":
    main()

在这种情况下,我如何能够返回 bar.high,而不是打印 HistoricalData?
它现在没有给我任何东西。
任何帮助表示赞赏。
我错过了什么?

非常感谢。

4

1 回答 1

0

您已经添加了一个返回值,historicalData并且希望通过reqHistoricalData. 但它们是完全不同的功能。除非您愿意重写 API 的类,否则您不能historicalData像普通函数一样调用。所以你不能访问它的返回值。

在我的代码中,我使用回调函数historicalData来设置包含类的成员变量。然后,在主线程中等待几秒钟后,我访问变量以获取历史数据。

于 2020-02-25T14:19:53.123 回答