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
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
# MT4 Gateway Service Configuration
|
|
# OrbiQuant IA Trading Platform
|
|
# Copy to .env and fill in your values
|
|
|
|
# ============================================
|
|
# Server Configuration
|
|
# ============================================
|
|
GATEWAY_HOST=0.0.0.0
|
|
GATEWAY_PORT=8090
|
|
LOG_LEVEL=INFO
|
|
|
|
# ============================================
|
|
# Database
|
|
# ============================================
|
|
DATABASE_URL=postgresql://orbiquant_user:orbiquant_dev_2025@localhost:5432/orbiquant_trading
|
|
|
|
# ============================================
|
|
# ML Engine Connection
|
|
# ============================================
|
|
ML_ENGINE_URL=http://localhost:8000
|
|
ML_ENGINE_TIMEOUT=5
|
|
|
|
# ============================================
|
|
# Agent 1: Atlas (Demo - EBC)
|
|
# ============================================
|
|
AGENT_1_ENABLED=true
|
|
AGENT_1_MT4_HOST=localhost
|
|
AGENT_1_MT4_PORT=8081
|
|
AGENT_1_AUTH_TOKEN=secret_agent_1
|
|
|
|
# ============================================
|
|
# Agent 2: Orion (Disabled by default)
|
|
# ============================================
|
|
AGENT_2_ENABLED=false
|
|
AGENT_2_MT4_HOST=localhost
|
|
AGENT_2_MT4_PORT=8082
|
|
AGENT_2_AUTH_TOKEN=secret_agent_2
|
|
|
|
# ============================================
|
|
# Agent 3: Nova (Disabled by default)
|
|
# ============================================
|
|
AGENT_3_ENABLED=false
|
|
AGENT_3_MT4_HOST=localhost
|
|
AGENT_3_MT4_PORT=8083
|
|
AGENT_3_AUTH_TOKEN=secret_agent_3
|
|
|
|
# ============================================
|
|
# Risk Management Global
|
|
# ============================================
|
|
EMERGENCY_STOP=false
|
|
MAX_TOTAL_EXPOSURE=0.10
|
|
|
|
# ============================================
|
|
# Monitoring
|
|
# ============================================
|
|
HEALTH_CHECK_INTERVAL=30
|
|
ALERT_WEBHOOK=
|