analyzeTradingPerformance
Evaluate trading performance for a specified account on over 100 cryptocurrency exchanges. Filter by symbol or period to assess profitability and refine strategies.
Instructions
Analyze trading performance for a configured account
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountName | Yes | Account name defined in the configuration file (e.g., 'bybit_main') | |
period | No | Analysis period: '7d', '30d', '90d', or 'all' | 30d |
symbol | No | Optional 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', '90d', or 'all'",
"enum": [
"7d",
"30d",
"90d",
"all"
],
"type": "string"
},
"symbol": {
"description": "Optional trading symbol (e.g., 'BTC/USDT') to filter trades",
"type": "string"
}
},
"required": [
"accountName"
],
"type": "object"
}