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
    1217
    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
    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 (1)
    [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
    Drream Catcher FX
    Michael Prescott Burney
    DREAM CATCHER FX is the ultimate EURUSD H1 trading solution, built on 16 years of relentless development and precision-engineered algorithms. This game-changing EA has executed over 4,000 trades with only 99 losses, achieving an astounding win rate that sets it apart from all competitors. Designed for both aggressive and conservative traders, it features advanced exit signals that preemptively close unfavorable trades, ensuring controlled drawdowns and consistent, long-term capital growth. Key
    FREE
    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
    Minting Starter
    Zenzo Phathisani Mtungwa
    Minting Lite — Demo Version Minting is an automated trading system designed for Gold (XAUUSD) and Forex markets. It uses a combination of EMA, HMA, volume, and higher timeframe alignment to identify structured entry opportunities. This version allows users to observe the system’s behavior under real market conditions. Strategy Overview The system is based on multi-layer confirmation: EMA crossover structure for trend direction HMA breakout logic for entry timing Volume and candle validation for
    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
    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
    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
    ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Golden Mechanium AI (MT5) [Subtitle: Adaptive Axis AMA | Golden Gann Range | Sanctum Shield Safety] Introduction Golden Mechanium AI is a precision trend-following system engineered to operate with the reliability of a golden mechanism. It uses the advanced Adaptive Moving Average (AMA) as its central axis, filters noise with the Golden Gann Range , and regulates volatility with a Power Pressure Valve . This creates a system that adapts
    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
    ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Iron Goldenmind Constructor AI (MT5) [Subtitle: ZigZag Structure | MACD Momentum | Iron Shield Protection] Introduction Iron Goldenmind Constructor AI is a structural trend-following system designed to construct profitable trades on the foundation of market geometry. It combines the precision of ZigZag Swings to identify key "Golden Zones" (Fibonacci Retracement areas implicitly derived from swings) with the momentum confirmation of MAC
    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
    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
    Gold Reaper X
    Mohd Feroze
    5 (1)
    Gold Reaper X PRO – Now Available! More Control. More Protection. More Profit Potential. Upgrade and unleash the full power of Gold trading. Gold Reaper X – Professional Gold Scalping EA (XAUUSD) Gold Reaper X is a high-frequency automated trading system developed exclusively for Gold (XAUUSD) on the M1 timeframe . It is optimized for brokers offering low spreads and fast execution . The EA combines a higher-timeframe H1 trend filter with an adaptive recovery grid logic , allowing it to t
    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.34 (56)
    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 MT5
    Bogdan Ion Puscasu
    4.98 (651)
    Hello, traders! I am Quantum Queen , the crown jewel of the entire Quantum ecosystem and the highest-rated, best-selling Expert Advisor in the history of MQL5. With a proven track record of over 20 months of live trading, I’ve earned my place as the undisputed Queen of XAUUSD. My specialty? GOLD. My mission? Deliver consistent, precise, intelligent trading results — over and over again. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the set
    Quantum Athena
    Bogdan Ion Puscasu
    5 (60)
    Quantum Athena — Precision Forged from Experience Hello, traders! I am Quantum Athena — the light version of the legendary Quantum Queen, refined and re-engineered for today’s market conditions. I don’t try to be everything. I focus on what works now. My specialty? GOLD.My mission? Deliver sharp, efficient, and intelligently optimized trading performance — with precision at its core. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the s
    Chiroptera
    Rob Josephus Maria Janssen
    4.83 (36)
    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
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.36 (89)
    Fewer trades. Better trades. Consistency above all. • Live Signal Mode 1 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, few trades per week. Bu
    Quantum King EA
    Bogdan Ion Puscasu
    4.99 (196)
    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
    Goldwave EA MT5
    Shengzu Zhong
    4.72 (54)
    Real Trading Account   LIVE SIGNAL IC MARKETS:  https://www.mql5.com/en/signals/2339082 This EA uses the same logic and execution rules as the verified live signal shown on MQL5.When used with the recommended, optimized settings on a reputable ECN/RAW-spread broker ( e.g., IC Markets or TMGM) , the EA's live trading behavior is designed to closely align with the trade structure and execution characteristics of the live signal. Please note that differences in broker conditions, spreads, executio
    Quantum Valkyrie
    Bogdan Ion Puscasu
    4.61 (149)
    Quantum Valkyrie  - Precision.Discipline.Execution Discounted   price .  The price will increase by $50 with every 10 purchases. Live Signal: CLICK HERE Quantum Valkyrie MQL5 public channel: CLICK HERE ***Buy Quantum Valkyrie MT5 and you could get Quantum Emperor or Quantum Baron for free !*** Ask in private for more details! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions.      Hello, traders. I am Quantum Val
    Pulse Engine
    Jimmy Peter Eriksson
    4.24 (25)
    LAUNCH PRICE – ONLY A FEW COPIES LEFT! 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 patterns. Thes
    Scalping Robot Pro MT5
    MQL TOOLS SL
    5 (10)
    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, and short term volatility to identify high probability scalping opportunities in the gold market. Scalping Robot Pro is optimized for traders who prefer dynamic trading with quick entries an
    Ultimate Breakout System
    Profalgo Limited
    5 (39)
    IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1499$ very fast    +100 Strategies included and more coming! BONUS : At 999$ 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 - VERSION 5.0 - ONECHARTSETUP Welcome to the ULTIMATE BREAKOUT SYSTEM! I'm pleased to present the Ultimate Breakout System, a sophisticated and
    BB Return mt5
    Leonid Arkhipov
    4.55 (120)
    BB Return — an Expert Advisor for gold trading (XAUUSD). I previously used this trading idea in manual trading. The core of the strategy is a return of price to the Bollinger Bands range, but not blindly and not on every touch. For the gold market, bands alone are not enough, so the EA uses additional filters that eliminate weak and non-working market situations. Trades are opened only when the return logic is truly justified.   Trading principles — the strategy does not use grid trading, martin
    Byrdi
    William Brandon Autry
    5 (13)
    BYRDI. Multi-Asset Mesh Trading Intelligence. Most EAs trade one chart at a time. BYRDI runs a network. Each chart becomes a node. Each node can trade its own symbol, account, broker, AI model, risk profile, and position management mode. The mesh connects them into one coordinated system. Forex. Gold. Metals. Indices. Crypto. Oil. Synthetics where supported by the broker. One trader. Many markets. One coordinated mesh. A New Category Traditional EAs are isolated systems. One terminal. One symbo
    The Gold Reaper MT5
    Profalgo Limited
    4.46 (97)
    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 YouTube Reviews 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 from very conservative to extre
    Precise Pair Trading Pro
    Arkadii Zagorulko
    5 (3)
    Please note that I do not sell this EA through any third-party resellers, affiliates, or alternative distribution channels. A Smarter Way to Trade Gold and Euro This EA is built on advanced quantitative methods to identify temporary inefficiencies between two major markets. It seeks to benefit from moments when price behavior diverges from its usual dynamics. Monitoring -  Live signal The system adapts automatically to market conditions and manages entries and exits with precision, aiming to cap
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.83 (121)
    Quantum Bitcoin EA : There is no such thing as impossible, it's only a matter of figuring out how to do it! Step into the future of Bitcoin trading with Quantum Bitcoin EA , the latest masterpiece from one of the top MQL5 sellers. Designed for traders who demand performance, precision, and stability, Quantum Bitcoin redefines what's possible in the volatile world of cryptocurrency. IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup i
    Wave Rider EA MT5
    Adam Hrncir
    5 (28)
    Scalper speed with sniper entries. Built for Gold. Summer sale  499 USD  only |   regular   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 en
    Nexorion Initium Novum EA
    Valentina Zhuchkova
    5 (8)
    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/es/signals/2372338 Technical System Specificatio
    ArtQuant Gold
    Miguel Angel Vico Alba
    4.43 (21)
    ArtQuant Gold is a professional Expert Advisor for MetaTrader 5 , developed exclusively for automated trading on Gold / XAUUSD and compatible with common broker-specific gold symbol variants. The EA is built around a structured multi-module grid-based trading engine , designed to manage exposure, cycle control, execution filters and virtual trade protection through a simplified and professional user interface. ArtQuant Gold is intended for traders who want a dedicated XAUUSD automated system wit
    Zerqon EA
    Vladimir Lekhovitser
    5 (1)
    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
    Gold House MT5
    Chen Jia Qi
    4.59 (49)
    Gold House — Gold Swing Breakout Trading  Price increase coming soon. Only a few licenses remain at the current price (3/100) . Next target price: $999. Live signals: Profit Priority mode : https://www.mql5.com/en/signals/2359124 BE priority mode :  https://www.mql5.com/en/signals/2372604 Important: After purchasing, please remember to send us a private message to receive the recommended parameters, instructions, precautions, and usage tips. (MQL5 messaging):   https://www.mql5.com/en/users/wa
    Osloma Gold
    Uttam Kumar Nandeibam
    4.56 (9)
    Get it TODAY for just $299 !  Many members have asked for a discount, and since individual discounts are not possible, I am opening a FLAT 40% OFF SALE for 48 hours only . Once this period ends, the price will return to $499 . Live Signal Link : https://www.mql5.com/en/signals/2372291     Current Price : $499 for NEXT 10 buyers only  * Price will be updated to $599 after this.  Osloma Gold (OG) is a dynamic market-structure based Expert Advisor designed specifically for Gold (XAUUSD) . It combi
    Gold Safe EA
    Anton Zverev
    4.33 (9)
    Live Signal:   https://www.mql5.com/en/signals/2360479 Timeframe:   M1 Currency pair:   XAUUSD Gold Safe EA Manual: https://www.mql5.com/ru/blogs/post/770312 Varko Technologies   is not a business, it is a philosophy of freedom. I am interested in long-term cooperation and building a reputation. My goal is to continuously improve and optimize the product to meet changing market conditions. Gold Safe EA   - the algorithm uses several strategies simultaneously, the main philosophy is an emphasi
    Lizard
    Marco Scherer
    4.56 (9)
    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 significant structural levels on the chart and places pending stop orders at precisely calculated entry points. No martingale. No grid. No averaging. 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 per
    Neurox AI
    Stanislav Tomilov
    5 (1)
    Neurox AI — The Future of Gold Trading Powered by Multi-Module Neural Intelligence After almost two years of active AI hype, one thing has become clear: simple generative models such as ChatGPT and similar systems do not work as real trading engines. They can explain, write text, generate ideas, or assist with analysis, but they are still mainly assistants — not professional trading algorithms by themselves. In 2026, the most promising results in algorithmic trading came not from one large unive
    AnE
    Thi Ngoc Tram Le
    4.8 (5)
    ANE — Gold Grid Expert Advisor ANE is a fully automated Expert Advisor designed for trading XAUUSD (Gold) on the M15 timeframe using a grid-based averaging strategy . Important: Test the EA on a demo account first to understand the behavior of the averaging system before running it on a live account. Live Signal ANE Official Channel Trading Strategy ANE manages positions as a group. It opens additional trades to optimize the average entry price when conditions allow, then closes the entire bask
    Impulse MT5
    Simon Reeves
    5 (1)
    Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A dual-strategy gold EA that waits for the perfect shot. Introductory Price of 199 USD to run for 1 week, until 7th June 2026. Regular price: 299 USD Impulse is a momentum grid EA designed exclusively for XAUUSD, combining two independently developed entry strategies into a single unified grid framework. 2 momentum-based scalper strategies | Dual-timeframe confirmation | Bar-close execution | Smart virtual take profit E
    Akali
    Yahia Mohamed Hassan Mohamed
    3.17 (84)
    LIVE SIGNAL: Click here to view live performance IMPORTANT: READ THE GUIDE FIRST It is critical that you read the setup guide before using this EA to understand the broker requirements, strategy modes and the smart approach. Click here to read the Official Akali EA Guide Overview Akali EA is a high-precision scalping Expert Advisor designed specifically for Gold (XAUUSD). It utilizes an extremely tight trailing stop algorithm to secure profits instantly during periods of high volatility. Thi
    Sharkyra Gold
    Nico Demus Sitepu
    5 (3)
    Only 10  copies left at current  price!,  Next Price 9 99 USD.   T he newest and powerful  Sharkyra  Gold  MT5  of Expert Advisors. My specifically designed to run on the XAUUSD/GOLD pair. Sharkyra  Gold   EA  is a fully automated trading system designed for traders who love speed, accuracy, and consistency. Built with a smart  logic  engine, this EA takes advantage of micro market movements and executes trades with lightning-fast precision making it perfect for volatile market sessions.   Shark
    Gold Snap
    Chen Jia Qi
    4.56 (9)
    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 Only 3 copies remaining at the current price. The price will be increased 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 Welcome to join our MQL5 channel for product updates and trading insi
    Full Throttle DMX
    Stanislav Tomilov
    5 (11)
    Full Throttle DMX - Real strategy  Real results   Full Throttle DMX is a multi-currency trading expert advisor designed to operate with EURUSD, AUDUSD, NZDUSD, EURGBP, and AUDNZD currency pairs. The system is built on a classical trading approach, using well-known technical indicators and proven market logic. The EA contains 10 independent strategies, each designed to identify different market conditions and opportunities. Unlike many modern automated systems, Full Throttle DMX does not use ris
    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
    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
    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
    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
    265
    huangyi0324 2025.09.28 13:06 
     

    User didn't leave any comment to the rating

    worldofhunger
    1217
    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