Move Order

This section documents the move_order action

This action is used to move a resting order to a new price


Example Request

This example cancels all resting orders on BTC

{
  "action": "move_order",
  "coin": "BTC",
  "price": "110000",
  "order_id": 12345,
  "bot_id": BOT_ID,
  "api_key": "API_KEY"
}

coin*

This required parameter indicates which coin to use for the action.

"coin": "BTC"

price*

This required parameter indicates the new price to move the order.

"price": "110000"

order_id

This parameter indicates the resting order id to move.

"order_id": 123345

delay

This parameter indicates a number of seconds to wait before triggering the action

  • A value of 5 is equal to a 5 seconds delay

  • Max. allowed delay is 10 seconds

"delay": 5

Last updated

Was this helpful?