Obsidian Alpha

Obsidian Alpha

Precision Trading System with Limit-Order Entries

Obsidian Alpha is an Expert Advisor built around confirmed trend signals, limit-order entries at predefined price levels, and a two-stage trailing mechanism.

1. Overview

Most Expert Advisors enter the market using instant market orders, accepting whatever price is available when a trading signal is triggered.

Obsidian Alpha takes a different approach.

The Expert Advisor:

  1. Identifies a confirmed trend signal.

  2. Does not enter the market immediately.

  3. Places a pending Buy Limit / Sell Limit order.

  4. Waits for the market to reach the predefined entry level.

  5. Once the order is executed, manages the resulting position using a separate trailing mechanism.

This means the entry is executed at a predefined, controlled price level, rather than at whatever price happens to be available when the signal is generated.

The system combines:

  • ADX trend-strength filtering;

  • ATR volatility analysis;

  • an asymmetric entry channel;

  • a limit-order execution model;

  • dedicated trailing for pending orders;

  • independent trailing for open positions;

  • position sizing and position-chain management;

  • overall exposure and risk controls.

Core principle: entry discipline is just as important as exit discipline.

2. Signal Formation Logic

2.1. Volatility Foundation

SignalATRLength measures current market volatility using ATR and provides the basis for constructing the entry channel.

2.2. Trend-Strength Filter

SignalADXThreshold defines the minimum trend strength required for a setup to be considered valid.

This allows flat and directionless market conditions to be filtered out at an early stage of signal formation.

2.3. Separate Entry and Exit Confirmation

SignaADXOpenConfirmation and SignaADXExitConfirmation are evaluated independently.

This allows the system to use separate trend-strength requirements for entering and maintaining a position.

Parameter Purpose
SignaADXOpenConfirmation Trend strength required for entry
SignaADXExitConfirmation Trend strength required to maintain the position

The system therefore does not rely on a single shared threshold for both functions.

2.4. Channel Construction

SignalUpperMultiplier and SignaLowerMultiplier asymmetrically scale the ATR channel around the current price.

This allows the system to:

  • configure the upper and lower boundaries independently;

  • account for differences in upward and downward price behavior;

  • avoid relying on a symmetrical channel.

2.5. Secondary Confirmation

SignalOverboughtLevel and SignalMeasure provide an additional layer of setup validation.

They help filter out situations that may appear valid according to the primary channel but fail the additional measurement criteria.

2.6. Adaptive Threshold

SignalThreshold controls the sensitivity of the overall signal block.

Instead of relying on a single rigid static threshold, it allows the signal conditions to be fine-tuned from bar to bar.

3. Limit-Order Entry Model

The Core Execution Architecture of Obsidian Alpha

Step 1. Signal Confirmation

Once the signal block confirms a valid setup, the Expert Advisor does not enter the market immediately.

Instead, it places a pending limit order:

  • Buy Limit — for long positions;

  • Sell Limit — for short positions.

The initial distance from the current market price is defined by:

LevelStart

This approach is designed to seek a more favorable entry price than immediate market execution.

Step 2. Pending-Order Trailing

While the limit order remains pending, the following mechanism can be enabled:

  • TrailPendingActive — activates pending-order trailing;

  • TrailPending — defines the trailing step.

As the market moves, the Expert Advisor can reposition the pending order in accordance with price movement, keeping the intended entry level relevant to current market conditions.

This helps prevent the original limit order from becoming obsolete and remaining far behind a market that has already moved away.

Step 3. Execution and Position Trailing

Once the pending limit order is filled, it becomes an active market position.

At this stage, the second, independent trailing mechanism is activated:

TrailingEngineActive

The trailing engine becomes active once floating profit reaches:

TrailEngagementDistance

The position is then managed using:

TrailStepPoints

Important

Pending-order trailing and open-position trailing represent two separate stages of trade management.

Stage Mechanism Key Parameters
Before execution Pending-order trailing TrailPendingActive, TrailPending
After execution Position trailing TrailingEngineActive, TrailEngagementDistance, TrailStepPoints

Step 4. Profit and Loss Boundaries

The resulting position is managed using:

  • ProfitCeilingPoints — working Take Profit;

  • LossFloorPoints — working Stop Loss.

This provides predefined boundaries for both potential profit and potential loss.

4. Position and Risk Management

4.1. Position Sizing

The Expert Advisor supports two approaches to position sizing.

Fixed Position Size

Uses:

BaseContractSize

Automatic Position Sizing

When:

AutoCapitalRegulationOn

is enabled, position size is calculated based on:

CapitalExposureRatio

This allows trading exposure to be adjusted relative to account balance.

4.2. Position-Chain Management

If price continues moving through the signal zone, the Expert Advisor can add additional positions.

The maximum chain depth is defined by:

PositionChainDepth

The size of each subsequent position can be scaled using:

AllocationScalingExponent

The deeper the position chain, the greater the potential total exposure. Risk should therefore be evaluated across the entire possible position sequence, not only by the initial position size.

4.3. Correction During Extended Position Chains

CorrectionStrategy

controls the correction mechanism applied as the position chain becomes longer.

Value:

0 — disabled.

When enabled, stop distances can be progressively tightened as the chain grows, allowing the system to automatically reduce risk during unusually extended sequences.

4.4. Directional Exposure Control

Long and short exposure can be enabled or disabled independently.

Parameter Direction
LongExposureEnabled Long positions
ShortExposureEnabled Short positions

This allows the Expert Advisor to operate in both directions or exclusively in one market direction.

5. Execution and Trading Environment

Obsidian Alpha includes dedicated execution parameters to accommodate different broker and trading environments.

Strategy Identification

StrategyInstanceID

Unique identifier for the strategy instance.

ExecutionTag

Order comment used to identify and classify trades.

Together, these parameters allow Obsidian Alpha to maintain clean separation when multiple strategy instances or trading systems operate within the same portfolio or account.

Execution Policy

FillExecutionPolicy

An MT5-specific parameter that allows the appropriate order filling policy to be selected according to broker requirements.

ECN Mode

InstitutionalExecutionMode

Enables an ECN-style execution mode for brokers or trading environments where this execution model is required.

6. Recommended Usage

Before Deployment

Before using the Expert Advisor on a live account, it is recommended to:

  • test it on the intended trading instrument;

  • verify its behavior on the target timeframe;

  • use real-tick testing whenever available;

  • verify the execution of limit orders;

  • separately evaluate the behavior of both trailing mechanisms.

Signal-Block Calibration

The ATR / ADX parameters and channel multipliers should be calibrated according to the volatility and characteristics of the specific instrument being traded.

A parameter set optimized for one instrument should not automatically be transferred to another without additional testing.

Limit-Entry Calibration

LevelStart and the pending-order trailing parameters should be treated as a unified system.

Together, they determine how patiently the strategy waits for a favorable entry opportunity.

For this reason, these parameters should ideally be calibrated together rather than independently.

Position-Chain Risk Assessment

When using multiple sequential entries, particular attention should be paid to:

  • PositionChainDepth;

  • AllocationScalingExponent;

  • base position size;

  • potential total exposure;

  • distance to protective levels.

Risk is not determined solely by the first position — it can increase substantially as the position chain expands.

Transition to Live Trading

A recommended deployment sequence is:

Backtesting → Demo Account → Behavioral Analysis → Parameter Adjustment → Live Trading

On a demo account, particular attention should be given to:

  • limit-order behavior;

  • pending-order repositioning;

  • trailing activation timing;

  • position-chain behavior;

  • actual total exposure.

7. Key Parameter Reference
Category Parameter Purpose
Signal SignalATRLength ATR period
Signal SignalADXThreshold Minimum trend strength
Signal SignaADXOpenConfirmation Trend-strength confirmation for entry
Signal SignaADXExitConfirmation Trend-strength confirmation for exit/position maintenance
Channel SignalUpperMultiplier Upper channel multiplier
Channel SignaLowerMultiplier Lower channel multiplier
Confirmation SignalOverboughtLevel Additional filtering level
Confirmation SignalMeasure Secondary signal measurement
Adaptive SignalThreshold Signal-block sensitivity
Entry LevelStart Initial limit-entry distance
Pending Trailing TrailPendingActive Enables pending-order trailing
Pending Trailing TrailPending Pending-order trailing step
Position Trailing TrailingEngineActive Enables position trailing
Position Trailing TrailEngagementDistance Profit threshold for trailing activation
Position Trailing TrailStepPoints Position trailing step
Exit ProfitCeilingPoints Take Profit
Exit LossFloorPoints Stop Loss
Position Sizing BaseContractSize Base fixed position size
Position Sizing AutoCapitalRegulationOn Enables automatic position sizing
Position Sizing CapitalExposureRatio Capital exposure ratio
Position Chain PositionChainDepth Maximum position-chain depth
Position Chain AllocationScalingExponent Position-size scaling factor
Risk CorrectionStrategy Risk correction during extended chains
Direction LongExposureEnabled Enables long exposure
Direction ShortExposureEnabled Enables short exposure
Identification StrategyInstanceID Strategy instance ID
Identification ExecutionTag Order identification/comment
Execution FillExecutionPolicy MT5 order filling policy
Execution InstitutionalExecutionMode ECN-style execution mode
8. Risk Disclaimer

⚠️ Important Risk Information

Trading financial markets involves a significant risk of capital loss.

Results obtained from historical data in a strategy tester do not guarantee comparable results in live trading.

Before deploying Obsidian Alpha on a live account, thoroughly test the Expert Advisor on a demo account and ensure that:

  • you fully understand the strategy logic;

  • the position-sizing methodology is consistent with your risk profile;

  • PositionChainDepth and AllocationScalingExponent do not create unacceptable total exposure;

  • limit orders are executed correctly under your broker's trading conditions;

  • Stop Loss and Take Profit parameters are consistent with your overall risk-management framework.

Only use a level of risk that you are prepared and financially able to accept.

9. Obsidian Alpha — Strategy Flow

ATR + ADX Signal

Setup Confirmation

Buy Limit / Sell Limit

Pending-Order Trailing

Limit Order Execution

Active Position

Position Trailing

Take Profit / Stop Loss / Strategy-Based Exit

Obsidian Alpha does not treat the entry price as a given. The system identifies a qualified setup, defines a controlled entry level, and waits for the market to come to that level.


Recommended products
Ratio X Swing Breakout
Mauricio Vellasquez
Structure. Confirmation. Control. Ratio X Swing Breakout is a fully automated Expert Advisor designed for XAUUSD on MetaTrader 5. It analyzes closed H1 market structure, identifies confirmed swing highs and swing lows, and prepares buffered stop orders beyond those levels. The order is positioned to require movement beyond the structure instead of reacting to a simple price touch. Developed by Ratio X AI Solutions . How the strategy works The EA reads closed H1 candles and identifies confirmed s
Bollinger Bounce Strategy: Smart Recovery Edition Overview Bollinger Bounce Strategy is an automated trading solution engineered around structural mean-reversion principles. By capturing short-term exhaustion at the extreme boundaries of the Bollinger Bands, this EA aims to execute precise counter-trend entries. Unlike traditional high-risk grid or martingale systems, this strategy prioritizes strict capital preservation by combining a high Risk-to-Reward Ratio (1:3) with a strictly capped 2-lay
Tinga Tinga EA
Vicent Samwel Kiboye
Product Description This Expert Advisor (EA) is a fully automated trading system designed to combine scalping and trend-following strategies in one powerful solution. It analyzes market conditions in real time and automatically opens and manages trades without any manual intervention. The EA is built with advanced risk management, making it suitable for both beginners and experienced traders. It works efficiently on low-spread brokers and can be used with any broker that supports MetaTrader.
Scalping Robot Pro MT5
MQL TOOLS SL
4.41 (153)
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
Oneway TrendPulse EA - Complete Description Overview The Oneway TrendPulse EA is an automated trading robot (Expert Advisor) for MetaTrader 5 that implements a BUY-only trend-following strategy . It combines two popular technical indicators—Exponential Moving Averages (EMA) and the Relative Strength Index (RSI)—to identify and capitalize on upward trending markets. Core Strategy Logic Entry Conditions (ALL must be true): Fast EMA > Slow EMA → Confirms bullish trend RSI > Threshold → Confirms mom
Quantum Pulse EA Pro
Sayed Sabtain Azhar Naqvi
Quantum Pulse EA Quantum Pulse EA is a fully automated algorithmic trading system designed for the MetaTrader 5 platform. The expert advisor is engineered to capture rapid market momentum shifts using a structural two-consecutive candle breakout strategy combined with an underlying institutional volatility matrix. Core Trading Framework The algorithm operates on a rule-based price-action engine, analyzing structural data across multiple timeframes to minimize exposure to market noise: Bullish M
SmartRisk Investment Gold Robot Upgrade is an advanced automated trading system designed exclusively for Gold (XAUUSD) trading . It is an upgraded version of the SmartRisk Investment Robot concept, enhanced with improved risk management, structured monthly trading cycles, and optional profit compounding. This robot is specifically optimized for gold market volatility and is designed to operate with a minimum account balance of $500 , making it suitable for traders who want a controlled and disci
LazarusGold
Tariq Nabeel Hamdi Alsharif
Lazarus EA – Automated Gold Trading System Lazarus EA is a fully automated Expert Advisor developed specifically for Gold (XAUUSD) on MetaTrader 5. The EA uses a proprietary trading algorithm developed through extensive testing and optimization. It analyzes market conditions automatically and searches for suitable BUY opportunities based on a combination of internal market filters and price-action conditions. Key Features Fully automated trading Designed specifically for XAUUSD Proprietary entry
Sell Below Moving Average V1 Overview Sell Below Moving Average V1 is an automated trading Expert Advisor designed for MetaTrader 5. The EA follows a simple but effective trend-following strategy based on the relationship between market price and a Moving Average indicator. The Expert Advisor automatically opens SELL positions when market conditions meet the predefined rules and manages trades using automatic Stop Loss, Take Profit, and dynamic profit-locking technology. This EA is designed for
" Silicon Ex ": Your Reliable Assistant in the World of Forex Silicon Ex is a modern trading bot, specially created for traders in the Forex market. This innovative tool serves as a reliable partner for those who strive for efficient and automated trading. Key Features of "Silicon Ex": Reliability and Stability: Created using advanced technologies that ensure stable and reliable operation in the market. Intelligent Risk Management: Built-in money management system (Money Management) allows you
Tensor Gold
Ignacio Agustin Mene Franco
Tensor Gold v1.00 Professional Expert Advisor for XAUUSD (Gold) Tensor Gold is an institutional scalper specifically designed to trade the XAUUSD pair on the M5 timeframe. It combines three powerful trend and breakout indicators to capture explosive gold price movements with high accuracy and advanced risk management. Trading Strategy The EA uses a confluence of three systems to generate high-probability signals: Donchian Channel (Breakout) Detects breakouts from upper and lower ranges to id
Blue Bird MT5
Ismail Babaoglu
BlueBird EA – Dynamic Adaptive Grid Hedge System BlueBird EA   represents a new era of grid-based automation — combining volatility awareness, adaptive trend tracking, and smart capital management. If you are seeking a   fully autonomous, dynamic grid system   capable of capturing both trends and corrections,   BlueBird EA   is your ultimate trading companion. Overview BlueBird EA is a next-generation adaptive grid trading system designed for dynamic markets such as GOLD (XAUUSD) . It intellige
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
LAUNCH PROMO: Only a very limited number of copies will be available at current price! Final Price: 999$ NEW (from 349$) --> GET 1 EA FOR FREE (for 2 trade account numbers). Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Welcome to the BITCOIN REAPER!   After the Tremendous success of the Gold Reaper, I decided it is time to apply the same winning principles to the Bitcoin Market, and boy, does it look promising!   I have been
Aurum Sheild EA
Sahib Ul Ahsan
Aurum Shield EA Structured Trading. Controlled Risk. Aurum Shield EA is an automated trading system for the MetaTrader 5 platform, designed to operate under clearly defined market conditions while maintaining disciplined risk control. The system focuses on controlled exposure and selective participation in directional price movements. Core Concept The EA evaluates market conditions using a combination of: Trend analysis Volatility assessment Price behavior filtering Trades are considered only w
Smart Candle
Wanchai Phonphromchot
Introduction This EA is designed to survive the one-year testing period with a low drawdown and a high Sharpe ratio. The calculation concepts are new, but they are easily understood. Here are the best results. On the test period of 1 year (Jan 2023 - Jan 2024), the profit at the end is about 900% of the initial deposit with a maximum drawdown of 22%, and the Sharpe ratio is greater than 3.74. (Results tested on version V1.4) Note that the 22% drawdown mentioned above is the result from the stra
Institutional Levels is an intelligent, fully automated Expert Advisor. This algo is arranged in such a way that the EA uses levels of importance combined with price action, without reliance on indicators. The strategy behind it is based on the teachings of a professional traders, and ex traders. It will find untested levels at which institutions are known to be interested in, in the number of candles you’ve set and will make trades based on these levels, re-test and trend. It will automaticall
Bot Classic
Andriy Sydoruk
Professional robot Bot Classic, which implements the classic two moving average trading strategy. When two moving averages cross each other, a signal to buy or sell is formed. The direction of the signal is set in the settings and depends on which of the moving averages is smaller and which is larger, and also on whether the inversion is enabled. This adviser works with any forex pair. For cyclic re-optimization, optimization is performed for one week on a minute chart, the predicted run time b
Fidelity MT5
Kyra Nickaline Watson-gordon
2 (4)
Description : Fidelity EA is an Expert Advisor for trading on all Forex pairs and all timeframe. EA is powered with specific trend detection algorithms. The algorithm is fully smart and automatic. So the use and setup of EA is very simple and there is no need to have deep knowledge about the market.   Growing the EA : The EA will be updated and supported always. New features will be added later for free. If you need a specific feature to be added to the EA, please write your idea on the commen
Conquest MT5
Kelvin Kioko Kaambi
Conquest MT5 |  Gold XAUUSD Expert Advisor | Institutional-Grade MT5 Algorithmic Trading Robot Conquest is a flagship Expert Advisor and the finest work I've produced to date. This flagship algorithmic trading system represents years of development. It is built for traders who want a disciplined, systematic approach to gold trading, with capital protection engineered into its core rather than bolted on as an afterthought. The internal mechanics are proprietary and will not be disclosed. What you
Our automated trading robot is built on the MT5 platform. This is a trend-following system for long-term growth. Key Features & Benefits: Tight Stop-Loss & Strict Capital Management:  The robot prioritizes protecting your capital by utilizing tight stop-loss orders and adhering to strict capital management rules. Only a small, pre-defined percentage of your account is risked on each trade, ensuring longevity and minimizing potential drawdown. Strategic Profit-Taking for Long-Term Growth: Forget
Gold speedster
Simon Aderinola Akinteye
Gold Speedster EA — Precision. Speed. Profitability. THE EA MYFXBOOK LINK NOW WORKING Up almost 3% in just few days. MyFxbook link :                https://www.myfxbook . com/members/CannyFX/gold-speedster/12075079 Kindly remember to clear the space just before com/ above when pasting the link in your browser. Unleash the power of intelligent automated trading with Gold Speedster , a next-generation Expert Advisor engineered exclusively for XAUUSD (Gold) . Built for traders who demand performa
Gold Storm Breaker EA MT5
Ifeanyi Joshua Odinma
Gold Storm Breaker EA MT5 Specifications Platform: MetaTrader 5 (MT5) Instrument: XAUUSD (Gold) Timeframes: 15M Minimum Deposit: $200 Strategy Overview Gold Storm Breaker EA MT5 is an automated trading system based on market structure breakouts from swing high and swing low levels. The system does not utilize technical indicators or fixed-time entry schedules. Trade and Risk Management Dynamic Levels: Automatically adjusts stop loss, take profit, and trailing stop levels based on price changes
The trading strategy is based on over 10 years of successful experience in trading based on the strength of a candle and percentage of the body in relation to the entire Candle (Strong Candle) and/or (depending on the configured parameters) on a moving average long-period triple trend (JMA) combined with the current chart's time moving average with constant bands and AWESOME oscillator or even Bollinger Bands, all of which can be combined as desired to allow a safer market entry. Combined with
XAUUSD Liquid AI – M1 Momentum Scalping Expert Advisor ORIGINAL PRICE $1500 TAKE THE OPPORTUNITY NOW WHILE OFFER LASTS XAUUSD Liquid AI is an automated trading system that analyses short-term price momentum using micro-trend analysis, volatility filters and adaptive trade management. The Expert Advisor combines momentum analysis, exponential moving averages, candle structure, tick volume and Average True Range (ATR) calculations to determine trade entries according to its configured rules. The
TamNguyen AOS EA — The Next-Generation Multi-Symbol Intelligence for EUR Pairs I am TamNguyen AOS EA — an automated trading system designed for traders who seek stability, discipline, and precision when trading EURUSD, EURCAD, and USDCAD. I am built upon a refined combination of the Andean Oscillator, Moving Averages, and an advanced probability-based market filter, allowing me to adapt to every market shift, big or small. I do not chase noise. I do not trade randomly. I wait — I analyze — and
Zenith Leo Standard Zenith Leo Standard is an Expert Advisor designed for MetaTrader 4/5 and XAUUSD trading conditions. The product includes five predefined strategy configurations. Each configuration uses a different combination of entry logic, market filter, and risk management parameters. The objective of this product is to provide a structured execution framework for Gold trading. Users can select the configuration that best matches their testing results, risk preference, and trading environ
FREE
NightVision MT5
Alexander Kalinkin
4.44 (9)
NightVision EA MT5  - is an automated Expert Advisor that uses night scalping trading during the closing of the American trading session. The EA uses a number of unique author's developments that have been successfully tested on real trading accounts. The EA can be used on most of the available trading instruments and is characterized by a small number of settings and easy installation. Live signal for NightVision EA:    https://www.mql5.com/en/signals/author/dvrk78 Ask me for the recommended FX
Exp5 The xCustomEA for MT5
Vladislav Andruschenko
4.27 (11)
The xCustomEA for MetaTrader 5 — Universal Trading Expert Advisor for Custom Indicators Turn almost any custom indicator into a fully automated trading workflow. The xCustomEA for MetaTrader 5 is a universal Expert Advisor designed to read signals from your custom indicators and execute trades based on the logic you define. You only need to specify the indicator name, signal buffers, and core parameters. The EA then uses this data to automate execution, trade management, and signal handling. It
GoldEdge Matrix — Premium Prop-Firm Edition combining USD, CAD,   JPY and CHF currency complexes , powered by the GE ATR Price Border system, dual-layer hedging, ATR volatility control and per-symbol cut loss protection. GoldEdge Matrix is the complete all-in-one MT5 Expert Advisor built for traders who want maximum currency coverage with minimal setup. It combines the logic of GoldEdge USD, GoldEdge CAD, GoldEdge JPY and GoldEdge CHF into one premium EA, with pre-configured presets and full op
Hedge Fund Bot v5.65 — Smart Scalper Pro Overview Hedge Fund Bot is a fully automated expert advisor for MetaTrader 5. It is designed for traders who prefer a structured, rule-based approach to the markets. The system does not make decisions based on a single indicator. Instead, it evaluates six independent technical conditions simultaneously and combines them into a unified signal score before any trade is opened. A position is only entered when the score meets a minimum threshold defined b
Buyers of this product also purchase
Ultimate Breakout System
Profalgo Limited
5 (48)
IMPORTANT : This package will only be sold at current price for a very limited number of copies.    Price will go to 1999$ soon!   + 300 Strategies included and more coming! BONUS : 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 proprietary Expert Advisor (EA)
Pulse Pro MT5
Mian Rameez Ali
Two lines, always circling — 21 and 49. Most of the time they say nothing. Then they cross, and the system stops waiting. It closes what it was holding, opens what the cross demands, and sets its stop and target without asking twice. Risk is sized off the account itself, not fixed guesses — one bad calculation and it simply declines to trade at all. No indecision, no averaging in. Every new bar gets exactly one verdict. Built for any symbol, any timeframe. Fast against slow — the rest is ari
XG Gold Robot MT5
MQL TOOLS SL
4.34 (113)
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
Big Forex Players MT5
MQL TOOLS SL
4.76 (140)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
XIRO Robot MT5
MQL TOOLS SL
5 (35)
XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
YZH AlgoCore
Yusuf Ziya Hazeral
5 (2)
Limited Introductory Pricing YZH AlgoCore Monthly Membership First 20 Members: $100/month Next 20 Members: $300/month After the first 40 memberships: $600/month Note: These prices are part of a limited introductory promotion. Once all 40 promotional memberships are taken, all new monthly subscriptions will be available at $600/month . YZH AlgoCore — One Robot, Six Instruments Smart Algorithms. Disciplined Execution. There are thousands of "gold robots" on the market. How many of them can run
Mad Turtle
Gennady Sergienko
4.44 (125)
Symbol XAUUSD Timeframe (period) H1-M15 (any) Support for single-position trading YES Minimum deposit 500 USD  (or the equivalent in another currency) Compatible with any broker YES (supports 2 or 3-digit brokers. Any deposit currency. Any symbol name. Any GMT time.) Runs without pre-configuration YES If you are interested in the topic of machine learning, subscribe to the channel:  Subscribe! Key Facts about the Mad Turtle Project: Real Machine Learning This Expert Advisor does not conn
NextGen PRO
Muhammad Maaz
NextGen PRO Trend-Following Stop-Order Grid for XAUUSD Overview NextGen PRO is a fully automated Expert Advisor built around one simple idea: only trade in the direction the market is already moving, and only add orders when the previous trade cycle is finished. When the trend is up, it lays a ladder of Buy Stop orders above the market. When the trend is down, it lays a ladder of Sell Stop orders below the market. When price sits between the two moving averages, the market is treated as a range
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 - Precision Pending-Order Intelligence for Fast-Moving Markets. AiQ Gen 2 is built to identify developing market movement, prepare before the opportunity fully unfolds, and position with precision through intelligent pending orders. Instead of waiting until price has already reached the intended entry area, AiQ analyzes current market structure, direction, timing, volatility, and expansion potential before deciding where an order should be placed. It prepares before the move, but only
Syna
William Brandon Autry
5 (27)
Syna 7 - The AI Trading Operator That Stays With the Trade. Most trading systems make an entry decision and then fall back to fixed rules. Syna 7 remains involved. Syna is an autonomous AI trader, trading assistant, and position-management system designed to operate from analysis through exit. It can analyze current market conditions, evaluate news and volatility, remember the original trade reasoning, monitor open exposure, and continue reassessing the position as conditions change. Trading do
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
Dragon EA – Institutional Grade Breakout & Profit-Side Pyramiding System Developer Profile & Background With over 14 years of hands-on manual and algorithmic trading experience in the Forex market since 2010, Dragon EA is the culmination of my single most successful manual trading strategy—fully automated and refined into an institutional-grade expert advisor. Core Strategy & Key Highlights Dynamic Percentage-Based Engine: Operates entirely on proportional risk percentage allocation rather than
GoldFlow Pro1
Minh Tu Nguyen
5 (2)
An order-flow Expert Advisor built for one market only: XAUUSD. GoldFlow Pro reads the live GOLD market tick by tick — price movement, momentum, and liquidity behavior — and acts only when its conditions are met. Precise entries. Defined risk. Disciplined management on every position. MQL5 Signal — Live Monitoring https://www.mql5.com/en/signals/2384830 Introducing GoldFlow Pro GoldFlow Pro was developed around a single idea: instead of reacting to lagging indicators, read what the market is act
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
DeepMatrix FX Advanced Algorithmic Intelligence for XAUUSD DeepMatrix FX — Precision. Intelligence. Performance. Important! Please contact me after installation to obtain the best recommended settings file. Next Price is 2 99 $ DeepMatrix FX is a fully automated trading system developed specifically for XAUUSD on the Any timeframe. Built with advanced algorithmic logic, adaptive market analysis, and precision execution technology, DeepMatrix FX is designed to identify high-probability trading op
THE GOLD DIGGER - A SCALPER LIKE NO OTHER Precision. Purpose. Performance. NOT JUST AN EA – A PRECISION ENGINEERED XAUUSD SCALPING SYSTEM PythonX M1 Scalper isn’t just another Gold EA — it’s a specialized, high-performance scalping framework built exclusively for XAUUSD on the M1 timeframe . It has been engineered to deliver precise entries, smart risk control, and consistent returns over time — not just in ideal conditions, but across 9 major brokers over multi-year periods. With a starting bal
Undefeated Triangle MT5
Nauris Zukas
4.2 (10)
Description. This product was created as part of a project " PULSE OF MARKET ". EA "Undefeated Triangle" is an advanced system that exploits unique fluctuation between AUD, CAD, and NZD currencies. Historically results show that these pairs used in composition always return back first moved pair after fast movement in one direction. This observation can allow us to include a grid-martingale system where can get maximum points of these unique situations. EA "Undefeated Triangle" uses only 3 pai
Foli Pivots MT5
John Folly Akwetey
Expert advisor trades by pivot levels, support and resistance levels based on pivot levels. Also expert advisor takes into account volatility filter, uses standard Martingale and anti-Martingale systems, drawdown protection, standard trailing stop, trading time and trading Trade Order   – direction of trading (only buy, only sell or buy and sell) Use Volatility Filter   – enabling/disabling of volatility filter using Volatility Filter   – value of volatility filter Count Of Days For Volatility F
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
Gold Catalyst EA MT5
Malek Ammar Mohammad Alahmer
Gold Catalyst Evolution V6.0 - MQL5 Market Description Gold Catalyst Evolution V6.0 Automated Dual-Engine Gold Trading System for MetaTrader 5 1. Product Overview Gold Catalyst Evolution V6.0 is a fully automated Expert Advisor developed exclusively for XAUUSD and other broker symbols containing XAU or GOLD. Version 6.0 combines two independent trading engines inside one Expert Advisor. Each engine evaluates market conditions separately and uses its own fixed lot size, magic number, position own
LumaForge Scalper
Nathan Roche Leonardo Meyers
LumaForge Beast Mode MT5 Automated SMC Gold Trading for MetaTrader 5 LumaForge Beast Mode is a fully automated MT5 Expert Advisor built primarily for Gold and designed for selective day trading and scalping. Rather than continuously entering the market, the EA waits for its required conditions and can remain inactive when no valid opportunity is detected. Beast Mode combines Smart Money Concepts (SMC) with multi-timeframe analysis across M5, M15 and H1. Its trading activity is focused around the
EA Miracolo
Amazing Traders
Real monitoring   : EA Miracolo  1 Real monitoring     : EA Miracolo   2 Recommended  pair   :      XAUUSD / BTCUSD ( Timeframe M15 / M30) IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. For any other information, please contact us by private message or in   the mql5 group. Imagine an experienced trader monitoring the market daily, waiting for prices to break through key levels, and immediately opening a position. Th
X Gold Nexus — AI-Powered Next-Generation Gold Trading Execution System X Gold Nexus is an advanced AI-powered quantitative trading execution system specifically engineered for the gold market (XAUUSD). By integrating cutting-edge artificial intelligence technologies, adaptive market analysis, dynamic risk management, and intelligent order execution algorithms, the system is designed to provide stable and disciplined trading performance across varying market conditions. During the special offer
Amazing Brain MT5
Amazing Traders
5 (1)
Real monitoring : EA Amazing Brain MT5   Real monitoring : EA Amazing Brain & EA Miracolo Recommended  pair :      XAUUSD / Timeframe M30/ M15 / M12/ M10/ M6 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. For any other information, please contact us by private message or in   the mql5 group. Breakout based strategy, generates market entry signals when the price crosses a border of a certain price range. To create th
Quant Gold HFT Expert Advisor for XAUUSD on M15 timeframe. Main Features: ATR-based trailing stop and breakeven Daily Pivot levels filter Entry cooldown system Blocked hours during high volatility periods No martingale, no grid Backtest Results (Pepperstone, real tick data): 2 Years: Profit Factor 1.22, Max Drawdown 9.4% 1 Year: Profit Factor 1.27, Max Drawdown 9.2% 4 Months: Profit Factor 1.36 $500 account run on 0.01 lot The EA was tested on different time periods with stable results. Importa
Saiko Scalper v5
Samir Saleh Mohammed Hassan
SAIKO Scalper is an advanced algorithmic trading robot designed to detect and exploit real market momentum using tick-level impulse analysis. Instead of relying only on traditional indicators, the robot monitors consecutive price movements in real time and enters trades when a strong directional impulse is detected. This approach allows SAIKO Scalper to capture fast market opportunities while avoiding many false signals caused by normal price fluctuations. The robot includes multiple layers of
XAUUSD TEMPORAL INTERFERENCE AITemporal Interference Scanner - The absolute pinnacle of Multi-Timeframe convergence. XAUUSD Temporal Interference AI - is the absolute pinnacle of market timing, built upon the groundbreaking "Cross-Temporal Interference" theory. By scanning the fractal noise across 9 different timeframes, the AI detects precise moments where market waves collide, cancel out, or amplify each other. When these temporal waves perfectly align in a localized singularity, the AI execu
Scalp Master Expert Advisor is a fully automated trading system designed for scalping strategies in trending market conditions. It is built to identify short-term trading opportunities in liquid markets while maintaining a strong focus on trade quality and risk control. The EA is suitable for traders who prefer a systematic and rule-based approach without manual intervention. Recommended Pairs: XAUUSD & BTCUSD It performs best on instruments with tight spreads and strong liquidity, including: XA
More from author
Trend Anthropoid is a trend indicator that allows you to effectively determine the direction of the current trend, as well as identify potential reversal points. The indicator makes it possible to classify the direction of price movement by determining its strength. Solving this problem helps to enter the market on time and get the desired result. Let's start with the benefits. Allows you to determine the current trend. You can quickly understand which trend is currently developing in the mark
The Trend Logic indicator provides an opportunity to classify the direction of price movement by determining its strength. Solving this problem helps to enter the market on time and make a good profit. It is extremely important for any trader to correctly determine the direction and strength of the trend movement. Unfortunately, there is no single correct solution to this problem. Many traders trade at different time frames. For this reason, the received signals are perceived subjectively. The
The Trend Goblin indicator identifies the mainstream trend. They help to analyze the market on a selected time frame. Easy to set up and works on all pairs and all time frames. Trend indicators provide an opportunity to classify the direction of price movement by determining its strength. Solving this problem helps investors enter the market on time and get good returns. It is extremely important for any trader to correctly determine the direction and strength of the trend movement. Unfortunat
Adapter
Yvan Musatov
Индикатор Adapter определяет господствующую тенденцию, помогает анализировать рынок на выбранном временном интервале. Прост в настройке и работает на всех парах и всех временных интервалах. Индикаторы тренда дают возможность классифицировать направление ценового движения, определив его силу. Решение этой проблемы помогает инвесторам вовремя войти в рынок и получить хорошую отдачу. Для любого трейдера крайне важно правильно определить направление и силу трендового движения. К сожалению, единств
The Analytical Trend indicator can track sustained price movement in a specific direction. In this case, the movement itself can be downward, upward or sideways, when the market movement does not have a pronounced direction. The indicator works on the basis of two moving averages and an oscillator. Using the signal search algorithm, the indicator generates signals in the form of arrows. Flexible settings allow you to receive more accurate signals for opening positions. You can quickly understan
The Supernatural channel is determined using a special algorithm, marker points are used to determine the movement of the channel. The Supernatural channel consists of two lines, red and blue, that make up the channel. Simple, visual and efficient use. Can be used for intra-channel trading. The indicator does not redraw and does not lag. Works on all currency pairs and on all timeframes.
Channel Oscillations is a non-redrawing channel indicator based on moving averages. The key difference between the Channel Oscillations indicator and other channel indicators is that Channel Oscillations does not take into account simple moving averages, but double-smoothed ones, which, on the one hand, makes it possible to more clearly determine the market movement, and on the other hand, makes the indicator less sensitive.
Diogenes
Yvan Musatov
Introducing the Diogenes trend indicator! The indicator analyzes market dynamics for pivot points. Shows favorable moments for entering the market in stripes. The principle of operation of the indicator is to automatically determine the current state of the market when placed on a chart. Ready-made trading system. Can be used as a channel indicator or level indicator! This indicator allows you to analyze historical data and, based on them, display instructions for the trader for further action
The Trend Champion indicator works on all timeframes and currency pairs. The indicator should be used as an auxiliary tool for technical analysis, it helps to determine the direction of the trend: either upward or downward price movement for a particular currency pair. Can be used along with oscillators as filters. Trend Champion is a trend indicator. Arrows indicate favorable moments and directions for entering the market. The indicator can be used both for pipsing on small periods and for lo
The Qubit Trend indicator works using the cyclical-wave dependence function. Thus, all entry points will be optimal points at which movement changes. Entry points should be used as potential market reversal points. The default indicator settings are quite effective most of the time. You can customize them based on your needs. But do not forget that the approach must be complex, the indicator signals require additional information to enter the market.
The regression channel is one of the most popular technical analysis tools among traders. First, the indicator draws a trend line between two points, then on its basis it builds a channel of two parallel lines, which will be at the same distance from the regression line. The term linear regression belongs to the field of statistics. The center line of the channel is the trend line. To calculate it, the least squares method is used. The line above the center line acts as resistance for the pric
Control Shot - Unique indicator for identifying trends. The new system adapts to the market, eliminates additional conditions and copes with its task. A revolutionary new way to identify the start of a trend early. The trend indicator, shows signals, can be used with an optimal risk ratio. It uses reliable algorithms in its calculations. Shows favorable moments for entering the market with arrows, that is, using the indicator is quite simple. Tired of adjusting the indicator settings, wasting
Planned transition is a trend indicator that will help a trader to determine the direction of trade. The indicator has a complex algorithm of work. But for the user, only two lines remain, the red line indicates a sell trend, and the blue line indicates a buy trend. Thus, it is quite simple to interpret the indicator signals. The indicator works on different timeframes; to work with lower timeframes, it is recommended to decrease the indicator period for more frequent entries. To work on higher
Modify Trend - Unique indicator for identifying trends. The indicator has a complex algorithm of work. But for the user there are only two colors of arrows, red indicates a sell trend, blue indicates a buy trend. Thus, it is quite easy to interpret the indicator signals. The indicator works on different timeframes; to work with lower timeframes, it is recommended to decrease the indicator period for more frequent entries. To work on higher timeframes, on the contrary, increase. The new system ad
Just download the Quarter Strike indicator and embrace your dream. Trading within the volatility range has always attracted traders, because most often it is simple instruments that turn out to be the most profitable. The Quarter Strike indicator is a variant of constructing a price channel that gives signals of sufficiently high accuracy on any instruments and time periods. Bias or other additional parameters are not applied, that is, the indicator evaluates only the real dynamics. By default
Trinitys
Yvan Musatov
The Trinity indicator will tell you whether you have configured the indicator correctly, while you can specify the history interval in the bars that interests you. Look at the numbers on the chart near the arrows! These are pips of profit from a series of entries on the indicator. Profit pips are calculated at the specified interval. The signal can be read without any problems by any bot. Trading within the volatility range has always attracted traders, because most often it is simple instrumen
Spv
Yvan Musatov
The SPV indicator clearly reflects the cyclical nature of the market. Just one key setting! If it is equal to one, then a fast cycle is displayed, but if, for example, the parameter is 12, then the indicator looks for a cycle in the last 12 bars. You can see the ups and downs of the indicator alternate and have such dependence on the market, which can be used to draw conclusions to predict price behavior. Also, indicators can be combined with each other. Also, the indicator can indicate the qual
SPV Cross
Yvan Musatov
The SPV Cross indicator is based on the SPV  indicator. Works as two indicators together on the same chart. With different settings, you can react to the intersection of lines. Clearly reflects the cyclical nature of the market. Just two key settings! It works on the basis of the principle - one is fast and the other is slow. You can see the ups and downs of the indicator alternate and have such a relationship with the market, which can be used to draw conclusions to predict price behavior. The
SPV Corr
Yvan Musatov
The SPV Corr indicator displays the average percentage correlation between the bar's body and its shadows. A very effective system for building various filters and market entry confirmations. It fixes cyclicality and can be used in trading in different ways. You can see the ups and downs of the indicator alternate and have such a relationship with the market, which can be used to draw conclusions to predict price behavior. Also, indicators can be combined with each other. The value of the indica
SPV Body
Yvan Musatov
The SPV Body indicator displays the average analysis of the intersection of adjacent bars. The indicator can easily detect unusual market movements which can be used as a filter. For clarity, poke the graphs to the very beginning of the history when the bars were incomplete, and the indicator will easily display this anamaly. A very effective system for building various filters and confirmations of market entry, to exclude anomalies from trading. It also fixes cyclicity, it turns out that the in
The SPV Volatility indicator is one of the most effective filters. Volatility filter. Shows three volatility options. The so-called limit, real, and the last most effective filter for the filter is the percentage filter. Percentage display of folatility shows the ratio of limit to real volatility. And thus, if we trade in the middle of the channel, then it is necessary to set a condition that the percentage is less than a certain indicator value. If we trade on the channel breakout - following t
Mastodon
Yvan Musatov
Mastodon - displays potential market entry points. According to the wave theory, Mastodon displays the course of a large wave, while the oscillator can specify the entry point, that is, catch the price movement inside it, i.e. small “subwaves”. By correctly understanding the wave nature of price movements and using the Mastodon indicator in conjunction with an oscillator, you can create your own trading system, for example, entering the market after a large wave has formed and then exiting whe
The advantage of working with the Gladiator signal indicator is that the trader does not need to conduct technical analysis of the chart on his own. The tool generates ready-made signals in the form of directional arrows. The indicator is considered effective as it does not redraw its signals. This tool is an arrow (signal) one and works without redrawing. Its signals are based on a robust algorithm. Gladiator does not change its readings. Daily and session ranges can be useful for confirming
Signal Casablanca - Arrow technical indicator in the Forex market without redrawing. Able to give hints with minimal errors. It combines several filters, displaying market entry points with arrows on the chart. You can note the accuracy and clarity of the signals of this pointer indicator. Having seen a signal to buy, a trader opens an order without expecting that after a while the initial hint may change to the completely opposite one or simply disappear, having lost its relevance. The signal w
Fargo
Yvan Musatov
Fargo does not change its readings, it is a technical indicator in the Forex market without redrawing. It combines several filters to display market entry arrows on the chart. You can note the accuracy and clarity of the signals of this pointer indicator. When a suitable moment for buying appears, the indicator generates a signal exactly at the moment of its appearance and not below or above the current candle. The arrow will be exactly at the price where the signal appears and will not change
Wonderful
Yvan Musatov
Trend Expert. It works by entering the market with only one buy order and another sell order. It does not form a series of rendering, and therefore you can work with them starting from $ 100! Which is great for beginners. To enter, it uses a system of indicators and a system of dynamic correction of stops depending on volatility, which can be disabled in the settings, but in this case, you will significantly reduce the efficiency of the bot. The bot implements a money management system, which c
Catch
Yvan Musatov
Catch is a reversal indicator and is part of a special category of instruments. it not only analyzes the price movement, but also indicates the points of possible reversals. This facilitates fast and optimal opening of buy or sell orders (depending on the current situation). In this case, the historical data of the analyzed asset must be taken into account. It is the correct execution of such actions that largely helps traders to make the right decision in time and get a profit.
Matios
Yvan Musatov
The Matios indicator visually unloads the price chart and saves analysis time: no signal - no deal, if an opposite signal appears, then the current deal should be closed. This is an arrow indicator for determining the trend. According to the wave theory, Matios displays the course of the wave, while the oscillator can specify the entry point, that is, catch the price movement inside it, i.e. small “subwaves”. By correctly understanding the wave nature of price movements and using the Matios in
Sting
Yvan Musatov
Sting implements indicator technical analysis and allows you to determine the state of the market in the current period and make a decision on a deal based on certain signals. Sting is the result of mathematical calculations based on data on prices and trading volumes. Sting creates signals to perform operations on strong trend movements; it is more expedient to use it for trading when the trend is weakening or sideways. It is used as an additional one, regardless of the phase of the trend mov
Labyrinth
Yvan Musatov
Labyrinth - Trend Expert Advisor. It works by entering the market in lots of buy and sell. It does not form a series of rendering, and therefore you can work with them starting from $ 1000! Which is great for beginners. The bot implements a money management system, which consists in a competent calculation of the risk depending on the deposit. For the correct calculation of the volume, you need to specify the base deposit for calculating the risk. By default, we are talking about a $ 1000 depos
Filter:
No reviews
Reply to review