workspace-v1/projects/trading-platform/apps/trading-agents/config/agents.yaml
Adrian Flores Cortes 967ab360bb Initial commit: Workspace v1 with 3-layer architecture
Structure:
- control-plane/: Registries, SIMCO directives, CI/CD templates
- projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics
- shared/: Libs catalog, knowledge-base

Key features:
- Centralized port, domain, database, and service registries
- 23 SIMCO directives + 6 fundamental principles
- NEXUS agent profiles with delegation rules
- Validation scripts for workspace integrity
- Dockerfiles for all services
- Path aliases for quick reference

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-23 00:35:19 -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