WIP: 6+ weeks of uncommitted EA development and preset tuning
Confluence EA (v1.16 → v1.20): - Per-EA realized P&L tracking via history deals - Weekly drawdown protection - Warmup bars, pivot cache, state persistence - Point-scaled pivot thresholds, ranging ATR factor - Market filling mode helper per symbol Grid EA (v3.1 → v4.1): - Adaptive filters, adaptive entry, spread filter - Session filter, breakeven, correlation caps, range drift - Profit protection (stop-after-profit, cycle reports) - Edge cleanup v5.0 — close wrong-side positions outside grid - Master one-shot shutdown, grid state persistence Presets: - Fix GetOut=Y shutdown bug on 4 grid presets - Relax ADXMax 18→40, widen RSI 20/80 across grid presets - Standardize daily drawdown 3%→5%, add weekly 10% - Increase grid lots 0.01→0.03 - Normalize confluence ATR thresholds per pair - Add XAGUSD, EURCHF, EURGBP, AUDNZD presets Docs & DevOps: - April 23 audit files (preset mismatch, code review, checklist) - n8n workflow and validation infrastructure updates - AI agent analyses in notes/ Known issues carried forward: - Shared drawdown budget contamination (both EAs) - Confluence ranging-market threshold inversion - Older grid presets missing v4.1 safety controls
This commit is contained in:
Regular → Executable
+17
-16
@@ -4,37 +4,38 @@
|
||||
|
||||
; === Confluence Settings ===
|
||||
InpMinConfluence=2
|
||||
InpMinStrength=0.75 ; RELAXED: Was 0.85 (too high!)
|
||||
InpRequireAllAgree=false ; CHANGED: Allow dominant signals
|
||||
InpMinStrength=0.75
|
||||
InpRequireAllAgree=false
|
||||
|
||||
; === Risk Management ===
|
||||
InpLotSize=0.01
|
||||
InpUseRiskPercent=true
|
||||
InpRiskPercent=0.8 ; LOWER risk for volatile pair
|
||||
InpStopLoss=200 ; Wider stops for volatility (200 points = ~14 pips)
|
||||
InpTakeProfit=400 ; 1:2 R:R
|
||||
InpRiskPercent=1.5
|
||||
InpStopLoss=200
|
||||
InpTakeProfit=400
|
||||
InpUseTrailingStop=true
|
||||
InpTrailingStart=100 ; Wider trailing start
|
||||
InpTrailingStop=50 ; Wider trailing distance
|
||||
InpTrailingStart=100
|
||||
InpTrailingStop=50
|
||||
InpTrailingStep=20
|
||||
InpMaxPositions=2 ; Fewer positions for volatile pair
|
||||
InpMaxDailyDrawdown=3.0
|
||||
InpMaxPositions=2
|
||||
InpMaxDailyDrawdown=5.0
|
||||
InpMaxWeeklyDrawdown=10.0
|
||||
|
||||
; === Weekend Protection ===
|
||||
InpCloseBeforeWeekend=true
|
||||
InpWeekendCloseHour=17
|
||||
|
||||
; === Filters (IMPORTANT for volatile pair) ===
|
||||
InpUseTrendFilter=false ; CHANGED: Was true
|
||||
; === Filters (TIGHTER for ranging) ===
|
||||
InpUseTrendFilter=false
|
||||
InpTrendMAPeriod=50
|
||||
InpUseVolatilityFilter=true
|
||||
InpATRPeriod=14
|
||||
InpMinATRPercent=0.4 ; Higher minimum for volatility
|
||||
InpUseADXFilter=true ; Keep ADX for trend confirmation
|
||||
InpMinATRPercent=0.4
|
||||
InpUseADXFilter=true
|
||||
InpADXPeriod=14
|
||||
InpMinADX=20.0 ; RELAXED: Was 28
|
||||
InpMinADX=20.0
|
||||
|
||||
; === EA Settings ===
|
||||
InpMagicNumber=777780
|
||||
InpSlippage=5 ; Higher slippage tolerance
|
||||
InpDebugMode=true ; CHANGED: Monitor this volatile pair
|
||||
InpSlippage=5
|
||||
InpDebugMode=true
|
||||
|
||||
Reference in New Issue
Block a user