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.


推荐产品
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.
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 – 黄金自动交易系统 Lazarus EA 是一款专为 MetaTrader 5 上的 黄金(XAUUSD) 交易开发的全自动智能交易系统(EA)。 该 EA 使用经过大量测试和优化而开发的专有交易算法。它能够自动分析市场状况,并结合内部市场过滤条件和价格行为条件寻找合适的 BUY 买入机会。 主要功能 全自动交易 专为 XAUUSD 设计 专有入场算法 自动过滤市场条件 只有在所有内部条件得到确认后才进行交易 智能持仓和恢复管理 自动手数管理 篮子式交易管理 自动利润保护 内置移动保护机制 完成交易周期后自动重置 图表实时显示交易统计信息 避免不必要的重复入场 正常运行时无需人工干预 智能恢复管理 当市场暂时向不利于入场方向移动时,Lazarus EA 使用自身的受控恢复系统管理持仓。 EA 不会持续无限增加更大的仓位,而是按照预先设定且有限的内部恢复流程运行。 恢复模式启动后,EA 会将所有相关持仓作为一个组合进行管理,并自动判断何时可以完成当前交易周期。 具体的恢复算法、入场计算、过滤条件、仓位大小逻辑以及内部参数均属于专有技术,不予公开。 简单易用 EA
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 mt5
Nadiya Mirosh
" 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)
推出促销: 按当前价格仅提供数量极少的副本! 最终价格:999美元 新品(349 美元起)-->免费获得 1 个(适用于 2 个交易账户号码)。 终极组合优惠   ->   点击此处 加入公共群组: 点击此处   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO 欢迎来到比特币收割者!   在黄金收割者取得巨大成功之后,我决定是时候将同样的成功原则应用到比特币市场了,而且,它看起来很有希望!   我开发交易系统已有二十多年了,到目前为止,我的专长是突破策略。 这种简单有效的策略一直以来都位居最佳交易策略之列,并且几乎适用于任何市场。     对于像比特币这样波动剧烈的市场来说,它更是锦上添花!   那么该策略如何发挥作用? 突破策略将交易突破重要支撑位和阻力位的走势。     该策略将为每笔交易设置止损、止盈和各种追踪止损功能。 对于比特币收割者,我在 H1 时间范围内实现了这一点,这使得它交易频繁,但仍然非常有效。   此外,我还确保了 EA 能够自动适应比特币未来的价格变化。     所以,如果比特币交易价格在 10 万左右、1 万左右或
Scalping Robot Pro MT5
MQL TOOLS SL
4.34 (162)
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
NextGenFx
Muhammad Maaz
NextGenFx Scalper is an automated Expert Advisor for MetaTrader 5 designed primarily for trading XAUUSD (Gold). The EA uses a combination of trend analysis, momentum conditions, support and resistance levels, candle-based price analysis and configurable trading sessions. These conditions are evaluated together before a trade is opened. The EA also includes position management and account-level risk controls that can be configured by the user. TRADING STRATEGY The EA uses multiple technical c
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 | 黄金 XAUUSD 旗舰级 EA 智能交易系统 Conquest 是我的旗舰级 MT5 Expert Advisor,集多年研发、实盘调优与策略演化之大成。它专为 XAUUSD(黄金)打造,以极其严谨和系统化的方式参与黄金市场,并将“资金安全与风控”置于最高优先级。 Conquest 摒弃主观交易,依托全自动的独家策略运行,将智能风控、自适应执行与机构级保护机制深深植入系统的核心体系中。 核心特性 专为 XAUUSD 打造的全自动算法交易 双核交易引擎: EA Mode 1 与 EA Mode 2 多重专业级风控模式 内置重磅新闻避险过滤器(NFP、CPI 及 FOMC) 实时滑点与 broker 执行延迟(Latency)监测 包含市场启发式分析(Heuristic Analysis)的全新可视化控制面板 同时针对实盘交易与 MT5 Strategy Tester(策略测试器)深度优化 EA 模式演进 (v2.840 全新升级) v2.840 大版本更新引入了 EA Mode 2 ,这是 Conquest 诞生以来最重磅的执行架构进化。Conquest
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
Vigilante Alfa Candle
Adilco Bortoncello
Alpha Vigilante Candle (H1 Master Edition) Alpha Vigilante Candle 是一款高性能投资机器人,专为在 MetaTrader 5 平台上进行全自动化交易而开发。由作家兼策略专家 Adilço Bortoncello 创建,该专家顾问(EA)经过精心校准,旨在金融市场上实现稳定、高准确率和严格的风险控制。 运行原理 该机器人持续监控1小时图表 (H1)上的市场动态。它通过完美结合三大基本工具,顺应宏观趋势和机构资金流向进行交易: 指数移动平均线 (EMA): 充当核心方向过滤器,确保机器人严格顺应主趋势进行交易(仅在均线上方买入,均线下方卖出)。 布林带 (Bollinger Bands): 识别资产波动率的扩张区间和合法的突破点。 RSI(相对强弱指数): 在授权开仓之前,验证动能和行情的真实强度。 当所有条件吻合时,机器人将执行带有 止盈 (Take Profit) 、结构化 止损 (Stop Loss) 以及资本日间保护锁的订单,在无需人工干预的情况下自主运行。 优势与买家体验 H1 上的高准确率: 基于严格测试优化,旨在
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
Supertrend G5 Pro
Van Minh Nguyen
5 (2)
Supertrend G5 Pro - Professional Trading System for XAUUSD Supertrend G5 Pro is developed based on the core trading concept and foundation of Supertrend G5 EA , with expanded functionality and configuration options. The Pro version integrates two distinct trading strategies , along with multiple technical filters and customizable risk management features. Users can choose configurations according to their preferred strategy and market conditions. Strategy 1 - Supertrend Strategy uses the EA’s or
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
Cortex Aurex
Vladimir Mametov
4 (12)
这是一个专为黄金(XAUUSD)交易而开发的全自动 MetaTrader 5 智能交易系统(Expert Advisor)。其交易逻辑专门针对黄金市场的特点而设计,包括快速的价格波动、剧烈的市场反转以及高波动性。该 EA 能够在对执行速度、交易纪律和精确仓位管理要求极高的市场环境中实现全自动交易。 该系统专注于严格的交易管理、快速响应市场变化以及受控的出场策略。其核心理念非常简单:通过移动止损(Trailing Stop)让盈利交易尽可能延续,同时使用固定止损(Stop Loss)保护每一笔交易,并在 M1 时间周期出现反向信号时提前平掉亏损仓位,从而进一步控制风险。 https://www.mql5.com/en/signals/2390000 核心理念 本智能交易系统专为希望使用自动化黄金(XAUUSD)交易工具,并需要清晰、实用仓位管理机制的交易者设计。 EA 采用趋势跟随策略,在主趋势方向上的回调中寻找入场机会,从而在已有趋势中获得更有利的建仓价格。 每笔交易都会受到固定止损(Stop Loss)的保护,以预先限定每笔交易的最大风险。盈利仓位可通过移动止损(动态止损)进行管理,
TamNguyen AOS EA
Duc Tam Nguyen
TamNguyen AOS EA — 新一代多品种智能化欧元 货币对交易系统 我是 TamNguyen AOS EA —— 一款 为追求稳定、纪律与高精度的交易者而打造的自动化交易系统,专注于 EURUSD 、 EURCAD 和 USDCAD 。 我基于 Andean Oscillator 、移 动平均线,以及高级概率市场过滤器的深度融合而构建,能够适应各种大小级别的行情波动。 我不会追逐市 场噪音,也不会随意下单。 我等待 —— 分析 —— 并只在概率高度 倾向于你时才出击。 这正是为什么许多交易者认为我是最稳定、最有效的欧元货币对 EA 之一。   为什么我被认为是 EURUSD 、 EURCAD 、 USDCAD 的智能交易系 统? 强大且精 细调校的 AOS + MA 策略 这两个核心组件构成了我的决策引擎: AOS 用于确 认动量, MA 用于确 认趋势结构 —— 两者的 协同产生高质量交易信号。 多品种智能分析 —— 三大欧元关 联货币对,一个统一的大脑 我同 时监控 EURUSD 、 EURCAD 和 USDCAD 。 每个 货币对都有自己的特性,但我了解它们
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 — 适用于自定义指标的通用交易 Expert Advisor 将几乎任何自定义指标快速转化为自动化交易系统。 The xCustomEA for MetaTrader 5 是一款通用型 Expert Advisor,能够读取您的自定义指标信号,并按照您设定的逻辑自动执行交易。 您只需要填写指标名称、信号缓冲区和关键参数,EA 就会基于这些数据完成自动执行。对于希望把自定义指标快速接入实盘交易、又不想为每一个新想法都重新编写一个机器人 的交易者和开发者来说,这是一个高效、灵活且可重复使用的交易引擎。 The xCustomEA 并不只是一个“信号转订单”的简单工具。它把自定义指标接入能力与 The X 产品线成熟的交易架构结合在一起,为您提供完整的进场、出场、过滤、保护和持仓管理环境。 The xCustomEA for MetaTrader 4 | 完整使用说明 + DEMO + PDF | 设置与输入参数说明 | PIPFINITE TREND PRO 策略示例 | The X — Universal EA 产品定位 这款
该产品的买家也购买
Ultimate Breakout System
Profalgo Limited
5 (51)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 300 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
XG Gold Robot MT5
MQL TOOLS SL
4.33 (112)
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
Short description Counter-trend EA for AUDCAD/AUDNZD/NZDCAD. Low-risk mean reversion with controlled martingale and funding-account presets. Live monitoring Signal: https://www.mql5.com/en/signals/2257448 What it is A counter-trend mean-reversion Expert Advisor designed to produce steady monthly returns under conservative risk. Built for traders who prioritize capital protection (including funding account rules) and prefer transparent, testable logic. How it trades Entry logic: Sells/buys sho
Big Forex Players MT5
MQL TOOLS SL
4.76 (141)
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
Bitcoin Scalping MT5
Lo Thi Mai Loan
5 (5)
[ IMPORTANT ] REAL CLIENT FEEDBACK :  https://www.mql5.com/en/market/product/127498/comments#comment_58814415 [ IMPORTANT ]  UPDATED (1 YEAR PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_59233853 [ IMPORTANT ]  UPDATED (1 YEAR 6 MONTHS PERFORMANCE):  https://www.mql5.com/en/market/product/127498/comments#comment_60000067 [ IMPORTANT ]  UPDATED  (2026/09):  https://www.mql5.com/en/market/product/127498/comments/page2#comment_60389797 介绍 Bitcoin Scalping MT4/MT5 –
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
Syna
William Brandon Autry
4.87 (30)
Syna 7 - 全程陪伴交易的 AI 大多数交易系统在入场之后就停止思考了。 Syna 不会。 Syna 7 是一个 AI 交易助手,也是一套自主交易系统,从分析到离场全程参与。 它可以监控当前行情、记住交易的来龙去脉、评估新闻与波动、管理持仓、协调账户,并在订单成交之后继续重新审视自己的决策。 交易不会在入场时结束。 智能也不该如此。 从分析到离场,一以贯之的智能。 频道与社区 关注频道,获取更新、信号、发布消息和产品演示。加入公开群组,提问并与其他交易者交流。 关注我的 MQL5 频道 加入我的 MQL5 公开群组 什么是 Syna? Syna 的设计目标,是充当整个交易运作的智能层。 它可以配合: 自身的自主交易策略 由其他 EA 开出的持仓 手动交易 多个 MetaTrader 5 终端 多个经纪商与账户 不同的品种、策略和风险配置 你可以把 Syna 当作自主交易者、AI 助手、持仓管理器、投资组合协调者,或者四者兼具。 AI 的优势不再局限于单一入场信号或某个孤立的 EA。 Syna 为何改变你的交易方式 传统 EA 遵循预先设定的逻辑,只能沿着开发者事先编写好的路径做
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)
YZH AlgoCore — 一台机器人,六种交易品种 智能算法,精准执行。 市面上充斥着成千上万的“黄金机器人”。但有多少机器人能够无需任何配置更改,就能在 XAUUSD、EURUSD、GBPUSD、GBPJPY、USDJPY 和 BTCUSD 五种交易品种上运行同一套引擎呢? YZH AlgoCore 现已成为真正的多品种交易系统。只需将其添加到图表,它便能自动识别:机器人会自动检测交易品种并加载其内置的专属配置文件。时间周期、指标配置、缩放行为——所有参数均已针对每种交易品种进行内部定义。六种交易品种,只需一个许可证——无需为六个不同的机器人支付费用。 为什么选择 YZH AlgoCore? 大多数交易系统失败并非因为策略糟糕,而是因为执行不一致。大多数网格机器人盲目地以固定的时间间隔开仓,并在第一个强劲趋势出现时就交出账户。 YZH AlgoCore 旨在解决以下两个问题: 选择性入场:每个仓位序列都从基于策略的信号开始。只有在算法确认市场状况后才会进行加仓。 精心设计的防御机制:多层智能恢复模块经过测试,能够应对真实的崩盘场景。交易前保证金验证会检查每一笔订单
GoldOil
Babak Alamdar
LAUNCH PROMO: ONLY A FEW COPIES LEFT! OPEN BLACK BOX: ONE EA, MANY STRATEGIES — CREATE NEW SETS, CONTRIBUTE YOUR IDEAS, AND POTENTIALLY TURN THEM INTO COMMERCIAL EAs UNDER AGREEMENT. Gold Is The Target. Oil Is The Driver. GoldOil Watches What Drives Gold. VERY LIMITED COPIES AT CURRENT PRICE Final Price: $2499 Exclusive:   After purchase, send me a direct message to receive VIP set files, setup instructions, and access to the private GoldOil Telegram group. PROP FIRM READY! Buy not just a back
Mad Turtle
Gennady Sergienko
4.44 (124)
交易品种 XAUUSD(金/美元) 时间周期 (周期) H1-M15(任意) 支持单仓位交易 是 最低入金 500 美元 (或其他货币等值) 兼容任何经纪商 是(支持两位或三位小数报价,任何账户货币、符号名称和 GMT 时间) 无需预先配置即可运行 是 如果您对机器学习感兴趣,请订阅频道: 订阅! Mad Turtle 项目的主要特点: 真正的机器学习 此智能交易系统 (EA) 不会连接到任何 GPT 网站或类似服务。 模型通过内置于 MT5 的 ONNX 库部署。在首次初始化时,您将看到一个系统消息,这是无法伪造的。 CLICK 参见:ONNX(开放神经网络交换格式)。 资金安全性 不使用日切前交易、微型剥头皮或基于低统计样本的窄幅交易; 不使用高风险策略,例如网格或马丁格尔; 也不使用任何可能长时间运行并在一天内失去全部利润甚至全部资金的策略。 独特性 EA 基于我独特的 特征工程 ,采用自定义的奖励与惩罚训练方法,结合元模型级联筛选与多种集成方法。 模型在完整的 24 小时交易格式下于大型 H4 时间框架上训练,可持仓数小时到数天。 它们以点数(pips)而非
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
NextGen PRO
Muhammad Maaz
NextGen PRO NextGen PRO is an automated Expert Advisor designed for trading XAUUSD (Gold) on MetaTrader 5. It uses a trend-following approach with Buy Stop and Sell Stop pending orders, grid-based order placement, batch lot progression, money-based risk management, daily limits and weekend trading restrictions. Strategy The EA determines the market direction using the closed M5 candle and two moving averages. When the market is identified as an upward trend, the EA places Buy Stop orders above
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.
精准、高效、稳定 不只是一个EA,而是一套完整的交易系统 PythonX M1 Scalper 是专为 XAUUSD 1分钟图表 设计的智能交易系统,依托高频市场结构与价格行为逻辑,结合多重指标过滤,精准捕捉高胜率交易机会。 我们在 9 家全球主流经纪商平台上进行了长达十年以上的历史测试,每次初始资金仅为 $500,均取得卓越表现,最高净利润超过 $500,000 。 无马丁,无网格,逻辑公开,稳定可控。 智能进场逻辑 —— 多指标联合过滤系统 PythonX 的进场策略并非依赖单一信号,而是通过以下指标的组合分析,提升交易信号的质量与稳定性: 吞没形态识别(Engulfing Pattern) CCI趋势确认 RSI动量支持 EMA均线趋势过滤 成交量激增检测(Volume Spike) 即便部分过滤条件在设置中关闭,它们仍辅助其它条件判断,从而强化整套交易逻辑的协同过滤效果。 风控设置概览 固定止盈:170 点 固定止损:145 点 可开启或关闭 24 小时交易 可灵活选择交易日(周一至周五) 不使用马丁策略 不使用加仓网格 此策略的交易频率适中,注重稳定回报与可控风险的结合。
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
Dragon Fire Algo
Muhammad Awais
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
LumaForge Scalper
Nathan Roche Leonardo Meyers
LumaForge Scalper is an automated MetaTrader 5 Expert Advisor designed for selective Gold day trading and scalping. The EA uses multi-timeframe market analysis on H1, M15 and M5 and operates around the London and New York trading sessions. It is based on Smart Money Concepts and is designed to remain selective rather than trade continuously. When the required market conditions are not present, the EA can remain inactive. TRADING AND POSITION STRUCTURE The EA can execute up to three trading oppor
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
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
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 – 高精度Tick动量交易机器人 SAIKO Scalper 是一款先进的算法交易机器人,专门用于通过 Tick 动量分析识别并利用真实的市场动量。与仅依赖传统技术指标的系统不同,该机器人实时监控连续的价格变动,并在检测到强劲的方向性价格冲动时自动开仓。这种方法可以捕捉快速的市场机会,同时减少由正常市场波动产生的错误信号。 该机器人内置多层智能盈利保护机制。当交易开始盈利时,系统会自动通过动态跟踪保护、严格的盈利保护规则以及智能利润锁定机制来保护收益。这些功能旨在确保盈利交易得到有效保护,并减少市场突然反转带来的影响。 SAIKO Scalper 还包含先进的风险控制系统,例如早期亏损保护、自适应止损设置以及严格的资金保护逻辑。算法持续监控市场行为,并能够快速响应市场条件的变化。 该机器人适合希望使用高速、纪律性强并具备智能风险管理功能的自动化剥头皮交易系统的交易者。
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 专家顾问(EA)是一种完全自动化的交易系统,专为趋势市场中的剥头皮策略设计。它用于在高流动性市场中识别短期交易机会,同时重点关注交易质量和风险控制。该EA适合偏好系统化、规则化交易且不进行手动操作的交易者。 它在低点差和高流动性的品种上表现最佳,包括: XAUUSD(黄金) EURUSD GBPUSD USDJPY BTCUSD USTEC(美国科技指数) 其他主要和次要货币对(低点差且执行稳定) 该策略专为趋势市场设计,旨在避免震荡或不可预测行情等低质量交易环境。 主要特点: 完全自动化交易系统,无需手动操作 移动平均线与RSI过滤器,提高胜率并避免低概率交易 集成新闻过滤器,在重大经济事件期间降低风险 高级移动止损系统,动态管理持仓 专注风险控制与回撤降低 Scalp Master 会在交易前和交易过程中持续评估市场条件,确保交易符合系统逻辑。趋势、动量和波动率过滤器的结合有助于提升交易质量。 该EA适用于提供稳定执行、低点差和高流动性的经纪商。适合初学者和希望使用结构化剥头皮策略的专业交易者。 最低入金:$100 推荐入金:$1000 输入设置: 请不要
Stealth 150 DE40
Szymon Jan Szarowski
4 (1)
对于高达340%年化收益率,我们深感抱歉! 没错,您没看错:这些年化340%的回测结果,几乎好得有些“不正经”。但请不要误会——这不是营销噱头,而是干净编程和真实回测的结果。当然,这样的梦幻收益不可能长期持续,因为任何EA在回测几年后都会遇到手数(lot size)的上限。不过,Stealth 150 DE40 展示了当算法“自由发挥”时可以达到什么高度。 所以,对不起收益太高——现在让我们来说说这个专家顾问(EA)本身: Stealth 150 DE40——专为DAX(DE40, .DE40Cash, GER40)打造的突破型专家顾问 隐形。不可阻挡。绝对透明。 Stealth 150 DE40 有什么功能? Stealth 150 DE40 是一款专为DAX(DE40, .DE40Cash, GER40)指数设计的全自动交易机器人,主打盈利性的剥头皮+趋势跟踪(突破)策略。 5.5年历史回测 年化收益率 >150%(复合年增长率,见上面说明) 不使用马丁格尔,不使用网格,不加仓补仓 防止经纪商操纵: 系统内置有紧急止损(SL)和止盈(TP)保护技术风险。但实际的交易管
PivotStorm
Li Yin Fang
PivotStorm - 自适应 XAUUSD 市场结构突破交易 EA MetaTrader 5 专业自动交易系统 PivotStorm 是一款面向黄金(XAUUSD)市场的专业 MetaTrader 5 Expert Advisor。 该系统针对喜欢结构化突破交易的交易者设计,通过市场结构分析、智能挂单执行以及多层风险管理,实现纪律化的自动交易。 不同于简单的突破机器人,PivotStorm 不追逐每一次价格波动,而是等待经过确认的重要市场结构,并在风险可控的条件下执行交易。 为什么选择 PivotStorm? 黄金市场具有明显趋势行情,同时也存在大量假突破。PivotStorm 遵循核心理念:等待有意义的市场结构,然后进行受控风险执行。 EA 不尝试预测所有市场走势。系统通过识别关键价格区域,构建突破交易场景,并按照预设风险规则管理交易执行。 查看MQL5 信号: 点击这儿 核心技术 1. 市场结构突破引擎 PivotStorm 分析确认后的市场结构,并识别重要交易水平。 系统分析: 确认后的摆动高低点 突破区域 价格运动有效性 市场动量状态 帮助系统过滤短期噪声,关注更有意义
SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping and Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold). Version 7.2 introduces the Smart Adaptive Engine, making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. Critical Requirements Latency: You must use a VPS with less than 20ms latency (Recommended: MQL5 Built-in VPS). Account:
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
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 c
作者的更多信息
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
Trend Logic
Yvan Musatov
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
Trend Goblin
Yvan Musatov
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
Qubit Trend
Yvan Musatov
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.
Trend Mobile
Yvan Musatov
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
Yvan Musatov
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
Yvan Musatov
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
GladiatorGo
Yvan Musatov
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
筛选:
无评论
回复评论