Confirmed MACD Divergence with Netting

MACD Divergence Expert Advisor MACD Divergence Expert Advisor

This Expert Advisor trades MACD divergence between price swing trends and MACD swing trends.

MACD divergence is based on the idea that price movement and momentum should usually move together. The MACD indicator measures the relationship between faster and slower moving averages, helping to show whether bullish or bearish momentum is strengthening or weakening. A divergence occurs when price makes a new high or low, but the MACD fails to confirm that move. For example, if price makes a higher high while MACD makes a lower high, buying momentum may be weakening even though price is still rising. This can warn that a reversal or pull-back may be developing. Similarly, if price makes a lower low while MACD makes a higher low, selling pressure may be weakening. MACD divergence is useful because it can highlight potential turning points before they become obvious from price alone, giving traders an early signal that the current trend may be losing strength. However, divergence is not a guarantee of reversal, so it is usually strongest when combined with additional filters such as trend structure, price action, volatility, risk controls, and confirmation rules.

Following identification of a MACD Divergence, several confirmation rules are available to filter out the lowest quality signals. This adviser utilises our propriety TradeNet algorithm to net trades and mange exposure.

Important: MACD Divergence signals should not be constituted as financial advice. Always validate settings in the MT4 Strategy Tester and then on a demo account before using real capital.

Strategy overview

MACD divergence trading looks for disagreement between price direction and MACD direction. The EA searches for recent price peaks/troughs and corresponding MACD peaks/troughs. It then compares the two-point price trend with the two-point MACD trend.

A signal is only generated when:

  1. A valid price swing pair exists (e.g. two peaks or two troughs).
  2. A valid MACD swing pair exists.
  3. The price and MACD trend lines overlap enough in time.
  4. The price and MACD swing endpoints are close enough in time.
  5. The selected divergence type is enabled.
  6. Any enabled confirmers approve the signal.
  7. Trade exposure and risk rules allow the order.

Divergence types

The EA supports four divergence patterns.

Regular bearish divergence

Trade signal: SELL

Price structure: Price makes higher peaks

MACD structure: MACD makes lower peaks

Meaning: Price is rising, but momentum is weakening.

Regular bullish divergence

Trade signal: BUY

Price structure: Price makes lower troughs

MACD structure: MACD makes higher troughs

Meaning: Price is falling, but downside momentum is weakening.

Hidden bearish divergence

Trade signal: SELL

Price structure: Price makes lower peaks

MACD structure: MACD makes higher peaks

Meaning: Downtrend continuation signal.

Hidden bullish divergence

Trade signal: BUY

Price structure: Price makes higher troughs

MACD structure: MACD makes lower troughs

Meaning: Uptrend continuation signal.

Signal flow

The EA follows this high-level flow:

New bar ↓ Detect price peaks/troughs and MACD peaks/troughs ↓ Build price trend and MACD trend from the two most recent matching markers ↓ Check divergence structure, overlap, alignment, and enabled divergence types ↓ Generate any BUY / SELL signals ↓ Run enabled confirmers ↓ Calculate optional stop loss and take profit ↓ Use TradeNet to net existing positions and manage exposure limits

Input parameters

MACD Settings & Signals

MACDFast

Type: int

Default: 12

Description: Fast EMA period used in the MACD calculation.

Strategy effect: Lower values make MACD more responsive but noisier. Higher values smooth it but may delay signals. Must be greater than 0 and less than MACDSlow .

MACDSlow

Type: int

Default: 26

Description: Slow EMA period used in the MACD calculation.

Strategy effect: Higher values make the MACD baseline slower and smoother. Must be greater than MACDFast .

MACDSignal

Type: int

Default: 9

Description: Signal-line period used by the MACD indicator.

Strategy effect: Used by the MACD signal-line confirmer and the MACD values used for peak/trough detection.

MACDPrice

Type: ENUM_APPLIED_PRICE

Default: PRICE_CLOSE

Description: Price source used for MACD, such as close, open, high, low, median, typical, or weighted price.

Strategy effect: Changing this can materially change where MACD peaks/troughs form.

DetectBullishDivergence

Type: bool

Default: true

Description: Enables regular bullish divergence detection.

Strategy effect: If disabled, the EA will not detect or trade regular bullish BUY setups.

DetectBearishDivergence

Type: bool

Default: true

Description: Enables regular bearish divergence detection.

Strategy effect: If disabled, the EA will not detect or trade regular bearish SELL setups.

DetectHiddenBullishDivergence

Type: bool

Default: true

Description: Enables hidden bullish divergence detection.

Strategy effect: If disabled, the EA will not detect or trade hidden bullish continuation BUY setups.

DetectHiddenBearishDivergence

Type: bool

Default: true

Description: Enables hidden bearish divergence detection.

Strategy effect: If disabled, the EA will not detect or trade hidden bearish continuation SELL setups.

Peak / Trough & Trend Detection

effect.

SearchBars

Type: int

Default: 5

Description: Number of bars searched on either side of a candidate candle when deciding whether that candle is a peak or trough.

Strategy effect: Smaller values detect more local swings and create more signals. Larger values require more significant swings but add delay because a peak/trough can only be confirmed after enough future bars have formed. Must be at least 1 .

MaxSwingAlignmentBars

Type: int

Default: 5

Description: Maximum allowed bar distance between the matching price and MACD swing endpoints. It checks both start markers and end markers.

Strategy effect: Lower values require price and MACD swing points to occur very close together in time. Higher values allow looser matching but may pair swings that are less directly related. Cannot be negative.

MinProminencePoints

Type: double

Default: 0.0

Description: Minimum local prominence, in broker points, required for a price peak/trough.

Strategy effect: Higher values require price swing points to stand out more from neighbouring bars. This reduces noisy swings but may remove valid early signals. Cannot be negative.

MinMACDProminence

Type: double

Default: 0.0

Description: Minimum local prominence required for a MACD peak/trough. This is an absolute MACD-value difference, not broker points.

Strategy effect: Higher values require MACD swing points to stand out more clearly. Too high a value may remove many valid divergence signals. Cannot be negative.

MinTrendOverlapRatio

Type: double

Default: 0.75

Description: Minimum required time-overlap ratio between the price trend and MACD trend. Value must be between 0 and 1 .

Strategy effect: Higher values require the price and MACD trends to cover a more similar time window. Lower values allow looser matching.

Confirmation Settings

Confirmers are optional filters applied after a divergence signal is generated. A trade is only allowed if every enabled confirmer confirms the signa.

UsePriceBarConfirmer

Type: bool

Default: true

Description: Requires the previous completed candle to agree with the trade direction. For BUY, close must be above open. For SELL, close must be below open.

Strategy effect: Simple momentum filter. Can remove trades where the immediate previous candle disagrees with the signal, but may also reject early reversal entries.

UseMACDMomentumConfirmer

Type: bool

Default: true

Description: Requires MACD main-line momentum to move in the trade direction between the two most recent completed bars.

Strategy effect: For BUY, MACD main at shift 1 must be greater than shift 2. For SELL, MACD main at shift 1 must be less than shift 2. This can reduce counter-momentum entries but may delay reversal trades.

UsePriceChangeConfirmer

Type: bool

Default: true

Description: Enables a prior price-move filter.

Strategy effect: Confirms BUY only after price has fallen enough over the lookback window; confirms SELL only after price has risen enough. Intended to ensure the divergence appears after a meaningful prior move.

PriceChangeConfirmationBars

Type: int

Default: 30

Description: Lookback length for the price-change confirmer. Uses completed candles only.

Strategy effect: Higher values measure a longer prior move. Must be at least 1 when the confirmer is enabled.

PriceChangeConfirmationMinMovePoints

Type: double

Default: 100.0

Description: Minimum price move, in broker points, required over PriceChangeConfirmationBars .

Strategy effect: Higher values make the filter stricter. For BUY, old close minus recent close must be at least this value in points. For SELL, recent close minus old close must be at least this value in points. Cannot be negative when enabled.

UseMACDDivergenceQualityConfirmer

Type: bool

Default: true

Description: Enables the divergence quality score filter.

Strategy effect: Scores the quality of the price/MACD divergence structure and only allows trades above the threshold.

MACDDivergenceQualityThreshold

Type: double

Default: 60.0

Description: Minimum quality score required to confirm the signal. Score range is 0 to 100 .

Strategy effect: Higher values make the EA more selective. Must be between 0 and 100 when enabled.

MACDDivergenceQualityTargetPriceSwingPoints

Type: double

Default: 100.0

Description: Price swing size, in broker points, that earns a full price-swing score.

Strategy effect: Higher values require larger price separation between the two price swing markers to receive full quality credit. Must be greater than 0 when enabled.

MACDDivergenceQualityTargetMACDSwing

Type: double

Default: 0.005

Description: MACD swing size that earns a full MACD-swing score.

Strategy effect: Higher values require stronger MACD separation between the two MACD swing markers. Must be greater than 0 when enabled.

MACDDivergenceQualityTargetAlignmentBars

Type: int

Default: 10

Description: Bar distance used to score how closely price and MACD swing endpoints align.

Strategy effect: Lower values reward tighter alignment. Higher values make the quality score more forgiving. Cannot be negative when enabled.

MACDDivergenceQualityTargetSwingSeparationBars

Type: int

Default: 15

Description: Swing-point separation that earns a full separation score.

Strategy effect: Helps avoid very short, noisy divergence structures. Higher values reward wider, slower-developing setups. Must be greater than 0 when enabled.

UseMACDSignalConfirmer

Type: bool

Default: true

Description: Enables confirmation using the relationship between MACD main and MACD signal lines.

Strategy effect: Adds an extra MACD confirmation layer. Can be used in direction mode or recent-crossover mode.

MACDSignalConfirmationMode

Type: MACD_SIGNAL_CONFIRMATION_MODE

Default: MACD_SIGNAL_CONFIRMATION_RECENT_CROSSOVER

Description: Selects how the MACD signal-line confirmer works.

Strategy effect: MACD_SIGNAL_CONFIRMATION_DIRECTION checks whether MACD main is above/below the signal line on the most recently completed bar. MACD_SIGNAL_CONFIRMATION_RECENT_CROSSOVER requires a recent bullish/bearish crossover.

MACDSignalCrossoverConfirmationBars

Type: int

Default: 5

Description: Number of completed bars searched for a MACD main/signal-line crossover when recent-crossover mode is used.

Strategy effect: Higher values allow older crossovers to confirm the signal. Lower values require fresher confirmation. Must be at least 1 when the confirmer is enabled.

Trade Settings

LotSize

Type: double

Default: 1

Description: Requested trade size. The broker's minimum lot, maximum lot, and lot step are applied by TradeNet .

Strategy effect: Larger values increase both profit and loss. Must be greater than 0 .

NetType

Type: NETTYPE

Default: NETTYPE_ADVISOR

Description: Controls whether new trades net against existing opposite positions.

Strategy effect: NETTYPE_NONE : do not net; open new trades independently. NETTYPE_ADVISOR : net only positions for this EA's MagicNumber . NETTYPE_ALL : net against all open market positions for the symbol.

ExposureCalc

Type: EXPOSURECALC

Default: EXPOSURECALC_ADVISOR

Description: Controls which open positions count toward the MaxExposure limit.

Strategy effect: EXPOSURECALC_ADVISOR : count only this EA's positions. EXPOSURECALC_ALL : count all open market positions for the symbol.

MaxExposure

Type: double

Default: 10

Description: Maximum allowed absolute open exposure for the symbol. Use -1 for unlimited.

Strategy effect: Prevents the EA from increasing exposure above the limit. A value of 0 prevents new exposure. Must be -1 or zero/positive.

SlippagePoints

Type: int

Default: 3

Description: Maximum allowed execution slippage in broker points for order send/close operations.

Strategy effect: Higher values make execution more permissive. Lower values can increase failed orders in fast markets. Cannot be negative.

MagicNumber

Type: int

Default: 123456

Description: Identifier applied to orders opened by this EA.

Strategy effect: Important when using advisor-level netting/exposure. Use a unique value for each EA instance or strategy.

Risk Management Settings

UseStopLoss

Type: bool

Default: false

Description: Enables automatic stop-loss placement based on the signal price trend.

Strategy effect: For BUY, stop loss is below the lowest price marker plus buffer. For SELL, stop loss is above the highest price marker plus buffer and spread adjustment.

StopBufferPoints

Type: double

Default: 20

Description: Extra buffer, in broker points, added beyond the trend high/low used for the stop loss.

Strategy effect: Higher values place stops farther away and reduce stop-outs, but increase risk per trade. Cannot be negative when stop loss is enabled.

UseTakeProfit

Type: bool

Default: false

Description: Enables automatic take-profit placement based on stop-loss distance.

Strategy effect: Requires a valid stop-loss calculation.

RiskRewardRatio

Type: double

Default: 2

Description: Reward multiple used to calculate take profit from stop-loss distance.

Strategy effect: Example: if risk distance is 100 points and ratio is 2 , take profit is placed 200 points from entry. Must be greater than 0 when take profit is enabled.

Misc

CooldownBars

Type: int

Default: 5

Description: Minimum number of bars after a successfully booked trade before another trade can be placed.

Strategy effect: Higher values reduce trade frequency. Cooldown is only updated when TradeNet.trade() reports that a trade was booked or an existing position was reduced. Cannot be negative.

Notes on points, spread, and broker execution

  • Parameters ending in Points use the broker's MODE_POINT , not necessarily a pip.
  • The EA's stop-loss calculation for SELL trades includes spread because chart highs/lows are bid-based while SELL stop losses are triggered on ask price.
  • TradeNet normalises lots using the broker's minimum lot, maximum lot, and lot step.
  • TradeNet normalises entry, stop-loss, and take-profit prices to the broker's digit precision before order submission.
  • Invalid stop-loss or take-profit distances are rejected before sending the order.
  • Only market orders ( OP_BUY and OP_SELL ) are used for netting and exposure calculations.

Practical tuning guidance

The inputs fall into three categories.

Detection inputs

These decide whether a divergence exists:

SearchBars MaxSwingAlignmentBars MinProminencePoints MinMACDProminence MinTrendOverlapRatio DetectBullishDivergence DetectBearishDivergence DetectHiddenBullishDivergence DetectHiddenBearishDivergence

Use these to control the shape and strictness of the divergence pattern itself.

Confirmation inputs

These decide whether an already-detected divergence is strong enough to trade:

UsePriceBarConfirmer UseMACDMomentumConfirmer UsePriceChangeConfirmer UseMACDDivergenceQualityConfirmer UseMACDSignalConfirmer

More confirmers usually reduce trade count. They can reduce bad trades, but they may also delay or remove profitable early entries.

Execution and risk inputs

These control position size, exposure, stop loss, take profit, slippage, and cooldown:

LotSize NetType ExposureCalc MaxExposure SlippagePoints MagicNumber UseStopLoss StopBufferPoints UseTakeProfit RiskRewardRatio CooldownBars

These do not change the signal itself, but they have a major effect on realised drawdown, account usage, and execution behaviour.

Suggested validation process

Before using the EA live:

  1. Run MT4 Strategy Tester over several market regimes.
  2. Test with realistic spread, commission, swap, and slippage assumptions.
  3. Confirm that the broker's lot size, tick value, and margin model match the intended risk sizing.
  4. Review the Experts and Journal logs for rejected orders, invalid stops, exposure blocks, and confirmer rejections.
  5. Forward-test on a demo account before using real capital.

Current default profile

The current defaults are relatively selective:

MACD: 12 / 26 / 9 SearchBars: 5 MaxSwingAlignmentBars: 5 MinTrendOverlapRatio: 0.75 PriceChangeConfirmer: on, 30 bars / 100 points MACDDivergenceQualityConfirmer: on, threshold 60 MACDSignalConfirmer: on, recent crossover within 5 completed bars StopLoss: off TakeProfit: off CooldownBars: 5

Important: These defaults should be treated as a starting point for testing, not as a guaranteed optimal configuration for all symbols, timeframes, or brokers.
Usage Guide

It is recommended that this EA is run on the standard chart for your chosen symbol with the MACD indicator added. The MACD indicator parameters should be set to match the MACDFast , MACDSlow and MACDSignal parameters set for the expert advisor. Saving this template as MACDDivergence_EA.tpi will reload this setup whenever you use the advisor.

Note: If the Expert Advisor MACD settings differ from the indicator MACD settings, the advisor will execute its strategy but the trend lines won't be shown on the MACD indicator.

Önerilen ürünler
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabi
Deep Analyst Expert Advisor    (mt5  https://www.mql5.com/en/market/product/163998 ) Deep Analyst   is a professional analytical tool powered by a specialized algorithm designed for deep analysis of market cycles and price amplitude fluctuations. By analyzing market conditions over a specific timeframe, the Expert Advisor determines price strength and amplitude using a unique indicator system based exclusively on real-time data. When the global trend and its vector shift, the algorithm automati
This Indicator is use the ZigZag to calculate the Upper and  Lower Bound and the uptrend and the downtrned. Red for downtrend, Green for uptrend and Yellow is for the horizontal trend this horizontal trend also bookmarked the upper limited and the lower limited the the price swings.  Or in simple the Support and the Resistance level. However, You may use the Heikin Ashi to confirm the trend of the buy sell signal above. I cannot guarantee the win rate, Nevertheless, you must study well the timef
Keep It Short Simple
Abdallah Moustafa Hamdy Ahm Abdelrazek
H1 veya D1 zaman dilimi için ayar dosyasını İNDİRİN. Diğer müşterilerin ayar dosyalarını, Özel Müşteriler Sohbetindeki dosya bankası klasöründe bulabilirsiniz. Bu uzman danışman, özellikle EUR/USD ve grid stratejisinde işlem yapmak için tasarlanmıştır. Matematiksel grid stratejisi, ortalama kâr elde etmek için yeni emirler açarak işlemleri optimize etmenizi sağlar, böylece bir dizi emir tutarlı bir şekilde kârla kapatılır. EA, otomatik işlem işlevlerini yönetmek ve işlemleri manuel olarak açma
FREE
FullTrading
Vladislav Filippov
FullTrading is a fully automated trading advisor. The advisor's methodology is based on initiating a number of sequential processes: aggregating a diversified number of potential deals into a special channel with their subsequent transformation into a special information flow, internal calibration of deals by the indicator of eventuality and validity using a trend verifier and filtering entry and exit points thanks to a special software installation, integrated into an advisor (or indicators).
US30 Legion Flip
Ignacio Agustin Mene Franco
US 30 Legion Flip v1.0 Expert Advisor developed to trade the US30 index (Dow Jones Industrial Average) on the M5 timeframe. It uses a Buy Stop and Sell Stop entry system combined with a Stochastic Oscillator filter (5,3,3) to confirm overbought and oversold conditions before executing trades, reducing entries against momentum. Recommended Configuration: Pair: US30 / Wall Street 30 Timeframe: M5 Minimum Balance: $1,000 USD Recommended Broker: IC Markets (RAW Spread account) Dynamic Stop Loss
Insight Investor: Advanced Multi-Currency Forex Trading Bot Introduction In the fast-paced world of Forex trading, having the right tools can significantly enhance your trading experience. Insight Investor is an advanced multi-currency trading bot designed to automate and optimize your trading operations. This expert advisor employs modern algorithms to analyze market conditions and execute trades, aiming to deliver consistent results while maintaining controlled risk levels. Key Features of Ins
EARLY REMINDER: The Starting price is 65 price will rise soon up to 365$ and then 750$ after first 10 copies of sales. Grab this offer now! Introduction Hello, traders! Welcome to the demonstration of the Forex Beast Indicator , a comprehensive tool designed to assist aspiring traders in navigating the complexities of the forex market. This indicator incorporates seven essential components to provide a well-rounded trading experience: Moving Averages Colored Zones Support and Resistance Levels
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
introduction: Hello, I present to you the advanced and final version of the "Binary Hedger FV" Expert Advisor. I won't delve into extensive details about the EA's concept, as I've covered all the information in the initial version or what can be referred to as the EA's trial version, accessible through the following link: https://www.mql5.com/en/market/product/93688?source=Site +Market+My+Products+Page In this presented version, you have a comprehensive and complete release that incorporates all
NeuralProfit
Vladislav Filippov
NeuralProfit is a fully automated trading advisor. The advisor's methodology is based on initiating a number of sequential processes: aggregating a diversified number of potential deals into a special channel with their subsequent transformation into a special information flow, internal calibration of deals by the eventuality indicator. NeuralProfit- - does not use the martingale strategy and other strategies based on lot multiplication, preferring the safety of trading and the absence of hig
Harvest GOLD
Sayan Vandenhout
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $30000
PandaTrader
Evgeniy Zhdan
An automatic trading system is based on calculating the difference between key Fibonacci levels and their ratio to the size of Fibo order candles. A unique tracking algorithm for each position allows you to control the price behavior. If it is recognized that it is not advisable to hold the position further, it will be closed. Advisor controls ping and slippage of the trading server and adapts to them.   Trading instruments (timeframe m5): EURUSD, GBPUSD, USDCAD. Recommended: VPS; low spread;
Introduction This indicator detects volume spread patterns for buy and sell opportunity. The patterns include demand and supply patterns. You might use each pattern for trading. However, these patterns are best used to detect the demand zone (=accumulation area) and supply zone (=distribution area). Demand pattern indicates generally potential buying opportunity. Supply pattern indicates generally potential selling opportunity. These are the underlying patterns rather than direct price action. T
BALOGUN SMC ELITE — Professional Smart Money Concepts Indicator KEY FEATURES: Strict BUY/SELL Alternation — Only 1 BUY followed by 1 SELL (no signal spam) Non-Repainting Signals — Signals confirmed on closed bars only Zone-Limited NO TRADE Markers — Clear visual zones showing when NOT to trade Multi-Factor Confluence Scoring — 0-100% quality score per setup Professional Dashboard — Real-time trend, confluence, and signal status Multi-Channel Alerts — Popup, Push, Email, and S
ENTRY AND EXIT ARROWS Indicator – Description The Entry and Exit Arrows indicator is a simple yet effective momentum-based tool designed to highlight potential buy and sell opportunities directly on the chart using visual arrows. It works by comparing two internal momentum measurements with different sensitivities. When both measurements align in the same direction, the indicator confirms a stronger directional bias and plots a signal. How It Works Buy Signal (Lime Arrow Below Candle): Appea
Magic EA MT4
Kyra Nickaline Watson-gordon
3 (1)
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA wo
TRADING STRATEGY GUIDE DELIVERY The full Trading Strategy Guide will be sent directly to you after purchase. Just message me on MQL5 and ask for it — you'll receive it instantly, along with priority support and setup help. Powered Market Scanner for Smart Trading Decisions Keypad Support & Resistance is a next-generation MT4 trading system built for serious traders who demand precision, reliability, and clarity. It combines advanced smart filters with real-time price structure logic to gener
FREE
Two Candles to Glory
Ellan Dirgantara Tholkhah
This is a Binary Options signal indicator. Extremely powerful for the 1 min chart. The signals are based on my personal tweak (based on real trial and error & backtested) of the RSI, ADX and Ichimoku and my observation on how price moves. It turns out, 2 candles expiry is the most consistent with this set up. How to use: 1. Wait for arrow signal to show. 2. Place a 2 candle expiry right after the close of the signal candle. So if you are trading a 1 min chart, place an expiry for 2 mins... if yo
Introducing   Trade Vantage : Professional Market Analyst Trade Vantage   is a highly effective analytical tool that uses a specialized algorithm for trading on the Forex and cryptocurrency markets. Its operating principle is based on price analysis for a certain time interval, identifying the strength and amplitude of price movements using a unique indication system. When a trend loses its strength and changes direction, the expert closes the previous position and opens a new one. The bot also
Magic Reversion Indicator
Giordano Bruno Rodrigues Machado
Indicator that indicate where the best point of reverse market.This indicator is a reactive or lagging signal, because the strategy uses a formation of an odd number of bars being the middle bar the highest or lowest in the formation, and the indicator draws when the all bars in the fractal close. However, traders with a pre-existing directional bias will find this indicator extremely useful, picking up early entry points.This indicator is not a boiled-down signals indicator nor a complete tradi
Algo Pumping MT4
Ihor Otkydach
4.69 (16)
PUMPING STATION – Kişisel “her şey dahil” stratejiniz Karşınızda PUMPING STATION — forex dünyasında işlem yapma şeklinizi heyecan verici ve etkili bir sürece dönüştürecek devrim niteliğinde bir gösterge. Bu sadece bir yardımcı değil, güçlü algoritmalarla donatılmış tam teşekküllü bir ticaret sistemidir ve daha istikrarlı işlem yapmanıza yardımcı olur. Bu ürünü satın aldığınızda ŞUNLARI ÜCRETSİZ olarak alırsınız: Özel ayar dosyaları: Otomatik kurulum ve maksimum performans için. Adım adım video e
Sell Signall
Dmitriy Kashevich
This indicator is named so for a reason, because it will show the reverse side of the market. It has several math indicators built in that are tuned to show the best signals for currency pairs! Ideally proved to be in work on the M5-M15 no more and no less! Only at the same time it shows up to 86.5% of correct signals! The settings include the colors of the arrows, the alert, and the same parameters so that you can reconfigure the indicator and trade on cryptocurrency and raw materials! If
VR Cub
Vladimir Pastushak
VR Cub , yüksek kaliteli giriş noktaları elde etmenin bir göstergesidir. Gösterge, matematiksel hesaplamaları kolaylaştırmak ve bir pozisyona giriş noktalarının aranmasını basitleştirmek için geliştirildi. Göstergenin yazıldığı ticaret stratejisi uzun yıllardan beri etkinliğini kanıtlamaktadır. Ticaret stratejisinin basitliği, acemi yatırımcıların bile başarılı bir şekilde ticaret yapmasına olanak tanıyan büyük avantajıdır. VR Cub, pozisyon açılış noktalarını ve Kâr Al ve Zararı Durdur hedef sev
GbpUsd Engineered!  The Smart Prospector  E.A. Is A Smooth Combination Of  The Widely Known "Volume Weighted Average Price (VWAP) Indicator" And The New 'Fibo Reversals_TEMA Indicator" Thereby Making It The Most Realistic Multi-Strategy Expert Advisor You Will Ever Find. Sufficiently Tested In The GbpUsd Currency Pair With Over 25 Years History Data, This E.A Is Sure To Give You Your Own Share Of Wins In The Forex Markets. For Best Performances, set: 'Max_Orders' = 'Zero'. 'Max_Factor' = 1. Happ
Midnight Queen MT4 — The Silent Queen of the Asian Session Midnight Queen MT4   is a professional   night scalping EA   designed to trade quietly and precisely during the   Asian session . It combines   high accuracy ,   risk control , and   consistent profit growth   — the perfect balance worthy of the “Queen of the Night”.   Key Features Pair:   EURGBP (optimized for M5 timeframe) Trading hours:   21:00–07:00 (broker time) Logic:   Bollinger Bands + RSI mean-reversion entries Built-in
Neuralwork
Vladislav Filippov
Neuralwork is a fully automated trading advisor. The advisor's methodology is based on initiating a number of sequential processes: aggregating a diversified number of potential deals into a special channel with their subsequent transformation into a special information flow, internal calibration of deals by the indicator of eventuality and validity using a trend verifier and filtering entry and exit points thanks to a special software installation, integrated into an advisor (or indicators). N
The One percent EA
Taman Talappetsakun
The 'One Percent Profit EA' is an algorithmic trading system that primarily uses the fractal indicator as its strategy. This EA is classified as a grid martingale EA. The lot size is calculated using a formula that adjusts the lot size automatically. The EA can also be switched to the fixed lot size mode to control drawdown. To secure your profits, you can choose to close orders by percentage or by monetary value. Trading statistics (2023-2024) List Details Initial Deposit $1,000 Currency Pair X
The trading robot works on the basis of determining price consolidation zones due to three overlapping Ishimoku indicator readings with different settings according to the Golden Ratio number. This analysis method allows you to predict price movement with high accuracy. Each position has Stop Loss and Take Profit. Each position is controlled by a short trailing stop. Recommended trading tools, 5m: EURUSD, GBPUSD, USDJPY, USDCAD. Settings: MaxRisk - Percentage risk for the calculation of the tr
Macd Gladiator
Christophe, Th Cassar
MACD Gladiator EA – MACD ve EMA Tabanlı Otomatik Ticaret Stratejisi MACD Gladiator , MACD göstergesinin kesişimlerine ve piyasa trendine dayalı olarak işlem fırsatlarını belirlemek için tasarlanmış bir Uzman Danışmandır (Expert Advisor). EMA (Üssel Hareketli Ortalama) filtresi kullanılarak sinyaller doğrulanır ve risk yönetimine öncelik verilir. Temel Özellikler: MACD kesişimlerine dayalı girişler 200 periyotluk EMA ile trend filtresi Her sembol için aynı anda yalnızca bir pozisyon açılır TP,
Bu ürünün alıcıları ayrıca şunları da satın alıyor
Scalping Robot Pro is a  professional trading system  designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability  trading opportunities  in the gold market. Scalping Robot Pro is optimized for tra
XG Gold Robot MT4
MQL TOOLS SL
4.29 (42)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Waka Waka EA
Valeriia Mishchenko
4.25 (48)
8+ years of live track record with +12,000% account growth: Live performance MT 5 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
Night Hunter Pro
Valeriia Mishchenko
4.38 (53)
EA has a  live track record  with many months of stable trading with  low drawdown : All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth . It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading a
Exorcist Projects
Ivan Simonika
3 (1)
Exorcist Bot   is a multi-currency, multi-functional advisor that works on any time frame and in any market conditions. - The robot’s operation is based on an averaging system with a non-geometric progression of constructing a trading grid. - Built-in protection systems: special filters, spread control, internal trading time limitation. - Construction of a trading network taking into account important internal levels. - Ability to customize the aggressiveness of trading. - Working with pending
Gold HFT Scalper Pro MT4
Sivakumar Paul Suyambu
1 (1)
Gold HFT Scalper Pro MT4 A high-frequency tick scalper engineered exclusively for GOLD (XAUUSD). Places BUY_STOP and SELL_STOP pending orders just above and below the live market, automatically re-centres them on every tick, and exits with a dynamic trailing stop — all with built-in daily loss protection and real-margin validation before every order. XAUUSD Only -  No Martingale -  No Grid -  Low Drawdown -  Fully Automated -  M1 Timeframe Symbol XAUUSD Timeframe (period) M1 Minimum deposit 500
MyGrid Scalper Ultimate
Ahmad Aan Isnain Shofwan
MyGrid Scalper Ultimate, Forex, Emtia, Kripto ve Endeks için güçlü ve heyecan verici bir ticaret Robotudur. Özellikler: Çeşitli Lot Modları: Sabit Lot, Fibonacci Lot, Dalembert Lot, Labouchere Lot, Martingale Lot, Sıra Lot, Bahis 1326 Sistem Lot Otomatik Lot Boyutu. Bakiye Riski, Otomatik Lot Boyutuyla İlgili Manuel TP veya Kar Almak ve Izgara Boyutu için ATR Kullanımı (Dinamik/Otomatik) EMA Kurulumu Çekme Ayarı. Çekmenizi Para veya Yüzde olarak izleyin ve kontrol edin. MARJİN Kontrol ve Filtr
Big Hunter
Mehdi Sabbagh
5 (1)
The Multi Strategy Trading Robot This automated trading robot always uses stop loss. Big Hunter is specially designed to trade gold , but you can test it on other pairs since you have the access to the parameters. The robot uses different strategies like swing trading ,  momentum trading , position trading and more. It's backtested for the last 10 years under the harshest, simulated market conditions. Each trade has  unique SL, TP, Trailing stop, and breakeven. These parameters are variable a
Alfascal
Vladislav Filippov
1 (1)
For the expert to work correctly, do not forget to upload the files to the directory of the agreement (... AppData \ Roaming \ MetaQuotes \ Terminal \ Common \ Files) Alfascal is a new model of a fully automated trading neuro-system, working on short timeframes. This system, which is based on a specialized neural network, is able to provide continuous training, transform the chaotic realities of the market into a specific system that can improve the quality of open transactions and absorb most
AccountUP Algo
Aurelian-eusebio Enescu
Short Description: Advanced, stable multi-order EA featuring dual-mode Trailing/Breakeven, hidden levels, and steady 80% Win Rate. Engineered for robust capital growth with tight ~10% Drawdown. Non-overoptimized. Long Description : AccountUP Algo is a premium, fully automated Expert Advisor engineered for stable, long-term equity growth without exposing your account to extreme market risks. Designed with a deep focus on capital preservation, this EA delivers a smooth, almost linear equity curv
Benefit EA
Vsevolod Merzlov
Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the operating system (can match). This function allo
Octopus Stability
Aleksandr Shurgin
After a thorough work and search for the optimal values of each of the Expert Advisor's parameters, the most stable settings of the algorithms have been selected, which do not require over large history periods. The robot uses a universal trading strategy, allowing the use of the currency pairs EURUSD, GBPUSD, USDCHF, USDJPY and other pairs with low spread. The EA trades on a 5-minute timeframe , it uses levels defined automatically on the bases of multiple parallel price movement calculation me
Avato
Nikolaos Bekos
The Avato is one of our standalone tools. (A Signal based on it will also be provided on Mt4 Market in the future). It is designed around a combined form of hedging and martingale techniques and uses sophisticated algorithms and filters to place the trades. It uses Stop loss and Take profit levels while Lot size is calculated automatically following the according multiplier settings. We consider it a toolbox for every seasoned trader. Made with Gold market in mind, it can be tested in other inst
AreaFiftyOne
Valeri Balachnin
Area 51 EA generates signals on different strategies. Has different money management strategies and dynamic lot size function. When a position is opened, it is equipped with a take profit and a stop loss. If the position becomes profitable, a dynamic stop loss based on the specified values (TrailingStep and DistanceStep) will be set for it and constantly trailed. This allows you to always close positions in profit.  If you want, that your manual opened positions will be handled by the EA, so you
Note : the spread value,  the broker's slippage and the VPS speed affect the Expert Advisor trading results. Recommendations: gold with spread up to 3, USDJPY with spread up to 1.7, EURUSD with spread up to 1.5. Results will be better with better conditions. The Ping value between VPS and the broker server should be below 10 ms. In addition, the smaller the broker's stop-level requirement, the better; 0 is the best. The Expert Advisor is based on a breakthrough system and carefully controls all
Perfection
Mikhail Senchakov
Perfection is a multicurrency, fully automated and secure trading robot. The robot is designed for both portfolio trading and trading a single instrument. The EA does not use averaging methods, the volume of positions is strictly regulated. Orders are opened only in the direction of market movement in a grid. Due to this, the robot operates efficiently on any strong movements. The decision making algorithm does not use indicators. Instead, the robot automatically calculates the key levels, which
Introduction to Smart Trade Price Action Expert Advisor Smart Trade Price Action is an Expert Advisor (EA) with a flexible and diverse trading strategy, operating across 15 currency pairs on the All  timeframe. This approach enhances the chances of sustainable growth while reducing the risk of relying on a single pair or individual trades. Risk management is strictly controlled, ensuring the safety of your capital. With a simple setup, Smart Trade Price Action requires no specialized knowledg
With the Multiday Overlay Strategy EA you can trade in parallel all major/minor/cross pairs in Forex. This EA is rather unique, as it is capable to "follow the market", this means: no optimization is needed; the same set of input parameters is good for all pairs; you do not need to change the input parameters even if market conditions change. This 3 features mean that the EA is not "manually adapted" to a specific pair in a specific timeframe, as it normally happens when you optimize a pair with
Price Action EA V3
Mehmet Haluk Tunc
Price Action EA for scalping. Open trades by bar height when bar height meet complex math calculations. Timerame is fundamentally M1 and works all forex symbols. Percentage trailing system. Time limitation. Autolot by percentage of balance. Settings by ea automatically. Close safety by time in minutes and close your order after x minute even if it is not in profit or loss by you. Set stoploss and takeprofit values automatically market price. Every major settings can be set automatically by robo
CSM System
Michal Milko
The CSM System is currently fully automated with all the special features and functions, controlled and regularly monitored. Its evolution, parameters and the individual algorithms are professionally evaluated and optimized by experienced development group of programmers who are developing new updated versions of system. Unlike the other systems, we focused to create the system where the backtesting successful results matching the real life situation. Our core lies in identification of these bi
TSO Price Channel
Dionisis Nikolopoulos
TSO Price Channel is complete trading strategy focused on creating profit from market volatility. The system takes advantage of the intrinsic tendency of the market to reach its periodic maximum and minimum levels. By allowing the use of multiple instruments, the exposure of the system to any single instrument is reduced. Complete strategy including fully integrated positive and negative management. Works on any instrument. No pending orders placed. Any account size - $1,000+ is recommended. Ba
ATTENTION IT IS IMPORTANT: Do not use this system for trading in currency pairs. ATTENTION IT IS IMPORTANT: Do not use this system for trading and testing without individual set files for the selected broker. Marrykey stock Indexes is a scalper system built on the hybrid combinatory Ichimoku Kinko Hyo is equipped with 6 different strategies and designed primarily to work on US stock indices such as S & P500, NASDAQ, Dow Jones, Russell2000. The system is capable of operating on frames from M5 to
Win Sniper Follow
Nirundorn Promphao
1 (1)
I will support only my client. สำหรับลูกค้า Win Sniper Follow  is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The RSI indicator and an ATR-based filter are used for entries. Real operation monitoring as well as my other products can be found here :  https://www.mql5.com/en/users/winwifi/ General Recommendations The minimum deposit is 100 USD, the recommended timeframe is M15, H1, H4. Use a broker with good execution and with a spread of 2-5 points. A ver
This is a fully automatic EA based on price fluctuation, it uses principle of special recognition of price and balance. The parameters are simple and adaptable,the EA can deal with shock, trend, data, news and other types of market, and the performance is stable. Run timeframe: the results are the same in any period. Execution demonstration of the EA can be viewed in the links below: https://www.mql5.com/zh/signals/470101 Requirements and suggestions Please use this EA on EURUSD H1 timeframe, V
Chicken peck rices This is a short-term EA what based on price breakthroughs,and the parameters are simple and adaptable. Requirements: Run timeframe: H1; The type of account:ECN,spread of currency≤3,for example,EURUSD,USDJPY,and others. The minimum spread for order modification:0,it means that the minimum distance is zero between setting stop loss or take profit and current price. You must use the required accounts to ensure the reliability of profit. Input parameters: explanation=chicken peck
YinYang hedging This is a fully automatic EA base on two currency hedging.The parameters are simple and adaptable,the EA can deal with any type of market, and the performance is stable. Using Requirements: Run timeframe: H1; EA loading currency:currency A,currency B do not need to loading the EA; Minimum account funds:$1000; When used,the parameters "Test" should be adjusted to "false" from "true" by default; VPS hosting 24/7 is strongly advised; Currency pairs are recommended:A-GBPUSD,B-EURUSD;
THE REVOLUTION Simple Trade is suitable for all type of traders whether you are a Swing Trader, Day Trader or Scalper. THE REVOLUTION Package consist of 3 EAs which combine into a Single EA which can create many stategies depend on the trading skills used/known by each traders. We provide AUTO_SETTING expecially for beginner or no experience investors which this AUTO_SETTING will trade to achieve 1000 Points or 10%/month, and for traders/investors who have experiences in trading can develop thei
Kryptosystém automaticky   Automatický kryptosystém je v súčasnosti plne automatizovaný so všetkými špeciálnymi vlastnosťami a funkciami, je kontrolovaný a pravidelne monitorovaný. Jeho vývoj, parametre a jednotlivé algoritmy sú odborne vyhodnotené a optimalizované skúsenou vývojovou skupinou programátorov, ktorí vyvíjajú nové aktualizované verzie systému. Na rozdiel od ostatných systémov sme sa zamerali na vytvorenie systému, v ktorom je spätné testovanie úspešných výsledkov zodpovedajúce situ
The Revolution Target Achiever FT -  Auto_Setting 1000 Points  Hi all Investors and traders, We've just updated this EA to a new version 3.0, which has a much more benefits , for Investors who want to run this EA 24 hours using vps can try the Auto_Setting to achieved 1000 Points or 10 %, for traders who have their own set up and target 1-100% can use the manual_setting, THE REVOLUTION Target Achiever is suitable for the investor who want to have a simple and ready to use Expert Advisor (EA). Th
Broker
Andrey Spiridonov
Broker Broker is a self-taught advisor. The algorithm of this adviser is constantly adjusting to the trading dynamics of the market. Advisor has a minimum number of parameters, which facilitates the work of beginners in the foreign exchange market. Advisor Benefits works on any time period works with any trade symbol no parameters that need optimization on each transaction, the adviser learns and adjusts to the current trading situation Advisor Parameters lot_persent = 10 - the volume of a trad
Filtrele:
Değerlendirme yok
Değerlendirmeye yanıt