workspace/projects/trading-platform/apps/trading-agents/config/agents.yaml
rckrdmrd ea1879f4ad feat: Initial workspace structure with multi-level Git configuration
- Configure workspace Git repository with comprehensive .gitignore
- Add Odoo as submodule for ERP reference code
- Include documentation: SETUP.md, GIT-STRUCTURE.md
- Add gitignore templates for projects (backend, frontend, database)
- Structure supports independent repos per project/subproject level

Workspace includes:
- core/ - Reusable patterns, modules, orchestration system
- projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.)
- knowledge-base/ - Reference code and patterns (includes Odoo submodule)
- devtools/ - Development tools and templates
- customers/ - Client implementations template

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-08 10:44:23 -06:00

147 lines
2.9 KiB
YAML

# Trading Agents Configuration
# Defines the configuration for each trading agent
agents:
atlas:
name: "Atlas"
description: "The Guardian - Conservative trading agent"
profile: conservative
enabled: true
# Risk parameters
max_drawdown: 5.0 # Maximum drawdown percentage
position_size_pct: 10.0 # Position size as % of equity
max_positions: 3
max_trades_per_day: 5
min_equity: 100.0
# Stop loss and take profit
stop_loss_pct: 2.0
take_profit_pct: 3.0
# Allowed trading pairs (conservative - only majors)
allowed_pairs:
- BTCUSDT
- ETHUSDT
# Strategies to use
strategies:
- mean_reversion
- grid_trading
# Target returns
target_monthly_return_min: 3.0
target_monthly_return_max: 5.0
orion:
name: "Orion"
description: "The Explorer - Moderate risk trading agent"
profile: moderate
enabled: true
# Risk parameters
max_drawdown: 10.0
position_size_pct: 15.0
max_positions: 5
max_trades_per_day: 15
min_equity: 100.0
# Stop loss and take profit
stop_loss_pct: 3.0
take_profit_pct: 6.0
# Allowed trading pairs (top 10 cryptos)
allowed_pairs:
- BTCUSDT
- ETHUSDT
- BNBUSDT
- ADAUSDT
- DOGEUSDT
- XRPUSDT
- DOTUSDT
- SOLUSDT
- MATICUSDT
- LINKUSDT
# Strategies to use
strategies:
- trend_following
- momentum
# Target returns
target_monthly_return_min: 5.0
target_monthly_return_max: 10.0
nova:
name: "Nova"
description: "The Star - Aggressive high-frequency trading agent"
profile: aggressive
enabled: true
# Risk parameters
max_drawdown: 20.0
position_size_pct: 20.0
max_positions: 10
max_trades_per_day: 50
min_equity: 100.0
# Stop loss and take profit
stop_loss_pct: 4.0
take_profit_pct: 8.0
# Allowed trading pairs (all available)
allowed_pairs:
- BTCUSDT
- ETHUSDT
- BNBUSDT
- ADAUSDT
- DOGEUSDT
- XRPUSDT
- DOTUSDT
- SOLUSDT
- MATICUSDT
- LINKUSDT
- AVAXUSDT
- UNIUSDT
- LTCUSDT
- ATOMUSDT
- ETCUSDT
- FILUSDT
- TRXUSDT
- XLMUSDT
- VETUSDT
- ICPUSDT
- FTMUSDT
- SANDUSDT
- MANAUSDT
# Strategies to use
strategies:
- momentum
- trend_following
- scalping
# Target returns
target_monthly_return_min: 10.0
target_monthly_return_max: 20.0
# Global settings
global:
# Minimum confidence required for signal execution
min_signal_confidence:
conservative: 0.70
moderate: 0.60
aggressive: 0.50
# Maximum leverage allowed
max_leverage:
conservative: 1.0
moderate: 1.0
aggressive: 1.0
# Risk per trade as % of equity
max_risk_per_trade:
conservative: 1.5
moderate: 2.0
aggressive: 3.0