botindex_sports_correlations
Analyze player co-performance patterns for DFS and correlated betting strategies using correlation matrices.
Instructions
Player correlation matrix for DFS and correlated betting. Shows co-performance patterns. $0.05
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:213-229 (handler)The tool 'botindex_sports_correlations' is dynamically registered at runtime by fetching a catalog of tools from a remote endpoint and iterating through them to call 'server.tool'. The handler for all these dynamically registered tools, including 'botindex_sports_correlations', 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) }] }; }, );