Files
mql-trading-bots/QUICKREF.md
Garfield baaac18b84 Add comprehensive documentation for AI handoff
- AGENTS.md: Technical context for AI assistants
- QUICKREF.md: Quick reference card
- README.md: Updated with version history and performance
- conversation-history/README.md: Updated session index
- 2026-03-30-weekend-gap-short-signal-fix.md: Session notes
2026-03-30 00:22:17 -04:00

1.3 KiB

MQL Trading Bots - Quick Reference Card

Deploy EA to MT5

cp MultiSignal_Confluence_EA.mq5 ~/mt5-docker/config/.wine/drive_c/Program\ Files/MetaTrader\ 5/MQL5/Experts/
cp OrdersEA_Smart_Grid.mq5 ~/mt5-docker/config/.wine/drive_c/Program\ Files/MetaTrader\ 5/MQL5/Experts/

Check MT5 Status

cd ~/mt5-docker && ./STATUS.sh

View Latest Log

tail -100 ~/mt5-docker/config/.wine/drive_c/Program\ Files/MetaTrader\ 5/MQL5/Logs/*.log

View Trading Report

# Direct browser access
file:///home/garfield/mt5-docker/config/.wine/drive_c/users/abc/Desktop/ReportHistory-104125640.html

Verify Short Signals

python3 verify-short-signals.py

Git Commands

git add -A
git commit -m "description"
git push  # May need credentials

Current Versions

EA Version
MultiSignal_Confluence_EA.mq5 v1.14
OrdersEA_Smart_Grid.mq5 v3.1

Critical Reminders

  1. Use _Symbol directly (not CSymbolInfo)
  2. Always add #include <Trade\Trade.mqh>
  3. Copy files to MT5 after git commit
  4. Enable weekend protection on Grid EA
  5. Test compilation before deploying

Key Files

  • AGENTS.md - AI context (read first!)
  • README.md - Project overview
  • conversation-history/ - Session notes
  • .set files - Pair-specific settings