Skip to main content

New Order Single

To submit a new order, the client needs to send a NewOrderSingle message. All orders are submitted from the client’s perspective to Kraken exchange to place bid/offer on the Kraken Order book. A range of order types, Time-In-Force (TIF) and order flags can be specified by the parameters below.

The supported order types are:

  • market: The full order quantity executes immediately at the best available price in the order book.
  • limit: The full order quantity is placed immediately with a limit price restriction to only trade at this price or better.
  • stop-loss: A market order is triggered when the reference price reaches the stop price (from an unfavourable direction).
  • stop-loss-limit: A limit order is triggered when the reference price reaches the stop price (from an unfavourable direction).
  • take-profit: A market order is triggered when the reference price reaches the stop price (from an favourable direction).
  • take-profit-limit: A limit order is triggered when the reference price reaches the stop price (from an favourable direction).

MESSAGE BODY

header required
MsgType D
11 - ClOrdID integer required
Format: int32
Unique identifier of the order. The Clordid needs to be Int32.
40 - OrderType char required
The execution model of the order.
    Possible values:
  • 1 : market
  • 2 : Limit
  • 3 : Stop-loss
  • 4 : Stop-loss-limit
  • R : Take-profit
  • T : Take-profit-limit
  • U : Trailing-stop
  • V : Trailing-stop-limit
44 - Price float conditional
Condition: OrderType=Limit/Stop-Loss-Limit/Take-Profit-Limit/Trailing-stop-limit
Limit Price of the order to be placed in the Order Book. This field is denominated in Quote Currency.
38 - OrderQty float required
Order quantity in terms of the base asset.
1138 - DisplayQty float
Iceberg qty. This will indicate the Qty to show on the book. Only possible on Limit order. The Minimum value is 1 / 15 of order_qty.
54 - Side integer required
Side of the order.
    Possible values:
  • 1 : Buy
  • 2 : Sell
55 - Symbol string required
Pair in the format BASE/QUOTE.
59 - TimeInForce string required
Time-in-force specifies how long an order remains in effect before being expired.
    Possible values:
  • 1 : GTC (Good till canceled)
  • 3 : IOC (Immediate or Cancel)
  • 6 : GTD (Good till date)
60 - TransactTime string required
Format: YYYYMMDD-HH:MM:SS.uuu
Time of order creation expressed in UTC.
126 - ExpireTime string conditional
Condition: TimeinForce=GTD
Format: YYYYMMDD-HH:MM:SS
Expiration of the Order if not fully filled before it. Expressed in UTC. GTD orders can have an expiry time up to one month in future.
168 - EffectiveTime string
Scheduled start time on the order expressed in UTC. the order won't be visible on the book and won't match before that time.
18 - ExecInst char
If more than one instruction is applicable to an order, this field may contain multiple instructions separated by space.
    Possible values:
  • E : Reduce-Only - Reduces an existing margin position without opening an opposite long or short position worth more than the current value of your leveraged assets.
  • P : Post-Only - Cancels the order if it will take liquidity on arrival. Post only orders will always be posted passively in the book.
  • v : viqc - Orderqty (tag 38) expressed in quote currency.
  • n : nompp - Disables Market Price Protection (MPP). This feature protects market orders from filling at a bad price due to price slippage in an illiquid or volatile market. See MPP support article.
  • f : fee in base currency - base is the default for sell orders.
  • q : fee in quote currency - quote is the default for buy orders.
99 - StopPx float conditional
Condition: OrderType=Stop-Loss/Take-Profit/Stop-Loss-Limit/Trailing-stop/Trailing-stop-limit
Defines the trigger price of the order. This field is denominated in Quote Currency.
388 - DiscretionInst integer
The reference price to track for triggering orders.
    Possible values:
  • 1 :Related to index price
  • 5 :Related to last trade price
  • Default value: 5
5001 - Leverage boolean
Use margin account for the order funding.
7928 - SelfTradePrevention integer
Self Trade Prevention (STP) is a protection feature to prevent users from inadvertently or deliberately trading against themselves. To prevent a self-match, one of the following STP modes can be used to define which order(s) will be expired.
    Possible values:
  • 0 : Cancel both - both arriving and resting orders will be canceled.
  • 1 : Cancel Newest - arriving order will be canceled.
  • 2 : Cancel Oldest - resting order will be canceled.
  • Default value: 1
62 - ValidUntilTime string
Format: YYYYDD-HH:MM:SS.uuu
The engine will reject any order entered into the matching engine after this time. This provides extra protection against latency on time sensitive orders. The timestamp should be at least 2 seconds and at most 60 seconds in the future.
trailer required
Order Validation

Kraken will validate each order it receives by checking that the user sent all the required FIX fields for the order.

  • FIX field level validation will result in session level reject.
  • Business rule validation failures will result in rejection in the form of an [business level reject]reject-business_level-fix)
  • Once the order is accepted and Acked, any further Business rule validations that will result in an execution report with an unsolicited cancel status.