workspace-v1/projects/trading-platform/apps/trading-agents/config/agents.yaml
rckrdmrd 66161b1566 feat: Workspace-v1 complete migration with NEXUS v3.4
Sistema NEXUS v3.4 migrado con:

Estructura principal:
- core/orchestration: Sistema SIMCO + CAPVED (27 directivas, 28 perfiles)
- core/catalog: Catalogo de funcionalidades reutilizables
- shared/knowledge-base: Base de conocimiento compartida
- devtools/scripts: Herramientas de desarrollo
- control-plane/registries: Control de servicios y CI/CD
- orchestration/: Configuracion de orquestacion de agentes

Proyectos incluidos (11):
- gamilit (submodule -> GitHub)
- trading-platform (OrbiquanTIA)
- erp-suite con 5 verticales:
  - erp-core, construccion, vidrio-templado
  - mecanicas-diesel, retail, clinicas
- betting-analytics
- inmobiliaria-analytics
- platform_marketing_content
- pos-micro, erp-basico

Configuracion:
- .gitignore completo para Node.js/Python/Docker
- gamilit como submodule (git@github.com:rckrdmrd/gamilit-workspace.git)
- Sistema de puertos estandarizado (3005-3199)

Generated with NEXUS v3.4 Migration System
EPIC-010: Configuracion Git y Repositorios
2026-01-04 03:37:42 -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