analyzeConsecutiveProfitLoss
Evaluate consecutive winning and losing trades for a specified account, optionally filtering by trading symbol and analysis period (30 days or all time).
Instructions
Analyze consecutive winning and losing trades
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountName | Yes | Account name defined in the configuration file (e.g., 'bybit_main') | |
period | No | Analysis period: '30d' or 'all' | all |
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": "all",
"description": "Analysis period: '30d' or 'all'",
"enum": [
"30d",
"all"
],
"type": "string"
},
"symbol": {
"description": "Optional trading symbol (e.g., 'BTC/USDT') to filter trades",
"type": "string"
}
},
"required": [
"accountName"
],
"type": "object"
}