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=
|