add limit maker order type

This commit is contained in:
c9s 2021-03-21 10:57:28 +08:00
parent 4e3f325bb6
commit 6b877e1394

View File

@ -58,6 +58,7 @@ type OrderType string
const (
OrderTypeLimit OrderType = "LIMIT"
OrderTypeLimitMaker OrderType = "LIMIT_MAKER"
OrderTypeMarket OrderType = "MARKET"
OrderTypeStopLimit OrderType = "STOP_LIMIT"
OrderTypeStopMarket OrderType = "STOP_MARKET"