CCXT MCP Server

by lazy-dinosaur
Verified

calculateWinRate

Analyze and calculate win rate and profit metrics for a specific account over chosen periods using trading data from 100+ cryptocurrency exchanges.

Instructions

Calculate win rate and profit metrics for a configured account

Input Schema

NameRequiredDescriptionDefault
accountNameYesAccount name defined in the configuration file (e.g., 'bybit_main')
periodNoAnalysis period: '7d', '30d', or 'all'30d
symbolNoOptional trading symbol (e.g., 'BTC/USDT') to filter trades

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "accountName": { "description": "Account name defined in the configuration file (e.g., 'bybit_main')", "type": "string" }, "period": { "default": "30d", "description": "Analysis period: '7d', '30d', or 'all'", "enum": [ "7d", "30d", "all" ], "type": "string" }, "symbol": { "description": "Optional trading symbol (e.g., 'BTC/USDT') to filter trades", "type": "string" } }, "required": [ "accountName" ], "type": "object" }
ID: mt6hftp7hy