mirror of
https://github.com/rithsila/MT5-EA-Sniper-Strategy.git
synced 2026-08-15 19:58:12 +00:00
- 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
77 lines
2.6 KiB
JSON
77 lines
2.6 KiB
JSON
{
|
|
"C_Cpp.default.includePath": [
|
|
"${workspaceFolder}/**",
|
|
"${workspaceFolder}/src/Include",
|
|
"C:\\Users\\$\\AppData\\Roaming\\MetaQuotes\\Terminal\\D0E8209F77C8CF37AD8BF550E51FF075\\MQL5\\Include"
|
|
],
|
|
"C_Cpp.default.compilerPath": "",
|
|
"C_Cpp.default.intelliSenseMode": "gcc-x64",
|
|
"C_Cpp.errorSquiggles": "disabled",
|
|
"C_Cpp.autocompleteAddParentheses": true,
|
|
"files.exclude": {
|
|
"**/*.ex4": true,
|
|
"**/*.ex5": true,
|
|
"**/*_@!!@.mq4": true,
|
|
"**/*_@!!@.mq5": true,
|
|
"**/*_@!!@.mqh": true,
|
|
"**/*_@!!@.log": true
|
|
},
|
|
"files.associations": {
|
|
"*.mqh": "cpp",
|
|
"*.mq4": "cpp",
|
|
"*.mq5": "cpp"
|
|
},
|
|
"editor.tabSize": 3,
|
|
"C_Cpp.default.forcedInclude": [
|
|
"c:\\Users\\$\\.vscode\\extensions\\l-i-v.mql-tools-2.2.0\\data\\mql5_en.mqh"
|
|
],
|
|
// MQL Tools Extension Configuration
|
|
"mql_tools.metaeditor_path": "C:\\Program Files\\MetaTrader 5\\MetaEditor64.exe",
|
|
"mql_tools.include_path": "${workspaceFolder}\\src\\Include",
|
|
"mql_tools.mql5_directory": "C:\\Users\\$\\AppData\\Roaming\\MetaQuotes\\Terminal\\D0E8209F77C8CF37AD8BF550E51FF075\\MQL5",
|
|
"mql_tools.enable_compilation": true,
|
|
"mql_tools.enable_script_compilation": true,
|
|
"mql_tools.auto_update_mt": true,
|
|
"mql_tools.copy_to_mql_directory": true,
|
|
"mql_tools.enable_optimization": true,
|
|
"mql_tools.enable_simd": true,
|
|
"mql_tools.strict_compilation": false,
|
|
"mql_tools.show_compilation_output": true,
|
|
"mql_tools.enable_auto_deployment": true,
|
|
// Enhanced MQL5 Development Settings
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnType": true,
|
|
"editor.insertSpaces": true,
|
|
"editor.detectIndentation": false,
|
|
"editor.renderWhitespace": "boundary",
|
|
"editor.rulers": [
|
|
80,
|
|
120
|
|
],
|
|
"editor.wordWrap": "wordWrapColumn",
|
|
"editor.wordWrapColumn": 120,
|
|
"editor.minimap.enabled": true,
|
|
"editor.minimap.showSlider": "always",
|
|
"editor.bracketPairColorization.enabled": true,
|
|
"editor.guides.bracketPairs": true,
|
|
"editor.suggest.insertMode": "replace",
|
|
"editor.quickSuggestions": {
|
|
"other": true,
|
|
"comments": false,
|
|
"strings": false
|
|
},
|
|
// File Explorer Settings
|
|
"explorer.sortOrder": "type",
|
|
"explorer.confirmDelete": false,
|
|
"explorer.confirmDragAndDrop": false,
|
|
// Terminal Settings
|
|
"terminal.integrated.defaultProfile.windows": "PowerShell",
|
|
"terminal.integrated.cwd": "${workspaceFolder}",
|
|
// Search Settings
|
|
"search.exclude": {
|
|
"**/*.ex4": true,
|
|
"**/*.ex5": true,
|
|
"**/Logs/**": true,
|
|
"**/Profiles/**": true
|
|
}
|
|
} |