createOrder
Submit buy or sell orders on cryptocurrency exchanges by specifying account, symbol, type (market/limit), side (buy/sell), and amount. Supports additional exchange-specific parameters.
Instructions
Create a new order using a configured account
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| accountName | Yes | Account name defined in the configuration file (e.g., 'bybit_main') | |
| amount | Yes | Amount of base currency to trade | |
| params | No | Additional exchange-specific parameters | |
| price | No | Price per unit (required for limit orders) | |
| side | Yes | Order side: 'buy' or 'sell' | |
| symbol | Yes | Trading symbol (e.g., 'BTC/USDT') | |
| type | Yes | Order type: 'market' or 'limit' |