无法从IBKR检索帐户摘要详细信息



这是我的代码:

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的位置,但没有任何区别。

在启动方法中添加此行

self.reqAccountSummary(9002, "All", "$LEDGER")

相关内容

  • 没有找到相关文章

最新更新