Add specific Grid EA settings for EURUSD, USDJPY, GBPUSD, GBPJPY
This commit is contained in:
@@ -251,6 +251,73 @@ InpMaxDailyDrawdown=3.0
|
||||
MagicNum=333003
|
||||
```
|
||||
|
||||
### Grid EA - EURUSD (Most Liquid)
|
||||
**File:** `grid-eurusd.set`
|
||||
```ini
|
||||
; EURUSD Grid - tightest spreads, most liquid
|
||||
UseAutoPivots=true
|
||||
Entry=14 ; 14 pip spacing (tight)
|
||||
TP=22 ; 22 pip TP
|
||||
MaxLevels=8 ; More levels (liquid)
|
||||
; Filters
|
||||
UseRSIFilter=true
|
||||
RSILower=28
|
||||
RSIUpper=72
|
||||
UseADXFilter=true
|
||||
ADXMax=32
|
||||
; Best: European session
|
||||
MagicNum=333011
|
||||
```
|
||||
|
||||
### Grid EA - USDJPY (Trending - Use Caution)
|
||||
**File:** `grid-usdjpy.set`
|
||||
```ini
|
||||
; USDJPY Grid - trending pair
|
||||
UseAutoPivots=true
|
||||
Entry=16 ; 16 pip spacing
|
||||
TP=26
|
||||
MaxLevels=5 ; Conservative
|
||||
; Filters - strict
|
||||
UseADXFilter=true
|
||||
ADXMax=24
|
||||
GetOut=Y ; SAFETY ENABLED
|
||||
; WARNING: JPY trends hard
|
||||
MagicNum=333012
|
||||
```
|
||||
|
||||
### Grid EA - GBPUSD (Cable - Volatile)
|
||||
**File:** `grid-gbpusd.set`
|
||||
```ini
|
||||
; GBPUSD Grid - volatile Cable
|
||||
UseAutoPivots=true
|
||||
Entry=22 ; 22 pip spacing (wide)
|
||||
TP=35
|
||||
MaxLevels=4 ; Conservative
|
||||
; Filters - strict
|
||||
UseADXFilter=true
|
||||
ADXMax=22
|
||||
GetOut=Y ; SAFETY ENABLED
|
||||
; WARNING: High volatility
|
||||
MagicNum=333013
|
||||
```
|
||||
|
||||
### Grid EA - GBPJPY (The Beast - EXTREME RISK)
|
||||
**File:** `grid-gbpjpy.set`
|
||||
```ini
|
||||
; GBPJPY Grid - MOST VOLATILE PAIR
|
||||
UseAutoPivots=true
|
||||
Entry=45 ; 45 pip spacing (VERY WIDE)
|
||||
TP=70
|
||||
MaxLevels=3 ; MAX 3 levels
|
||||
; Filters - very strict
|
||||
UseADXFilter=true
|
||||
ADXMax=20
|
||||
GetOut=Y ; MUST ENABLE
|
||||
; CRITICAL: Can move 200+ pips
|
||||
; NOT for beginners
|
||||
MagicNum=333014
|
||||
```
|
||||
|
||||
### Grid EA - EURJPY (Moderate Volatility)
|
||||
**File:** `grid-eurjpy.set`
|
||||
```ini
|
||||
|
||||
50
grid-eurusd.set
Normal file
50
grid-eurusd.set
Normal file
@@ -0,0 +1,50 @@
|
||||
; === OrdersEA_Smart_Grid - EURUSD Settings ===
|
||||
; EURUSD Grid - Most liquid pair, tight spreads
|
||||
; Timeframe: H1
|
||||
; Best for: European session, ranging markets
|
||||
|
||||
; === Grid Settings ===
|
||||
UseAutoPivots=true
|
||||
InpManualHigh=0 ; Use auto-calculated pivot levels
|
||||
InpManualLow=0
|
||||
Entry=14 ; 14 pip spacing (tight for EURUSD)
|
||||
TP=22 ; 22 pip take profit
|
||||
Lots=0.01
|
||||
MaxLevels=8 ; More levels (very liquid)
|
||||
|
||||
; === Range Filters ===
|
||||
UseRSIFilter=true ; Essential for ranging detection
|
||||
RSIPeriod=14
|
||||
RSILower=28 ; Wider range for liquidity
|
||||
RSIUpper=72
|
||||
UseADXFilter=true ; Avoid trending markets
|
||||
ADXPeriod=14
|
||||
ADXMax=32 ; Allow slight trends (liquid pair)
|
||||
UseATRFilter=true
|
||||
ATRPeriod=14
|
||||
ATRMultiplier=1.4 ; Tighter bands for liquid pair
|
||||
|
||||
; === Risk Management ===
|
||||
StopLoss=0 ; Grid relies on TP, not SL
|
||||
TRADE_RANGE=45
|
||||
LongLimit=0
|
||||
ShortLimit=0
|
||||
GetOut=N
|
||||
OpenNewTrades=Y
|
||||
Opposite=false
|
||||
TakeProfitLevelPercent=50
|
||||
TakeProfitLevelDollarAmount=2000
|
||||
EquityFactorPercent=0
|
||||
LotsFactorPercent=0
|
||||
BaseEquity=10000
|
||||
Master=false
|
||||
DiagnosticModeOn=false
|
||||
InpMaxDailyDrawdown=3.0 ; Standard for major pair
|
||||
|
||||
; === Session Notes ===
|
||||
; Best: European session (08:00-17:00 GMT)
|
||||
; Avoid: NFP (first Friday), ECB announcements
|
||||
; Avoid: US session open volatility (13:30 GMT)
|
||||
|
||||
; === EA Settings ===
|
||||
MagicNum=333011
|
||||
54
grid-gbpjpy.set
Normal file
54
grid-gbpjpy.set
Normal file
@@ -0,0 +1,54 @@
|
||||
; === OrdersEA_Smart_Grid - GBPJPY Settings ===
|
||||
; GBPJPY Grid - EXTREME VOLATILITY WARNING
|
||||
; Timeframe: H1
|
||||
; This is THE most volatile major pair - use extreme caution
|
||||
|
||||
; === Grid Settings ===
|
||||
UseAutoPivots=true
|
||||
InpManualHigh=0
|
||||
InpManualLow=0
|
||||
Entry=45 ; 45 pip spacing - VERY WIDE
|
||||
TP=70 ; 70 pip TP
|
||||
Lots=0.01
|
||||
MaxLevels=3 ; MAXIMUM 3 levels
|
||||
|
||||
; === Range Filters ===
|
||||
UseRSIFilter=true
|
||||
RSIPeriod=14
|
||||
RSILower=25 ; Very wide range
|
||||
RSIUpper=75
|
||||
UseADXFilter=true
|
||||
ADXPeriod=14
|
||||
ADXMax=20 ; Very strict - only flat markets
|
||||
UseATRFilter=true
|
||||
ATRPeriod=14
|
||||
ATRMultiplier=2.2 ; Very wide bands
|
||||
|
||||
; === Risk Management ===
|
||||
StopLoss=0
|
||||
TRADE_RANGE=120
|
||||
LongLimit=0
|
||||
ShortLimit=0
|
||||
GetOut=Y ; MUST ENABLE
|
||||
OpenNewTrades=Y
|
||||
Opposite=false
|
||||
TakeProfitLevelPercent=30 ; Quick profit target
|
||||
TakeProfitLevelDollarAmount=1000
|
||||
EquityFactorPercent=0
|
||||
LotsFactorPercent=0
|
||||
BaseEquity=10000
|
||||
Master=false
|
||||
DiagnosticModeOn=true ; Debug on for monitoring
|
||||
InpMaxDailyDrawdown=1.5 ; VERY conservative
|
||||
|
||||
; === CRITICAL WARNINGS ===
|
||||
; GBPJPY can move 200+ pips in minutes
|
||||
; Known as "The Beast" or "The Dragon"
|
||||
; AVOID: All UK/Japan news
|
||||
; AVOID: Risk-off events (massive JPY appreciation)
|
||||
; AVOID: Brexit news, UK political events
|
||||
; MONITOR: Close manually if strong trend starts
|
||||
; NOT RECOMMENDED for beginners
|
||||
|
||||
; === EA Settings ===
|
||||
MagicNum=333014
|
||||
52
grid-gbpusd.set
Normal file
52
grid-gbpusd.set
Normal file
@@ -0,0 +1,52 @@
|
||||
; === OrdersEA_Smart_Grid - GBPUSD Settings ===
|
||||
; GBPUSD Grid (Cable) - Volatile, wide spreads
|
||||
; Timeframe: H1
|
||||
; WARNING: High volatility - use wide grid spacing
|
||||
|
||||
; === Grid Settings ===
|
||||
UseAutoPivots=true
|
||||
InpManualHigh=0
|
||||
InpManualLow=0
|
||||
Entry=22 ; 22 pip spacing - WIDE for Cable volatility
|
||||
TP=35 ; 35 pip TP
|
||||
Lots=0.01
|
||||
MaxLevels=4 ; Conservative max levels
|
||||
|
||||
; === Range Filters ===
|
||||
UseRSIFilter=true
|
||||
RSIPeriod=14
|
||||
RSILower=28
|
||||
RSIUpper=72
|
||||
UseADXFilter=true
|
||||
ADXPeriod=14
|
||||
ADXMax=22 ; Strict - avoid Cable trends
|
||||
UseATRFilter=true
|
||||
ATRPeriod=14
|
||||
ATRMultiplier=2.0 ; Wide ATR bands
|
||||
|
||||
; === Risk Management ===
|
||||
StopLoss=0
|
||||
TRADE_RANGE=75
|
||||
LongLimit=0
|
||||
ShortLimit=0
|
||||
GetOut=Y ; ENABLE for volatility protection
|
||||
OpenNewTrades=Y
|
||||
Opposite=false
|
||||
TakeProfitLevelPercent=40 ; Lower target
|
||||
TakeProfitLevelDollarAmount=1500
|
||||
EquityFactorPercent=0
|
||||
LotsFactorPercent=0
|
||||
BaseEquity=10000
|
||||
Master=false
|
||||
DiagnosticModeOn=false
|
||||
InpMaxDailyDrawdown=2.0 ; Conservative (volatile)
|
||||
|
||||
; === CRITICAL WARNINGS ===
|
||||
; GBPUSD can move 50-100 pips on news
|
||||
; Brexit, UK political news = extreme volatility
|
||||
; Avoid: UK data releases, BOE meetings
|
||||
; Avoid: US session overlap (high volatility)
|
||||
; Monitor closely - this is the most volatile major
|
||||
|
||||
; === EA Settings ===
|
||||
MagicNum=333013
|
||||
51
grid-usdjpy.set
Normal file
51
grid-usdjpy.set
Normal file
@@ -0,0 +1,51 @@
|
||||
; === OrdersEA_Smart_Grid - USDJPY Settings ===
|
||||
; USDJPY Grid - JPY trending pair, use with caution
|
||||
; Timeframe: H1
|
||||
; WARNING: JPY pairs trend strongly - tighten risk
|
||||
|
||||
; === Grid Settings ===
|
||||
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)
|
||||
|
||||
; === Range Filters ===
|
||||
UseRSIFilter=true
|
||||
RSIPeriod=14
|
||||
RSILower=30
|
||||
RSIUpper=70
|
||||
UseADXFilter=true
|
||||
ADXPeriod=14
|
||||
ADXMax=24 ; Stricter - JPY trends hard
|
||||
UseATRFilter=true
|
||||
ATRPeriod=14
|
||||
ATRMultiplier=1.7 ; Wider ATR for volatility
|
||||
|
||||
; === Risk Management ===
|
||||
StopLoss=0
|
||||
TRADE_RANGE=55
|
||||
LongLimit=0
|
||||
ShortLimit=0
|
||||
GetOut=Y ; ENABLE GetOut for safety
|
||||
OpenNewTrades=Y
|
||||
Opposite=false
|
||||
TakeProfitLevelPercent=50
|
||||
TakeProfitLevelDollarAmount=2000
|
||||
EquityFactorPercent=0
|
||||
LotsFactorPercent=0
|
||||
BaseEquity=10000
|
||||
Master=false
|
||||
DiagnosticModeOn=false
|
||||
InpMaxDailyDrawdown=2.5 ; Conservative (trending pair)
|
||||
|
||||
; === 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
|
||||
|
||||
; === EA Settings ===
|
||||
MagicNum=333012
|
||||
Reference in New Issue
Block a user