πCreate limit order
Create limit order
POST https://api.staging.dexilon.io/api/v1/orders/limit
Weight: 1
Request Body
Name
Type
Description
clientOrderId
UUID
Client ID of order.
symbol*
String
Symbol name
side*
Enum
Side of order: BUY, SELL
price*
Decimal
size*
Decimal
{
"symbol" : "btc_usdt",
"amount" : 0.1,
"side" : "BUY",
"orderId" : 439592051,
"price" : 23551.7,
"clientOrderId" : "1dc17102-2a57-424a-952b-44c18b849f21",
"averageExecutionPrice" : 23551.6,
"filled" : 0.04,
"type" : "LIMIT",
"status" : "PARTIALLY_EXECUTED",
"updatedAt" : 1670240315627
}Last updated