compare_orderbook
Analyze order book depth and imbalance for a trading pair across multiple exchanges, generating a Markdown table with bid/ask details and exchange comparison.
Instructions
Compare order book depth and imbalance for a trading pair across multiple exchanges, returning a Markdown table.
Args:
symbol: The trading pair (e.g., 'BTC/USDT')
depth_percentage: Percentage range from mid-price to calculate depth and imbalance (default: 1.0%)
exchanges: List of exchange IDs to compare (default: all supported exchanges)
Returns:
String containing a Markdown table with exchanges as rows and bid/ask depths and imbalance as columns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth_percentage | No | ||
exchanges | No | ||
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"depth_percentage": {
"default": 1,
"title": "Depth Percentage",
"type": "number"
},
"exchanges": {
"default": null,
"items": {
"type": "string"
},
"title": "Exchanges",
"type": "array"
},
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "compare_orderbookArguments",
"type": "object"
}