0

这是我的代码:

class TestApp(EWrapper, EClient):

    def __init__(self):
        EClient.__init__(self, self)
        self.nextOrderID = 0  # if this is init code put it in init

    def Error(self, reqID, errorCode, errorString):
        print('Error :', reqID, '', errorCode, '', errorString)

    def contractDetails(self, reqID, contractDetails):
        print('Contract Details :', reqID, '', contractDetails)

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

    def orderStatus(self, orderId, status, filled, remaining, avgFillPrice, permId, parentId, lastFillPrice, clientId,
                    whyHeld, mktCapPrice):
        print('Orderstatus Id. ', orderId, 'Status: ', status, 'Filled: ', 'Remaining: ', remaining,
              'Last Fill Price: ', lastFillPrice)
        if remaining == 0.0:
            self.stop()


    def execDetails(self, reqId, contract, execution):
        print('Exec Details. ', reqId, contract.symbol, contract.secType, contract.currency, execution.execId,
              execution.orderId, execution.shares, execution.lastLiquidity)

    def accountSummary(self, reqId, account, tag, value, currency):
        self.reqAccountSummary(reqId,account, tag, value )
        print('Account Summary. ', reqId, account, tag, value, currency)

    def start(self):
        contract = Contract()
        contract.symbol = 'NFLX'
        contract.secType = 'STK'
        contract.exchange = 'SMART'
        contract.currency = 'USD'

        order = Order()
        order.action = 'BUY'
        order.totalQuantity = 1
        order.orderType = 'MKT'
        #order.lmtPrice = 523.5

        self.placeOrder(self.nextOrderID, contract, order)
        self.nextOrderID += 1  # always increment after use

    def stop(self):
        if self.isConnected():
            print("disconnecting")
            self.disconnect()


def main():
    app = TestApp()
    app.connect('127.0.0.1', 7497, 0)
    
    app.run()
main()

唯一打印的是 orderStatus 函数。我从 IBKR github 页面复制了账户摘要的确切代码。我究竟做错了什么?我什至尝试更改 orderStatus 的位置,但没有任何区别。

4

1 回答 1

1

在你的 start 方法中添加这一行

self.reqAccountSummary(9002, "All", "$LEDGER")
于 2021-01-07T16:11:15.873 回答