feature: add ioc order type support to max exchange

This commit is contained in:
David Chang 2021-04-11 12:29:23 +08:00
parent 2ec4617694
commit c9198d498e

View File

@ -36,6 +36,7 @@ const (
OrderTypePostOnly = OrderType("post_only") OrderTypePostOnly = OrderType("post_only")
OrderTypeStopLimit = OrderType("stop_limit") OrderTypeStopLimit = OrderType("stop_limit")
OrderTypeStopMarket = OrderType("stop_market") OrderTypeStopMarket = OrderType("stop_market")
OrderTypeIOCLimit = OrderType("ioc_limit")
) )
type QueryOrderOptions struct { type QueryOrderOptions struct {