第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

由于日志記錄錯(cuò)誤,無(wú)法連接到 Interactive Brokers Api

由于日志記錄錯(cuò)誤,無(wú)法連接到 Interactive Brokers Api

汪汪一只貓 2023-07-27 16:41:46
所以我正在使用 python 交互式經(jīng)紀(jì)商 api,并且我正在嘗試向交互式經(jīng)紀(jì)商下限價(jià)單。我的代碼是:from ibapi.client import EClientfrom ibapi.wrapper import EWrapperfrom ibapi.contract import Contractfrom ibapi.order import Orderimport threadingimport timeclass TradingApp(EWrapper, EClient, Contract, Order):    def __init__(self):        EClient.__init__(self, self)     def nextValidOrderId(self, orderId):        super().nextValidId(orderId)        self.nextValidOrderId = orderId        print("NextValidId:", orderId)def websocket_con():    app.run()            app = TradingApp()app.connect("127.0.0.1", 7497, clientId=1)con_thread = threading.Thread(target=websocket_con, daemon=True)con_thread.start()time.sleep(1)contract=Contract()contract.symbol = 'AMD'contract.secType = 'STK'contract.currency = 'USD'contract.exchange = 'SMART'order=Order()order.action = 'BUY'order.orderType = 'LMT'order.totalQuantity = 1order.lmtPrice = 10app.placeOrder(app.nextValidOrderId,contract,order)time.sleep(5) 我已確保選中“啟用活動(dòng)和套接字客戶端”并且信任 IP 地址為 127.0.0.1 為什么我會(huì)收到此日志記錄錯(cuò)誤?
查看完整描述

1 回答

?
GCT1015

TA貢獻(xiàn)1827條經(jīng)驗(yàn) 獲得超4個(gè)贊

我想class TradingApp(EWrapper, EClient):這就是你想做的。我認(rèn)為沒有理由擴(kuò)展 Contract 和 Order 類。

您更改了方法的名稱,它必須與超類相同。不要重復(fù)使用方法名稱作為變量名稱。

#def nextValidOrderId(self, orderId):
def nextValidId(self, orderId):
    self.nextValidOrderId = orderId


查看完整回答
反對(duì) 回復(fù) 2023-07-27
  • 1 回答
  • 0 關(guān)注
  • 172 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)