place_order
Execute buy or sell orders on Binance exchange using market or limit order types with specified trading pairs and quantities.
Instructions
下单交易 - 支持主网和测试网(主网将使用真实资金)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| price | No | 价格,LIMIT订单必需 | |
| quantity | Yes | 数量 | |
| side | Yes | 买卖方向 | |
| symbol | Yes | 交易对符号,如 BTCUSDT | |
| type | Yes | 订单类型 |
Input Schema (JSON Schema)
{
"properties": {
"price": {
"description": "价格,LIMIT订单必需",
"type": "string"
},
"quantity": {
"description": "数量",
"type": "string"
},
"side": {
"description": "买卖方向",
"enum": [
"BUY",
"SELL"
],
"type": "string"
},
"symbol": {
"description": "交易对符号,如 BTCUSDT",
"type": "string"
},
"type": {
"description": "订单类型",
"enum": [
"MARKET",
"LIMIT"
],
"type": "string"
}
},
"required": [
"symbol",
"side",
"type",
"quantity"
],
"type": "object"
}