出现了这样的问题: 我研究TWS API(交互式经纪人),了解方法,类等。 我已经注册了用于下订单的逻辑控制单元,在这个阶段我还不明白-如何在不同的终端价格条件下在终端中下订单?可能通过多线程解决了这个问题,但是,我无法完全理解如何实现此问题。我求你帮忙。下面是在main()块中从终端获取数据的代码-下订单的代码。我不明白如何附加订单-触发条件。 预先感谢您的帮助和信息。
from ibapi.client import EClient
from ibapi.wrapper import EWrapper
from ibapi.contract import Contract
from ibapi.order import *
class TestApp(EWrapper,EClient):
def __init__(self):
EClient.__init__(self,self)
def error(self,reqId,errorCode,errorString):
print("Error: ",reqId," ",errorCode," ",errorString)
def updateMktDepth(self, reqId, position: int, operation: int,side: int, price: float, size: int):
print(price)
def main():
app = TestApp()
app.connect("127.0.0.1", 7497, 0)
es = Contract()
es.localSymbol = "ESZ9"
es.symbol = "ES"
es.secType = "FUT"
es.exchange = "GLOBEX"
es.currency = "USD"
app.reqMarketDataType(4)
app.reqMktDepth(1, es, 2, False, [])
app.reqPositions()
app.reqAllOpenOrders()
# QUESTION - how to place order, using any conditions with price? (for example: if price > 3000)
order = Order()
order.account = "DU1656058"
order.action = "SELL"
order.totalQuantity = 1
order.orderType = "LMT"
order.lmtPrice = 3055
app.placeOrder(11000, es, order)
app.run()
app.disconnect()
if __name__ == "__main__":
main()
答案 0 :(得分:1)
TWS API可以设置订单提交条件,例如价格条件和数量条件。官方文档为here。例如,如果一个Order
有一个TimeCondition
,它将仅在特定时间之前或之后提交。
Algorithmic Trading with Interactive Brokers书提供了演示如何设置订单条件的代码。