Fix Confluence EA settings - wrong variable name, too restrictive filters

This commit is contained in:
2026-03-30 08:40:44 -04:00
parent a766263ec5
commit 0d026d5573
6 changed files with 156 additions and 75 deletions

41
confluence-aggressive.set Normal file
View File

@@ -0,0 +1,41 @@
; === MultiSignal Confluence EA - AGGRESSIVE Settings ===
; Maximum trades, higher risk per trade
; WARNING: Only use with small accounts or demo!
; Timeframe: H1
; === Confluence Settings ===
InpMinConfluence=1 ; Single signal enough
InpMinStrength=0.50 ; Very low threshold
InpRequireAllAgree=false ; Take any dominant signal
; === Risk Management ===
InpLotSize=0.01
InpUseRiskPercent=true
InpRiskPercent=1.5 ; Higher risk per trade
InpStopLoss=80 ; Tighter stops
InpTakeProfit=160 ; 1:2 R:R
InpUseTrailingStop=true
InpTrailingStart=40
InpTrailingStop=25
InpTrailingStep=5
InpMaxPositions=5 ; More concurrent positions
InpMaxDailyDrawdown=5.0 ; Allow more daily risk
; === Weekend Protection ===
InpCloseBeforeWeekend=true
InpWeekendCloseHour=17
; === Filters (MINIMAL) ===
InpUseTrendFilter=false
InpTrendMAPeriod=50
InpUseVolatilityFilter=false
InpATRPeriod=14
InpMinATRPercent=0.2
InpUseADXFilter=false
InpADXPeriod=14
InpMinADX=15.0
; === EA Settings ===
InpMagicNumber=777777
InpSlippage=5 ; Allow more slippage
InpDebugMode=true

View File

@@ -1,11 +1,11 @@
; === MultiSignal Confluence EA - EURUSD Settings === ; === MultiSignal Confluence EA - EURUSD Settings ===
; Balanced settings for major pair ; Balanced settings for most liquid pair
; Timeframe: H1 ; Timeframe: H1
; === Confluence Settings === ; === Confluence Settings ===
InpMinConfluence=2 InpMinConfluence=2
InpMinStrength=0.70 InpMinStrength=0.70 ; MODERATE: Not too strict
InpRequireAllAgree=true InpRequireAllAgree=false ; CHANGED: Allow if buy signals dominate
; === Risk Management === ; === Risk Management ===
InpLotSize=0.01 InpLotSize=0.01
@@ -15,22 +15,26 @@ InpStopLoss=100 ; Standard 10 pips
InpTakeProfit=200 ; 1:2 R:R InpTakeProfit=200 ; 1:2 R:R
InpUseTrailingStop=true InpUseTrailingStop=true
InpTrailingStart=50 InpTrailingStart=50
InpTrailingStep=50 InpTrailingStop=30
InpTrailingStop=50 InpTrailingStep=10
InpMaxPositions=3 InpMaxPositions=3
InpMaxDailyDrawdown=3.0 InpMaxDailyDrawdown=3.0
; === Filters === ; === Weekend Protection ===
InpUseTrendFilter=true ; Enable trend filter for major pair InpCloseBeforeWeekend=true
InpWeekendCloseHour=17
; === Filters (MODERATE) ===
InpUseTrendFilter=false ; CHANGED: Let confluence work, not MA
InpTrendMAPeriod=50 InpTrendMAPeriod=50
InpUseVolatilityFilter=true InpUseVolatilityFilter=true
InpATRPeriod=14 InpATRPeriod=14
InpMinATRPercent=0.3 InpMinATRPercent=0.25 ; RELAXED: Was 0.3
InpUseADXFilter=true InpUseADXFilter=true
InpADXPeriod=14 InpADXPeriod=14
InpMinADX=20.0 InpMinADX=18.0 ; RELAXED: Was 20
; === EA Settings === ; === EA Settings ===
InpMagicNumber=777772 InpMagicNumber=777772
InpSlippage=3 InpSlippage=3
InpDebugMode=false InpDebugMode=true ; CHANGED: See what's happening!

View File

@@ -1,50 +1,40 @@
; === MultiSignal Confluence EA - GBPJPY Settings === ; === MultiSignal Confluence EA - GBPJPY Settings ===
; GBPJPY (The Beast) - EXTREME VOLATILITY WARNING ; Volatile pair - still selective but not too restrictive
; Timeframe: H1 ; Timeframe: H1
; Characteristics: Most volatile major pair, 200+ pip moves possible
; WARNING: Use with extreme caution - not for beginners
; === Confluence Settings === ; === Confluence Settings ===
InpMinConfluence=2 InpMinConfluence=2
InpMinStrength=0.85 ; VERY HIGH threshold - only strongest signals InpMinStrength=0.75 ; RELAXED: Was 0.85 (too high!)
InpRequireAllAgree=true InpRequireAllAgree=false ; CHANGED: Allow dominant signals
; === Risk Management === ; === Risk Management ===
InpLotSize=0.01 InpLotSize=0.01
InpUseRiskPercent=true InpUseRiskPercent=true
InpRiskPercent=0.5 ; HALF normal risk - extreme volatility InpRiskPercent=0.8 ; LOWER risk for volatile pair
InpStopLoss=200 ; 20 pips - wide but can be blown through InpStopLoss=200 ; Wider stops for volatility (200 points = ~14 pips)
InpTakeProfit=400 ; 1:2 R:R InpTakeProfit=400 ; 1:2 R:R
InpUseTrailingStop=true InpUseTrailingStop=true
InpTrailingStart=100 InpTrailingStart=100 ; Wider trailing start
InpTrailingStep=50 InpTrailingStop=50 ; Wider trailing distance
InpTrailingStop=80 InpTrailingStep=20
InpMaxPositions=2 ; MAX 2 positions only InpMaxPositions=2 ; Fewer positions for volatile pair
InpMaxDailyDrawdown=2.0 ; Conservative daily limit InpMaxDailyDrawdown=3.0
; === Filters - STRICT === ; === Weekend Protection ===
InpUseTrendFilter=true ; ENABLE to help avoid chop InpCloseBeforeWeekend=true
InpWeekendCloseHour=17
; === Filters (IMPORTANT for volatile pair) ===
InpUseTrendFilter=false ; CHANGED: Was true
InpTrendMAPeriod=50 InpTrendMAPeriod=50
InpUseVolatilityFilter=true InpUseVolatilityFilter=true
InpATRPeriod=14 InpATRPeriod=14
InpMinATRPercent=1.2 ; VERY HIGH - only high volatility InpMinATRPercent=0.4 ; Higher minimum for volatility
InpUseADXFilter=true InpUseADXFilter=true ; Keep ADX for trend confirmation
InpADXPeriod=14 InpADXPeriod=14
InpMinADX=28.0 ; Strong trend required InpMinADX=20.0 ; RELAXED: Was 28
; === CRITICAL WARNINGS ===
; GBPJPY can gap 100+ pips on weekend open
; Can move 200-500 pips in minutes during news
; Known as "The Beast" or "The Dragon"
; Requires constant monitoring
; NOT RECOMMENDED for accounts under $10,000
; === News to AVOID ===
; UK: GDP, Employment, Inflation, BOE meetings, Brexit news
; Japan: BOJ meetings, Tankan, GDP, intervention threats
; Global: Risk-off events (massive JPY appreciation)
; === EA Settings === ; === EA Settings ===
InpMagicNumber=777780 InpMagicNumber=777780
InpSlippage=10 ; High slippage tolerance InpSlippage=5 ; Higher slippage tolerance
InpDebugMode=true ; Keep debug on for monitoring InpDebugMode=true ; CHANGED: Monitor this volatile pair

View File

@@ -1,38 +1,40 @@
; === Confluence Trading Settings (RELAXED for Low Volatility Market) === ; === MultiSignal Confluence EA - RELAXED Settings ===
InpMinConfluence=2 ; For maximum trade frequency - use when markets are active
InpMinConfluenceStrength=0.65 ; Timeframe: H1
InpRequireAllAgree=true
InpMaxSignalAge=3 ; === Confluence Settings ===
InpMinConfluence=1 ; REDUCED: Only 1 signal needed (was 2)
InpMinStrength=0.60 ; RELAXED: Lower threshold for more trades
InpRequireAllAgree=false ; CHANGED: Allow conflicting signals if one side dominates
; === Risk Management === ; === Risk Management ===
InpLotSize=0.01 InpLotSize=0.01
InpRiskPercent=1.0 InpUseRiskPercent=true
InpRiskPercent=0.8 ; Slightly lower risk for more frequent trades
InpStopLoss=100 InpStopLoss=100
InpTakeProfit=200 InpTakeProfit=200
InpUseTrailingStop=true InpUseTrailingStop=true
InpTrailingStart=50 InpTrailingStart=50
InpTrailingStep=75
InpTrailingStop=30 InpTrailingStop=30
InpTrailingStep=10
InpMaxPositions=3 InpMaxPositions=3
InpMaxDailyTrades=5 InpMaxDailyDrawdown=3.0
; === Confluence Indicator === ; === Weekend Protection ===
InpIndicatorName=MultiSignal_Confluence InpCloseBeforeWeekend=true
InpConfluenceBuffer=5 InpWeekendCloseHour=17
; === Filters (RELAXED) === ; === Filters (RELAXED) ===
InpUseTrendFilter=false InpUseTrendFilter=false ; DISABLED: Don't filter by trend
InpTrendMAPeriod=50 InpTrendMAPeriod=50
InpUseATRFilter=true InpUseVolatilityFilter=false ; DISABLED: Trade all volatility conditions
InpATRPeriod=14 InpATRPeriod=14
InpMinATR=0.0002 InpMinATRPercent=0.3
InpAvoidWeekends=true InpUseADXFilter=false ; DISABLED: Don't require ADX confirmation
InpADXPeriod=14
; === Alerts === InpMinADX=20.0
InpUseAlerts=true
InpUsePushNotifications=false
InpEmailAlerts=false
; === EA Settings === ; === EA Settings ===
InpMagicNumber=777777 InpMagicNumber=777777
InpSlippage=3 InpSlippage=3
InpDebugMode=true ; ENABLED: See why trades fire or don't fire

40
confluence-standard.set Normal file
View File

@@ -0,0 +1,40 @@
; === MultiSignal Confluence EA - STANDARD Settings ===
; Balanced for regular market conditions
; Timeframe: H1
; === Confluence Settings ===
InpMinConfluence=2 ; Need 2 signals to confirm
InpMinStrength=0.75 ; Moderate threshold
InpRequireAllAgree=false ; Allow if one side dominates by 2+ signals
; === Risk Management ===
InpLotSize=0.01
InpUseRiskPercent=true
InpRiskPercent=1.0
InpStopLoss=100
InpTakeProfit=200
InpUseTrailingStop=true
InpTrailingStart=50
InpTrailingStop=30
InpTrailingStep=10
InpMaxPositions=3
InpMaxDailyDrawdown=3.0
; === Weekend Protection ===
InpCloseBeforeWeekend=true
InpWeekendCloseHour=17
; === Filters (MODERATE) ===
InpUseTrendFilter=false ; Let confluence determine direction
InpTrendMAPeriod=50
InpUseVolatilityFilter=true ; Filter very low volatility
InpATRPeriod=14
InpMinATRPercent=0.3
InpUseADXFilter=true ; Require some trend strength
InpADXPeriod=14
InpMinADX=18.0 ; RELAXED: Lower ADX threshold (was 20+)
; === EA Settings ===
InpMagicNumber=777777
InpSlippage=3
InpDebugMode=true ; See trade decisions in Experts tab

View File

@@ -1,36 +1,40 @@
; === MultiSignal Confluence EA - USDJPY Settings === ; === MultiSignal Confluence EA - USDJPY Settings ===
; Optimized for trending JPY pairs ; Trending pair - moderate settings
; Timeframe: H1 ; Timeframe: H1
; === Confluence Settings === ; === Confluence Settings ===
InpMinConfluence=2 InpMinConfluence=2
InpMinStrength=0.75 ; Higher threshold for quality signals InpMinStrength=0.70 ; RELAXED: Was 0.75
InpRequireAllAgree=true InpRequireAllAgree=false ; CHANGED: Allow dominant signals
; === Risk Management === ; === Risk Management ===
InpLotSize=0.01 InpLotSize=0.01
InpUseRiskPercent=true InpUseRiskPercent=true
InpRiskPercent=1.0 ; 1% risk per trade InpRiskPercent=1.0
InpStopLoss=80 ; Tighter SL for JPY (8 pips) InpStopLoss=80 ; Tighter for JPY pairs (80 points = ~7 pips)
InpTakeProfit=240 ; 1:3 R:R for trending pairs InpTakeProfit=240 ; 1:3 R:R for trending pair
InpUseTrailingStop=true InpUseTrailingStop=true
InpTrailingStart=50 InpTrailingStart=50
InpTrailingStep=30 InpTrailingStop=30
InpTrailingStop=40 InpTrailingStep=10
InpMaxPositions=3 InpMaxPositions=3
InpMaxDailyDrawdown=3.0 ; Stop after 3% daily loss InpMaxDailyDrawdown=3.0
; === Weekend Protection ===
InpCloseBeforeWeekend=true
InpWeekendCloseHour=17
; === Filters === ; === Filters ===
InpUseTrendFilter=false ; Let confluence determine direction InpUseTrendFilter=false ; CHANGED: Was true
InpTrendMAPeriod=50 InpTrendMAPeriod=50
InpUseVolatilityFilter=true InpUseVolatilityFilter=true
InpATRPeriod=14 InpATRPeriod=14
InpMinATRPercent=0.4 InpMinATRPercent=0.25
InpUseADXFilter=true InpUseADXFilter=true
InpADXPeriod=14 InpADXPeriod=14
InpMinADX=25.0 ; Stronger trend required for JPY InpMinADX=18.0 ; RELAXED: Was 25
; === EA Settings === ; === EA Settings ===
InpMagicNumber=777771 InpMagicNumber=777771
InpSlippage=3 InpSlippage=3
InpDebugMode=false InpDebugMode=true ; CHANGED: See trade decisions