Name | Type | Description | Notes |
---|---|---|---|
type | string | Order type,default to `limit` - limit : Limit Order - market : Market Order | [optional] [default to 'limit'] |
side | string | Order side - buy: buy side - sell: sell side | [default to undefined] |
price | string | Order price | [default to undefined] |
amount | string | When `type` is limit, it refers to base currency. For instance, `BTC_USDT` means `BTC` When `type` is `market`, it refers to different currency according to `side` - `side` : `buy` means quote currency, `BTC_USDT` means `USDT` - `side` : `sell` means base currency,`BTC_USDT` means `BTC` | [default to undefined] |
account | string | Trading account type. Portfolio margin account must set to `cross_margin` - normal: spot trading - margin: margin trading - cross_margin: cross_margin trading | [default to 'normal'] |
timeInForce | string | time_in_force - gtc: GoodTillCancelled - ioc: ImmediateOrCancelled, taker only | [optional] [default to 'gtc'] |
-
Limit
(value:'limit'
) -
Market
(value:'market'
)
-
Buy
(value:'buy'
) -
Sell
(value:'sell'
)
-
Normal
(value:'normal'
) -
Margin
(value:'margin'
) -
CrossMargin
(value:'cross_margin'
)
-
Gtc
(value:'gtc'
) -
Ioc
(value:'ioc'
)