get_orderbook
Retrieve real-time order book depth data for specified trading pairs from Binance to analyze market liquidity and price levels.
Instructions
获取订单簿深度数据
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | 深度限制,默认100 | |
symbol | Yes | 交易对符号,如 BTCUSDT |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 100,
"description": "深度限制,默认100",
"type": "number"
},
"symbol": {
"description": "交易对符号,如 BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}