The Well Martin EA is a robust trading tool tailored for the MetaTrader 5 platform, utilizing two key indicators: Bollinger Bands and the Average Directional Index (ADX). Designed for calmer market conditions, this EA can help you navigate trades with greater confidence.
One of the standout features of this EA is its risk management strategy. After hitting a Stop Loss, it increases the lot size by a KLot coefficient until it reaches the maximum limit, known as MaxLot. Once that’s reached, it resets back to the initial size—Lot.
For those who value privacy, the EA includes a Stealth Mode, where your stop levels are only visible to you.
In terms of trading signals, the EA opens a Buy order when the price breaks below the lower Bollinger Bands and a Sell order when it surpasses the upper boundary. This strategy can be especially effective on the EURUSD pair, specifically on the M15 timeframe.
Expert Advisor Parameters:
//--- Bollinger Bands indicator input parameters input int BBPeriod = 84; // Bollinger Bands period input int BBShift = 0; // Offset relative to the chart input double BBDev = 1.8; // Standard deviation //--- ADX indicator input parameters input int ADXPeriod = 40; // ADX period input int ADXLevel = 45; // ADX level //--- EA input parameters input int TP = 1200 // Take Profit input int SL = 1400 // Stop Loss input int Slip = 50 // Slippage input int Stelth = 0 // Mode: 1-stops are only visible to the user input double KLot = 2 // Lot multiplier input double MaxLot = 5 // Maximum lot size re-setting it to the start size input double Lot = 0.1 // Number of lots for trading input color LableClr = clrGreen // Label color

Fig.1. Stealth Mode

Fig.2. Optimization results from 2010 until now
Tips for Using the Well Martin EA:
- Consider using this EA as a foundation for your own trading strategy.
Comments 0