Changes include: - Updated architecture documentation - Enhanced module definitions (OQI-001 to OQI-008) - ML integration documentation updates - Trading strategies documentation - Orchestration and inventory updates - Docker configuration updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
893 B
Plaintext
32 lines
893 B
Plaintext
# MCP MT4 Connector Configuration
|
|
# Copy this file to .env and configure values
|
|
|
|
# ==========================================
|
|
# Server Configuration
|
|
# ==========================================
|
|
PORT=3605
|
|
NODE_ENV=development
|
|
|
|
# ==========================================
|
|
# MT4 Gateway Connection
|
|
# ==========================================
|
|
# Host where mt4-gateway is running
|
|
MT4_GATEWAY_HOST=localhost
|
|
# Port of the mt4-gateway service
|
|
MT4_GATEWAY_PORT=8081
|
|
# Authentication token for mt4-gateway
|
|
MT4_GATEWAY_AUTH_TOKEN=your-secret-token-here
|
|
|
|
# ==========================================
|
|
# Request Configuration
|
|
# ==========================================
|
|
# Timeout for requests to MT4 Gateway (ms)
|
|
REQUEST_TIMEOUT=10000
|
|
# Maximum retries for failed requests
|
|
MAX_RETRIES=3
|
|
|
|
# ==========================================
|
|
# Logging
|
|
# ==========================================
|
|
LOG_LEVEL=info
|