我在 CTA 的使用文档中看到下单的说明如下:
buy:买入开仓(Direction:LONG,Offset:OPEN)
sell:卖出平仓(Direction:SHORT,Offset:CLOSE)
short:卖出开仓(Direction:SHORT,Offset:OPEN)
cover:买入平仓(Direction:LONG,Offset:CLOSE)
入参:price: float, volume: float, stop: bool = False, lock: bool = False, net: bool = False
我在 ScriptTrader 说明文档中看到的对应内容如下:
buy:买入开仓(Direction:LONG,Offset:OPEN)
sell:卖出平仓(Direction:SHORT,Offset:CLOSE)
short:卖出开仓(Direction:SHORT,Offset:OPEN)
cover:买入平仓(Direction:LONG,Offset:CLOSE)
入参:vt_symbol: str, price: float, volume: float, order_type: OrderType = OrderType.LIMIT
两者的入参不一样。 在ScriptTrader中可以选择 OrderType, 但在CTA中并没有提及 FAK, FOK等委托类型。
请问怎么在 CTA 模块中选择 FOK, FAK委托?