3.92K 浏览
0

api = TqApi(TqAccount(“simnow”, “160xxx”, “paswrd”))

order = api.insert_order(symbol=symbol, direction=direction, offset=”OPEN”, volume=volume)
api.wait_update()
#由于没有打印,不知道是否下单成功。

time.sleep(300)
if direction == ‘BUY’:
….direction = ‘SELL’
else:
….direction = ‘BUY’
order = api.insert_order(symbol=symbol, direction=direction, offset=”CLOSE”, volume=volume)
api.wait_update()

if api.is_changing(order, [“status”, “volume_orign”, “volume_left”]):
….print(“单状态: %s, 已成交: %d 手” % (order.status, order.volume_orign – order.volume_left))
#这里有打印,但也没有输出信息。
—————————————————————————————————-
程序运行结束后,没有返回收益信息。登录快期软件,点击右上角的资金,没有看见交易信息。

west 已回答的问题 2020年3月12日
0

不能用time.sleep(300)的。见论坛右侧热帖https://www.shinnytech.com/question/7973/

west 已回答的问题 2020年3月12日