create_order
Place cryptocurrency trading orders including limit, take profit, and stop loss orders to execute trading strategies on supported blockchain networks.
Instructions
Create a order. Can be a limit, take profit or stop loss order.
Expects a CreateOrderRequestContainer, returns a CreateOrderResponseContainer.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_order_requests | Yes |
Input Schema (JSON Schema)
{
"properties": {
"create_order_requests": {
"$ref": "#/$defs/CreateOrderRequestContainer"
}
},
"required": [
"create_order_requests"
],
"type": "object"
}