ScalpEA v2 preview

Hi, I would like to show you limited version of my EA which I am selling here in full version.
But this system might have less features but is still working well, again, try it on demo first!
Difference between full and preview is almost only in machine learning part. If you have any question visit my channel.

How does it work?:

  1. EA waits until there are 3 candles (H1) after each other and between (candle 1 top wick) and (candle 3 bottom wick) is gap
  2. After that EA places pending order below candle 3 bottom wick and waits if market returns to the gap.
  3. Thats all it does.

Some additonal info about full version and configs here
Channel where to discuss and share your ideas

Graph at the screensots is from backtest with default settings on XAUUSD.
Backtest it and test it on demo first, this version does not have all the protection that full version does. Simply test it first, no profit is guaranteed!
FYI, I am using full version on VT Markets, Vantage and Purple trading.
Also make sure to enable Algoritmic trading in your Metatrader settings or it will not weork! (Tools - Options - Expert advisors)

You can find full ScalpEA v2 here: https://www.mql5.com/en/market/product/167553

AI generated description:

ScalpEA V2 Preview — FVG Scalping Expert Advisor

AI generated description:

FVG Scalping Expert Advisor for MetaTrader 5

Version 2.650 | © Martin Vrlik 2026

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━


OVERVIEW

────────

ScalpEA v2 is an automated Expert Advisor for MetaTrader 5 that detects and trades Fair Value Gap (FVG) zones. A Fair Value Gap is a price inefficiency that forms when three consecutive candles leave an uncovered gap between the high of the first candle and the low of the third candle (bullish FVG), or vice versa (bearish FVG). The EA places pending limit or stop orders at these zones and manages them through a complete set of filters, safety checks and risk controls.

The EA is primarily designed for XAUUSD (Gold) but works on any instrument and timeframe combination supported by MetaTrader 5.


HOW IT WORKS

────────────

On every new bar of the detection timeframe (sourceTF), the EA scans recent price history for valid FVG zones and stores them in an internal cache. On every new bar of the placement timeframe (placementTF), it reads that cache, applies all active filters, and places pending orders for zones that pass every check. The two timeframes can be set independently, allowing combinations such as detecting FVGs on H1 while evaluating placement conditions on M30.

Before placing any order the EA runs the following checks in sequence: duplicate detection (no two orders for the same FVG zone), candle direction filters, EMA trend filter, gap size filters, distance from current price, zone age, spread limit, margin and volume validation, and STOPS_LEVEL compliance. Only zones that pass all active filters receive a pending order.

If an order placement fails because the market is closed (for example at session open), the EA saves the order to a retry queue and attempts to place it again every tick for up to five minutes.


SIGNAL FILTERS

──────────────

Third candle confirmation — the candle that closes the FVG gap must move in the direction of the signal: green (close > open) for bullish FVG, red for bearish FVG.

All-three-candles confirmation — all three candles forming the FVG must be the same color. This is a stricter version of the above filter and ensures the FVG is backed by a consistent directional impulse rather than a mixed sequence.

Middle candle wick check — the wick of the middle candle (the one between the two gap candles) is inspected. If its counter-directional wick is more than wickMultiplier times longer than its directional wick, the signal is rejected. This filters out candles with strong rejection shadows that suggest weak momentum.

EMA(200) trend filter — before placing any pending order, the EA checks whether the last N closed H1 candles all lie entirely above (for BUY) or entirely below (for SELL) the 200-period Exponential Moving Average on the H1 chart. For a BUY order to be allowed, the Low of every one of those candles must be greater than the EMA value at that bar. For a SELL order, the High of every candle must be below the EMA. This filter always uses the H1 timeframe regardless of the sourceTF and placementTF settings. If not enough historical data is available at EA startup, the filter is skipped for that bar to prevent false blocking.

SELL-specific gap filters — SELL signals require a larger minimum gap size than BUY signals (controlled by a multiplier), and optionally a maximum gap size cap to avoid trading exhaustion moves.


PENDING ORDER MANAGEMENT

────────────────────────

The EA enforces a configurable maximum number of pending orders per direction (BUY and SELL are counted separately). When the FIFO system is enabled and the limit is reached, the oldest pending order is automatically removed to make room for the newest FVG signal. When FIFO is disabled, new signals are skipped until an existing pending order is filled or expires.

Pending orders are automatically removed when the FVG zone that generated them reaches its maximum age (maxFVGDurationMinutes). The age is measured from the time the FVG zone was formed, not from the time the order was placed.


RISK AND MONEY MANAGEMENT

──────────────────────────

The EA supports two lot sizing modes. In fixed mode, every trade uses the same lot size defined by the lotSize parameter. In dynamic mode, the lot size is calculated automatically for each trade based on the account balance, the configured risk percentage per trade, and the Stop Loss distance, ensuring that each trade risks no more than the specified percentage of the account balance.

SELL trades support independent TP, SL, risk percentage and pending order limit settings, because gold tends to behave differently during price drops versus rallies.

Every order is validated before sending: free margin is checked against the required margin, volume is verified against the symbol's minimum, maximum and step values, the number of pending orders is checked against the broker's account limit, and SL/TP distances are verified against the symbol's STOPS_LEVEL.


VISUALIZATION

─────────────

Active FVG zones are drawn as colored rectangles directly on the chart. Bullish zones use one color and bearish zones another, both fully configurable. Transparency, maximum number of visible zones and optional size labels can all be adjusted. Zones are automatically removed from the chart when they expire.


A dashboard panel in the top-left corner of the chart shows current account balance, equity, floating P/L, total EA profit since the start, number of closed trades, win rate, and the current number of pending orders per direction.


INPUT PARAMETERS

────────────────


Basic Settings
allowLong — enables BUY pending orders from bullish FVG zones. When set to false, no BUY orders are placed regardless of detected signals.
allowShort — enables SELL pending orders from bearish FVG zones. When set to false, no SELL orders are placed.
magicNumber — unique identifier assigned to all orders and positions opened by this EA. Change this value if you run multiple EAs on the same account to avoid conflicts.
configName — a text label displayed in the on-chart dashboard. Useful for identifying different parameter sets during optimization or testing.
tradeComment — comment string attached to every order and visible in the MT5 trade history.
sourceTF — the timeframe on which FVG zones are detected. The EA scans candle history on this timeframe to find valid gaps. Recommended values are H1 or H4.
placementTF — the timeframe that controls when pending orders are evaluated and placed. A new evaluation runs only at the open of each new bar on this timeframe. Must be equal to or smaller than sourceTF.

Money Management
lotSize — fixed lot size used for every trade when dynamic lot sizing is disabled.
useDynamicLotSizing — when true, the lot size is calculated automatically based on account balance, risk percentage and Stop Loss distance. When false, the fixed lotSize value is used.
riskPerTradePercent — maximum risk per trade expressed as a percentage of account balance. Active only when useDynamicLotSizing is true.

FVG Detection
maxFVGPerSide — maximum number of pending orders allowed simultaneously in one direction. BUY and SELL are counted separately.
minGapPoints_global — minimum FVG gap size in points. Gaps smaller than this value are ignored as noise. For XAUUSD, 30 points equals 3 pips.
maxFVGDurationMinutes — maximum age of an FVG zone in minutes, measured from the time the zone was formed. Zones older than this are removed from the cache and any pending orders generated by them are cancelled.
maxFVGDetectionWindow — how far back in history (in minutes) the EA searches for FVG zones during each detection pass.
entryOffsetPoints — offset added to the FVG boundary to set the entry price. For BUY orders: entry = FVG top + offset. For SELL orders: entry = FVG bottom - offset.
requireThirdCandleConfirmation — when true, the candle that closes the FVG must be in the direction of the signal (green for bullish, red for bearish).
requireAllThreeCandlesConfirmation — when true, all three candles forming the FVG must be the same color. Provides stronger directional confirmation than the single-candle check above.
enableMiddleWickCheck — when true, the EA inspects the wick of the middle candle of the FVG formation and rejects signals where the counter-directional wick is disproportionately large.
wickMultiplier — the maximum allowed ratio of the counter-directional wick to the directional wick of the middle candle. A value of 2.0 means the counter-directional wick may be at most twice as long as the directional wick.
useFIFOPendingSystem — when true and the pending order limit is reached, the oldest pending order is removed to make room for the new  signal. When false, new signals are skipped while the limit is full.

Take Profit and Stop Loss
takeProfitType — selects the TP mode. In this version only TP_FIXED (fixed take profit) is available.
takeProfitPips — distance from entry price to Take Profit in points. For XAUUSD: 500 points = 50 pips.
stopLossPips — distance from entry price to Stop Loss in points for BUY trades. The default is intentionally high and acts as a safety net; primary exits rely on the Take Profit.

SELL Trade Settings
useSellSpecificSettings — when true, SELL trades use the parameters defined in this group instead of the global BUY parameters. Recommended for XAUUSD due to asymmetric volatility between upward and downward moves.
sellTakeProfitPips — Take Profit distance for SELL trades in points, independent of takeProfitPips.
sellStopLossPips — Stop Loss distance for SELL trades in points.
sellRiskPercentOverride — overrides the risk percentage for SELL trades when dynamic lot sizing is active. Set to 0.0 to use the global riskPerTradePercent.
sellMaxPendingsOverride — overrides the maximum number of SELL pending orders. Set to 0 to use the global maxFVGPerSide.

SELL FVG Filters
sellRequireBiggerGap — when true, SELL signals require a larger minimum gap than BUY signals, multiplied by sellGapMultiplier.
sellGapMultiplier — multiplier applied to minGapPoints_global to calculate the effective minimum gap for SELL signals. Ignored when sellMinGapPointsFixed is greater than zero.
sellMaxGapPoints — maximum allowed SELL FVG size in points. Gaps larger than this are rejected as potential exhaustion moves. Set to 0 to disable this cap.
sellMinGapPointsFixed — fixed minimum gap size for SELL signals in points. When greater than zero, this value is used directly and sellGapMultiplier is ignored.

Safety Limits
maxSpreadPoints — maximum allowed spread in points. When the current spread exceeds this value, no new pending orders are placed. Position management (trailing, cleanup) continues regardless of spread.
maxDistanceFromPrice — maximum allowed distance between the pending order entry price and the current market price, in points. FVG zones whose entry price is too far from the current price are skipped.
countOpenPositionsInLimit — when true, open positions are counted together with pending orders toward the maxFVGPerSide limit. When false, only pending orders are counted.

EMA Trend Filter
enableEMATrendFilter — enables the EMA(200) trend filter. When active, a pending order is placed only if the last N closed H1 candles all lie entirely on the correct side of the 200-period EMA. BUY orders require all candles above EMA (Low > EMA), SELL orders require all candles below EMA (High < EMA). The filter always uses H1 regardless of sourceTF and placementTF.
emaTrendCandleCount — number of recently closed H1 candles that must satisfy the EMA condition. Higher values produce a stricter trend requirement. A value of 10 means all ten of the last closed H1 candles must fully clear the EMA line.

Visual Settings
showFVGOnChart — draws active FVG zones as filled rectangles on the chart.
bullFVGColor — fill color for bullish (BUY) FVG rectangles.
bearFVGColor — fill color for bearish (SELL) FVG rectangles.
fvgTransparency — transparency of the FVG rectangle fill. Range 0 (opaque) to 255 (fully transparent). A value of 90 produces a light, non-intrusive tint.
showOnlyActiveFVG — when true, only FVG zones relevant to the current allowLong/allowShort configuration are displayed. When false, all detected zones are shown regardless of trade direction settings.
maxFVGToShow — maximum number of FVG rectangles drawn on the chart per direction. Limits visual clutter when many zones are detected.
showFVGLabels — when true, a text label showing the gap size in points is displayed at the center of each FVG rectangle.

Debug and Testing
debug — enables verbose logging to the MT5 Journal tab. Outputs detailed information about FVG detection, filter decisions, lot calculations, EMA trend checks, SL/TP modifications, and order management. Disable in live trading to reduce log volume.


    Produits recommandés
    GridWeaverFX
    Watcharapon Sangkaew
    4 (1)
    GridWeaverFX Product Description: GridWeaverFX is an automated trading tool designed to manage positions using a grid and martingale strategy. The algorithm utilizes a Moving Average crossover signal as the primary trigger for initial trade execution. This EA is developed for traders who wish to study or implement a systematic approach to averaging positions in volatile market conditions. Core Strategy and Execution: Entry Signal: Initiates the first trade based on a Moving Average crossover. G
    FREE
    Crimson FX
    Michael Prescott Burney
    Crimson EA emerges as a force to be reckoned with on the USDJPY M15 chart, embodying the perfect fusion of 50 meticulously crafted strategies that span across trend analysis, hedging, and scalping disciplines. This powerhouse operates beyond the confines of conventional stop-loss and take-profit mechanisms, relying instead on precise entry and exit signals generated from its strategic arsenal. Coupled with an advanced reversal function, Crimson EA offers a protective shield to safeguard invest
    FREE
    Fibo Trader FREE MT5
    Grzegorz Korycki
    3 (3)
    Fibo Trader is an expert advisor that allows you to create automated presets for oscillation patterns in reference to Fibonacci retracements values using fully automated and dynamically created grid. The process is achieved by first optimizing the EA, then running it on automated mode. EA allows you to switch between automatic and manual mode. When in manual mode the user will use a graphical panel that allows to manage the current trading conditions, or to take control in any moment to trade ma
    FREE
    Reversal Composite Candles
    MetaQuotes Ltd.
    3.69 (16)
    The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
    FREE
    Bneu Vortex Pro
    Marvinson Salavia Caballero
    Bneu Vortex Pro v2.03 — AMD Phase Engine + 30 Strategies + Adjustable Cloud AI Gate Bneu Vortex Pro v2.03 is the upgraded MetaTrader 5 Expert Advisor built around an Accumulation / Manipulation / Distribution (AMD) phase engine. Instead of using one fixed signal, the EA first classifies market phase, then only enables the strategies designed for that phase. Every potential trade is also passed through an adjustable Cloud AI quality gate. CORE UPGRADE The previous simple scorer has been repla
    FREE
    Utilisez cet expert opérationnel dont la stratégie repose essentiellement sur l’indicateur RSI (Relative Strength Index)  ainsi qu’une touche personnelle. D’autres experts gratuits sont disponibles dans mon espace personnel ainsi que des signaux, n’hésitez pas à visiter et à mettre un commentaire, cela me fera plaisir et me donnera envie de proposer du contenu. Les experts actuellement disponibles: LVL Creator LVL Creator Pro LVL Bollinger Bands Lorsque vous utiliserez ce robot en réel, n’hési
    FREE
    Babel Assistant
    Iurii Bazhanov
    4.33 (9)
    Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
    FREE
    Morning Range Breakout (Free Version) Morning Range Breakout (Free Version) is a straightforward trading advisor that implements a breakout strategy based on the morning range. It identifies the high and low within a specified time interval (e.g., 08:00–10:00 UTC) and opens a trade on a breakout upward or downward. The free version includes core functionality without restrictions. All parameters and messages are in English, per MQL5 Market requirements. Key Features Detects morning range based
    FREE
    Triple Indicator Pro
    Ebrahim Mohamed Ahmed Maiyas
    3.67 (3)
    Triple Indicator Pro: ADX, BB & MA Powered Trading Expert Unlock precision trading with Triple Indicator Pro, an advanced Expert Advisor designed to maximize your market edge. Combining the power of the ADX (trend strength), Bollinger Bands (market volatility), and Moving Average (trend direction), this EA opens trades only when all three indicators align 1 - ADX (Average Directional Index) indicator – This indicator measures the strength of the trend, if the trend is weak, the expert avoids
    FREE
    Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
    FREE
    EasyTrading Panel Basic by Vexo EasyTrading Panel Basic is a free manual trade execution panel for MetaTrader 5. It provides a streamlined workflow for placing market orders with automatic risk-based lot sizing, stop loss, and take profit calculation. The panel works on any symbol and any timeframe. How It Works The panel displays on-chart with your account balance, current lot size, risk percentage, reward-to-risk ratio, and calculated stop loss. All values update in real time as you adjust par
    FREE
    Brent Trend Bot
    Maksim Kononenko
    4.5 (16)
    The Brent Trend Bot special feature is simple basic tools and logic of operation. There are no many strategies and dozens of settings, like other EAs, it works according to one algorithm. The operating principle is a trend-following strategy with an attempt to get the maximum profitability adjusted for risk. Therefore, it can be recommended for beginners. Its strong point is the principle of closing transactions. Its goal is not to chase profits, but to minimize the number of unprofitable trans
    FREE
    Long Waiting
    Aleksandr Davydov
    Expert description Algorithm optimized for Nasdaq trading The Expert Advisor is based on the constant maintenance of long positions with daily profit taking, if there is any, and temporary interruption of work during the implementation of prolonged corrections The Expert Advisor's trading principle is based on the historical volatility of the traded asset. The values of the Correction Size (InpMaxMinusForMarginCallShort) and Maximum Fall (InpMaxMinusForMarginCallLong) are set manually. Recomm
    FREE
    This trading robot is based on a candlestick pattern and RSI indicator strategy. It looks for candles that have a small body relative to their shadows, indicating indecision in the market. It also checks if these candles are placed at the pivot point.  If the close of one of the next candles breaks the resistance line from below and the RSI is above the MA of RSI, then the robot opens a buy order. If the close of one of the next candles breaks the support line from above and the RSI is below th
    FREE
    Nero Edge Phantom
    Monki Clifford Lebotsa
    Nero Edge Phantom v5.1 Nero Edge Phantom v5.1 is an advanced execution engine built to operate in high-volatility environments where precision and discipline matter most. The system is designed to identify moments of market imbalance and intent , avoiding impulsive entries and focusing only on scenarios where price behavior confirms opportunity. By waiting for alignment rather than anticipation, Phantom v5.1 reduces noise, filters false movements, and prioritizes capital protection before ex
    PZ Goldfinch Scalper EA MT5
    PZ TRADING SLU
    3.3 (54)
    This is the latest iteration of my famous scalper, Goldfinch EA, published for the first time almost a decade ago. It scalps the market on sudden volatility expansions that take place in short periods of time: it assumes and tries to capitalize of inertia in price movement after a sudden price acceleration. This new version has been simplified to allow the trader use the optimization feature of the tester easily to find the best trading parameters. [ Installation Guide | Update Guide | Troublesh
    FREE
    Quantum Gold Pro EA
    Chaiwat Wongsricha
    Description Quantum Gold Pro EA is a TRIAL Expert Advisor for MetaTrader 5, specially designed for Gold (XAUUSD) automated trading. This EA uses smart market entry logic, basket profit management, and built-in risk protection to support traders who want to test automated strategies before using the full version. Features Optimized for Gold (XAUUSD) Automatic Buy / Sell trading system Basket Take Profit control Spread and margin protection Dashboard display on chart Smart risk management Easy se
    FREE
    Gives you a trading environment where you can do forward testing without the use of a live trading account. You will be able to trade the same Market without having to wait for the next day, but by just fast forwarding  on the strategy tester and going straight to that session. You can trade it over and over again without having to just look at the charts and have a bias analysis when  back testing on a chart that is not moving
    FREE
    MultiTrend Commander
    Джованни Орсани
    MultiTrend Commander - Automated Trading System What is it? An automated trading software that: Intelligently identifies market trends Makes decisions based on multiple timeframes Automatically manages risk What does it do? Identify Trends Analyze the market in real time Combine signals from different time frames (15 min, 1 hr, 4 hr) Confirm the trend direction before entering Protect Your Capital Automatically calculates stop losses Adjusts trade size to your risk Stops trading if
    FREE
    Auto BreakEven Lite is a simple and reliable Expert Advisor for MetaTrader 5 that automatically moves the Stop Loss to BreakEven when a trade reaches a defined profit level. This tool helps traders protect their positions and eliminate risk once the trade moves into profit. The EA works with all asset classes including Forex, indices, metals, crypto and CFDs. Once attached to a chart, the EA monitors open positions and automatically moves the Stop Loss to BreakEven plus an optional offset.
    FREE
    Break Asian Range
    Damaso Perez Moneo Suarez
    Introduction Break Asian Range est un bot de trading qui automatise la célèbre stratégie des « hauts et bas asiatiques ». Il est conçu pour détecter et trader les cassures de la session asiatique sur des actifs tels que l’EURUSD, le GBPJPY et d’autres paires volatiles. Il combine des confirmations techniques personnalisables avec une gestion du risque avancée (SL, TP, stop suiveur, risque variable, réentrées...) afin de s’adapter aux styles de trading conservateurs ou agressifs. Il fonctionne s
    FREE
    SpikeBoom
    Kabelo Frans Mampa
    A classic buy low & sell high strategy. This Bot is specifically Designed to take advantage of the price movements of US30/Dow Jones on the 1 Hour Chart, as these Indices move based on supply and demand. The interaction between supply and demand in the US30 determines the price of the index. When demand for US30 is high, the price of the US30 will increase. Conversely, when the supply of shares is high and demand is low, the price of t US30  will decrease. Supply and demand analysis is used to i
    FREE
    Fibomathe
    Almaquio Ferreira De Souza Junior
    Fibomathe Indicator: Support and Resistance Tool for MT5 The Fibomathe Indicator is a technical analysis tool designed for MetaTrader 5 (MT5) that assists traders in identifying support and resistance levels, take-profit zones, and additional price projection areas. It is suitable for traders who use structured approaches to analyze price action and manage trades. Key Features Support and Resistance Levels: Allows users to define and adjust support and resistance levels directly on the chart.
    FREE
    Gap Catcher
    Mikita Kurnevich
    5 (5)
    Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
    FREE
    QuantScalping
    Jakub Schwarz
    QuantScalping - Precision Scalping for Consistent Profits Join channel here:  https://www.mql5.com/en/channels/quantbreakprop Overview QuantScalp is a cutting-edge scalping trading strategy designed to maximize your trading efficiency and profitability. Built with advanced algorithms and tailored for high-frequency trading, QuantScalp offers a unique approach to the markets, ensuring faster wins and higher win rates. Key Features Optimized Scalping Strategy : Harnesses advanced technical analy
    FREE
    Zigzag star
    Ahmed Mohammed Bakr Bakr
    ZigZag Expert Advisor – Strategy Description The ZigZag Expert Advisor (EA) is an advanced price-action trading system designed to identify significant market swings , trend structure , and high-probability reversal zones using the ZigZag algorithm. The EA filters market noise by focusing only on meaningful highs and lows, allowing it to trade in harmony with market structure rather than reacting to random price fluctuations. Core Strategy Logic Detects higher highs, higher lows, lower highs, an
    FREE
    Golden Square X
    Huynh Tan Linh N
    4.1 (10)
    This is my latest Free version for Gold. With optimized parameters and user-friendly features, this version is likely very easy to use and highly effective. You can customize TP and SL parameters as you wish, but the default settings should work well for you without the need for further adjustments.  This version is designed for the M5. This version does not require a large capital investment; only $100-$200 is sufficient for Golden Square X to run and generate profits for you. Based on backtest
    FREE
    Budget Golden Scalper M1 — Trial Edition Built for traders who are tired of hype and ready for transparency Let’s be honest. If you have explored automated trading before, you have probably seen systems that looked perfect in backtests but behaved very differently in live markets. Many traders today are understandably cautious — and rightly so. Budget Golden Scalper M1 was created with this reality in mind. This is not marketed as a “holy grail” or a get-rich-quick robot. Instead, it is a str
    FREE
    Clock Trades – Trading de Précision à l’Heure ! Clock Trades EURUSD est une version gratuite limitée de Clock Trades , l’EA intelligent et fiable qui vous permet d’automatiser vos transactions en fonction du temps Cette version gratuite fonctionne exclusivement sur EURUSD et vous offre l’expérience complète sur l’un des instruments de trading les plus populaires au monde, sans frais. Clock Trades est un EA intelligent et fiable qui vous permet d’automatiser vos transactions en fonction du te
    FREE
    Range Auto TP SL
    Dilwyn Tng
    4.56 (45)
    Range Auto TP SL  is for you, 100% free for now, download it and give me a good review and you are free to use it for lifetime !!!! Range Auto TP SL is a EA to set Stop Loss and Take Profit level based on range using Average True Range (ATR). It works on both manually opened positions via PC MT5 Teriminals or MT5 Mobiles and EA/robots opened position. You can specify magic number for it to work on or it can work on all the positions. Many EA does not good Stop Loss and Take Profit function and
    FREE
    Les acheteurs de ce produit ont également acheté
    Quantum Queen MT5
    Bogdan Ion Puscasu
    4.97 (576)
    Bonjour à tous les traders ! Je suis   Quantum Queen   , le joyau de la couronne de l'écosystème Quantum et le conseiller expert le mieux noté et le plus vendu de l'histoire de MQL5. Avec plus de 20 mois d'expérience en trading réel, j'ai acquis le titre incontesté de Reine de la paire XAUUSD. Ma spécialité ? L'OR. Ma mission ? Fournir des résultats de trading constants, précis et intelligents – encore et encore. IMPORTANT! After the purchase please send me a private message to receive the inst
    Quantum Athena
    Bogdan Ion Puscasu
    5 (16)
    Quantum Athena — La précision forgée par l'expérience Bonjour, traders ! Je suis   Quantum Athena   — la version allégée de la légendaire Quantum Queen, raffinée et repensée pour les conditions de marché actuelles. Je n'essaie pas d'être tout. Je me concentre sur ce qui fonctionne maintenant. Ma spécialité ? L'OR. Ma mission ? Offrir des performances de trading exceptionnelles, efficaces et intelligemment optimisées, avec la précision comme principe fondamental. IMPORTANT! After the purcha
    Pulse Engine
    Jimmy Peter Eriksson
    5 (17)
    PRIX DE LANCEMENT – IL NE RESTE QUE QUELQUES EXEMPLAIRES ! L'objectif principal de ce système est d'assurer des performances en direct sur le long terme sans recourir à des techniques risquées comme la martingale ou la grille. EXEMPLAIRES TRÈS LIMITÉS AU PRIX ACTUEL Prix ​​final :   1499 $ [Signal en direct]    |    [Résultats des tests rétrospectifs]    |    [Guide d'installation]    |    [Résultats FTMO] Une approche différente du trading Pulse Engine n'utilise aucun indicateur ni unité de te
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.44 (66)
    Moins de trades. De meilleurs trades. La constance avant tout. • Signal en Direct Mode 1 Twister Pro EA est un Expert Advisor de scalping haute précision développé exclusivement pour XAUUSD (Or) sur le timeframe M15. Il trade moins — mais quand il le fait, c'est avec intention. Chaque entrée passe par 5 couches de validation indépendantes avant qu'un seul ordre ne soit placé, résultant en un taux de réussite extrêmement élevé sur la configuration par défaut. TROIS MODES : Mode 1 (recommandé)
    Quantum Valkyrie
    Bogdan Ion Puscasu
    4.87 (133)
    Valkyrie Quantique - Précision.Discipline.Exécution Réduction       Prix.   Le prix augmentera de 50 $ à chaque tranche de 10 achats. Signal en direct :   CLIQUEZ ICI   Chaîne publique Quantum Valkyrie MQL5 :   CLIQUEZ ICI ***Achetez Quantum Valkyrie MT5 et vous pourriez obtenir Quantum Emperor ou Quantum Baron gratuitement !*** Contactez-nous en privé pour plus d'informations ! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup
    BB Return mt5
    Leonid Arkhipov
    4.99 (85)
    BB Return — un Expert Advisor (EA) pour le trading de l’or (XAUUSD). Cette idée de trading a été utilisée auparavant par moi-même en trading manuel . Le cœur de la stratégie repose sur le retour du prix vers la zone des Bollinger Bands , mais pas de manière mécanique ni à chaque contact. Sur le marché de l’or, les bandes seules ne suffisent pas ; l’EA utilise donc des filtres supplémentaires afin d’écarter les conditions de marché faibles ou non exploitables. Les positions sont ouvertes uniqueme
    Goldwave EA MT5
    Shengzu Zhong
    4.76 (38)
    Compte de trading réel   LIVE SIGNAL (IC MARKETS) :  https://www.mql5.com/en/signals/2339082 Cet EA utilise exactement la même logique de trading et les mêmes règles d’exécution que le signal de trading en direct vérifié affiché sur MQL5.Lorsqu’il est utilisé avec les paramètres recommandés et optimisés, et avec un courtier ECN / RAW spread réputé (par exemple IC Markets ou TMGM) , le comportement de trading en conditions réelles de cet EA est conçu pour s’aligner étroitement sur la structure d
    Quantum King EA
    Bogdan Ion Puscasu
    4.98 (177)
    Quantum King EA — Une puissance intelligente, optimisée pour chaque trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Prix de lancement spécial Signal en direct :       CLIQUEZ ICI Version MT4 :   CLIQUEZ ICI Chaîne Quantum King :       Cliquez ici ***Achetez Quantum King MT5 et vous pourriez obtenir Quantum StarMan gratuitement !*** Demandez en privé pour plus de détails ! Gérez   votre trading avec pr
    AXIO Gold EA
    Shengzu Zhong
    5 (5)
    AXIO GOLD EA MT5 Compte réel de trading SIGNAL EN DIRECT EC MARKETS : https://www.mql5.com/en/signals/2366982?source=Site+Signals+My#!tab=account Cet EA utilise la même logique et les mêmes règles d'exécution que le signal réel vérifié présenté sur MQL5. Lorsqu'il est utilisé avec les paramètres recommandés et optimisés chez un courtier fiable à spread ECN/RAW, tel que IC Markets ou TMGM , le comportement de trading en temps réel de l'EA est conçu pour refléter au plus près la structure des tran
    Chiroptera
    Rob Josephus Maria Janssen
    4.76 (25)
    Prop Firm Ready! Chiroptera is a multi-currency, single trade Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances caused by Tweets and other ad-ho
    The Gold Reaper MT5
    Profalgo Limited
    4.5 (94)
    PROP FIRM PRÊT !   (   télécharger SETFILE   ) WARNING : Il ne reste que quelques exemplaires au prix actuel ! Prix ​​final : 990$ Obtenez 1 EA gratuitement (pour 2 comptes commerciaux) -> contactez-moi après l'achat Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal YouTube Reviews Bienvenue chez le Faucheur d'Or ! S'appuyant sur le très réussi Goldtrade Pro, cet EA a été conçu pour fonctionner sur plusieurs périodes en même temps et a la possibilité de défini
    Gold Safe EA
    Anton Zverev
    5 (3)
    Signal en direct :   https://www.mql5.com/en/signals/2360479 Période :   M1 Paire de devises :   XAUUSD Varko Technologies   n'est pas une entreprise, c'est une philosophie de liberté. Je suis intéressé par une coopération à long terme et par la construction d'une réputation. Mon objectif est d'améliorer et d'optimiser constamment le produit afin de s'adapter à l'évolution du marché. Gold Safe EA   - l'algorithme utilise plusieurs stratégies simultanément, sa philosophie principale étant de m
    Wall Street Robot MT5
    MQL TOOLS SL
    4.41 (17)
    Wall Street Robot is a professional trading system developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to operate
    Gold House MT5
    Chen Jia Qi
    4.39 (51)
    Gold House — Systeme de Trading de Cassures Swing sur l'Or Augmentation du prix bientôt. Il ne reste que quelques licences au prix actuel (3/100) . Prochain prix cible : $999. Signaux en direct : Mode Profit Priority : https://www.mql5.com/en/signals/2359124 Mode BE Priority : https://www.mql5.com/en/signals/2372604 Important : Après l’achat, veuillez nous envoyer un message privé afin de recevoir les paramètres recommandés, les instructions, les précautions et les conseils d’utilisation. (Mes
    Wave Rider EA MT5
    Adam Hrncir
    5 (22)
    Scalper speed with sniper entries. Built for Gold. Last (10) copies at  449 USD  |   final   price  599  USD Check the Live signal  or Manual Hybrid scalper combining scalping speed with single position or intelligent recovery for XAUUSD. 4 trading strategies | Triple timeframe confirmation | 3 layers of account protection. Most trades close in under 30 minutes — minimal market exposure, maximum control. Wave Rider uses triple timeframe analysis (H1 trend + M15/M30 entry confirmation) to only e
    Akali
    Yahia Mohamed Hassan Mohamed
    3.41 (75)
    LIVE SIGNAL: Cliquez ici pour voir la performance en direct IMPORTANT : LISEZ D'ABORD LE GUIDE Il est essentiel que vous lisiez le guide de configuration avant d'utiliser cet EA pour comprendre les exigences du courtier, les modes de stratégie et l'approche intelligente. Cliquez ici pour lire le Guide Officiel Akali EA Vue d'ensemble Akali EA est un Expert Advisor de scalping de haute précision conçu spécifiquement pour l'Or (XAUUSD). Il utilise un algorithme de trailing stop extrêmement serré p
    Ultimate Breakout System
    Profalgo Limited
    5 (34)
    IMPORTANT   : Ce package ne sera vendu au prix actuel que pour un nombre très limité d'exemplaires.    Le prix va monter à 1499$ très rapidement    +100 stratégies incluses   et plus à venir ! BONUS   : À partir de 999$ ou plus --> choisissez  5     de mes autres EA gratuitement !  TOUS LES FICHIERS CONFIGURÉS GUIDE COMPLET DE CONFIGURATION ET D'OPTIMISATION GUIDE VIDÉO SIGNAUX EN DIRECT EXAMEN (tiers) NEW - VERSION 5.0 - ONECHARTSETUP Bienvenue dans le SYSTÈME D'ÉCLATEMENT ULTIME ! Je suis
    The Gold Phantom
    Profalgo Limited
    4.57 (30)
    PROP SOCIÉTÉ PRÊTE ! -->   TÉLÉCHARGEZ TOUS LES FICHIERS DU KIT AVERTISSEMENT: Il ne reste que quelques exemplaires au prix actuel ! Prix ​​final : 990 $ NOUVEAU (à partir de 399 $ seulement)   : Choisissez 1 EA gratuit ! (limité à 2 numéros de comptes de trading, tous mes EA sauf UBS) Offre combinée ultime     ->     cliquez ici REJOIGNEZ LE GROUPE PUBLIC :   Cliquez ici   Signal en direct Signal en direct 2 !! LE FANTÔME D'OR EST LÀ !! Après l'immense succès de The Gold Reaper, je suis ext
    Full Throttle DMX
    Stanislav Tomilov
    5 (9)
    Pleine puissance DMX - Une vraie stratégie,  de vrais résultats   Full Throttle DMX est un conseiller expert (EA) de trading multidevises conçu pour les paires EUR/USD, AUD/USD, NZD/USD, EUR/GBP et AUD/NZD. Ce système repose sur une approche de trading classique, utilisant des indicateurs techniques reconnus et une logique de marché éprouvée. L'EA intègre 10 stratégies indépendantes, chacune conçue pour identifier différentes conditions et opportunités de marché. Contrairement à de nombreux syst
    Aurum AI mt5
    Leonid Arkhipov
    4.85 (40)
    MISE À JOUR — DÉCEMBRE 2025 Fin novembre 2024, l’Expert Advisor Aurum a été officiellement lancé à la vente. Depuis ce moment, il a fonctionné dans des conditions réelles de marché — sans filtre d’actualités, sans protections supplémentaires et sans restrictions complexes — tout en restant stable et profitable. Live Signal (launch April 14, 2026) Cette année complète de trading réel a clairement démontré la fiabilité du système de trading. Et seulement après cette période, en nous appuyant sur
    Bonnitta EA MT5
    Ugochukwu Mobi
    3.38 (21)
    Bonnitta EA est basé sur la stratégie Pending Position (PPS) et un algorithme de trading secret très avancé. La stratégie de Bonnitta EA est une combinaison d'un indicateur personnalisé secret, de lignes de tendance, de niveaux de support et de résistance (action sur les prix) et de l'algorithme de trading secret le plus important mentionné ci-dessus. N'ACHETEZ PAS UN EA SANS AUCUN TEST EN ARGENT RÉEL DE PLUS DE 3 MOIS, IL M'A PRIS PLUS DE 100 SEMAINES (PLUS DE 2 ANS) POUR TESTER BONNETTA EA E
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.79 (121)
    Quantum Bitcoin EA   : Il n'y a rien d'impossible, il s'agit simplement de trouver comment le faire ! Entrez dans le futur du trading   Bitcoin   avec   Quantum Bitcoin EA   , le dernier chef-d'œuvre de l'un des meilleurs vendeurs MQL5. Conçu pour les traders qui exigent performance, précision et stabilité, Quantum Bitcoin redéfinit ce qui est possible dans le monde volatil des crypto-monnaies. IMPORTANT !   Après l'achat, veuillez m'envoyer un message privé pour recevoir le manuel d'installa
    Gold Snap
    Chen Jia Qi
    3 (2)
    Gold Snap — Système de capture rapide des profits sur l’or Promotion de lancement — phase d’introduction limitée Gold Snap est actuellement disponible à un prix spécial de lancement. Le prix continuera d’augmenter lors des prochaines étapes, avec 999 $ comme prochain objectif majeur. Les premiers acheteurs bénéficieront du meilleur avantage tarifaire. Signal en direct : https://www.mql5.com/zh/signals/2362714 Afin d’éviter que les performances réelles ne soient affectées par des différences dan
    Quantum Emperor MT5
    Bogdan Ion Puscasu
    4.85 (504)
    Présentation       Quantum Emperor EA   , le conseiller expert MQL5 révolutionnaire qui transforme la façon dont vous négociez la prestigieuse paire GBPUSD ! Développé par une équipe de traders expérimentés avec une expérience commerciale de plus de 13 ans. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Achetez Quantum Emperor EA et vous pourriez obtenir Quantum StarMan  gratuitement !*** Demandez en privé pour pl
    AnE
    Thi Ngoc Tram Le
    5 (2)
    ANE — Gold Grid Expert Advisor ANE est un Expert Advisor entièrement automatisé conçu pour trader XAUUSD (Or) sur le timeframe M15 en utilisant une stratégie de grille avec averaging . Important : Testez d’abord l’EA sur un compte démo pour bien comprendre le comportement du système d’averaging avant de l’utiliser sur un compte réel. Signal Live ANE Official Channel Stratégie de Trading ANE gère les positions comme un groupe. Il ouvre des trades supplémentaires pour optimiser le prix d’entrée
    Grabber Bot
    Ihor Otkydach
    5 (3)
    Il ne reste plus que 5 exemplaires au prix de 399 $. Le prochain prix sera de 499 $. Grabber Bot — est un Expert Advisor entièrement automatisé, basé sur la logique éprouvée du système Grabber System, qui a déjà reçu reconnaissance et évaluations positives de la part des traders sur la plateforme MQL5 Market. L’idée de créer cet EA repose sur une expérience réelle de trading et sur les retours des utilisateurs. De nombreux traders utilisant la version manuelle du Grabber System ont rencontré le
    AI Gold Trading MT5
    Ho Tuan Thang
    3.79 (42)
    VOUS VOULEZ LES MÊMES RÉSULTATS QUE MON SIGNAL EN DIRECT ?   Utilisez exactement les mêmes courtiers que moi :   IC MARKETS  &  I C TRADING .  Contrairement au marché boursier centralisé, le Forex n'a pas de flux de prix unique et unifié.  Chaque courtier s'approvisionne en liquidités auprès de différents fournisseurs, créant ainsi des flux de données uniques. D'autres courtiers ne peuvent atteindre qu'une performance de trading équivalente à 60-80 %     Chaîne Forex EA Trading sur MQL5 :  Rejoi
    AI Gold Scalp Pro
    Ho Tuan Thang
    4 (11)
    VOUS VOULEZ LES MÊMES RÉSULTATS QUE MON SIGNAL EN DIRECT ?   Utilisez exactement les mêmes courtiers que moi :   IC MARKETS  &  I C TRADING .  Contrairement au marché boursier centralisé, le Forex n'a pas de flux de prix unique et unifié.  Chaque courtier obtient de la liquidité auprès de différents fournisseurs, créant des flux de données uniques. Les autres courtiers ne peuvent atteindre qu'une performance de trading équivalente à 60-80%. SIGNAL EN DIRECT Canal de Trading Forex EA sur MQL5 : 
    Gold Zilla AI MT5
    Christophe Pa Trouillas
    4.77 (13)
    Générez des rendements contrôlés avec un EA assisté par Grok AI , diversifié en risque et optimisé pour l'Or . GoldZILLA AI est un algorithme multi-stratégies qui détecte les régimes de marché pour sélectionner dynamiquement parmi cinq stratégies distinctes, optimisant les rendements tout en minimisant le drawdown sur XAUUSD. [   Live Signal   ] - [  Dedicated group   | Version   MT5   -   MT4   ] Après l'achat, veuillez m'envoyer un message privé pour recevoir le manuel d'utilisation et les ins
    Smart Owl FX
    Ivan Bebikov
    5 (8)
    This is a sophisticated multicurrency trading algorithm designed to operate with surgical precision during the quiet hours of the Asian session. While the market sleeps, the "Smart Owl" hunts for opportunities using advanced mean-reversion logic tailored for low-volatility periods. This Expert Advisor relies on market structure analysis rather than dangerous strategies like martingale or grid. Every trade is calculated to maximize statistical probability. Set File IC/Vantage/Tickmil..set -----
    Plus de l'auteur
    ScalpEA v2
    Martin Vrlik
    I am happy that you are here, let me introduce my small miracle. How it started: At first, bot was created for XAUUSD pair. It could be used / trained for whatever you like, but at your own risk!  For your info, I am not a marketing guy so nothing here will look so fancy, my bot just simply works, and decision is only on you if you would like to buy it based on your tests. It all started as an experiment after one developer here told me that doing these modifications would be too complicated. So
    Filtrer:
    sancai
    18
    sancai 2026.05.12 03:41 
     

    L'utilisateur n'a laissé aucun commentaire sur la note

    Répondre à l'avis