Zenith-FX/MQL5/Experts/QuantumForexTrader
copilot-swe-agent[bot] b82da332aa Add compilation verification document - confirm fix is in repository
Co-authored-by: simonokwundue-ops <243668919+simonokwundue-ops@users.noreply.github.com>
2025-11-14 17:39:42 +00:00
..
core Reorganize Quantum EA into proper MT5 directory structure 2025-11-14 16:05:58 +00:00
docs Reorganize Quantum EA into proper MT5 directory structure 2025-11-14 16:05:58 +00:00
include Reorganize Quantum EA into proper MT5 directory structure 2025-11-14 16:05:58 +00:00
strategies Fix MQL5 reserved keyword 'input' in QuantumAnalysis.mqh 2025-11-14 16:52:48 +00:00
CODE_VALIDATION_REPORT.md Add comprehensive validation report and installation guide 2025-11-14 17:00:00 +00:00
COMPILATION_VERIFICATION.md Add compilation verification document - confirm fix is in repository 2025-11-14 17:39:42 +00:00
EXECUTION_PLAN.md Add detailed execution plan for Quantum EA development 2025-11-14 16:57:31 +00:00
FINAL_DELIVERY_SUMMARY.md Add final delivery summary - Quantum EA complete and validated 2025-11-14 17:01:35 +00:00
INSTALLATION_COMPILATION_GUIDE.md Add comprehensive validation report and installation guide 2025-11-14 17:00:00 +00:00
QuantumForexTrader_Scalper.mq5 Reorganize Quantum EA into proper MT5 directory structure 2025-11-14 16:05:58 +00:00
README.md Reorganize Quantum EA into proper MT5 directory structure 2025-11-14 16:05:58 +00:00

Quantum Forex Trader EA

Installation

The Quantum Forex Trader EA files have been organized in a proper MetaTrader 5 directory structure.

Directory Structure

MQL5/Experts/QuantumForexTrader/
├── QuantumForexTrader_Scalper.mq5    # Main EA file (entry point)
├── core/                              # Trade engine, risk, logging
│   └── QuantumRiskManager.mqh
├── strategies/                        # Modular strategy files
│   ├── QuantumAnalysis.mqh
│   └── QuantumSignals.mqh
├── include/                           # Utilities, indicators, helpers
│   └── BinaryEncoder.mqh
├── configs/                           # Optional config/INI files
├── tester/                            # Optional .set files for tester
└── docs/                              # Complete documentation
    ├── USER_MANUAL.txt
    ├── MASTER_GUIDE.md
    ├── QUICKSTART_QUANTUM.md
    ├── TESTING_GUIDE.md
    ├── CONFIGURATION_GUIDE.md
    ├── QUANTUM_EA_README.md
    └── IMPLEMENTATION_SUMMARY.md

Quick Start

  1. Copy the entire MQL5 folder to your MetaTrader 5 data directory:

    C:\Users\[User]\AppData\Roaming\MetaQuotes\Terminal\[BROKER_ID]\
    
  2. The EA files will be at:

    C:\Users\[User]\AppData\Roaming\MetaQuotes\Terminal\[BROKER_ID]\MQL5\Experts\QuantumForexTrader\
    
  3. Compile the EA:

    • Open MetaEditor (F4)
    • Navigate to Experts → QuantumForexTrader
    • Open QuantumForexTrader_Scalper.mq5
    • Press F7 to compile
    • Expected: 0 errors, 0 warnings
  4. Read the documentation:

    • Start with: MQL5/Experts/QuantumForexTrader/docs/MASTER_GUIDE.md
    • Quick setup: MQL5/Experts/QuantumForexTrader/docs/QUICKSTART_QUANTUM.md
    • Complete reference: MQL5/Experts/QuantumForexTrader/docs/USER_MANUAL.txt

Documentation

All documentation files are located in:

MQL5/Experts/QuantumForexTrader/docs/

Available guides:

  • MASTER_GUIDE.md - Navigation hub for all documentation
  • QUICKSTART_QUANTUM.md - 5-minute setup guide
  • USER_MANUAL.txt - Complete user manual (27 KB)
  • TESTING_GUIDE.md - 8-phase testing methodology
  • CONFIGURATION_GUIDE.md - Complete parameter reference
  • QUANTUM_EA_README.md - Technical overview
  • IMPLEMENTATION_SUMMARY.md - Implementation details

Support

For installation help, troubleshooting, and configuration guidance, see the documentation files in the docs/ directory.


Version: 1.0
Platform: MetaTrader 5
Language: MQL5
Status: Production-ready (after demo testing)