CREATE_ORDER
Execute custom trading orders on the Upbit cryptocurrency exchange by specifying market, side, order type, volume, and price. Requires a private API for secure trading operations.
Instructions
Create an Upbit order (requires private API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
market | Yes | ||
ord_type | Yes | ||
price | No | ||
side | Yes | ||
volume | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"market": {
"type": "string"
},
"ord_type": {
"enum": [
"limit",
"price",
"market"
],
"type": "string"
},
"price": {
"type": "string"
},
"side": {
"enum": [
"bid",
"ask"
],
"type": "string"
},
"volume": {
"type": "string"
}
},
"required": [
"market",
"side",
"ord_type"
],
"type": "object"
}