botindex_hl_coin_analytics
Analyze Hyperliquid coin metrics including open interest, funding rates, volume, and liquidation history for informed trading decisions.
Instructions
Deep analytics for a specific Hyperliquid coin. OI, funding, volume, liquidation history. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Coin address or symbol (e.g., "BTC", "ETH") |
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_hl_coin_analytics' is registered dynamically at runtime based on the data returned from the catalog endpoint. The execution logic (handler) is defined here.
server.tool( tool.name, tool.description, zodSchema, async (args: Record<string, any>) => { const params: Record<string, string> = {}; if (tool.params) { for (const p of tool.params) { if (args[p.name] !== undefined) { params[p.name] = String(args[p.name]); } } } const data = await fetchBotindex(tool.path, params); return { content: [{ type: 'text', text: toToolText(data) }] }; }, );