Blackjack Candle Count

5

BlackJack Counting EA


Ive included the main parameters you need to tweak the EA, the logic that was trained on AI (the bias) is hard coded.


To speed up the EA, printing of the running count is omitted. the logic is in place and working in the background.


Download the demo and test on GOLD H2 !


Any Questions please contact me. 








Background

I've always been captivated by the intricate dance between strategy, probability, and psychology inherent in games like chess, poker, and blackjack. At their core, these games aren't just about luck—they're strategic contests where understanding patterns, predicting outcomes, and outsmarting opponents provide immense satisfaction.

Chess, for example, exemplifies pure strategy. Each move opens or closes pathways, demands foresight, and requires players to anticipate their opponent’s intentions many steps ahead. Poker introduces psychological complexity, where success depends not just on cards dealt but also on reading opponents, bluffing convincingly, and managing risk.

However, my greatest fascination lies in blackjack, specifically the brilliant simplicity of the blackjack counting system. Unlike poker and chess, blackjack combines chance with strategic depth in a uniquely quantifiable manner.

The blackjack counting system, at its simplest, assigns numeric values to cards: low cards (2-6) are valued at +1, neutral cards (7-9) at 0, and high cards (10-Ace) at -1. Players track these values to maintain a running count throughout the game.

Why does this work? Fundamentally, blackjack becomes more favorable to the player when the deck is rich in high-value cards. A high count indicates that the deck has proportionally more tens and aces, increasing the odds of hitting a blackjack, improving the effectiveness of doubling down, and boosting the chances that the dealer will bust. By carefully keeping track of the running count, players gain a mathematical advantage, enabling informed decisions about when to bet big or play cautiously.

Casinos, however, are well aware of this advantage. They often counter card counters by taking defensive measures, such as banning suspected card counters from playing altogether or frequently reshuffling the decks, neutralizing any advantage gained from counting. Despite these precautions, the elegance of the counting system remains compelling, transforming blackjack from a game of chance into a calculated, intellectual challenge.


The blackjack counting system, at its simplest, assigns numeric values to cards: low cards (2-6) are valued at +1, neutral cards (7-9) at 0, and high cards (10-Ace) at -1. Players track these values to maintain a running count throughout the game.
Why does this work? Fundamentally, blackjack becomes more favorable to the player when the deck is rich in high-value cards. A high count indicates that the deck has proportionally more tens and aces, increasing the odds of hitting a blackjack, improving the effectiveness of doubling down, and boosting the chances that the dealer will bust. By carefully keeping track of the running count, players gain a mathematical advantage, enabling informed decisions about when to bet big or play cautiously.
Casinos, however, are well aware of this advantage. They often counter card counters by taking defensive measures, such as banning suspected card counters from playing altogether or frequently reshuffling the decks, neutralizing any advantage gained from counting. Despite these precautions, the elegance of the counting system remains compelling, transforming blackjack from a game of chance into a calculated, intellectual challenge.
This concept led me to a fascinating realization: could a similar counting logic be applied to financial trading? Imagine assigning positive and negative counts to various candle formations, moving average crosses, ATR values, and other indicators commonly used by traders. Just as a high positive count signals an advantageous moment in blackjack, a positive running count in trading could signal a buying opportunity, while a negative count could indicate a selling opportunity.
In fact, applying this blackjack-inspired counting method to trading provides two distinct edges: first, unlike casinos that reshuffle decks to eliminate counting advantages, financial markets never reshuffle historical candles or price action. Second, while a negative blackjack count typically forces you to stop betting or lose money, in trading, you can actively benefit from both positive and negative counts by adjusting your market position accordingly. This transforms trading into a dynamic game of continuous strategic advantage, directly inspired by the intellectual rigor of blackjack counting.


The Importance of a Running Count for Market Entry and Exit: Leveraging Blackjack Logic

Maintaining a running count is a crucial component in trading, particularly when determining optimal entry and exit points. Inspired by the blackjack counting strategy, the running count approach translates market signals into quantifiable numeric values, thereby offering clear, actionable insights.

Each market indicator—whether it be candle formations, moving average crosses, gaps, or volatility readings from Average True Range (ATR)—is assigned a numeric value. Positive signals increase the count, suggesting bullish conditions, while negative signals decrease it, signaling bearish conditions. This continuous count acts as a barometer for market sentiment, guiding traders on when to enter or exit positions effectively.

Why is this method so effective? Just like counting cards in blackjack provides a clear advantage in betting decisions, maintaining a running market count provides real-time clarity on market strength or weakness. A rising positive count indicates increasing bullish momentum, making it advantageous to enter or maintain long positions. Conversely, a declining or negative count suggests bearish momentum, signaling traders to exit long positions or initiate shorts.

Moreover, leveraging machine learning to enhance this counting system refines its effectiveness. Neural networks analyze historical data, continuously optimizing count assignments and biases, thus significantly improving the accuracy of trading signals. By integrating this advanced analytical power, traders ensure that the running count remains responsive and precise.




Running Count Blackjack Free EA

EA  Basic Setup -Inputs



Strategy Control Inputs

These inputs determine how the EA behaves with respect to opening extra trades and the sensitivity of signals.

  • input bool enableAdditionalTrades = true;
    Purpose: Enables (or disables) the ability to open extra trades if the trading bias (running total) increases significantly.
    When enabled: The EA can add to an existing position if the signal grows stronger.

  • input double additionalTradeGap = 300.0;
    Purpose: Defines the minimum price gap (in pips, converted to points internally) that must be met between consecutive additional trades.
    Usage: Helps avoid rapid re-entry or “whipsaw” when the price hasn’t moved enough from the previous additional entry.

  • input double additionalTradeThreshold = 3;
    Purpose: Sets the minimum increase in the running total (i.e., the cumulative bias from recent bars) required to trigger an additional trade.
    Usage: Ensures that an extra trade is only taken when the signal’s strength increases by at least this amount compared to the previous trade signal.


    Running Total Configuration

    These parameters control how the EA calculates the bias (or signal strength) by summing the contributions from multiple bars.

    • input int runningTotalBars = 13;
      Purpose: Defines the number of previous bars used to compute the running total of bias values.
      Usage: A larger number smooths out random fluctuations; a smaller number makes the EA more sensitive to recent moves.

    • input double minCountThreshold = 7;
      Purpose: Sets the minimum sum of bias (from the recent bars) required to trigger a new trade.
      Usage: Helps filter out weak or indecisive market conditions.

    • input double maxCountThreshold = 0;
      Purpose: Establishes an upper limit for the bias—if the running total exceeds this threshold, the EA would skip the trade.
      Usage: When set to 0, it’s effectively turned off; if a nonzero value is provided, it prevents trading in overly strong conditions where the bias might be excessively high.

    Trade and Risk Management Inputs

    These settings determine your trade size and risk thresholds.

    • input double fixedLotSize = 0.1;
      Purpose: Defines the fixed number of lots to trade for each order.
      Usage: This is the base volume that will be normalized later to comply with the broker’s volume settings.

    • input int stopLossPoints = 850;
      Purpose: Specifies the stop loss distance in points (a “point” being the minimal price movement defined by the broker’s symbol settings).
      Usage: Determines how far from the entry price the stop loss is placed to limit potential losses.

    • input bool useTrailingStop = true;
      Purpose: Enables (or disables) a trailing stop mechanism.
      Usage: When enabled, the EA will adjust the stop loss during the life of the trade, potentially locking in profits as the market moves favorably.

    • input double takeProfitPercent = 6;
      Purpose: Sets the take profit threshold as a percentage gain relative to the account balance.
      Usage: When equity reaches this percentage above the balance, the EA will close all trades to secure profits.

    • input double maxDrawdownPercent = 1;
      Purpose: Defines the maximum allowable drawdown (as a percentage below the account balance) before all trades are closed.
      Usage: Acts as a safety mechanism to limit losses in adverse market conditions.

    • input int MagicNumber = 123452;
      Purpose: Provides a unique identifier for all trades executed by this EA.
      Usage: Distinguishes these orders from those placed manually or by other EAs running on the same account.

    Single Candle Patterns – Bias and Detection Thresholds

    These inputs set bias values for signals generated by certain single-candle patterns and determine detection criteria.

    • input double biasPinBar = 0.5;
      Purpose: Assigns a bias score for detecting a Pin Bar pattern (a reversal candle with a long tail).
      Usage: A Pin Bar contributes positively or negatively to the trading signal depending on its context.

    • input double biasInvertedHammerBull = 3;
      Purpose: Sets the bias for an Inverted Hammer pattern in a bullish scenario, where a long upper wick may signal a reversal.

    • input double biasWideRangeBull = -3.5;
      Purpose: Assigns a bias to wide-range bullish candles (a large candle body compared to the overall range), which can indicate strong momentum.

    • input double biasMarubozuBull = -1;
      Purpose: Determines the bias for a Marubozu candle—a candle with little or no wicks that indicates strong directional conviction.

    • input double minPinBodyRatio = 0.11;
      Purpose: The minimum ratio of the candle body to the full range required for a candle to qualify as a Pin Bar or hammer pattern.

    • input double dojiBodyThresholdRatio = 0.1;
      Purpose: Establishes the maximum body-to-range ratio for a candle to be considered a Doji.
      Usage: Ensures that only candles with very little body (indicative of market indecision) are flagged.

    Two Candle Patterns – Bias Settings

    These inputs are used for patterns involving two consecutive candles.

    • input double biasBullEngulfing = -1.5;
      Purpose: Sets the bias for a bullish engulfing pattern where a bullish candle completely engulfs a previous bearish candle.

    • input double biasInsideBarBull = 1;
      Purpose: Provides a positive bias for an inside bar pattern, where the current candle’s range is entirely within the previous candle’s range.

    • input double biasHaramiBull = 0;
      Purpose: Defines the bias for a bullish Harami pattern—a small bullish candle contained within a larger bearish candle.
      Usage: A zero value means it has a neutral impact on the signal.

    • input double biasPiercing = 3.5;
      Purpose: Assigns a bias for a Piercing pattern. This is a bullish reversal pattern where a bullish candle closes above the midpoint of a prior bearish candle.

    Three Candle Patterns – Bias and Detection Thresholds

    These inputs apply to signals derived from three-candle formations.

    • input double biasMorningStar = 2;
      Purpose: Bias for a Morning Star pattern (a three-candle bullish reversal that often includes a doji), indicating a shift in momentum.

    • input double biasThreeWhiteSoldiers = 4.5;
      Purpose: A strong bullish bias when three consecutive bullish candles (Three White Soldiers) are detected.

    • input double biasThreeInsideUp = 5;
      Purpose: Bias for a “Three Inside Up” pattern, where an inside pattern confirms bullish reversal.

    • input double biasThreeBarBullRev = 3;
      Purpose: Sets a bias for a custom-defined three-bar bullish reversal pattern.

    • input double biasUpsideGapTwoCrows = 3;
      Purpose: Although named with a “crows” reference, it is associated with bearish gap patterns involving two candles.
      Usage: The setting suggests that such a formation contributes a specific bias to the overall signal.

    Gap Patterns – Open-Close Based Bias Settings

    These inputs address gap patterns by comparing open/close prices, offering additional signals.

    • input double biasGap_OC_Up_BullBull = -1;
      Purpose: Bias value for a gap up scenario where bullish conditions continue (both previous and current candles are bullish).

    • input double biasGap_OC_Up_BullBear = -2;
      Purpose: Bias for a gap up pattern that reverses into bearish behavior.

    • input double biasGap_OC_Down_BullBull = 2;
      Purpose: Bias for a gap down that continues bullish momentum, an unusual situation where market structure might imply a retracement.

    • input double biasGap_OC_Down_BullBear = -3;
      Purpose: Bias for a gap down leading to bearish continuation.

    Gap Patterns – High-Low Based Bias Settings

    These settings consider gaps in the high-low range rather than open-close levels.

    • input double biasGap_HL_Up_BullBull = -2.5;
      Purpose: Bias for a bullish confirmation in a gap up scenario based on the high-low range.

    • input double biasGap_HL_Up_BullBear = -5;
      Purpose: A stronger bearish bias in a gap up scenario when conditions reverse.

    • input double biasGap_HL_Down_BullBull = -1.5;
      Purpose: Bias for gap down with bullish continuation.

    • input double biasGap_HL_Down_BullBear = 0.5;
      Purpose: A mild bias for gap down scenarios that turn bearish.

    Pattern Group Enable/Disable Flags

    These boolean switches let you choose which sets of pattern analyses to run. Disabling a group can simplify the decision-making process if you wish to focus on particular patterns.

    • input bool analyzeSingleCandlePatterns = true;
      Enables or disables the detection of single-candle patterns.

    • input bool analyzeTwoCandlePatterns = true;
      Controls whether two-candle pattern detection is active.

    • input bool analyzeThreeCandlePatterns = true;
      Toggles the analysis for three-candle patterns.

    • input bool analyzeGapPatterns = true;
      Determines if gap-based patterns are to be included in the trading signal.


    MA Cross Visualization Settings (Moving Average Filter)

    These inputs configure two moving averages used as a filter to further confirm trade signals.

    Fast Moving Average (MA1)

    • input bool InpUseMAFilter = true;
      Purpose: Enables or disables the moving average filter entirely.
      Usage: When enabled, the EA will only take a trade if the fast MA is in the desired relation to the slow MA.

    • input string FAST and related text strings ( MA1_TEXT , MA1_TEXT_2 ):
      Purpose: Provide labels or visual separators for the fast MA settings when displayed on the chart.

    • input ENUM_TIMEFRAMES MA1_TIMEFRAME = PERIOD_CURRENT;
      Purpose: Sets the timeframe on which the fast MA is calculated (by default, the current chart’s timeframe).

    • input ENUM_MA_METHOD MA1_MODE = MODE_SMA;
      Purpose: Defines the method used for the fast MA calculation (Simple Moving Average in this case).

    • input int MA1_PERIOD = 60;
      Purpose: Specifies the period (number of bars) to calculate the fast MA.

    • input int MA1_SHIFT = 0;
      Purpose: Allows shifting the fast MA forward or backward relative to the price bars.

    • input ENUM_APPLIED_PRICE MA1_APPLIED_PRICE = PRICE_CLOSE;
      Purpose: Chooses the price data (e.g., close, open, high, low) that is fed into the fast MA calculation.

    Slow Moving Average (MA2)

    • input string SLOW, MA2_TEXT, MA2_TEXT_2 :
      Purpose: Similar to the fast MA strings, these are used for labeling and visual organization for the slow MA settings.

    • input ENUM_TIMEFRAMES MA2_TIMEFRAME = PERIOD_CURRENT;
      Purpose: Sets the timeframe for the slow MA calculation.

    • input ENUM_MA_METHOD MA2_MODE = MODE_SMA;
      Purpose: Determines the method for the slow MA (again using a simple moving average).

    • input int MA2_PERIOD = 155;
      Purpose: Sets the number of bars used in calculating the slow MA. Typically, a longer period is chosen than for the fast MA.

    • input int MA2_SHIFT = 0;
      Purpose: Allows for adjusting the alignment of the slow MA.

    • input ENUM_APPLIED_PRICE MA2_APPLIED_PRICE = PRICE_CLOSE;
      Purpose: Selects which price to use (here, the closing price) for calculating the slow MA.

    Summary

    Each setting has been carefully designed to control either the:

    • Trade Execution and Management: (lot size, stop loss, trailing stops, risk limits, extra trade conditions)

    • Signal Generation: (candlestick pattern biases and thresholds, running total calculation)

    • Market Filtering: (moving average filter for trade confirmation)

    By adjusting these inputs, you can fine-tune the strategy’s sensitivity, risk profile, and market condition adaptability.

    This thorough explanation should help you—and any end user—understand the purpose and function of every configuration parameter in the EA.








    Reviews 2
    worldofhunger
    1268
    worldofhunger 2025.04.10 20:05 
     

    Great EA, it trades like a professional trader, with SL and higher time frame trading it is a winner in many aspects, the logic behind it is amazing and the author is professional and responsive, thank you for making such a great EA, really like it :)

    Recommended products
    Pump Liquidity Refueling
    Konstantin Meshcheriakov
    PUMP V3_0 Liquidity Refueling — Refueling Your BalanceWhat is "Liquidity Refueling"? Think of the Forex market as a highway and liquidity as the fuel.  When institutional players "pour" massive volume into the market, the price makes a sharp surge — an impulse or a "pump."  The PUMP V3_0 EA acts as a smart fueling station: it identifies moments of maximum market energy and "pumps" that momentum directly into your trading account.   Performance Metrics (Strategy Tester Data):Net Profit "Pumped"
    FREE
    What is SMC Market Structure Pro? SMC Market Structure Pro is an automated trading Expert Advisor for MetaTrader 5 , developed based on Smart Money Concept (SMC) and market structure analysis . The EA is designed to help traders follow the natural flow of the market , focusing on price structure instead of indicators or lagging signals. How Does the EA Work? The EA analyzes market structure changes using pure price action: Detects higher highs & higher lows for bullish structure Detects l
    FREE
    GoldEdge BB Reversal Scalper
    Vittaya Klangpimanarkart
    Short Description GoldEdge Bollinger Bounce Scalper is a precision mean reversion EA designed to capture bounce entries when price stretches to the outer Bollinger Bands and shows signs of reversal. Full Description GoldEdge Bollinger Bounce Scalper is built for traders who want a structured and disciplined bounce trading system. This Expert Advisor is designed to identify short-term overextended price conditions and react when the market shows potential to return back toward balance. Instead of
    FREE
    EA34 Tanin Force
    Nhat Tien Duong
    5 (2)
    [FREE EA] EA34 TANIN FORCE: MACD & STOCH ENGINE (Prop Firm Ready) Are you tired of market noise and false breakouts? Meet EA34 Tanin Force, a commercial-grade Expert Advisor designed specifically for the EURUSD on the M15 timeframe. This system combines the raw trend-following power of MACD with the precision timing of the Stochastic Oscillator. PERFORMANCE HIGHLIGHTS (6-Year Stress Test 2020 - 2026): * Symbol & Timeframe: EURUSD | M15 * Set & Forget: Hard Stop Loss and Take Profit. No
    FREE
    Overview Smart breakout EA that waits for price to compress into narrow ranges, then automatically trades the explosive moves when price breaks free. Lot Sizing Auto Lot : Risks a fixed % of balance (default 1%) per trade Fixed Lot : Uses fixed lot size (default 0.01)   Trailing Stop Activates after trade reaches +7 pips profit (configurable) Trails 5 pips below M15 low for BUY (or above M15 high for SELL) Protects profits as trade moves favorably   Opposite Order Feature Optional: Opens opposi
    FREE
    Momentum Portfolio
    Ranaweera Wanasinghe Herath Bandara
    Momentum Portfolio EA Multi-symbol momentum expert advisor for gold, US indices, and bitcoin. Trades four instruments from a single chart with adaptive risk management, regime detection, and broker-agnostic symbol resolution. Overview Momentum Portfolio is a four-symbol expert advisor that trades XAUUSD, NAS100, US30, and BTCUSD using two complementary momentum-detection engines. A single instance attached to any H1 chart manages entries, exits, partial profit-taking, and risk control across all
    MT Monster
    MASSINISSA AINOUZ
    This EA has been backtested with real ticks since January 2012 untill March 2025, with no delay in execution, and then with a delay of 1000ms, the backtest showed a drawdown of 30% with a 10k USD backtest account. The EA default parameters are optimised to work best on EURUSD pair, but can work on other currencies and metals like XAUUSD. Before using this EA and in order to not lose all your money make sure you have at least 5000USD in your account. Do not use another EA with this one on the sam
    NOW FREE!! It's crucial to note that, like any trading tool, ForexClimber EA doesn't guarantee profits. Forex trading carries risks, and market volatility means success is never certain. The pricing of ForexClimber EA is dynamic, and as it gains popularity, the cost for renting or buying may increase. Invest now to secure your place in Forex trading advancement. Seize the opportunity, navigate the markets, and let ForexClimber EA support your Forex trading aspirations.
    FREE
    Aurum Vector Gold Pullback is a MetaTrader 5 Expert Advisor designed to trade structured pullbacks on Gold. The EA studies the broader market direction and waits for price to return to a technically relevant area before considering an entry. It is designed to avoid chasing extended price movements and does not trade continuously. A position is opened only when the trend, pullback location, momentum and entry conditions are aligned. The recommended setup is XAUUSD on the M5 timeframe . Broker suf
    FREE
    Set TP & SL by Price – Auto Order Modifier for MT5 Automatically set precise TP and SL price levels on any trade Set TP & SL by Price  LITE/GBPUSD is a free, limited version of Set TP & SL by Price , designed to manage Take Profit and Stop Loss levels by price rather than pips or points. This free version works exclusively on GBPUSD and gives you the full experience, at no cost. ️ Works with all pairs and EAs, filter by symbol or magic number This Expert Advisor lets you define and apply
    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
    SimpleTrade by Gioeste
    Giovanni Scelzi
    4 (3)
    Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
    FREE
    Gold Adaptive EA MT5 is an automated Expert Advisor for MetaTrader 5 designed for trading Gold (XAUUSD). The EA uses several internal trading models and market filters to adapt to different phases of Gold price movement. Instead of relying on one fixed entry pattern, Gold Adaptive EA MT5 analyzes market behavior and selects suitable logic for trend continuation, impulse moves, pullbacks and selected recovery conditions. The main goal of the Expert Advisor is to provide a structured Gold tradi
    FREE
    Aegis Aurora EA is a trend-following Expert Advisor designed specifically for USDNOK on the H1 timeframe. Inspired by the calm strength of the Nordic landscape, Aurora focuses on capturing sustained market trends while avoiding unnecessary complexity. The strategy combines trend identification, pullback entries, and risk management filters to seek stable long-term performance. Key Features • Optimized for USDNOK (H1) • Trend-following strategy • 7-Year Forward Test validation • Multiple risk pro
    FREE
    UsdJpy RangeBot Pro
    Kwaku Appenteng Wiredu
    UsdJpy RangeBot Pro – Expert Advisor for Breakout Trading UsdJpy RangeBot Pro is a breakout-based Expert Advisor developed for the USDJPY pair. It identifies trading opportunities during the early hours of the London session by analyzing a defined range and executing pending orders above or below it. The EA applies fixed logic, clear visual elements, and built-in risk controls. This tool is designed for disciplined breakout trading without the use of breakeven, martingale, or grid systems.
    FREE
    Breakout Londres
    Victor Paul Hamilton
    Do You Dare To Trade Time-Tested Methods Instead Of Martingale Fantasies? . 74 downloads when it was free and not one thanks . Retail traders Lol .  The sad truth is that the most profitable strategies often look the most boring in back-tests, but retail traders want action and excitement - which is exactly why 95% of them lose money. This EA actually forces some user interaction and understanding - you need to set proper session times, understand your broker's requirements, and adjust paramet
    FREE
    Power Gold Smart AI
    Gusti Ngurah Darmaadi
    POWER GOLD AI ELITE V2 is a powerful AI-based Expert Advisor designed specifically for trading XAUUSD (Gold) using a combination of Smart Trend Analysis, Volatility Detection, and Advanced Risk Management . Built for traders who want: Consistent performance Strong account protection Fully automated trading without emotions Core Strategy This EA combines modern trading technologies: Multi-Timeframe Trend Detection (EMA + HTF) ATR-Based Volatility Engine (Precise Entry Timing) Contro
    FREE
    Strike Zone EA MT5
    Matteo Schizzerotto
    Strike Zone is an Expert Advisor based on an OHLC candlestick chart pattern, all backtests are based on 10 years of Expert activity. Fixed parameters were used for the backtests: 1 Pair, $10,000 capital and a market entry of 0.1 Lots. after days of testing this Expert Advisor proved profitable with the following pairs and timeframes: AUDCAD H4 NAS100  NZDCAD H1 USDCAD H1 Backtests are not a guarantee of future profit, any use of this tool is the sole responsibility of the person using it. Be
    FREE
    Alligator Runner EA – Smart XAUUSD Expert Advisor Alligator Runner EA is a fully automated trading robot designed specifically for XAUUSD (Gold) on the MetaTrader 5 platform. It combines trend-based logic with level trading mechanics, powered by the Alligator indicator, to detect precise entries and exits in the market. Key Features : Trend-following strategy with level re-entries ️ Built-in Stop Loss , Take Profit , and dynamic trailing Designed exclusively for XAUUSD – no optimiza
    FREE
    GA Classic RSI mt5
    Osama Echchakery
    RSI   EA is a   fully automated   Forex trading strategy based on the MACD indicator, one of the most popular and widely used trend-following methods in technical analysis. This expert advisor automatically opens and manages buy and sell trades using RSI to capture market momentum while removing emotional decision-making. Premium advanced   version with   +40 filter!   :   Click Here Or search "RSI ProLab mt5" on the market
    FREE
    Gold Sniping
    Nguyen Chung
    GOLD SNIPING FREE – Precision Gold Trading EA Gold Sniping FREE is a completely free Expert Advisor designed specifically for XAUUSD (Gold) traders who prefer precise trend-following entries and automated trade management. The EA combines fast EMA crossover signals with higher-timeframe trend confirmation to capture high-probability market movements while maintaining simple and efficient risk control. Key Features Completely FREE to use Optimized for Gold (XAUUSD) EMA crossover entry system Dail
    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
    Mmaax
    Mohamed Mostafa Ali Ali
    Mmaax EA – Intelligent Gold Trading Robot Tested & Verified on Exness – Time Range Breakout Strategy for XAUUSD A powerful expert advisor purpose-built for Gold. It captures the high and low of your defined time range, then fires pending orders with razor-sharp precision on breakout or reversal. Robust capital protection and instant execution, designed to handle Gold’s volatility. Features Included in This Version: Selectable breakout or reversal strategy. Multi-mode stop loss and take pro
    FREE
    Gold Rush MT5 EA
    Matthew Lewis Beedle
    This EA was made for educational purposes.  You can find a full overview of how it was made in the YouTube video (Literally a step by step guide) We used AI and ML to create the whole thing, with no coding.  Can you trust this to make money? Possibly, but do so at your own risk.  It could be a nice addition to a large porfolio.  How to use: Add to H1 gold chart Make sure the subchart is correctly named to your broker name for Gold.  Big picture It’s a   trend + breakout system for buys , and a
    FREE
    Simple Strategy Grid Pro
    Vladimir Kuzmin
    5 (1)
    Simple Strategy Grid Pro  is a trading advisor combining four indicators (RSI, Stochastic, MACD, ADX) into a grid-based strategy. Suitable for both novice and experienced traders due to its flexible settings and automation. Strategy The advisor enters trades on signal changes from FALSE to TRUE, using RSI > 50, Stochastic > 50, MACD above signal line, and ADX > 25 for long positions (opposite for shorts). Take Profit is calculated from VWAP, with grid steps adjusted via ATR. Key Features Combin
    FREE
    The Dual MACD & Stochastic Expert Advisor (EA)  is a fully automated trading system that utilizes two  MACD (Moving Average Convergence Divergence) indicators along with the  Stochastic Oscillator  to identify high-probability trading opportunities. By combining trend confirmation from MACD with momentum analysis from Stochastic, this EA provides precise entry and exit points for optimized trading performance. Key Features: • Dual MACD Strategy – Uses two MACD indicators with different setting
    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
    BisterOne2
    Muchamad Sadam Madjid
    Multi Confluence EA v5 — XAUUSD Scalping System Overview Multi Confluence EA v5 is a fully automated Expert Advisor specifically engineered for scalping XAUUSD (Gold Spot) on M5 and M15 timeframes . It combines multiple confluence factors — Dual Timeframe trend analysis, ADX strength filter, RSI momentum, EMA crossover, and price action — to identify high-probability entry points while protecting capital through intelligent risk management. This EA was built and refined through extensive backtes
    FREE
    PZ Goldfinch Scalper EA MT5
    PZ TRADING SLU
    3.33 (57)
    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
    Introducing TRAD-E- LITE : Your Ultimate Trading Assistant! Are you tired of manually analysing the markets and executing trades? TRAD-E- LITE is here to assist you! Developed by Gold Lion XI, this expert adviser utilizes advanced algorithms to identify profitable trading opportunities and execute trades automatically, saving you time and effort. Key Features: Trading Time Management: Take control of your trading schedule. With TRAD-E- LITE , you can define specific trading hours based on your p
    FREE
    Buyers of this product also purchase
    Quantum Queen X MT5
    Bogdan Ion Puscasu
    5 (19)
    The Legend Continues. The Queen Evolves. Welcome to Quantum Queen X — the next generation of the legendary GOLD trading system that builds upon the proven success of Quantum Queen. Quantum Queen X is built on the same proven core engine as Quantum Queen, introducing a powerful new Custom Mode that allows traders to choose exactly which strategies to enable or disable. Every strategy has been individually reviewed, refined, and optimized to deliver even better performance and adaptability across
    Lizard
    Marco Scherer
    3.78 (23)
    WHAT IS LIZARD? Lizard is a fully automated Expert Advisor, developed exclusively for XAUUSD (Gold) on MetaTrader 5. It uses a multi-strategy swing breakout system that identifies key structural levels on the chart and places pending stop orders at precisely calculated entry points. No martingale. No grid. No averaging in. Every trade has a defined Stop Loss and Take Profit and is actively managed by a multi-layered exit system, automatically, around the clock. Live Signal - Track real performan
    The Gold Reaper MT5
    Profalgo Limited
    4.46 (102)
    PROP FIRM READY! ( download SETFILE ) WARNING: Only a few copies left at current price! Final price: 990$ Get 1 EA for free (for 3 trade accounts) -> contact me after purchase Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Client Signal YouTube Reviews LATEST MANUAL Welcome to the Gold Reaper! Build on the very succesfull Goldtrade Pro, this EA has been designed to run on multiple timeframes at the same time, and has the option to set the trade frequency fro
    Scalping Robot Pro MT5
    MQL TOOLS SL
    4.45 (136)
    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 traders
    Ultimate Breakout System
    Profalgo Limited
    5 (46)
    IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   +100 Strategies included and more coming! BONUS : At 1499$ or higher price --> choose 5  of my other EA's for free!   ALL SET FILES COMPLETE SETUP AND OPTIMIZATION GUIDE VIDEO GUIDE LIVE SIGNALS REVIEW (3rd party) NEW - 44-STRATEGIES LIVE SIGNAL Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and propr
    Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
    Smart Gold Hunter
    Barbaros Bulent Kortarla
    5 (20)
    No Grid/No Martingale/No Recovery/No Hedging/Single Entry with SL/One Shot  Smart Gold Hunter is an Expert Advisor for XAUUSD / Gold trading on MetaTrader 5. It is designed for traders who prefer a gold EA with no grid, no martingale, real Stop Loss and Take Profit logic, and controlled risk management. You can check the live signals before making a decision: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My  (Here I use Scalper Mode, To have the exact se
    Quantum iGold MT5
    Yassine Mouhssine
    5 (19)
    Quantum iGold MT5 – Advanced AI Trading System (XAUUSD) Quantum iGold MT5 is a fully automated trading system built using advanced Artificial Intelligence techniques. It employs a hybrid neural architecture that integrates LSTM and Transformer models to analyze price behavior on XAUUSD . This structure enables the system to detect market patterns, adapt to volatility changes, and generate technically refined trading signals in real time. After purchase, please contact me via MQL5 private messa
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.42 (128)
    Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1  Live Signal Mode 2 Twister Pro EA is a high-precision scalping Expert Advisor developed exclusively for XAUUSD (Gold) on the M15 timeframe. It trades less — but when it does, it trades with purpose. Every entry passes through 5 independent validation layers before a single order is placed, resulting in an extremely high win rate on the Default configuration. TWO MODES: • Mode 1 (recommended) — Very high assertiveness, fe
    Quantum King EA
    Bogdan Ion Puscasu
    4.96 (211)
    Quantum King EA — Intelligent Power, Refined for Every Trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Special Launch Price Live Signal:   CLICK HERE MT4 version : CLICK HERE Quantum King channel:   Click Here ***Buy Quantum King MT5 and you could get Quantum StarMan for free !*** Ask in private for more details! Rule your trading with precision and discipline. Quantum King EA brings the strength of
    Logan MT5
    Thierry Ouellet
    5 (11)
    LIMITED TIME OFFER AT 249$ Price will go up at  499$ on August 3rd! Logan MT5 isn't your typical Gold Grid EA that blindly opens trade after trade, consuming your margin and putting your capital at unnecessary risk. Instead, it patiently waits for high-probability entry opportunities and uses an intelligent recovery system that combines ATR-based grid spacing with dynamic lot progression . This allows it to withstand adverse market movements that would wipe out most conventional grid EAs—inclu
    Mavrik Scalper
    Vladimir Lekhovitser
    4.67 (3)
    Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2378119 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Mavrik Scalper represents a new generation of AI-driven trading systems built around a Hybrid Attention neural network architecture. Unlike conventional algorithmic strategies that rely primarily on fixed technical indicators or predefined market rules, Mav
    Gold Snap
    Chen Jia Qi
    4.47 (17)
    Gold Snap — A Fast Profit Capture System for Gold Live Signal: https://www.mql5.com/en/signals/2362714 Live Signal2: https://www.mql5.com/en/signals/2372603 Live Signal v2.0: https://www.mql5.com/en/signals/2379945 Only 3 copies remaining at the current price. The price will be increased to $999 soon. Important: After purchasing, please contact us by private message to receive the user guide, recommended settings, usage notes, and update support.  https://www.mql5.com/en/users/walter2008 W
    Quantum Athena X
    Bogdan Ion Puscasu
    5 (1)
    Smarter Control. Refined Precision. Welcome to Quantum Athena X — the next generation of the focused GOLD trading system that builds upon the precision, efficiency, and disciplined execution of Quantum Athena. Quantum Athena X is built on the same streamlined core engine and the same 6 carefully selected strategies as Quantum Athena. Each strategy has been individually refined and optimized for current GOLD market conditions, while the new powerful Custom Mode allows traders to choose exactly
    Nexorion Initium Novum EA
    Valentina Zhuchkova
    4.76 (21)
    NEXORION: Initium Novum — Deterministic Logic and Algorithmic Synthesis NEXORION is an institutional-grade analytical complex based on rigorous mathematical liquidity processing algorithms. The core concept of the project is "computational transparency": the expert advisor transforms chaotic price feeds into structured geometric zones, visualizing the decision-making process directly on the trading chart. Real-Time Monitoring https://www.mql5.com/en/signals/2378408 https://www.mql5.com/es/signa
    Pulse Engine
    Jimmy Peter Eriksson
    3.94 (34)
    UPDATE - ONLY A FEW COPIES LEFT AT CURRENT PRICE! The main goal of this system is long-term live performance without using any risky martingale or grid.  VERY LIMITED COPIES AT CURRENT PRICE Final Price $1499 [Live Signal]  |  [Backtest Results]  |  [Setup Guide]  |  [FTMO Results] A Different Approach to Trading Pulse Engine does not use any indicators or specific timeframes. It has a very unique approach that is not used by any other trading system on MQL5. It trades intraday directional patt
    Zerqon EA
    Vladimir Lekhovitser
    3.24 (29)
    Live Trading Signal Public real-time monitoring of trading activity: https://www.mql5.com/en/signals/2372719 Official Information Seller profile Official channel User Manual Setup instructions and usage guidelines: View user manual Zerqon EA is an adaptive Expert Advisor designed specifically for XAUUSD trading. The strategy is based on a Deep LSTM neural network model integrated through ONNX, allowing the system to process sequential market behavior and evaluate price dynamics in a st
    Quantum Emperor MT5
    Bogdan Ion Puscasu
    4.86 (507)
    Introducing   Quantum Emperor EA , the groundbreaking MQL5 expert advisor that's transforming the way you trade the prestigious GBPUSD pair! Developed by a team of experienced traders with trading experience of over 13 years. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Buy Quantum Emperor EA and you could get Quantum StarMan for free !*** Ask in private for more details Verified Signal:   Click Here MT4 Version
    Gold Neural Core
    TICK STACK LTD
    5 (6)
    Gold Neural Core — Hyper-Scalping Grid System for XAUUSD Limited-Time Offer: Buy Gold Neural Core, Get Any Other EA Free — For Life For a limited time, every purchase of Gold Neural Core includes a lifetime license to any other EA in my MQL5 Market lineup — your choice, no strings attached. Learn how I personally manage risk when using grid systems:  https://www.mql5.com/en/blogs/post/767250 Join my open group for questions related to any of my products:  https://www.mql5.com/en/messages/014beab
    Smart Gold Impulse
    Barbaros Bulent Kortarla
    3.82 (17)
    No Grid /No Martingale/ No Dca /No rocovery Smart Gold Impulse is now available in a special early launch phase. This is an EA I  am currently using with impressive results on my Live Signal  account. You can check the current performance through the Ultima live signal results, where Smart Gold Impulse has already shown very strong potential in real market conditions. The same set file used on my Ultima live signal account will be shared only with Smart Gold Impulse buyers. At the same time, thi
    Wave Rider EA MT5
    Adam Hrncir
    4.88 (43)
    Scalper speed with sniper entries. Built for Gold. Tired of all the fake EAs that eventually disappear?  Wave Rider  is honest, transparent EA without any fake AI or manipulated back-test that's being continuously developed $499  until Signal reaches 150% - then 599 USD Check the Live signal  or Manual  or  Broker performance Version 5.0 upgrade notice: Close all Wave Rider positions before updating. Strategy Magic Numbers and several input names changed. Review your settings and save a new pre
    SixtyNine EA
    Farzad Saadatinia
    4 (4)
    SixtyNine EA – A Gold Expert Advisor for MetaTrader 5, featuring 6 integrated strategy layers, predefined Stop Loss on every trade, and a clean trading structure without Martingale, Recovery systems, or Grid trading. Public Live Signal: $500 Start, Fixed 0.02 Lot, 500%+ Growth, 20 Weeks Live The public live signal is the central proof point of SixtyNine EA . The account started with a $500 balance , used a fixed 0.02 lot size per trade , and has been active for more than 20 weeks of live tradin
    Fantastic 4 MT5
    Fan Yang
    1 (1)
    Fantastic 4 Four-in-One Trading System Introduction Fantastic 4 is an automated trading EA integrating four mutually independent quantitative trading logics targeting XAUUSD. After long-term research, iterative optimization, historical backtesting and live market verification, each built-in strategy has exclusive entry rules, independent order management and customized risk control modules. All strategies run separately without mutual interference. The combination of four strategies with low cor
    ThunderGold Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    5 (1)
    ThunderGold Scalper ThunderGold Scalper is an Expert Advisor developed for automated gold trading on MetaTrader 5. The EA is designed for XAUUSD and GOLD on the M15 timeframe. It uses a proprietary multi-factor decision engine to identify qualified trading opportunities and manage positions automatically. The system combines market structure, trend direction, candle quality, volume, momentum and execution controls. It is designed to wait for suitable conditions instead of opening trades continuo
    SomaOil
    Andrii Soma
    5 (2)
    SomaOil is a multi-strategy breakout Expert Advisor for MetaTrader 5, built exclusively for WTI crude oil (XTIUSD). One chart, one EA, 20 independent strategies running together as a single diversified portfolio. Live Signal. To make it accessible at launch, I am using a transparent ramping-price model: Launch price: 100 USD (48 hours) Starting from Monday the price increases by 100 USD for every 10 copies sold Price increases happen at most once per day, even when more than 10 copies are sold t
    Gold House MT5
    Chen Jia Qi
    4.49 (59)
    Gold House — Gold Swing Breakout Trading  One EA. Three Trading Modes. Choose the One That Fits Your Style. No Grid. No Martingale. The price will increase by $50 after every 10 purchases. Final planned price: $1,999. Live Signals:  Profit Priority Mode: https://www.mql5.com/en/signals/2359124 BE priority Mode :  https://www.mql5.com/en/signals/2372604 Adaptive Mode:   https://www.mql5.com/en/signals/2379287  (High-Risk Configuration Reference – Potential profits and losses are amplified. N
    Impulse MT5
    Simon Reeves
    5 (14)
    Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A six-strategy gold EA that waits for the perfect shot. Come chat with us in our public MQL5 channel!  https://www.mql5.com/en/channels/starpoint Impulse v2.00 is here! The biggest update in Impulse's history has arrived. Version 2.00 takes everything that made Impulse a disciplined, patient Gold trading system and elevates it across the board: A brand-new sixth strategy — Conviction Momentum joins the squad, hunting de
    XG Gold Robot MT5
    MQL TOOLS SL
    4.3 (111)
    The XG Gold Robot MT5 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 Action, Cycle S
    Chiroptera
    Rob Josephus Maria Janssen
    4.62 (45)
    Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) 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 c
    Zoomini
    Gennady Sergienko
    Important information: Support and answers to questions are available only here:  https://www.mql5.com/en/users/zolia  ( Zolia - UTC/GMT: Taiwan ); Zoomini is a small set of machine-learning models from the latest GoGoPips project research from July 2026. These models are intended only for XAUUSD H1 / Gold . Signal: www.mql5.com/en/signals/2381994 Important things to know: The models trade with only one order using equal SL/TP. Netting accounts and any leverage are supported. Large deposi
    More from author
    Dual Time Frame Indicator – Candles in Candles for MT4 Overview The Candles-in-Candles Indicator is a multi-time frame visualization tool designed specifically for MT4. It overlays higher time frame candles onto your lower time frame chart, allowing you to see how smaller candles behave within larger ones. This approach enhances market structure analysis, sharpens trend identification, and clarifies price action—without the need to switch between charts. How It Works Select Your Lower Time Fram
    FREE
    Dual Timeframes
    Scott Adam Meldrum
    5 (1)
    Dual Time Frame Indicator – Candles in Candles Overview The Candles-in-Candles Indicator is a multi-time frame visualization tool designed to enhance market structure analysis by overlaying higher time frame candles onto a lower time frame chart. Instead of switching between time frames, traders can see how smaller candles behave inside larger ones, improving trade precision, trend identification, and price action clarity. Unlike standard multi-time frame indicators, this tool allows users to se
    FREE
    The Wormhole time frame indicator for MetaTrader 5 (MT5) is not just another trading tool—it’s your competitive edge in the financial markets. Designed with both novice and professional traders in mind, the Wormhole transforms how you analyze data and make decisions, ensuring you stay ahead of the curve. Why You Need the Wormhole Indicator Outsmart the Competition: The ability to view two timeframes on the same chart simultaneously means you’re always one step ahead. No more switching between ch
    FREE
    The Wormhole time frame indicator for MetaTrader 5 (MT5) is not just another trading tool—it’s your competitive edge in the financial markets. Designed with both novice and professional traders in mind, the Wormhole transforms how you analyze data and make decisions, ensuring you stay ahead of the curve. Why You Need the (free) Wormhole Indicator Outsmart the Competition: The ability to view two timeframes on the same chart simultaneously means you’re always one step ahead. No more switching be
    FREE
    Move StopLoss - Instructions for Use How to Use Drag and Drop Click and drag the script onto the chart where you want to set the new StopLoss level. Drop the script at your desired price level. Confirmation Popup After dropping the script, a confirmation box will appear. It will display the number of positions being modified and the exact StopLoss price. Click "Yes" to proceed or "No" to cancel. Automatic StopLoss Update If confirmed, the script will update the StopLoss for all open positions on
    FREE
    Perfect Trade Everytime - Why You Need This Trading Assistant EA Why You Need This Trading Assistant EA 1️⃣ Why This EA is a Game-Changer for Traders Trading is about timing, precision, and risk management . The difference between success and failure often comes down to how efficiently you execute your trades and manage your risk . This EA is designed to make trading effortless , ensuring that every trade is structured, controlled, and optimized for long-term profitability . What Makes This E
    FREE
    Move TakeProfit - Instructions for Use How to Use Drag and Drop Click and drag the script onto the chart at the price where you want to set the new TakeProfit level. Drop the script at your desired price level. Confirmation Popup After dropping the script, a confirmation box will appear. It will display the number of positions being modified and the exact TakeProfit price. Click "Yes" to proceed or "No" to cancel. Automatic TakeProfit Update If confirmed, the script will update the TakeProfit fo
    FREE
    Filter:
    huangyi0324
    270
    huangyi0324 2025.09.28 13:06 
     

    User didn't leave any comment to the rating

    worldofhunger
    1268
    worldofhunger 2025.04.10 20:05 
     

    Great EA, it trades like a professional trader, with SL and higher time frame trading it is a winner in many aspects, the logic behind it is amazing and the author is professional and responsive, thank you for making such a great EA, really like it :)

    Reply to review