Fix Confluence EA settings - wrong variable name, too restrictive filters
This commit is contained in:
41
confluence-aggressive.set
Normal file
41
confluence-aggressive.set
Normal 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
|
||||
@@ -1,11 +1,11 @@
|
||||
; === MultiSignal Confluence EA - EURUSD Settings ===
|
||||
; Balanced settings for major pair
|
||||
; Balanced settings for most liquid pair
|
||||
; Timeframe: H1
|
||||
|
||||
; === Confluence Settings ===
|
||||
InpMinConfluence=2
|
||||
InpMinStrength=0.70
|
||||
InpRequireAllAgree=true
|
||||
InpMinStrength=0.70 ; MODERATE: Not too strict
|
||||
InpRequireAllAgree=false ; CHANGED: Allow if buy signals dominate
|
||||
|
||||
; === Risk Management ===
|
||||
InpLotSize=0.01
|
||||
@@ -15,22 +15,26 @@ InpStopLoss=100 ; Standard 10 pips
|
||||
InpTakeProfit=200 ; 1:2 R:R
|
||||
InpUseTrailingStop=true
|
||||
InpTrailingStart=50
|
||||
InpTrailingStep=50
|
||||
InpTrailingStop=50
|
||||
InpTrailingStop=30
|
||||
InpTrailingStep=10
|
||||
InpMaxPositions=3
|
||||
InpMaxDailyDrawdown=3.0
|
||||
|
||||
; === Filters ===
|
||||
InpUseTrendFilter=true ; Enable trend filter for major pair
|
||||
; === Weekend Protection ===
|
||||
InpCloseBeforeWeekend=true
|
||||
InpWeekendCloseHour=17
|
||||
|
||||
; === Filters (MODERATE) ===
|
||||
InpUseTrendFilter=false ; CHANGED: Let confluence work, not MA
|
||||
InpTrendMAPeriod=50
|
||||
InpUseVolatilityFilter=true
|
||||
InpATRPeriod=14
|
||||
InpMinATRPercent=0.3
|
||||
InpMinATRPercent=0.25 ; RELAXED: Was 0.3
|
||||
InpUseADXFilter=true
|
||||
InpADXPeriod=14
|
||||
InpMinADX=20.0
|
||||
InpMinADX=18.0 ; RELAXED: Was 20
|
||||
|
||||
; === EA Settings ===
|
||||
InpMagicNumber=777772
|
||||
InpSlippage=3
|
||||
InpDebugMode=false
|
||||
InpDebugMode=true ; CHANGED: See what's happening!
|
||||
|
||||
@@ -1,50 +1,40 @@
|
||||
; === MultiSignal Confluence EA - GBPJPY Settings ===
|
||||
; GBPJPY (The Beast) - EXTREME VOLATILITY WARNING
|
||||
; Volatile pair - still selective but not too restrictive
|
||||
; Timeframe: H1
|
||||
; Characteristics: Most volatile major pair, 200+ pip moves possible
|
||||
; WARNING: Use with extreme caution - not for beginners
|
||||
|
||||
; === Confluence Settings ===
|
||||
InpMinConfluence=2
|
||||
InpMinStrength=0.85 ; VERY HIGH threshold - only strongest signals
|
||||
InpRequireAllAgree=true
|
||||
InpMinStrength=0.75 ; RELAXED: Was 0.85 (too high!)
|
||||
InpRequireAllAgree=false ; CHANGED: Allow dominant signals
|
||||
|
||||
; === Risk Management ===
|
||||
InpLotSize=0.01
|
||||
InpUseRiskPercent=true
|
||||
InpRiskPercent=0.5 ; HALF normal risk - extreme volatility
|
||||
InpStopLoss=200 ; 20 pips - wide but can be blown through
|
||||
InpRiskPercent=0.8 ; LOWER risk for volatile pair
|
||||
InpStopLoss=200 ; Wider stops for volatility (200 points = ~14 pips)
|
||||
InpTakeProfit=400 ; 1:2 R:R
|
||||
InpUseTrailingStop=true
|
||||
InpTrailingStart=100
|
||||
InpTrailingStep=50
|
||||
InpTrailingStop=80
|
||||
InpMaxPositions=2 ; MAX 2 positions only
|
||||
InpMaxDailyDrawdown=2.0 ; Conservative daily limit
|
||||
InpTrailingStart=100 ; Wider trailing start
|
||||
InpTrailingStop=50 ; Wider trailing distance
|
||||
InpTrailingStep=20
|
||||
InpMaxPositions=2 ; Fewer positions for volatile pair
|
||||
InpMaxDailyDrawdown=3.0
|
||||
|
||||
; === Filters - STRICT ===
|
||||
InpUseTrendFilter=true ; ENABLE to help avoid chop
|
||||
; === Weekend Protection ===
|
||||
InpCloseBeforeWeekend=true
|
||||
InpWeekendCloseHour=17
|
||||
|
||||
; === Filters (IMPORTANT for volatile pair) ===
|
||||
InpUseTrendFilter=false ; CHANGED: Was true
|
||||
InpTrendMAPeriod=50
|
||||
InpUseVolatilityFilter=true
|
||||
InpATRPeriod=14
|
||||
InpMinATRPercent=1.2 ; VERY HIGH - only high volatility
|
||||
InpUseADXFilter=true
|
||||
InpMinATRPercent=0.4 ; Higher minimum for volatility
|
||||
InpUseADXFilter=true ; Keep ADX for trend confirmation
|
||||
InpADXPeriod=14
|
||||
InpMinADX=28.0 ; Strong trend required
|
||||
|
||||
; === 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)
|
||||
InpMinADX=20.0 ; RELAXED: Was 28
|
||||
|
||||
; === EA Settings ===
|
||||
InpMagicNumber=777780
|
||||
InpSlippage=10 ; High slippage tolerance
|
||||
InpDebugMode=true ; Keep debug on for monitoring
|
||||
InpSlippage=5 ; Higher slippage tolerance
|
||||
InpDebugMode=true ; CHANGED: Monitor this volatile pair
|
||||
|
||||
@@ -1,38 +1,40 @@
|
||||
; === Confluence Trading Settings (RELAXED for Low Volatility Market) ===
|
||||
InpMinConfluence=2
|
||||
InpMinConfluenceStrength=0.65
|
||||
InpRequireAllAgree=true
|
||||
InpMaxSignalAge=3
|
||||
; === MultiSignal Confluence EA - RELAXED Settings ===
|
||||
; For maximum trade frequency - use when markets are active
|
||||
; Timeframe: H1
|
||||
|
||||
; === 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 ===
|
||||
InpLotSize=0.01
|
||||
InpRiskPercent=1.0
|
||||
InpUseRiskPercent=true
|
||||
InpRiskPercent=0.8 ; Slightly lower risk for more frequent trades
|
||||
InpStopLoss=100
|
||||
InpTakeProfit=200
|
||||
InpUseTrailingStop=true
|
||||
InpTrailingStart=50
|
||||
InpTrailingStep=75
|
||||
InpTrailingStop=30
|
||||
InpTrailingStep=10
|
||||
InpMaxPositions=3
|
||||
InpMaxDailyTrades=5
|
||||
InpMaxDailyDrawdown=3.0
|
||||
|
||||
; === Confluence Indicator ===
|
||||
InpIndicatorName=MultiSignal_Confluence
|
||||
InpConfluenceBuffer=5
|
||||
; === Weekend Protection ===
|
||||
InpCloseBeforeWeekend=true
|
||||
InpWeekendCloseHour=17
|
||||
|
||||
; === Filters (RELAXED) ===
|
||||
InpUseTrendFilter=false
|
||||
InpUseTrendFilter=false ; DISABLED: Don't filter by trend
|
||||
InpTrendMAPeriod=50
|
||||
InpUseATRFilter=true
|
||||
InpUseVolatilityFilter=false ; DISABLED: Trade all volatility conditions
|
||||
InpATRPeriod=14
|
||||
InpMinATR=0.0002
|
||||
InpAvoidWeekends=true
|
||||
|
||||
; === Alerts ===
|
||||
InpUseAlerts=true
|
||||
InpUsePushNotifications=false
|
||||
InpEmailAlerts=false
|
||||
InpMinATRPercent=0.3
|
||||
InpUseADXFilter=false ; DISABLED: Don't require ADX confirmation
|
||||
InpADXPeriod=14
|
||||
InpMinADX=20.0
|
||||
|
||||
; === EA Settings ===
|
||||
InpMagicNumber=777777
|
||||
InpSlippage=3
|
||||
InpDebugMode=true ; ENABLED: See why trades fire or don't fire
|
||||
|
||||
40
confluence-standard.set
Normal file
40
confluence-standard.set
Normal 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
|
||||
@@ -1,36 +1,40 @@
|
||||
; === MultiSignal Confluence EA - USDJPY Settings ===
|
||||
; Optimized for trending JPY pairs
|
||||
; Trending pair - moderate settings
|
||||
; Timeframe: H1
|
||||
|
||||
; === Confluence Settings ===
|
||||
InpMinConfluence=2
|
||||
InpMinStrength=0.75 ; Higher threshold for quality signals
|
||||
InpRequireAllAgree=true
|
||||
InpMinStrength=0.70 ; RELAXED: Was 0.75
|
||||
InpRequireAllAgree=false ; CHANGED: Allow dominant signals
|
||||
|
||||
; === Risk Management ===
|
||||
InpLotSize=0.01
|
||||
InpUseRiskPercent=true
|
||||
InpRiskPercent=1.0 ; 1% risk per trade
|
||||
InpStopLoss=80 ; Tighter SL for JPY (8 pips)
|
||||
InpTakeProfit=240 ; 1:3 R:R for trending pairs
|
||||
InpRiskPercent=1.0
|
||||
InpStopLoss=80 ; Tighter for JPY pairs (80 points = ~7 pips)
|
||||
InpTakeProfit=240 ; 1:3 R:R for trending pair
|
||||
InpUseTrailingStop=true
|
||||
InpTrailingStart=50
|
||||
InpTrailingStep=30
|
||||
InpTrailingStop=40
|
||||
InpTrailingStop=30
|
||||
InpTrailingStep=10
|
||||
InpMaxPositions=3
|
||||
InpMaxDailyDrawdown=3.0 ; Stop after 3% daily loss
|
||||
InpMaxDailyDrawdown=3.0
|
||||
|
||||
; === Weekend Protection ===
|
||||
InpCloseBeforeWeekend=true
|
||||
InpWeekendCloseHour=17
|
||||
|
||||
; === Filters ===
|
||||
InpUseTrendFilter=false ; Let confluence determine direction
|
||||
InpUseTrendFilter=false ; CHANGED: Was true
|
||||
InpTrendMAPeriod=50
|
||||
InpUseVolatilityFilter=true
|
||||
InpATRPeriod=14
|
||||
InpMinATRPercent=0.4
|
||||
InpMinATRPercent=0.25
|
||||
InpUseADXFilter=true
|
||||
InpADXPeriod=14
|
||||
InpMinADX=25.0 ; Stronger trend required for JPY
|
||||
InpMinADX=18.0 ; RELAXED: Was 25
|
||||
|
||||
; === EA Settings ===
|
||||
InpMagicNumber=777771
|
||||
InpSlippage=3
|
||||
InpDebugMode=false
|
||||
InpDebugMode=true ; CHANGED: See trade decisions
|
||||
|
||||
Reference in New Issue
Block a user