getOrderBook
Retrieve real-time order book data for a specified trading pair, including market depth, to analyze liquidity and price levels on Bitget cryptocurrency exchange.
Instructions
Get order book (market depth) for a trading pair
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | Order book depth (default: 20) | |
symbol | Yes | Trading pair symbol |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"description": "Order book depth (default: 20)",
"type": "number"
},
"symbol": {
"description": "Trading pair symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}