Supper Trend

Supertrend Hybrid EA — Trend Following + Sideway Scalping (AI-Assisted Regime Filter)

A multi-strategy EA that automatically switches between trend-following via Supertrend and scalping during sideways markets, with an optional AI confirmation layer.

Overview

Most trend-following EAs (including the original Supertrend) share the same weakness: they perform great in a clear trending market but bleed losses repeatedly during sideways conditions, because reversal signals get whipsawed back and forth.

This EA addresses that with a two-layer architecture:

  1. Trend Mode — enters on Supertrend (ATR-based) reversal signals, faithfully reproducing the original non-repainting TradingView indicator.

  2. Sideway Mode — when the system detects a ranging market (via a 3-layer filter), the EA automatically switches to a scalping approach using RSI + Williams %R with ATR-based dynamic SL/TP, instead of standing idle or continuing to take losing trend trades.

On top of that, the EA can optionally integrate an AI layer (Grok) as a final confirmation step before entering a trade — the AI can analyze extra context (ADX, CHOP, RSI, W%R, account state) and decide EXECUTE/CANCEL, and can even split the position into multiple Market/Limit/Stop orders across different price zones.

How It Works

1. Market Regime Detection — 3-Layer Filter

Layer

Tool

Condition that triggers Sideway

Layer 1a

ADX

ADX below threshold (default 22) → trend too weak

Layer 1b

Choppiness Index (CHOP)

CHOP above threshold (default 60) → market is "choppy", no clear direction

Layer 3

Consecutive loss counter

Consecutive losing trades ≥ threshold → force the system into a safer mode

If any one of these three conditions is true, the EA treats the market as Sideway.

2. Trend Mode

When conditions qualify as trending, the EA enters on the original Supertrend reversal signal (up/dn flip based on ATR), with options for:

  • Fixed lot size or lot sized by account risk % (based on Balance or Equity).

  • An optional Recovery system: increases lot size by a multiplier or a fixed addition after a losing trade, capped by a maximum risk % to limit damage, and automatically resets to the base lot once the account recovers.

3. Sideway Mode (Scalping)

When the market is ranging, the EA switches to a different logic entirely: it watches for overbought/oversold zones using RSI and Williams %R and takes short-term mean-reversion trades, with SL/TP calculated dynamically from ATR — adapting to the actual volatility at that moment instead of a fixed point value.

4. Optional AI Layer

If enabled, every signal (whether from Trend or Sideway mode) is sent along with technical context to the Grok API for confirmation before execution, or canceled if the AI assesses the risk as too high.

Illustrative Backtest Results

⚠️ Important note: These are backtest results on historical data (99% History Quality, 3,300 bars, starting deposit of 1,000), shown purely to illustrate how the system behaves, NOT a promise of future profit. You should re-run your own backtest on your symbol/timeframe/broker before considering live use.

Metric

Value

Total Net Profit

+16,629.99

Profit Factor

3.65

Recovery Factor

4.14

Sharpe Ratio

3.87

Total Trades

70 (140 deals)

Win rate Long / Short

45.71% / 40.00%

Winning / Losing trades (overall)

42.86% / 57.14%

Average win / Average loss

+763.12 / −156.60

Balance Drawdown Max

1,448.62 (8.64%)

Equity Drawdown Max

4,012.93 (35.44%)

Worth noting: the win rate is only ~43%, yet the system is still profitable because the average winning trade is roughly 5x the average losing trade — a classic "let winners run, cut losses fast" trend-following profile. That said, relative Equity Drawdown (35.44%) is significantly higher than relative Balance Drawdown (16.13%), indicating there were periods of fairly deep floating drawdown before recovery. This is something to weigh carefully against your own risk tolerance before using larger lot sizes.

Parameter Guide

Supertrend Configuration

Parameter

Default

Meaning

InpATRPeriod

10

ATR period used by Supertrend

InpMultiplier

3.0

ATR multiplier — increase to reduce noise, decrease for more sensitivity

InpUseBuiltinATR

true

true = standard (Wilder) ATR; false = self-calculated SMA(True Range)

InpTimeframe

PERIOD_CURRENT

Timeframe used to compute Supertrend

Lot & Risk Management (Trend Mode)

Parameter

Meaning

InpLotMode

FIXED (fixed lot) or RISK (sized by account %)

InpLotSize

Fixed lot size, used when FIXED is selected

InpRiskPercent

Risk % per trade, used when RISK is selected

InpRiskBase

Calculate risk % based on Balance or Equity

Recovery System (optional, disabled by default)

Parameter

Meaning

InpUseRecovery

Enable/disable lot recovery after a loss

InpRecoveryTrigger

Trigger only on SL hit, or on any losing trade

InpRecoveryMode

Increase lot by a multiplier, or by a fixed addition

InpRecoveryMultiplier / InpRecoveryAddLot

The step size for each increase

InpMaxRiskPercent

Maximum risk % cap — prevents lot size from growing indefinitely

⚠️ Recovery is a Martingale-style mechanism — it always carries elevated risk even with a cap in place. Only enable it if you fully understand the mechanism and have tested it thoroughly.

3-Layer Sideway Filter

Parameter

Meaning

InpUseADXFilter, InpADXPeriod, InpADXThreshold

Filter by ADX trend strength

InpUseChopFilter, InpChopPeriod, InpChopThreshold

Filter by Choppiness Index

InpUseLossCountFilter, InpMaxConsecutiveLosses

Force safe mode after a losing streak

Sideway Trading (Scalping)

Parameter

Meaning

InpEnableSidewayTrade

Fully enable/disable trading during Sideway regime

InpSidewayLotMode, InpSidewayCustomLot

Lot size used specifically for scalping trades (recommended smaller than Trend mode)

InpRSIPeriod, InpRSIOversold, InpRSIOverbought

Overbought/oversold zones based on RSI

InpWPRPeriod, InpWPROversold, InpWPROverbought

Overbought/oversold zones based on Williams %R

ATR-Based Dynamic SL/TP

Parameter

Meaning

InpUseDynamicSLTP

Enable SL/TP calculated from ATR instead of a fixed point value

InpDynamicSL_ATRMult, InpDynamicTP_ATRMult

ATR multiplier for SL and TP

AI Grok Integration (optional)

Parameter

Meaning

InpUseAI

Enable/disable the AI confirmation layer

InpAIApiKey, InpAIUrl, InpAIModel

API connection details

InpAITimeout

Maximum response wait time (ms)

InpAIFallbackOnFail

If the AI call fails/times out, still enter the trade based on the original signal

Note: the AI layer uses a synchronous WebRequest call, so it does not work inside Strategy Tester — it only runs when the EA is attached to a live/demo chart. You must whitelist the API URL under Tools → Options → Expert Advisors → Allow WebRequest.

General Settings

Parameter

Meaning

InpMagicNumber

Identifier for this EA's trades

InpSlippage

Maximum allowed slippage (points)

InpStopLossPts, InpTakeProfitPts

Fixed SL/TP (points), only used when Dynamic SL/TP is disabled

InpReverseOnSignal

Automatically close the opposite position on a reversal signal

InpOneTradePerBar

Only process a signal once per new bar (recommended: keep true)

Quick Setup Guide

  1. Backtest before going live — use Strategy Tester in "Every tick based on real ticks" mode to reflect realistic spread/slippage.

  2. Start simple: disable InpUseRecovery and InpUseAI first, and run only the core Trend + Sideway logic to understand its behavior.

  3. Lot configuration: beginners should use LOT_MODE_FIXED with a small lot; only switch to LOT_MODE_RISK once you understand the risk % that fits your own tolerance (0.5–1% per trade is a reasonable starting point).

  4. Check SL/TP: if using a fixed InpStopLossPts, make sure the value is larger than your broker's minimum "Stops Level" requirement to avoid rejected orders.

  5. If enabling AI: whitelist the correct API URL in your MT5 settings, and always keep InpAIFallbackOnFail = true so signals aren't missed if the API call fails.

  6. Forward test on a Demo account for at least a few weeks before considering a live account, especially if using InpUseRecovery.

Strengths

  • Not just another plain trend-following EA — it switches between two distinct trading modes based on actual market conditions, addressing part of the classic "loses money in sideways markets" weakness of a pure Supertrend system.

  • The 3-layer filter (ADX + CHOP + consecutive-loss counter) helps reduce noisy signals without relying on complex secondary indicators.

  • SL/TP can be calculated dynamically from ATR — adapting to market volatility instead of using a fixed point value.

  • Flexible lot management (fixed or risk %), with the option to extend further using AI as an additional filtering layer.

  • Extensive parameters allow deep customization per symbol/timeframe.

Weaknesses / Things to Keep in Mind

  • Many parameters means more tuning time for each specific symbol/broker/timeframe; there is no single setting that works for every market.

  • The Recovery system is fundamentally Martingale-style — even with a maximum risk cap, it can still amplify losses if an unusually long losing streak occurs.

  • The AI layer cannot be backtested (a limitation of WebRequest in Strategy Tester) — it can only be evaluated through actual Demo/Live runs, and adds API cost plus processing latency.

  • The sample backtest above only covers 70 trades over a relatively short history — longer-term data and real forward testing are needed to properly assess long-term stability.

  • Relative Equity Drawdown in the backtest (35.44%) is notably higher than relative Balance Drawdown (16.13%) — be prepared, both mentally and in terms of capital, for periods of deep floating drawdown.

Risk Disclosure

Automated Forex/Gold trading carries the risk of capital loss. Past backtest results do not guarantee future performance. Please review the mechanics carefully, make sure you understand how the system works, and only trade with capital you can afford to lose.



推荐产品
MACD RSI Trend Engine EA MT5 Dual-Confirmation Trend and Divergence Trading System — works on Gold (XAUUSD) and all major Forex pairs Introduction The MACD RSI Trend Engine EA MT5 combines two of the most widely respected technical indicators in institutional trading — the Moving Average Convergence Divergence (MACD) and the Relative Strength Index (RSI) — into a single, unified algorithmic framework. Rather than acting on either indicator independently, this Expert Advisor requires confirmation
FREE
Astin
Novateq Pty. Ltd
Use Stochastic with oversold and overbought to find trading opportunities. Use RSI to identify strength of trend anf confirm the trend matches the stochastic overbought and oversold. Trade on MACD cross matching the trend identified by Stochastic and RSI. Set stop loss at a recent swing high or swing low. Set take profit as a ratio of stop loss. Exits are on take profit and stop loss only, there is no exit signal.
FREE
Pump Liquidity Refueling
Konstantin Meshcheriakov
PUMP V3_0 Liquidity Refueling — Refueling Your BalanceWhat is "Liquidity Refueling"? Think of the Forex market as a highway and liquidity as the fuel.  When institutional players "pour" massive volume into the market, the price makes a sharp surge — an impulse or a "pump."  The PUMP V3_0 EA acts as a smart fueling station: it identifies moments of maximum market energy and "pumps" that momentum directly into your trading account.   Performance Metrics (Strategy Tester Data):Net Profit "Pumped"
FREE
MSX AI SuperTrend EA
Som Prakash Gehlot
MSX AI SuperTrend EA Overview MSX AI SuperTrend EA is a MetaTrader 5 Expert Advisor based on a SuperTrend Double Smoothed trend-following methodology. The EA opens and manages positions according to the current direction of the internal SuperTrend calculation. The trading logic is designed to provide a straightforward example of automated trend-following execution using predefined entry and exit rules. Trading Logic The Expert Advisor continuously monitors the direction of the SuperTrend Double
FREE
M GH ZigZag Momentum ATR Pro – Version 1.6      MGH ZigZag Momentum ATR Pro is a fully automated trading system designed for gold (XAUUSD runs on the M15 timeframe). It integrates internal ZigZag Structure Mapping, multi-layer momentum filters, and a hybrid stop-loss system to deliver stable long-term performance with risk management.       Version 1.5 adds a function to Scan Strateg with 3 time frames, filtering open orders more accurately, and adjusting trade opening and closing times base
FREE
Mmaax
Mohamed Mostafa Ali Ali
Mmaax EA – Intelligent Gold Trading Robot Tested & Verified on Exness – Time Range Breakout Strategy for XAUUSD A powerful expert advisor purpose-built for Gold. It captures the high and low of your defined time range, then fires pending orders with razor-sharp precision on breakout or reversal. Robust capital protection and instant execution, designed to handle Gold’s volatility. Features Included in This Version: Selectable breakout or reversal strategy. Multi-mode stop loss and take pro
FREE
BTC Jump
Ranaweera Wanasinghe Herath Bandara
5 (1)
BTC Jump is a breakout Expert Advisor developed for Bitcoin against the US dollar. Once per trading day it places a single stop order at the previous day's extreme and waits for the market to reach that level. If the level is reached during the session, the order becomes a position that is managed by a volatility-based stop loss, a fixed take profit and a trailing stop. If the level is not reached, the order is removed at the end of the trading window and no trade is taken that day. The Expert A
FREE
TRDR Bot3
Musa Mampondo
Momentum-Driven MT5 Expert Advisor Using MACD & Bulls Power TRDR Bot-3 is a structured, momentum-focused Expert Advisor developed by TRADEWYZE, designed for traders who want a clean trend-confirmation system with disciplined exits and strong capital protection. The EA combines MACD, Bulls Power, and Momentum indicators to identify directional strength and exit trades when momentum begins to fade—making it ideal for sustained market moves in Forex, Indices and Commodities. This EA is not a Black
FREE
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
Great Domain
Behzad Babaei
The Great Free Domain is a free but automated trading solution. It employs a pattern-recognition strategy that offers independent configurations for each pair, coupled with sophisticated trailing stop mechanisms to lock in profits. Optimized strictly for the H1 timeframe. 1 Currency Support:   GBPAUD. Requires an ultra-low-latency broker (such as a GreenUp Markets Hedging Account).
FREE
Katana Trend
Octavian Doica
Katana Trend   is a trend-following Expert Advisor for   USDJPY H1 . It pairs a Fast/Slow moving-average crossover with an RSI momentum filter to trade in the direction of the prevailing trend, with configurable stop-loss, take-profit, a spread filter, and an optional martingale-based recovery module. Pair:  USDJPY - H1; Minimum initial deposit: $100; Leverage: 1:500; Recommended brokers: IC Markets; VPS recommended; Use default parameters, test on high quality data only .
FREE
ForceBB Expert
Nikolaos Pantzos
ForceBB_Expert   is structured based on two specifics technical analysis indicators ( Bollinger Bands and  Force Index ). It has many parameters so that each user can find the appropriate settings that suit their investment profile. It can work on 28 different pairs. The default parameter settings are indicative, I recommend that each user experiment to find their own settings.
FREE
This software is an account monitoring and risk control Expert Advisor for MetaTrader 5. It does not open trades and does not generate trading signals. It monitors the trading account from a single chart and can apply configured risk and trading restrictions while the user trades manually or with another Expert Advisor. Account Monitoring The system monitors daily loss, maximum loss, account equity, balance, open positions, total exposure and configured trading limits. Daily loss and maximum los
FREE
Gold Sniper Cloud EA (Cloud Trend Strategy) Gold Sniper Cloud EA is an automated trading robot based on the Cloud indicator. It trades only when strong trend conditions are confirmed, helping traders avoid false signals and over-trading. The EA is specially optimized for Gold (XAUUSD) but can also be used on other trending symbols. Main Advantages Fully automated trading Uses multi-confirmation Cloud strategy Smart risk and money management Automatic Stop Loss and Take Profit Optio
FREE
Rebound Modify
Piminov Sergey
If you are looking for an easy-to-use Expert Advisor, then this is what you need. No settings. All that is required of you is to choose a currency pair, a timeframe and allow automatic trading for the EA. The strategy of the expert is based on the local support and resistance levels. When a candle closes beyond any level, an order is opened in the opposite direction, expecting a price rebound. The maximum number of orders opened at a time is limited to 3. This is a safety measure, which prevents
FREE
Headging cc
Twin Fitersya
Expert Advisor Description Market Safe Trend EA is a fully automated trading robot designed to trade Forex and Gold markets using a simple and robust trend-following strategy. The EA is developed with strict compliance to MQL5 Market rules and is optimized to pass Automatic Validation without errors . This Expert Advisor works on netting accounts , automatically adapts trading volume based on available margin, and applies broker-safe risk controls to ensure stable operation across different
FREE
ADX Expert FX
Nikolaos Pantzos
ADX_Expert   is structured based on a specific technical analysis indicator ( Average Directional Movement ). It has many parameters so that each user can find the appropriate settings that suit their investment profile. It can work on 28 different pairs, one pair per chart. The default parameter settings are indicative, I recommend that each user experiment to find their own settings.
FREE
Trend Master GOLD
Pran Gobinda Basak
Trend Master Gold EA is an automated trading software designed for use on the MQL5 platform. This Expert Advisor uses a trend-following strategy to identify trading opportunities in the gold market. The EA is designed to work on the 5M timeframe. The Trend Master Gold EA uses a combination of technical indicators and price action analysis to identify potential trade setups. The EA is equipped with an advanced money management system that helps to minimize risk and maximize profits. The EA also
FREE
The Fibonacci Scalper
STANTON ROUX
4.22 (45)
The Fibonacci Trader MQL5 expert advisor uses the Fibonacci levels to determine a buy or sell trade with the MACD as confirmation. The Fibonacci levels work as follows: Above 61.8 SELL if MACD trend is SELL Trading Range (Ability to select trading input parameters) BUY if MACD trend is BUY SELL if MACD trend is SELL Below 23.6 BUY if MACD trend is BUY Default settings are configured for EURUSD on M5 Chart. To work with the news server, you must add the URL ‘ http://ec.forexprostools.com/ ’ in t
FREE
DawnDuskDynamics MT5
Pradana Novan Rianto
5 (1)
DawnDuskDynamics EA DawnDuskDynamics is a sophisticated trading algorithm that leverages the well-known Morning Star and Evening Star candlestick patterns to identify potential market reversals. This Expert Advisor is designed for traders looking to automate their trading strategies on major currency pairs, ensuring a systematic approach to forex trading. Key Features: Trading Strategy : Utilizes the Morning Star and Evening Star patterns to determine entry points, enhancing the probability of
FREE
PASr Trend
Avinash Pagadala
# XAU PSAR Trend H4 **Expert Advisor for MetaTrader 5 — Gold / XAUUSD focus**   **Version:** 1.00 --- ## What it is **XAU PSAR Trend H4** is an Expert Advisor for **gold** on the **H4** chart. Parabolic SAR trend ride for gold H4. Built for structured automated participation — **not grid**, **not martingale**. Evaluate on your broker and risk profile before any live use. This product is a **technical system**. Exact thresholds and entry equations remain internal product design and are **n
FREE
Asterion EA
Alexandre Vincent Traber
Asterion EA — 黄金多指标共振系统 专为黄金设计的7指标加权共振引擎。每笔交易都需要动量、趋势和波动性信号一致确认后才能入场,过滤噪音和低把握度的交易设置。为追求纪律化、规则化交易XAUUSD的交易者而打造。 概述 Asterion EA 对七个独立指标(RSI、MACD、ADX、ROC、布林带%B、威廉指标%R、MFI)的多空条件进行评分,只有当加权得分明显偏向某一方向时才会开仓。止损和止盈根据ATR自适应调整,自动适配黄金的波动性,而非使用固定点数。内置最大回撤熔断机制和点差过滤器,避免在低流动性或跳空行情中入场。 运行原理 每根新K线形成时,读取已收盘K线上的全部七个指标数值。 每个指标根据其阈值给出加权投票(看多或看空)。 只有当综合多头或空头得分超过共振阈值、且相反方向得分保持较低时才会触发交易——单一指标的噪音信号会被过滤掉。 止损设为入场价的ATR倍数;止盈按照设定的盈亏比确定。 最大回撤熔断机制会在账户回撤超过设定限值时停止新的入场,点差过滤器则在点差异常扩大时阻止入场。 仓位大小基于风险比例计算(占余额的百分比),并受最大手数硬性上限约束。 输入参数 通用
FREE
Cosmos369
Seira Yokota
COSMOS BTCUSD – 全周期耐力型·特殊马丁格尔EA COSMOS是一款专为BTCUSD设计的耐力型自动交易EA,它彻底重新审视了传统马丁格尔策略的弱点,旨在兼顾长期运营所需的稳定性和盈利性。普通马丁格尔EA虽然在短期盈利能力上表现优异,但往往容易因市场剧变或趋势偏离而面临破产风险。而COSMOS通过对其结构本身进行改良,实现了“全周期耐久”这一理念。 本EA的最大特点在于其针对BTCUSD这一高波动性市场所优化的逻辑设计。通过分析加密货币特有的暴涨暴跌、流动性变化以及不同时段的价格波动偏向,并以此为前提进行入场及仓位管理。由此,不仅能避免单纯的均仓或加仓,还能根据市场状况实现灵活的仓位控制。 此外,OSMOS采用了“特殊马丁格尔结构”。这并非简单的加倍下注,而是融入了考虑市场走势及持仓间平衡的仓位调整算法。该设计旨在即使在浮亏扩大的局面下,也能抑制风险偏度,并瞄准适当时机进行回本。同时,通过追踪止损功能及多逻辑组合,构建了在积累细微盈利的同时规避大幅回撤的机制。 在风险管理方面,仓位数量、加仓间隔、追踪止损起始点等均经过战略性设定,采取了避免过度风险敞口的措施。特别
FREE
这是自动实现多单和平仓的EA,欢迎大家使用。上架之前已通过多次的历史数据测试。下面是EA的多单和平仓原理: 1、通过两条均线产生的金叉自动实现多单买入,两条均线的周期均可以自行设置,小周期 均线 的默认值为5,大周期 均线 的默认值为20。 2、通过K线图的开盘价和收盘价比较判断是否为下降的K线图,如果连续出现三个降的K线图(即三只乌鸦)形态时,EA就是自动平仓所有多单。 3、用户可以在开启EA时设置买入的数量,如果不设置则默认为0.1手,强烈建议根据自己的资金情况设置这个参数,以防在小资金的情况下出现投资比例过高的情况。 4、也可以设置均线在哪个时间周期内运行, 如果不设置则 默认为1分钟图,这是超短线的设置值。如果你是长线投资者,建议更改此值。
FREE
EV Divergence Sniper
Enrique Valeros Muriana
EV Divergence Sniper is a precision-oriented Expert Advisor designed to identify high-probability market reversals through true price divergences confirmed by RSI and Stochastic. The system focuses on structural market conditions and enters only when price and momentum show a clear imbalance, significantly reducing false entries and improving signal quality. The EA uses a structural stop loss placed beyond the most recent swing, combined with a fully customizable risk-to-reward take profit. It i
FREE
Alligator Runner EA – Smart XAUUSD Expert Advisor Alligator Runner EA is a fully automated trading robot designed specifically for XAUUSD (Gold) on the MetaTrader 5 platform. It combines trend-based logic with level trading mechanics, powered by the Alligator indicator, to detect precise entries and exits in the market. Key Features : Trend-following strategy with level re-entries ️ Built-in Stop Loss , Take Profit , and dynamic trailing Designed exclusively for XAUUSD – no optimiza
FREE
Reversal Composite Candles
MetaQuotes Ltd.
3.69 (16)
该系统的思路是通过计算复合蜡烛来识别反转形态。 反转形态类似日本蜡烛条分析的 "锤头" 和 "吊颈" 形态。但它使用符合蜡烛替代单一的蜡烛,并且不需要复合蜡烛的小实体来确认反转。 输入参数: Range - 最大柱线数量, 计算复合蜡烛时用。 Minimum - 最小复合蜡烛大小 (传统的点数)。 ShadowBig and ShadowSmall - 影线 (复合蜡烛单元)。 Limit, StopLoss and TakeProfit - 开盘价, 止损位和止盈位, 它们是相对于复合蜡烛的收盘价 (复合蜡烛单元)。 Expiration - 订单过期时间 (单位柱线), 用于挂单 (Limit!=0.0)。 反向蜡烛条形态的判别如下。 它计算复合蜡烛参数,其自最后的完整柱线 (索引为 1) 至由 Range 输入参数定义的柱线数量。如果复合蜡烛大小大于由 Minimum 输入参数指定的数值, 它分析复合蜡烛的影线检测反转条件。 空头能量的特征是复合蜡烛的上影线为零, 多头能量的特征是复合蜡烛的下影线为零。 为确认空头趋势反转 (且多头开始),需要以下检查: 下影线的大小 (多头能量
FREE
Product Overview Woori Gold Algorithm is an automated trading system designed specifically for XAUUSD (Gold). This Expert Advisor (EA) uses a simple yet effective EMA crossover strategy combined with trailing stop risk management to capture short-term price movements in a disciplined and systematic way. The strategy is built for scalping on the M15 timeframe, focusing on clear trend direction and controlled risk. Trading Strategy The core logic of Woori Gold Algorithm is based on trend-followin
FREE
1. Торговая стратегия Что делает советник: Советник следит за некотоными индикаторами и при определенном условии (или условиях) помещать торговый запрос (на продажу или покупку) в зависимости от условий. Стратегия: Используем индикатор Moving Average (скользящие средние) с периодом 8 (вы можете выбрать любой период, но в данной стратегии мы будем использовать период 8). Советник покупает, если 8-периодная скользящая средняя (далее для удобства будем называть ее MA-8) возрастает и текущая цена за
FREE
Gap Catcher
Mikita Kurnevich
5 (5)
Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
FREE
该产品的买家也购买
Quantum Commander
Bogdan Ion Puscasu
4.43 (7)
量子生态系统正进入一个全新的战场——一位全新的指挥官即将掌舵。量子指挥官专为美国30指数开发,是一款全自动智能交易系统,专为全球最具活力的市场之一而打造。 在充斥着黄金EA的世界中,Quantum Commander脱颖而出。 在推出几款以黄金为重点的产品之后,我们正凭借 US30 进入新的领域——这是一种新的工具、一种不同的策略,也是一个为 Quantum 生态系统带来真正多元化的强大机会。 特价上市优惠价。最终价格 1999 美元。 实时信号:   点击此处 量子指挥官MQL5公共频道: 点击此处 ***购买 Quantum Commander MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 量子指挥官登场 量子指挥官的创建只有一个目的。 分析 US30,识别既定市场趋势中的回调,自动执行,并以速度和纪律管理每个仓位。 US30 指数以强劲
Quantum Titan MT5
Bogdan Ion Puscasu
4.87 (30)
Quantum Titan 将机构级交易引入 Quantum 生态系统,为精准度、纪律性和经证实的实时市场表现树立了新的标准。 Titan 是为那些对黄金智能交易系统有更高期望的交易者而开发的,代表了量子交易技术的下一个发展阶段。 全球终身授权数量严格限制在 1000 个。 当1000份全部售罄后,《量子泰坦》将不再发售。 特价上市优惠价。最终价格 1999 美元。 只需5万美元初始投资即可获得实时信号:   点击此处 Quantum Titan MQL5 公共频道:   点击此处 ***购买 Quantum Titan MT5,即有机会免费获得 Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum Valkyrie、Quantum OmniGold、Quantum Athena X 或 Quantum Starman!*** 详情请私信咨询! 隆重推出量子泰坦 Quantum Titan 是我从未打算公开发布的黄金级智能交易系统。 几个月来,我一直用自己的资金私下交易 Titan,并且
MoonDog EA
James Vito Armin Bianchini
4.79 (24)
MoonDog EA 是一款专为 MetaTrader 5 上的 XAUUSD 设计的多策略突破型智能交易系统(Expert Advisor)。 该系统结合了五种相互独立的突破策略,用于识别不同类型的突破条件和价格扩张行情。 MoonDog 不使用马丁格尔、Recovery 模式、Grid Recovery、亏损后加大手数或亏损加仓平均成本。 每笔交易都会在开仓时设置独立的 Stop Loss 和 Take Profit。出现亏损后,系统不会通过更大的仓位来试图追回之前的损失。 Break-even、Trailing 和 MoonLock 都是用于保护现有持仓的交易管理功能。它们可以调整已有仓位的保护水平,但不会增加手数,也不会为了追回亏损而开启额外仓位。 官方实盘信号 MoonDog 的真实交易活动可以通过官方 MQL5 Signal 进行监控: https://www.mql5.com/en/signals/2381309 该实盘信号用于提高透明度。由于点差、佣金、滑点、执行延迟、流动性以及经纪商执行条件等因素,实盘结果可能与回测结果存在差异。 交易策略 MoonDog 专门为 X
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (49)
传奇仍在继续。女王不断进化。 欢迎来到 Quantum Queen X——传奇黄金交易系统的下一代产品,它建立在 Quantum Queen 已证明的成功之上。 Quantum Queen X 基于与 Quantum Queen 相同的成熟核心引擎构建,引入了强大的全新自定义模式,允许交易者精确选择要启用或禁用的策略。 每项策略都经过单独审查、改进和优化,以在不同的市场环境下提供更佳的性能和适应性。默认预设也得到了增强,现在包含 9 项精心挑选的策略,而非之前的 7 项,从而提供更广泛的市场覆盖和更多交易机会,同时保留了使 Quantum Queen X 成为 MQL5 平台上最成功的黄金智能交易系统的严谨交易理念。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Ma
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
道具公司已准备就绪!( 下载道具文件 ) 警告: 目前仅剩少量存货! 最终价格:990美元 免费获得 1 个 EA(适用于 3 个交易账户)-> 购买后请联系我 超值组合优惠   ->   点击这里 加入公开群组: 点击此处   实时信号 客户端信号 YouTube 评论 最新手册 欢迎来到黄金收割者! 这款EA是在非常成功的Goldtrade Pro的基础上开发的,设计用于同时在多个时间框架上运行,并且可以选择将交易频率设置为从非常保守到极度波动。 该EA使用多种确认算法来寻找最佳入场价格,并在内部运行多种策略来分散交易风险。 所有交易都有止损和止盈,但同时也使用追踪止损和追踪止盈来最大限度地降低风险,并最大限度地提高每笔交易的潜力。 该系统基于非常流行且行之有效的策略:交易突破重要支撑位和阻力位的交易机会。   黄金非常适合这种策略,因为它是一种波动性很高的货币对。 系统会根据您的账户规模和最大允许回撤设置自动调整交易频率和手数! 回测结果显示增长曲线非常稳定,回撤幅度控制得非常好,恢复速度也很快。  这款EA已经针对黄金进行了最长时间的压力测试,使用了多个经纪商的多个价格
Iron Stops
Fajar Dicky Firmansyah
4.5 (52)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 没有噱头。没有空洞的承诺。 Iron Stops 迎合关注一个关键方面的交易者: 一致性 。无论您是正在进行 道具挑战 还是管理客户资金,这款 EA 都能保持在设定的界限内并提供可靠的结果。 仓位在 36 小时 内平仓。 在单一图表上运行: 只需将其应用于 XAUUSD ,使用 M30 时间框架。这就是您所需要的。一个图表。一个强大的工具。 正确的配置对准确回测至关重要! 请联系我获取我的 .ini 文件 和详细说明。 注意: 这款 EA 目前的价格是 580 。一旦购买 30 个许可证,价格将提高到 629 。目前,已有 29 份已售出。在价格变动之前不要错过。 博客 链接 =  https://www.mql5.com/en/blogs/post/763583 频道 链接 =  https://www.mql5.com/en/channels/mqltradingfajar 给我发消息,我会给您发送一份  试用  包,供您在模拟账户中使用。 主要优点 免费赠
Aikon MT5
William Brandon Autry
5 (1)
Aikon 改变了您操作 Expert Advisor 的方式。 当前价格 — 接下来的 10 次购买 24 小时首发期现已结束。当前 Market 价格将在接下来的 10 次购买中保持不变。完成这 10 次购买后,价格将再次上调,并逐步接近最终价格 $4,997 。 快速开始。用自然语言与系统交流。选择交易如何承担风险。控制允许投入运作的资本规模。在整个运行过程中使用 AI,同时避免不必要的调用成本。 快速开始 — 第一次使用 AI?没问题。 Aikon 的设计目标是在保持强大深度的同时,不让首次设置变得复杂。 统一 AI 设置可以从一个提供商、一个模型和一个 API 密钥开始。第一次连接会自动为 Aikon 的主要智能角色完成基础配置。以后如有需要,您可以再使用高级模型路由。 Quick Start 随后提供三种方式: 使用一键优化的起始配置。 通过与 Ask Aikon 对话来建立设置。 直接自定义 Trading Constitution。 优化起始方案包括 Forex Single Entry with Stop Loss 、 Gold / XAUUSD Single Ent
Smart Gold Hunter
Barbaros Bulent Kortarla
4.05 (61)
No Grid / No Martingale / No Recovery / No Hedging / Single Entry with SL / One Shot Smart Gold Hunter 是一款用于 MetaTrader 5 上 XAUUSD / 黄金交易的专家顾问(Expert Advisor)。它专为那些喜欢无网格、无马丁格尔、具有真实止损和止盈逻辑以及可控风险管理的黄金 EA 的交易者而设计。 您可以在做决定之前查看实时信号: Live Main Signal : https://www.mql5.com/en/signals/2365400?source=Site Smart Gold Hunter 不是网格 EA,也不是马丁格尔 EA。它不依赖无限恢复仓位、对冲系统或亏损后加仓。其核心理念是以可控逻辑、保护设置和真实交易管理来交易黄金,而不是危险的加仓平均。 该 EA 主要针对 XAUUSD / 黄金设计。您可以在 XAUUSD 或您经纪商的黄金品种上使用,例如 XAUUSDm、GOLD 或类似名称。 经纪商条件对黄金交易很重要,因此建议使用低点差、低滑点、
Scalping Robot Pro MT5
MQL TOOLS SL
4.37 (157)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ultimate Breakout System
Profalgo Limited
5 (48)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 300 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
Ghost Scalper MT5
Thomas Christoph Lipka
5 (8)
Ghost Scalper MT5 Ghost Scalper MT5 是一款适用于 MetaTrader 5 上 XAUUSD / 黄金 的全自动智能交易系统(EA)。 Ghost 专为黄金市场中具有选择性的 突破和动量行情 而开发。EA 会等待其内部市场条件满足,不会持续不断地开仓。 价格模式: 每完成 10 次销售,价格上涨 100 USD ,直至最终价格达到 1,499 USD 。 实盘信号 Ghost 在多个真实实盘账户和不同经纪商上公开跟踪,同时还提供一个组合投资信号。实盘结果会随时变化,并不保证未来表现。 Ghost Scalper MT5 TMGM – 查看实盘信号 Ghost Scalper MT5 VT Market – 查看实盘信号 Ghost Scalper MT5 Vantage – 查看实盘信号 Ghost Scalper MT5 Future Lab Ultima – 查看实盘信号 Colosseum Ghost Scalper Tycoon Breakout – 查看实盘信号 4 个独立策略 Ghost 集成了四个彼此独立的交易策略: Ghost A G
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.59 (17)
ThunderGold Scalper ThunderGold Scalper 是一款专为 MetaTrader 5 黄金自动交易开发的智能交易系统。 该 EA 适用于 M15 周期的 XAUUSD 和 GOLD。系统通过专有的多因素决策引擎识别符合条件的交易机会,并自动管理交易仓位。 系统综合分析市场结构、趋势方向、K线质量、成交量、动量以及交易执行条件。它会耐心等待合适的市场环境,而不是持续频繁开仓。 Live Signal — TMGM 主要功能 专为 XAUUSD 和 GOLD 开发 推荐周期:M15 全自动交易 不使用网格策略 自动 Stop Loss 和 Take Profit 动态移动止损 按风险比例或固定手数计算仓位 趋势和动量过滤器 K线质量和成交量过滤器 高影响力新闻过滤器 节假日和市场关闭保护 滑点调整系统 每日交易次数限制和冷却机制 信息交易面板 针对 Exness 的自动点数调整 推荐交易条件 ThunderGold Scalper 对点差、滑点、流动性和执行速度较为敏感,因此经纪商的交易条件可能会显著影响结果。 该 EA 已在以下经纪商环境中进行测试: TM
GoldenShot
Adam Hrncir
5 (10)
Last copies at 169 USD  /   199 USD next  /   399 USD final price. The earlier you decide, the less you pay. Check the live signal   /   Read the manual  / Why are the back-test numbers that good - is it real or over-fitted? One shot. One target. Zero recovery. GoldenShot is a single-position gold EA built for controlled, long-term trading. It waits for a qualified setup, takes one clean shot with a real stop loss, and if the idea does not work, it manages the trade instead of rescuing it. No
Quantum King EA
Bogdan Ion Puscasu
4.96 (219)
Quantum King EA — 智能力量,为每一位交易者精炼 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 特别推出价格 直播信号:       点击这里 MT4版本:   点击此处 量子王者频道:       点击这里 ***购买 Quantum King MT5 即可免费获得 Quantum StarMan !*** 详情请私讯询问! 用精确和纪律来管理您的交易。 Quantum King EA 将结构化网格的优势和自适应 Martingale 的智能融入一个无缝系统 - 专为 M5 上的 AUDCAD 设计,专为希望实现稳定、可控增长的初学者和专业人士打造。 Quantum King EA 是针对 M5 时间范围内的 AUDCAD 对开发的全自动交易系统。 它将网格策略的结构与马丁格尔的自适应恢复逻辑相结合,形成了一个在所有市场阶段智能管理交易的系
Silent Exit MT5
Fajar Dicky Firmansyah
5 (7)
没有噱头。没有空洞的承诺。 Silent Exit 专为专注于单一目标的交易者打造: 稳定的表现 。  包含所有主要货币对:  EURUSD,USDCAD,USDJPY,NZDUSD,USDCHF,AUDUSD,GBPUSD 无论您是在努力通过 Prop 交易挑战 ,还是在管理客户资金,这款 EA 都能保持纪律性——并带来实际成果。 信号链接: https://www.mql5.com/en/signals/2388541 请记住,这是一个 100k 的 Darwinex Zero 账户,我并没有存入 100k,这个账户仅用于展示实时交易结果。 策略如何运作 成交量加速:   此功能可以检测成交量的快速变化,而这种变化通常预示着即将发生的突破。但这一次,我们加入了多个仅适用于主要货币对的指标。   策略如何运作 成交量加速:  与 Iron Stop 相同, 此功能可以检测成交量的快速变化,而这种变化通常预示着即将发生的突破。但这一次,我们加入了多个仅适用于主要货币对的指标。   正确的回测需要正确的配置! 联系我即可获取我的 .ini 文件 以及详细的配置说明。 注意: 目前该
Cepheus
Thierry Ouellet
5 (1)
LIMITED LAUNCH SPECIAL: 149 USD (Next Tier: 199 USD / Final Price: 399 USD) Price automatically increases by +50 USD every 10 licenses sold .  User manual Live signals Cepheus Loyalty Cepheus Discipline Cepheus Ultimate (both breakout engines Two Synergistic Engines. Zero Grid. Zero Martingale. Defined Risk. Cepheus is a dual-engine algorithmic trading system developed specifically for XAUUSD (Gold) . Instead of relying on a single trading model, Cepheus combines two independent strategies des
Quantum Athena X
Bogdan Ion Puscasu
5 (11)
更智能的控制,更精准的操控。 欢迎来到 Quantum Athena X——新一代专注于黄金交易的系统,它在 Quantum Athena 的精准性、效率和纪律性执行的基础上更进一步。 Quantum Athena X 基于与 Quantum Athena 相同的精简核心引擎和精心挑选的 6 种策略构建而成。每项策略都针对当前的黄金市场状况进行了单独优化和改进,而全新的强大自定义模式则允许交易者精确选择启用或禁用哪些策略。 对于喜欢即插即用体验的交易者,原有的优化配置仍然可用;而对于想要创建自己个性化策略组合的交易者,自定义模式则提供了更大的灵活性。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 折扣价   价格 。     每购买 10 件,价格将上涨 50 美元。最终价格为 1999 美元。 实时信号 IC Markets:       点击这里 Quantum A
Neo Delta
Marco Scherer
Neo Delta 是一款用于 MetaTrader 5 的自动化智能交易系统(EA),仅交易黄金(XAUUSD)。其决策基于成交量 delta 动量——即每根K线内买卖压力的平衡。机器学习过滤器会在开仓前审核每一个潜在入场点。 支持 我们团队分工明确:一部分负责开发,一部分负责客户服务。有关安装、设置及其他任何问题,请在购买后联系我们的版主 Zolia: https://www.mql5.com/zh/users/zolia 该 EA 运行四个独立模块,每个模块均可单独开启或关闭: 实时信号 在我们经过验证的 MQL5 信号中查看该 EA 的实时表现: 查看实时信号 → 5m Long — 5分钟图上的短线多头交易 20m Long — 20分钟图上的波段多头交易 5m Short — 5分钟图上的短线空头交易 20m Short — 20分钟图上的波段空头交易 每个仓位均由 EA 完整管理:动态或固定止损、止盈以及移动止损。内置新闻过滤器会在重要美元新闻前后暂停交易。图表上的面板随时显示当前状态、浮动与已实现盈亏,以及即将公布的新闻。 功能 四个可独立开关的交易模块(多头/空头,5
Lizard
Marco Scherer
4.22 (50)
什么是 Lizard? Lizard 是一款用于 MetaTrader 5 平台 XAUUSD(黄金)的全自动智能交易系统。它采用多策略摆动突破系统:识别图表上的关键结构位,并在计算得出的入场点位挂出停止订单。 不使用马丁格尔,不使用网格,不在亏损时加仓。 每笔交易都带有明确的止损和止盈,随后由多层退出系统全天候管理,无需人工干预。 支持 我们团队分工明确:一部分成员负责开发,一部分成员负责客户支持。购买后,安装、设置及其他任何问题请联系我们的版主 Zolia: https://www.mql5.com/zh/users/zolia 实盘信号 三个账户,三种风险设置,相同的交易逻辑。运行结果公开可查: Normal Standard: https://www.mql5.com/zh/signals/2372821 ECN High: https://www.mql5.com/zh/signals/2383392 ECN Armageddon: https://www.mql5.com/zh/signals/2386457 工作原理 Lizard 在一小时周期上持续扫描 XAUUSD 图
Zerqon EA
Vladimir Lekhovitser
3.47 (34)
实时交易信号 交易活动的公开实时监控: https://www.mql5.com/zh/signals/2372719 官方信息 卖家资料 官方频道 用户手册 安装说明和使用指南: 查看用户手册 Zerqon EA 是专为 XAUUSD 交易开发的自适应专家顾问。 该策略基于通过 ONNX 集成的 Deep LSTM 神经网络模型,使系统能够处理连续性的市场行为并以结构化方式分析价格动态。 该模型专注于识别黄金价格走势、波动性以及时间条件中的特定模式。 与传统固定信号不同,EA 通过训练后的神经网络框架分析市场,仅在内部模型识别到合适条件时才执行交易。 Zerqon EA 不会持续不断地进行交易。 某些时期可能完全没有任何交易,而在适合的 XAUUSD 市场阶段,系统可能会在较短时间内执行多笔交易。 每笔交易均带有预定义的 Stop Loss 和 Take Profit 参数。 同时还使用追踪止损机制来动态管理持仓。 该 EA 适用于偏好基于神经网络的黄金交易方式、重视执行控制以及接受可变交易频率的用户。 主要特点 不使用高风险交易技术,如马丁格尔 (M
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.4 (139)
更少交易。更好交易。稳定性高于一切。 • 实时信号 模式 1 实时信号 模式 2 Twister Pro EA 是一款专为 XAUUSD(黄金)M15 时间框架开发的高精度剥头皮智能交易系统。交易次数少——但每次交易都有目的。 每笔入场在开仓前须通过 5 个独立验证层,默认配置下胜率极高。 两种模式: • 模式 1(推荐)— 极高胜率,每周交易次数少。专为资金保护和纪律性交易而设计。 • 模式 2(短止损)— 止损幅度显著缩短,交易次数多于模式1。每笔亏损极小。适合希望在受控风险下增加市场曝光的交易者。 规格参数: 交易品种:XAUUSD | 时间框架:M15 最低入金:$100 | 推荐:$250 RAW SPREAD 账户必须使用 强烈推荐 VPS 无网格!每笔交易均设有止盈和止损! 推荐券商: Exness Raw | Vantage | Fusion Markets 购买后发送消息即可获得: 完整用户指南 专属奖励 过往业绩不代表未来结果。请理性交易。
Cortex IDX
Vladimir Mametov
4 (8)
这是一款专为 MetaTrader 5 平台打造的全自动智能交易系统(Expert Advisor,EA),专门针对 US30(道琼斯工业平均指数) 交易进行了深度优化。交易逻辑结合了美国股指的典型市场特征,包括趋势行情、盘中回调以及高波动阶段,能够自动完成信号识别、开仓、持仓管理和离场操作。 EA 的核心理念是让盈利单尽可能持续运行,同时严格控制亏损风险。盈利仓位可通过智能移动止损(Trailing Stop)持续跟随趋势;当持仓出现亏损且 M1(1 分钟)周期检测到反向信号时,系统可自动提前离场,以减少不必要的回撤。 https://www.mql5.com/en/signals/2376781 产品理念 本 EA 专为希望实现 US30 全自动交易的投资者设计,采用趋势跟随结合回调入场的交易策略,在市场已有明确方向时寻找更优的进场位置,而不是盲目追涨杀跌。 盈利订单可采用 移动止损 持续跟随行情,在锁定利润的同时尽可能捕捉更大的趋势;如果交易者更喜欢固定目标,也可切换至 固定止盈(Take Profit) 模式。 对于亏损订单,EA 会持续监测 M1 周期的价格变化。当市场出现明
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
Gold Bomb
Aleksandr Makarov
5 (1)
该智能交易系统基于我的  原创指标 ,没有任何  人工智能  或其他废话。 仅仅是指标组合、水平位和价格行为的结合。 不使用危险的交易方法, 适用于   XAUUSD M1  而且還有貨幣對! 始终设置   止损   和   止盈 。 实盘信号: https://www.mql5.com/en/signals/2388322 購買後請務必聯繫我,並將您的交易帳號發送給我以啟動該智慧交易系統!未經我許可,請勿自行使用! -------------------------------- Installation instructions:   Click 特别首发价格:当前价格仅对前 10 份有效。售出 10 份后,价格将上涨至  999$ 技术规格: 交易品种:   XAUUSD   时间周期:   M1 最低建议入金   200 $( 最好 500$) 杠杆:   1:500 账户类型:   任意 经纪商 :   任意经纪商,但最好点差较低 强烈建议使用 VPS 优势: 无马丁格尔 不使用危险的交易方法 每笔订单均设止损和止盈 在真实市场上回测结果稳定 对经纪商条件不敏感
Gold Snap
Chen Jia Qi
4.57 (23)
Gold Snap — 黄金快速利润捕捉系统 Gold Snap v2.1上线优惠:前10份(只剩7)无限许可证仅售599美元,并免费赠送一款内部EA供个人使用。售完或满7天即结束,以先达成者为准。原价999美元。 实盘信号: https://www.mql5.com/en/signals/2362714 实盘信号2: https://www.mql5.com/en/signals/2372603 实盘信号 3: https://www.mql5.com/en/signals/2379945 重要: 购买后,请通过MQL5私信联系我们,以获取用户指南、推荐设置、安装与使用说明、赠品EA领取信息及后续更新支持。您也可以在产品评论区留言,我们会主动与您联系。 https://www.mql5.com/en/users/walter2008 欢迎加入我们的 MQL5 频道,获取产品更新与交易见解。 https://www.mql5.com/en/channels/tendmaster 在 Gold House 的长期研发与实战验证中,我们进一步确认了突破策略在黄金市场中的有效性,也验证了我
Scalping Index Pro MT5
MQL TOOLS SL
5 (3)
Scalping Index Pro is a professional trading system designed specifically for fast and precise scalping on US30 and DE40 using the M1 timeframe . The system has been developed specifically for the unique behavior of major stock indices, focusing on short term price movements, rapid momentum changes, market volatility, and selective grid based trade management techniques to identify high probability trading opportunities . Scalping Index Pro is optimized for traders who prefer dynamic trading wit
Range Breakout EA with Range Filters
Jimmy Peter Eriksson
4.58 (24)
更新:下一价格:599 美元,最终价格:999 美元 如果您重视诚实和为真实交易而构建的真正交易系统,而不是一个看起来完美无瑕但最终可能导致账户爆仓的直线回测,那么这可能适合您。 无马丁格尔/无网格 22个月实时信号 +300% 实时增长 【实时信号】    |  【FTMO 结果】    |  【主投资组合】  |  【回测指南】 为什么 Range Breakout EA 如此稳定? Range Breakout EA 基于一种众所周知的市场行为:交易时段之间的波动性变化。 亚洲交易时段的波动性通常较低,形成一个狭窄的价格区间。伦敦交易时段开盘后,波动性增加,价格往往会突破该区间 并继续朝突破方向移动。 该系统会交易这种突破,并在当天晚些时候波动性开始减弱时平仓。 它不使用指标或固定时间框架,这有助于减少过拟合。系统内部使用突破过滤器来避免低质量的突破交易。 该策略在 XAUUSD、USDJPY、BTCUSD、US30 和 DE40 等货币对上表现尤为出色。 同时交易多个市场可以实现强大的分散风险能力。 加入社区! 公众社区:  点击这里! 请私信我并附上购
Swing Forge Gold
Hanzla Khalil
5 (4)
SwingForge Gold MT5 — Multi-Zone Breakout Engine 4 Copies left then the price will be increased to: $299 — Current Price: $249 If you’ve traded Gold (XAUUSD), you already know the problem: most automated EAs rely on dangerous grids, martingale, or cost-averaging that look great until one big trend wipes out the account. SwingForge Gold was built on the opposite philosophy: strict risk management and pure price action. It trades confirmed swing breakouts using pending stop orders. Every sin
The Gold Space
Ayush V Jain
5 (6)
LIVE SIGNAL REACHED NEW HIGH Live Signal on Vantage https: // www.mql5.com/en/signals/2378090 https: // www.mql5.com/en/signals/2378091 live signal is running mode/option 1 with autolot 2 % risk. Join telegram group   https://t.me/+UaALtDiYMb4xYTk1 Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 5, this EA capitalizes on high-probability volatility expansions using a precise,
SomaGold
Andrii Soma
5 (10)
SomaGold 是一款专为 MetaTrader 5 打造的多策略突破型智能交易系统(EA),仅适用于黄金(XAUUSD)。一张图表、一个 EA,32 套独立策略并行运行,构成单一、分散化的组合。 实时信号。 这是我在 MQL5 上发布的第一款 EA。为在上线时让更多人能够入手,我采用透明的阶梯定价模式: 首发价:100 USD 每售出 10 份拷贝,价格上涨 100 USD 早期购买者在产品生命周期内锁定最低价格。 理念 与其运行单一、容易过度拟合某一狭窄市况的设置,SomaGold 自带一套精选的 32 套预调策略,全部在同一黄金图表上的单个 EA 中并行运行。 每套策略拥有各自的 magic number、注释、时间周期、摆动识别参数、出场规则、新闻距离与手数步长。它们共享同一执行引擎但独立交易,因此您可在多个时间周期与突破宽度上获得真正的分散化,而无需管理大量图表。 组合构建 我进行了 48 次完全不同的优化: 首先,我在 2 个时间段上运行优化: 2018–2023 2020–2025 时间周期分为 4 组: D1、H12、H8、H4 突破宽度有三种变体: V1 Bro
作者的更多信息
TrianglePatternGannEA Pro v7.0 独立版 - 完整分析与优化指南 概述 TrianglePatternGannEA Pro v7.0 是一款先进的全方位专家顾问,它结合了甘氏三角形模式检测与智能反极端过滤系统。该EA完全独立运行,无需外部指标,使其成为自动化交易的效率和可靠性之选。 核心功能分析 1. 模式检测系统 甘氏三角形识别 EA识别由三个枢轴点(P1-P2-P3)形成的经典甘氏三角形模式: 看涨模式:低-高-低形态 看跌模式:高-低-高形态 关键检测参数: 左柱和右柱:定义枢轴点敏感度 点之间的最小柱数:确保模式有效性 P3 回撤范围:验证模式结构(38.2%至78.6%) 最小三角形高度:过滤不重要的模式 信号质量评分(1-5星): EA根据以下因素评估每个信号: 趋势对齐确认 成交量激增检测 RSI定位 最佳P3回撤比率(50-61.8%) 多时间框架确认 2. 智能反极端过滤器 v7.0 这是EA最具创新性的功能,旨在防止在危险的市场极端点进行交易。 基于结构的顶部/底部检测: 使用可配置的强度参数识别真实的摆动高/低 计算到最近极端点的距离百
FREE
REVERSAL DETECTION EA v1.2 - PROFESSIONAL MARKET REVERSAL TRADING SYSTEM CAPTURE MARKET TURNING POINTS WITH PRECISION AND CONFIDENCE In the dynamic world of financial markets, identifying reversal points before they fully develop can be the difference between consistent profitability and missed opportunities. The Reversal Detection EA v1.2 represents a sophisticated algorithmic trading solution engineered to detect, confirm, and execute trades at critical market reversal zones with institutio
Triangle Pattern Gann EA
Nguyen Van Kien
5 (3)
三角形态甘氏EA v3.4 - 像传奇交易大师W.D. Gann一样交易 驾驭几何价格形态和神圣比例的力量 准备好使用有史以来最强大的模式识别系统之一进行交易了吗?三角形态甘氏EA v3.4将W.D. Gann的传奇智慧带入现代算法交易时代。 这款EA的卓越之处是什么? 基于久经考验的甘氏方法论 W.D. Gann是历史上最成功的交易员之一,他运用几何形态和自然比例实现了超过90%的准确率。这款EA精准地自动执行三角形形态策略: 自动三角形检测 - 识别推动(看涨)和回调(看跌)形态 黄金分割目标 - 使用斐波那契比例(61.8%、100%、161.8%)进行最佳入场和出场 摆动点分析 - 先进的枢轴点检测算法,找到关键的市场转折点 实时形态识别 - 扫描每根K线,寻找高概率的交易设置 高级资金管理 - v3.4 的优势 以美元计价的智能仓位管理 与使用点数或点数的基本EA不同,v3.4以美元为单位进行计算——这才是对您的账户至关重要的货币: 盈亏平衡系统 当仓位盈利达到10美元时激活(可自定义) 自动锁定1美元盈
FREE
Radar Signal EA
Nguyen Van Kien
RadarSignal EA — Multi-Timeframe S/R Breakout & Range Engine with Grok AI Co-Pilot RadarSignal EA is a fully automated trading system built around a multi-timeframe Support/Resistance zone engine. Instead of firing market orders on a simple crossover, it maps out real S/R zones across three chained timeframes (e.g. M15 → M30 → H1, or higher, depending on your chart period), waits for price to approach those zones at the right distance — not too early, not too late — and then chooses between a Li
FREE
Legacy of Gann Multi-AI Pro v6.7 - Professional Gold Trading Expert Advisor Revolutionary AI-Powered Trading System for MT5 Transform your XAUUSD (Gold) trading with the most advanced multi-AI Expert Advisor available. Legacy of Gann Multi-AI Pro v6.7 combines classical Gann pattern recognition with cutting-edge artificial intelligence from multiple providers, creating a powerful automated trading solution that adapts to market conditions in real-time. CORE FEATURES Multi-AI Integration with A
FREE
X AI Gold
Nguyen Van Kien
(X AI Gold) Grok Gold EA: Revolutionary XAUUSD Trading with xAI Artificial Intelligence & Real-Time Macroeconomic Calendar Greetings to traders and developers on MQL5, The gold market (XAUUSD) has always been one of the most fiercely contested battlefields in the Forex world. Extreme volatility, high liquidity, and absolute sensitivity to macroeconomic news make traditional Expert Advisors (EAs) based on rigid technical rules (if-else) very susceptible to Stop Loss triggers when the market cha
FREE
# CopyTele WebRequest EA - The Ultimate Telegram Signal Copier Are you looking for a reliable, ultra-fast, and secure way to copy signals directly from Telegram to your MetaTrader 5 terminal without installing complex software, extensions, or risky external DLLs?  **CopyTele WebRequest EA** is a professional and fully automated utility that fetches trading signals from PUBLIC Telegram channels using standard HTTP requests (WebRequest) directly from t.me/s/ websites. It is engineered with robu
FREE
Radar Signals
Nguyen Van Kien
RadarSignal XAUUSD — Multi-Timeframe Radar Dashboard for Gold Trading Stop guessing where Gold is heading. Let the Radar scan it for you. RadarSignal XAUUSD is a multi-timeframe technical dashboard built specifically for XAUUSD (Gold) traders who want a single, clean, visual answer to three questions every trade requires: Where do I enter? Where is my safe invalidation zone? Where is my realistic target? Instead of flipping between five indicators on three charts, RadarSignal fuses ADX, RSI, CCI
FREE
GoldEasy MT5 - Professional DCA & Hedging Expert Advisor for XAUUSD Overview GoldEasy MT5 is a sophisticated automated trading system designed specifically for gold trading (XAUUSD). This Expert Advisor combines intelligent entry signals with advanced Dollar Cost Averaging (DCA) and optional hedging strategies to manage risk while maximizing profit potential in the volatile gold market. Key Features Smart Entry System Fibonacci Bollinger Bands (FBB) with 1.618 extension for precise overbought/ov
FREE
Harmonacci Pattern EA — Review & Parameter Guide Overview Harmonacci Pattern EA is a rule-based Expert Advisor for MetaTrader 5 that automates harmonic (XABCD) price pattern trading. It scans price swings using a faithful port of MetaQuotes’ own ZigZag indicator, matches the swing points against 19 harmonic pattern templates (Fibonacci ratio tables), constructs a Potential Reversal Zone (PRZ) for each candidate, and only opens a trade after price breaks out of that zone in the expected direction
FREE
Radar Signal MT4
Nguyen Van Kien
RadarSignal XAUUSD — Multi-Timeframe Radar Dashboard for Gold Trading Stop guessing where Gold is heading. Let the Radar scan it for you. RadarSignal XAUUSD is a multi-timeframe technical dashboard built specifically for XAUUSD (Gold) traders who want a single, clean, visual answer to three questions every trade requires: Where do I enter? Where is my safe invalidation zone? Where is my realistic target? Instead of flipping between five indicators on three charts, RadarSignal fuses ADX, RSI, CCI
FREE
PatternZoneAutoTrading DCA Pro - Complete Analysis & Marketing Guide Professional EA Analysis Core Functionality Overview PatternZoneAutoTrading DCA Pro v3.00 is a sophisticated MetaTrader 5 Expert Advisor that combines advanced candlestick pattern recognition with dynamic support/resistance zone analysis and an intelligent Dollar-Cost Averaging (DCA) strategy. This EA represents a comprehensive automated trading solution designed for both novice and experienced traders. Key Technical Features 1
FREE
Reversal Detection Pro - Professional Trading Indicator REVERSAL DETECTION PRO Advanced Market Turning Point Indicator for MetaTrader 5 EXECUTIVE SUMMARY Reversal Detection Pro is a sophisticated algorithmic trading indicator designed for MetaTrader 5 that identifies high-probability market reversal points with exceptional precision. Built on advanced ZigZag methodology combined with dynamic ATR-based calculations and multiple EMA filters, this professional-grade tool provides traders with acti
高级甘氏形态指标 - 彻底改变您的交易方式 揭秘胜率高达 70-95% 的专业交易员不愿让您知道的秘密交易系统! 您是否厌倦了那些会重绘、发出错误信号或让您对入场和出场时机感到困惑的指标?高级甘氏形态指标将彻底改变这一切。该指标基于 W.D. Gann 传奇的 123 形态理论——正是这套系统帮助他实现了超过 90% 的交易准确率——将百年智慧融入现代自动化交易。 为什么高级甘氏形态指标能彻底改变交易格局 大多数指标的问题: 错误信号过多 没有清晰的入场/出场点 目标位模糊不清 频繁重绘 没有真实的胜率数据 使用复杂 高级甘氏形态指标的解决方案: 初步目标位准确率高达 95% 主要盈利区域胜率高达 70-80% 清晰的买入/卖出箭头 自动计算精准的止盈/止损位 实时绩效统计 设置后即可自动运行 颠覆性功能 1. 自动识别 123 形态 无需手动绘制!该指标可自动识别图表上 W.D. Gann 强大的 123 形态。当出现高概率交易机会时,您将立即知晓。 您将获得: 自动
Professional Analysis: QuantumPriceAdvancedEA - A Critical Evaluation Executive Summary The QuantumPriceAdvancedEA represents an attempt to integrate quantum computing concepts into forex trading automation. While the implementation demonstrates technical competence in MQL5 programming, this analysis reveals significant discrepancies between the marketed quantum computing features and the actual algorithmic implementation. This review provides an objective assessment from both technical and prac
FREE
GANN TRIANGLE PRO v4.0 - OPTIMIZATION ANALYSIS REPORT CURRENT VERSION ASSESSMENT (v3.8) Strengths Feature Evaluation Swing Point Detection Clear logic using Left/Right bars Fibonacci/Gann Ratios Properly applied 61.8%, 100%, 161.8% Dashboard Real-time updates with visual indicators Code Structure Clean, maintainable architecture Critical Limitations Issue Impact Win Rate Effect No Trend Filter Signals against major trend -20% to -30% Missing Volume Confirmation False breakouts not filt
FREE
SmartRecoveryEA Ultimate: Revolutionizing Forex Gold Trading with Intelligent Recovery and Risk Mastery Introduction: Elevate Your Gold Trading Game in the Volatile Forex Arena In the fast-paced world of Forex trading, particularly on the gold market (XAUUSD), where volatility reigns supreme and price swings can make or break fortunes in minutes, having a robust Expert Advisor (EA) is not just an advantage—it's a necessity. Enter SmartRecoveryEA Ultimate v1.0 , a cutting-edge MT5 EA meticulously
FREE
三角形形态加恩EA专业版 v5.2.5 - 专家分析 专业概述 经过彻底的源代码分析,三角形形态加恩EA专业版 v5.2.5 被评估为一款专业构建的专家顾问(Expert Advisor),具有坚实的代码架构和科学严谨的交易逻辑。 显著优势 1. 智能形态识别系统 使用摆动点(Swing Point)算法识别枢轴点(P1, P2, P3)。 计算斐波那契回撤比率(0.382–0.786)以验证形态。 具备基于最小高度和柱状图数量的形态过滤功能。 2. 多重过滤系统 - 防止买在顶部/卖在底部 EA集成了8个关键过滤层: 趋势过滤器:EMA、多时间框架(Multi-Timeframe)、ADX - 确保趋势跟随交易。 RSI过滤器:当RSI超过65(超买)时避免买入,或当RSI低于35(超卖)时避免卖出。 极端距离过滤器:检查当前价格与近期高点/低点在M15、H1、H4时间框架上的距离。 成交量确认:仅当成交量超过平均值时才入场。 价格行为质量:检测拒绝影线和反转蜡烛图。 动量过滤器:在入场前验证价格动量。 风险回报比:最小1.5:1(可自定义)。 动态点差过滤器:根据波动性自动调
Legacy of Gann EA
Nguyen Van Kien
LEGACY OF GANN EA - PROFESSIONAL TRADING SYSTEM Unlock the Power of W.D. Gann's Trading Secrets Legacy of Gann EA is a professional automated trading system that brings the legendary Pattern 1-2-3 strategy to MetaTrader 5. Based on the time-tested principles of W.D. Gann, this EA identifies high-probability trading opportunities with mathematical precision. KEY FEATURES Advanced Pattern Recognition Automatic Pattern 1-2-3 Detection using ZigZag indicator Identifies impulse moves and co
FREE
Legacy of Gann Enhanced EA v4.0 AI-Powered Trading System with Groq Integration Overview Legacy of Gann Enhanced EA is a sophisticated MetaTrader 5 Expert Advisor that combines classical Gann trading principles with cutting-edge artificial intelligence. This revolutionary trading system uses the proven Pattern 123 methodology enhanced with Groq AI analysis and economic news filtering to identify high-probability trade setups. What Makes This EA Special? AI-Powered Decision Making - Integ
FREE
Triangle Pattern Gann v3.1 - Complete Feature Documentation Core Functionality OverviewTriangle Pattern Gann v3.1 is a sophisticated MetaTrader 5 indicator that combines W.D. Gann's geometric trading principles with advanced triangle pattern recognition to deliver actionable trading signals. Primary Features1. Triangle Pattern Detection SystemAscending Triangle Recognition Function: Automatically identifies bullish continuation patterns Detection Criteria: Flat horizontal resistance line
Professional Analysis: AI Smart Trader v6.0 EA - A Comprehensive Technical Review Executive Summary After extensive evaluation of the AI Smart Trader v6.0 Expert Advisor, I can confidently say this represents a sophisticated approach to automated forex trading that addresses one of the most critical challenges traders face: recovery from drawdown situations. Having analyzed hundreds of trading systems over my career, this EA stands out for its intelligent state machine architecture and multi-lay
PZ PENTA-O PRO EA AUTOTRADER - PROFESSIONAL HARMONIC PATTERN TRADING SYSTEM PRODUCT OVERVIEW PZ Penta-O Pro EA AutoTrader is an advanced automated trading Expert Advisor engineered for MetaTrader 5 platform, specializing in the detection and execution of six classical harmonic pattern formations. This sophisticated system combines advanced pattern recognition algorithms with professional-grade money management and comprehensive position management capabilities to deliver consistent trading oppo
Pattern123
Nguyen Van Kien
Pattern123 EA — Reversal Trading on the Classic "1-2-3" Price Formation Introduction The "1-2-3" pattern is one of the oldest and most reliable reversal formations in technical analysis: it marks the point where an existing trend runs out of steam and a new one begins. Pattern123 EA automates the detection of this formation and manages the full trade lifecycle around it — from signal recognition to entry, stop-loss placement, take-profit, and an optional loss-recovery mechanism for advanced tra
筛选:
无评论
回复评论