botindex_hl_liquidation_heatmap
Visualize liquidation clusters by price level to identify support and resistance zones for trading decisions.
Instructions
Liquidation cluster heatmap by price level. Predicts support/resistance zones. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_hl_liquidation_heatmap' is dynamically registered at runtime by fetching a tool catalog from a remote API. The handler logic for all such dynamic tools is defined here, which calls the 'fetchBotindex' function with the tool's path and arguments.
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) }] }; }, );