Skip to content

Latest commit

 

History

History
92 lines (58 loc) · 6.13 KB

BatchFuturesOrder.md

File metadata and controls

92 lines (58 loc) · 6.13 KB

BatchFuturesOrder

Properties

Name Type Description Notes
succeeded boolean Whether the batch of orders succeeded [optional] [default to undefined]
label string Error label, only exists if execution fails [optional] [default to undefined]
detail string Error detail, only present if execution failed and details need to be given [optional] [default to undefined]
id number Futures order ID [optional] [readonly] [default to undefined]
user number User ID [optional] [readonly] [default to undefined]
createTime number Creation time of order [optional] [readonly] [default to undefined]
finishTime number Order finished time. Not returned if order is open [optional] [readonly] [default to undefined]
finishAs string How the order was finished. - filled: all filled - cancelled: manually cancelled - liquidated: cancelled because of liquidation - ioc: time in force is `IOC`, finish immediately - auto_deleveraged: finished by ADL - reduce_only: cancelled because of increasing position while `reduce-only` set- position_closed: cancelled because of position close - stp: cancelled because self trade prevention [optional] [readonly] [default to undefined]
status string Order status - `open`: waiting to be traded - `finished`: finished [optional] [readonly] [default to undefined]
contract string Futures contract [optional] [default to undefined]
size number Order size. Specify positive number to make a bid, and negative number to ask [optional] [default to undefined]
iceberg number Display size for iceberg order. 0 for non-iceberg. Note that you will have to pay the taker fee for the hidden size [optional] [default to undefined]
price string Order price. 0 for market order with `tif` set as `ioc` [optional] [default to undefined]
close boolean Set as `true` to close the position, with `size` set to 0 [optional] [default to undefined]
isClose boolean Is the order to close position [optional] [readonly] [default to undefined]
reduceOnly boolean Set as `true` to be reduce-only order [optional] [default to undefined]
isReduceOnly boolean Is the order reduce-only [optional] [readonly] [default to undefined]
isLiq boolean Is the order for liquidation [optional] [readonly] [default to undefined]
tif string Time in force - gtc: GoodTillCancelled - ioc: ImmediateOrCancelled, taker only - poc: PendingOrCancelled, makes a post-only order that always enjoys a maker fee - fok: FillOrKill, fill either completely or none [optional] [default to 'gtc']
left number Size left to be traded [optional] [readonly] [default to undefined]
fillPrice string Fill price of the order [optional] [readonly] [default to undefined]
text string User defined information. If not empty, must follow the rules below: 1. prefixed with `t-` 2. no longer than 28 bytes without `t-` prefix 3. can only include 0-9, A-Z, a-z, underscore(_), hyphen(-) or dot(.) Besides user defined information, reserved contents are listed below, denoting how the order is created: - web: from web - api: from API - app: from mobile phones - auto_deleveraging: from ADL - liquidation: from liquidation - insurance: from insurance [optional] [default to undefined]
tkfr string Taker fee [optional] [readonly] [default to undefined]
mkfr string Maker fee [optional] [readonly] [default to undefined]
refu number Reference user ID [optional] [readonly] [default to undefined]
autoSize string Set side to close dual-mode position. `close_long` closes the long side; while `close_short` the short one. Note `size` also needs to be set to 0 [optional] [default to undefined]
stpAct string Self-Trading Prevention Action. Users can use this field to set self-trade prevetion strategies 1. After users join the `STP Group`, he can pass `stp_act` to limit the user's self-trade prevetion strategy. If `stp_act` is not passed, the default is `cn` strategy。 2. When the user does not join the `STP group`, an error will be returned when passing the `stp_act` parameter。 3. If the user did not use 'stp_act' when placing the order, 'stp_act' will return '-' - cn: Cancel newest, Cancel new orders and keep old ones - co: Cancel oldest, Cancel old orders and keep new ones - cb: Cancel both, Both old and new orders will be cancelled [optional] [default to undefined]
stpId number Orders between users in the same `stp_id` group are not allowed to be self-traded 1. If the `stp_id` of two orders being matched is non-zero and equal, they will not be executed. Instead, the corresponding strategy will be executed based on the `stp_act` of the taker. 2. `stp_id` returns `0` by default for orders that have not been set for `STP group` [optional] [readonly] [default to undefined]

Enum: BatchFuturesOrder.FinishAs

  • Filled (value: 'filled')

  • Cancelled (value: 'cancelled')

  • Liquidated (value: 'liquidated')

  • Ioc (value: 'ioc')

  • AutoDeleveraged (value: 'auto_deleveraged')

  • ReduceOnly (value: 'reduce_only')

  • PositionClosed (value: 'position_closed')

  • ReduceOut (value: 'reduce_out')

  • Stp (value: 'stp')

Enum: BatchFuturesOrder.Status

  • Open (value: 'open')

  • Finished (value: 'finished')

Enum: BatchFuturesOrder.Tif

  • Gtc (value: 'gtc')

  • Ioc (value: 'ioc')

  • Poc (value: 'poc')

  • Fok (value: 'fok')

Enum: BatchFuturesOrder.AutoSize

  • Long (value: 'close_long')

  • Short (value: 'close_short')

Enum: BatchFuturesOrder.StpAct

  • Co (value: 'co')

  • Cn (value: 'cn')

  • Cb (value: 'cb')

  • Minus (value: '-')