【发布时间】:2017-11-14 05:54:43
【问题描述】:
我在使用修改后的 IB 示例代码为每个股票订单使用和递增“orderId”时遇到问题。我有一个在类中生成 nextValidId 并将其打印到标准输出的方法,但我不确定如何访问在我的 main() 程序主体中创建的已定义属性 (self.nextValidOrderId)。我能够实例化 EWrapper 和 EClient 类并下订单(如果我手动输入 orderId)。在示例代码中,我将其硬编码为 126。我认为我可以在我的 main() 程序主体中使用以下内容。 “orderId = app.nextValidOrderId”但它不起作用。
`__author__ = 'noone'
from Testbed.OrderSamples import OrderSamples
from ibapi.client import EClient
from ibapi.wrapper import EWrapper
from ibapi.common import *
from ibapi.contract import *
class OrderApp(EWrapper, EClient):
def __init__(self):
EClient.__init__(self,self)
def error(self,reqId:TickerId, errorCode:int, errorString:str):
print("Error:",reqId," ", errorCode, " ", errorString)
# This is the initial response after connection to TS from the API providing next available OrderID
@iswrapper
def nextValidId(self, orderId: int):
super().nextValidId(orderId)
print("setting nextValidOrderId: %d", orderId)
self.nextValidOrderId = orderId
def contractDetails(self, reqId:int, contractDetails:ContractDetails):
print("contractDetails: ", reqId, " ", contractDetails)
def main():
app=OrderApp()
app.connect("127.0.0.1",7497,0)
## Build the contract object to be passed to the order Method
stock_contract = Contract()
stock_contract.symbol = 'AAPL'
stock_contract.secType = 'STK'
stock_contract.exchange = 'SMART'
stock_contract.currency = 'USD'
stock_contract.primaryExchange = 'NASDAQ'
# reqID must be provided to the Order. This method gets the reqID from IB DB's
app.reqContractDetails(10, stock_contract)
try:
# Now place the order in Paper Money Account
app.placeOrder(126, stock_contract, OrderSamples.LimitOrder("BUY", 50, 12))
except:
raise
app.run()
if __name__ == "__main__":
main()`
【问题讨论】:
标签: python class superclass