botindex_hl_correlation_matrix
Analyze correlation between Hyperliquid perpetual assets to inform portfolio construction decisions with verified on-chain data.
Instructions
Hyperliquid perpetual correlation matrix for portfolio construction. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_hl_correlation_matrix' is dynamically registered at runtime by fetching a catalog from an external API (CATALOG_URL). This handler block executes the generic tool logic for all dynamically discovered tools.
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) }] }; }, );