get_l2_book
Retrieve Level 2 order book data for cryptocurrency trading pairs on Hyperliquid DEX to analyze market depth and liquidity for informed trading decisions.
Instructions
Get L2 order book snapshot for a specific coin
Input Schema
Name | Required | Description | Default |
---|---|---|---|
coin | Yes | The coin symbol (e.g., BTC, ETH, SOL) | |
nSigFigs | No | Number of significant figures for price aggregation (optional) |
Input Schema (JSON Schema)
{
"properties": {
"coin": {
"description": "The coin symbol (e.g., BTC, ETH, SOL)",
"type": "string"
},
"nSigFigs": {
"description": "Number of significant figures for price aggregation (optional)",
"maximum": 5,
"minimum": 1,
"type": "number"
}
},
"required": [
"coin"
],
"type": "object"
}