--
orders=get_orders (order_book_id=code, type=1) #取该品种订单数据
if not(orders is None):#无订单
for order in orders:
#开仓订单管理###########################################################################################
if order.order_id in context.order_open[code]:
if order.status in [\'submitted\',\'tradeing\']: #
ss=(context.now-order.datetime).seconds
if (ss>=56): #1 分钟不成交开仓撤单
print((\'查询订单:\',\'id\',order.order_id,\'status:\',order.status,\'quantity:\',order.quantity,\'filled_quantity\',order.filled_quantity))
if order.quantity> order.filled_quantity:
if cancel_order (order.order_id) is None:
myprint((\' 订单管理 1m时间开仓未成交,开仓订单取消,但取消订单失败\',order.order_id))
else:
myprint((\' 订单管理 1m时间开仓未成交,订单取消\',order.order_id))
#平仓订单管理###########################################################################