Files
rithsila ec06657613 Major refactor: Streamline EA structure and fix compilation errors
- Consolidated all trading logic into single SniperEA.mq5 file
- Fixed all compilation errors (0 errors, minimal warnings)
- Removed complex modular structure that was causing issues
- Added comprehensive pattern detection (OB, BOS, FVG, Liquidity Sweeps)
- Implemented multi-timeframe analysis framework
- Added VS Code configuration for MT5 development
- Created implementation plan for completing core trading logic
- Added validation report and build scripts
- Backup original working version as SniperEA_backup.mq5

Status: 45% complete - Pattern detection working, core trading logic pending
2025-09-25 20:39:27 +07:00

25 lines
694 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "MQL5 Debug",
"type": "cppdbg",
"request": "launch",
"program": "C:\\Program Files\\MetaTrader 5\\terminal64.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}