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
+12
-12
@@ -7,29 +7,29 @@
|
||||
UseAutoPivots=true
|
||||
InpManualHigh=0
|
||||
InpManualLow=0
|
||||
Entry=16 ; 16 pip spacing (moderate for JPY)
|
||||
TP=26 ; 26 pip TP
|
||||
Lots=0.01
|
||||
MaxLevels=5 ; Conservative (trends)
|
||||
Entry=16
|
||||
TP=26
|
||||
Lots=0.03
|
||||
MaxLevels=5
|
||||
|
||||
; === Range Filters ===
|
||||
UseRSIFilter=true
|
||||
RSIPeriod=14
|
||||
RSILower=30
|
||||
RSIUpper=70
|
||||
RSILower=20
|
||||
RSIUpper=80
|
||||
UseADXFilter=true
|
||||
ADXPeriod=14
|
||||
ADXMax=24 ; Stricter - JPY trends hard
|
||||
ADXMax=40
|
||||
UseATRFilter=true
|
||||
ATRPeriod=14
|
||||
ATRMultiplier=1.7 ; Wider ATR for volatility
|
||||
ATRMultiplier=1.7
|
||||
|
||||
; === Risk Management ===
|
||||
StopLoss=0
|
||||
TRADE_RANGE=55
|
||||
LongLimit=0
|
||||
ShortLimit=0
|
||||
GetOut=Y ; ENABLE GetOut for safety
|
||||
GetOut=N
|
||||
OpenNewTrades=Y
|
||||
Opposite=false
|
||||
TakeProfitLevelPercent=50
|
||||
@@ -39,11 +39,11 @@ LotsFactorPercent=0
|
||||
BaseEquity=10000
|
||||
Master=false
|
||||
DiagnosticModeOn=false
|
||||
InpMaxDailyDrawdown=2.5 ; Conservative (trending pair)
|
||||
InpMaxDailyDrawdown=5.0
|
||||
InpMaxWeeklyDrawdown=10.0
|
||||
|
||||
; === CRITICAL WARNINGS ===
|
||||
; JPY pairs can trend 100+ pips in one direction
|
||||
; Use GetOut=Y for safety
|
||||
; Monitor closely - manually close if strong trend develops
|
||||
; Avoid: BOJ announcements, risk-off events
|
||||
|
||||
@@ -52,4 +52,4 @@ MagicNum=333012
|
||||
|
||||
; === Weekend Protection ===
|
||||
InpCloseBeforeWeekend=true
|
||||
InpWeekendCloseHour=17
|
||||
InpWeekendCloseHour=17
|
||||
Reference in New Issue
Block a user