Atomic Advanced EA
- Asesores Expertos
- Lucas Bremer Moinhos Dos Santos
- Versión: 50.0
- Actualizado: 23 marzo 2026
- Activaciones: 5
Disclaimer: These profiles are expert-level starting points, not guaranteed "set-and-forget" solutions. Market conditions change, and different brokers have unique data feeds and execution policies. It is absolutely essential to backtest these settings thoroughly and run them on a demo account before committing real capital. Pay close attention to the risk management inputs.
## 1. The Conservative Trend Follower 📈
This profile is designed for patience and stability. It trades on a higher timeframe, focusing on major currency pairs. The goal is to capture large moves in established trends, using a combination of moving averages and a trend-strength filter to avoid choppy markets.
-
Trading Philosophy: Follow strong, confirmed trends on major pairs, prioritizing capital preservation.
-
Recommended Symbols: EURUSD , GBPUSD , AUDUSD , USDJPY
-
Recommended Timeframe: PERIOD_H4 (4-Hour)
EA Input Setup
-
Main Strategy
-
MainStrategy : STRATEGY_MA_CROSSOVER
-
MA_Fast_Period : 9
-
MA_Slow_Period : 21
-
MA_Cross_Method : MODE_EMA
-
-
Signal Confirmation Filters
-
UseADX_Filter : true
-
ADX_Period : 14
-
ADX_Min_Strength : 25.0 (This is crucial; it prevents trading in weak or non-trending markets)
-
-
Risk & Trade Management
-
UseDynamicLots : true
-
RiskPerTradePercent : 1.0 (A conservative 1% risk per trade)
-
StopLossMode : SL_MODE_ATR
-
AtrMultiplierSL : 2.0 (Places the SL at 2x the Average True Range, giving the trade room to breathe)
-
AtrPeriod : 14
-
TakeProfitMode : TP_MODE_ATR
-
AtrMultiplierTP : 3.0 (Targets a 1:1.5 Risk/Reward Ratio based on volatility)
-
BreakevenMode : BREAKEVEN_PROFIT_POINTS
-
Breakeven_Points : 500 (Move SL to entry after 50 pips in profit)
-
Breakeven_Buffer_Points : 50 (Lock in 5 pips of profit when moving to breakeven)
-
TrailingStopType : TRAILING_STOP_MA
-
TS_MA_Period : 9 (Trails the stop loss along the fast EMA)
-
## 2. The Gold Scalper ⚡
This profile is aggressive and designed for volatile instruments like Gold (XAUUSD). It operates on a lower timeframe, using a price-breakout strategy combined with momentum confirmation to capture short, rapid price swings.
-
Trading Philosophy: Exploit high volatility for quick profits, entering on breakouts and exiting quickly.
-
Recommended Symbols: XAUUSD
-
Recommended Timeframe: PERIOD_M15 (15-Minute)
EA Input Setup
-
Main Strategy
-
MainStrategy : STRATEGY_BOLLINGER_BANDS
-
BB_Period : 20
-
BB_Deviation : 2.0 (Standard settings for price breakouts)
-
-
Signal Confirmation Filters
-
UseRSI_Filter : true (To avoid buying into overbought or selling into oversold conditions immediately)
-
RSI_Period : 14
-
RSI_Overbought : 70.0
-
RSI_Oversold : 30.0
-
UseVolatilityFilter : true (Only trade when there's enough movement)
-
Volatility_ATR_Period : 14
-
Volatility_Min_ATR_Pips : 150.0 (15 pips for XAUUSD)
-
-
Risk & Trade Management
-
UseDynamicLots : true
-
RiskPerTradePercent : 2.0 (Slightly higher risk for a scalping strategy)
-
StopLossMode : SL_MODE_POINTS
-
FixedPointsSL : 2500 (A fixed 250-pip stop loss for XAUUSD)
-
TakeProfitMode : TP_MODE_PARTIAL_POINTS
-
FixedPointsTP : 6000 (The final TP target)
-
PartialTP_Enable_1 : true
-
PartialTP_Points_1 : 2000 (Take 50% profit at 200 pips)
-
PartialTP_ClosePercent_1 : 50.0
-
PartialTP_Enable_2 : true
-
PartialTP_Points_2 : 4000 (Take another 25% at 400 pips)
-
PartialTP_ClosePercent_2 : 25.0
-
BreakevenMode : BREAKEVEN_ON_PTP1 (Move to breakeven as soon as the first partial profit is taken)
-
TrailingStopType : TRAILING_STOP_NONE
-
## 3. The Mean Reversionist 🔄
This profile works best in ranging markets or on pairs that tend to revert to a mean. It uses oscillators to identify overbought/oversold conditions, expecting the price to return to its average. This is a counter-trend strategy.
-
Trading Philosophy: Sell when the market is overbought and buy when it's oversold, profiting from price corrections.
-
Recommended Symbols: AUDNZD , EURCHF , USDCAD (Pairs that often range)
-
Recommended Timeframe: PERIOD_H1 (1-Hour)
EA Input Setup
-
Main Strategy
-
MainStrategy : STRATEGY_STOCHASTIC
-
Stoch_Mode : STOCH_MODE_EXIT_FROM_ZONE (Signal is generated when the indicator leaves the OB/OS zone, confirming a potential reversal)
-
Stoch_K_Period : 15
-
Stoch_Overbought : 80.0 (Using 80/20 levels for stronger signals)
-
Stoch_Oversold : 20.0
-
-
Signal Confirmation Filters
-
UseBBands_Filter : true (This is a great combo: trade Stoch reversals only when price also reverses from the outer Bollinger Bands)
-
BB_Period : 20
-
BB_Deviation : 2.0
-
-
Risk & Trade Management
-
UseDynamicLots : true
-
RiskPerTradePercent : 1.5
-
StopLossMode : SL_MODE_ATR
-
AtrMultiplierSL : 1.5 (Tighter stop loss for a reversal strategy)
-
TakeProfitMode : TP_MODE_POINTS
-
FixedPointsTP : 800 (A fixed 80-pip target)
-
BreakevenMode : BREAKEVEN_NONE
-
TrailingStopType : TRAILING_STOP_NONE (We want to hit the fixed TP, not trail it)
-
ReversalMode : REVERSAL_CLOSE_AND_REVERT (If an opposite signal appears, close the current trade and immediately open a new one)
-
## 4. The Price Action Specialist 🕯️
This profile relies purely on candlestick patterns for entries, filtered by a long-term moving average to ensure trades are taken in the direction of the overall trend. It's a clean, classic approach to trading.
-
Trading Philosophy: Use powerful, multi-candle reversal patterns as entry triggers, but only in the direction of the primary trend.
-
Recommended Symbols: EURUSD , GBPUSD , USDJPY
-
Recommended Timeframe: PERIOD_D1 (Daily)
EA Input Setup
-
Main Strategy
-
MainStrategy : STRATEGY_PRICE_ACTION
-
PriceAction_UseEngulfing : true
-
PriceAction_UsePinBar : true
-
PriceAction_UseMorningEveningStar : true
-
PriceAction_UseHarami : false (Often a weaker signal)
-
PriceAction_UseThreeSoldiersCrows : true
-
PriceAction_UseThreeLineStrike : false (Can be unreliable)
-
-
Signal Confirmation Filters
-
UseSingleMA_Filter : true (The most important filter for this profile)
-
MA_Period : 50 (A 50 EMA acts as a dynamic trend line)
-
MA_Method : MODE_EMA
-
-
Risk & Trade Management
-
UseDynamicLots : true
-
RiskPerTradePercent : 2.0
-
StopLossMode : SL_MODE_PERCENT
-
StopLossPercent : 1.0 (1% of the entry price, suitable for the large candles on a daily chart)
-
TakeProfitMode : TP_MODE_PERCENT
-
TakeProfitPercent : 2.0 (A simple 1:2 Risk/Reward Ratio)
-
BreakevenMode : BREAKEVEN_PROFIT_POINTS
-
Breakeven_Points : 1000 (100 pips)
-
Breakeven_Buffer_Points : 100 (10 pips)
-
TrailingStopType : TRAILING_STOP_SAR (Parabolic SAR is excellent for trailing stops on daily charts)
-
SAR_Step : 0.02
-
SAR_Max : 0.2
-
## 5. The Grid Trader (High Risk) 🥅
This profile activates the EA's grid functionality. It's designed for a trader who understands the high risks involved. The goal is to profit from a ranging market or a slow-moving trend by accumulating positions. Use with extreme caution, on a small, dedicated account.
-
Trading Philosophy: Place a grid of pending orders around the current price to profit from market oscillations within a defined range.
-
Recommended Symbols: EURUSD (Low spread and less prone to extreme spikes)
-
Recommended Timeframe: PERIOD_M30 (30-Minute)
EA Input Setup
-
Grid Strategy Settings
-
Grid_Enable : true (This activates the grid logic and disables the main strategies)
-
Grid_Mode : GRID_MODE_SYMMETRIC (Places buy stops above and sell stops below the current price)
-
Grid_Levels : 7 (7 orders on each side)
-
Grid_Dynamic_Spacing : true
-
Grid_Spacing_ATR_Multiplier : 0.5 (Space the grid levels at 50% of the 14-period ATR)
-
Grid_Dynamic_Lots : false (Using a fixed lot is safer for grid)
-
LotSize : 0.01 (Start with the absolute minimum lot size)
-
Grid_Close_All_Profit_USD : 50.0 (Close the entire grid once it reaches $50 profit)
-
Grid_Close_All_Loss_USD : -150.0 (Crucial! A hard stop loss for the entire grid)
-
-
Risk & Trade Management (For Grid Orders)
-
StopLossMode : SL_MODE_NONE (Individual SLs are typically not used in this grid style; risk is managed by the Grid_Close_All_Loss_USD )
-
TakeProfitMode : TP_MODE_NONE (The Grid_Close_All_Profit_USD acts as the collective take profit)
-
