Trend Wave Catcher

5
  • 专家
  • Mitsuaki Mine
    Mitsuaki Mine
    大家好!
    我是一名拥有20年外汇交易经验的交易者。
    接触MetaTrader 4 (MT4) 平台已有15年之久,并在同期开始了我的自动交易(EA交易)之旅,至今也已15年。
    在EA的开发和编写方面,我也有12年的经验积累。
    个人比较偏爱的货币对是:美元/日元 (USDJPY),英镑/日元 (GBPJPY) 和 欧元/美元 (EURUSD)。
    很高兴来到MQL5社区,希望能够在这里与各位交易同好和开发者们多多交流,共同学习进步!
  • 版本: 1.0
EA "Trend Wave Catcher" 简介 EA "Trend Wave Catcher" 简介

一款基于移动平均线的多功能自动交易程序

前言:关于此EA

"Trend Wave Catcher" 是一款智能交易系统(EA),其设计初衷是为了让外汇自动交易的新手或初学者也能轻松理解和使用。
这款EA的核心目标是捕捉并顺应市场的主要趋势进行交易。然而,它最大的特点在于其高度的“可定制性”,允许用户根据自己的交易理念,精细地调整各项设置。

推荐的货币对与时间周期

虽然这款EA可以在多种货币对和时间周期上运行,但在开发和优化阶段,它主要针对美元/日元 (USD/JPY)1小时 (H1) 图表进行了调整。如果您是第一次使用,我们强烈建议您从这个组合开始尝试。

接下来,我们将一步步详细解释这款EA的工作原理及其提供的各项功能。

EA的基本工作原理 (交易逻辑)

这款EA使用了“移动平均线 (Moving Average)”这一被众多交易者广泛应用的基础技术指标。

入场 (何时买入或卖出)

它会监控两条线:一条反映近期价格动态的短期移动平均线 (Short MA),以及一条显示更广泛趋势的长期移动平均线 (Long MA)。当短期MA从下方上穿长期MA时,它会判断为上升趋势可能开始,并建立一个买入订单。反之,如果短期MA从上方下穿长期MA,它会判断为下降趋势可能开始,并建立一个卖出订单

出场 (何时平仓)

在平仓时,它会使用另一组独立的两条移动平均线。当这组线表明当前趋势的动能正在减弱时,EA会自动平掉仓位。这有助于锁定利润或限制潜在的亏损。

通过这种将入场和出场规则分开设置的方式,您可以构建出更加灵活的交易策略。

主要参数(设置项)详解

这些重要的设置项决定了EA的“性格”。通过调整这些数值,您可以详细定制EA的行为。

1. 基础设置

这些设置控制着EA最基本的操作。

LotsMode (手数计算模式) 此选项决定了交易手数(交易量)的计算方式。
MODE_FIXED: 始终使用固定的手数进行交易。
MODE_RISK_PERCENT: 根据您愿意承担的账户资金风险百分比,自动计算手数。此模式非常适合希望实现自动化风险管理的用户。 Lots (手数) 如果您选择了 "MODE_FIXED" 模式,在此处指定要交易的手数。例如:0.1 RiskPercent (风险百分比) 如果您选择了 "MODE_RISK_PERCENT" 模式,在此处指定单笔交易您愿意承担的账户资金亏损百分比。例如:1.0 (代表账户资金的1%)。 MaxRiskLot (最大风险手数) 这是自动计算手数模式下的一项安全设置。EA建立的仓位手数绝不会超过您在此处设定的数值,从而防止因意外计算而产生过大的仓位。 MagicNumber (魔术号/EA识别码) 一个独特的数字,帮助EA识别它自己的交易。这对于区分EA的交易与其它EA或您的手动交易至关重要。请务必为每个EA设置不同的魔术号。 Slippage (滑点) 指定您能接受的订单请求价格与最终成交价格之间的最大差异(以点为单位)。这有助于在市场快速波动时,避免以不利的价格成交。

2. 止损/止盈设置

这是管理交易风险的关键部分。

SLTP_Mode (止损止盈模式) 选择如何确定止损 (SL) 和止盈 (TP) 水平。
SLTP_FIXED_PIPS: 以点 (pips) 为单位设置固定的止损和止盈距离。
SLTP_ATR_BASED: 根据市场波动性(使用ATR指标)自动调整止损和止盈的宽度。 StopLoss_pips / TakeProfit_pips (止损点数 / 止盈点数) 如果您选择了 "SLTP_FIXED_PIPS" 模式,在此处以点为单位设置止损和止盈的距离。 ATR_SL_Multiplier / ATR_TP_Multiplier (ATR止损乘数 / ATR止盈乘数) 如果您选择了 "SLTP_ATR_BASED" 模式,在此处设置ATR值的乘数。这个乘数将决定止损/止盈的宽度。例如,将止损乘数设为1.5,止盈乘数设为3.0,意味着目标盈亏比为1:2。

3. 移动止损设置

一项旨在帮助您最大化利润的功能。

TrailingType (移动止损类型) 选择移动止损的类型。当价格朝有利方向移动时,它会自动移动止损位以锁定利润。
TRAILING_NONE: 禁用此功能。
BREAKEVEN_ONLY (盈亏平衡): 一旦达到一定的利润,就将止损移动到开仓价,确保这笔交易不会亏损。
TRAILING_ATR (ATR移动止损): 根据市场波动性,以一个最佳的距离跟随价格移动止损,有助于避免过早被止损离场。 BreakEvenPips (盈亏平衡触发点数) 如果您使用了 "BREAKEVEN_ONLY" 等类型,此设置用于规定需要达到多少点的利润才能激活该功能。

4. 均线交叉策略设置 (入场和出场规则)

这是EA交易逻辑的核心部分。

open_ma_cross_shortPeriod / open_ma_cross_longPeriod (开仓均线周期) 设置用于交易入场的短期和长期移动平均线的周期。这些数值的组合决定了入场信号的灵敏度。 close_ma_cross_shortPeriod / close_ma_cross_longPeriod (平仓均线周期) 设置用于交易出场的移动平均线的周期。将其与入场规则分开设置,可以实现更灵活的策略(例如:谨慎入场,但快速出场)。

5. 过滤器设置 (跳过交易的规则)

这些是“守门员”功能,用于避免在不利的市况下进行交易。

UseMAFilter (MA位置过滤器) 如果设为 "true",EA将避免进行任何与主要趋势(由一条独立的长期均线,如200周期均线决定)相悖的交易。 UseVolatilityFilter (波动性过滤器) 如果设为 "true",当市场过于平静(低波动性)或过于混乱(高波动性)时,EA将暂停交易。 Min_StdDev_Pips / Max_StdDev_Pips (最小/最大标准差) 与波动性过滤器配合使用,这些设置定义了EA进行交易所需的价格波动的最小和最大范围(以点为单位)。 UseTimeFilter / UseDayOfWeekFilter (时间/星期过滤器) 如果设为 "true",您可以将交易限制在每周的特定日期或特定时间段内。这对于避开某些市场时段或在周末暂停交易非常有用。

结语

"Trend Wave Catcher" 是一款建立在基本趋势跟踪策略之上,并结合了许多实用功能的EA。
虽然它有很多设置项,但每一项都基于外汇交易中的一个重要概念。
我们建议您从模拟账户开始,使用推荐的美元/日元1小时图表,并尝试不同的设置,观察EA的行为如何变化。这将帮助您找到最适合自己交易风格的使用方式。

评分 3
Nezo Eliot
1338
Nezo Eliot 2025.12.19 02:18 
 

Soweit passt alles mit dem Robot, teste seit 1 Woche mit meinem eigenem Gold set . Danke danke

acer56
196
acer56 2025.06.24 06:38 
 

Der ea arbeitet bisher fehlerfrei und die backtests sehen gut aus.

推荐产品
Trend Analizer Bot
Pavel Predein
4.67 (3)
Automatic trading Advisor .This is a free version of the expert Advisor "Trend Analyzer Pro" https://www.mql5.com/ru/market/product/42792.В the robot is based on 2 strategies: at the intersection of moving averages and Bollinger bands indicator .In the paid version, three strategies are available, which increases profitability several times .Designed for the EURUSD H1 currency pair.It is possible to use it on other tools after optimization.Test only on tick data. ** Does not use such dangerous
FREE
Aurum Trend Scout
David Sanchez Clavero
Aurum Trend Scout — Aurum Trend Engine 免费LITE版 Aurum Trend Scout 是 Aurum Trend Engine 智能交易系统的 免费版本 。在H1时间框架上交易黄金(XAUUSD),使用基于Parabolic SAR + 布林带宽度比率的趋势跟踪策略,以BUYSTOP订单在日最高价突破时入场。 此LITE版本包含完整的策略逻辑和基于ATR的止损。使用固定手数,不包含FULL版本中的动态资金管理。 验证性能(真实数据,XAUUSD H1,2014-2025) 点差 20 点: 盈利因子 1.32 | 胜率 63.65% | 最大回撤 2.22% | 净利润 $11,363 | 1,004 笔 点差 30 点: 盈利因子 1.25 | 胜率 62.60% | 最大回撤 2.40% | 净利润 $9,378 | 1,016 笔 LITE版功能 完整策略逻辑(与FULL版相同) 基于ATR的止损 仅做多 — 无马丁格尔,无网格 11年超过1,000笔交易 LITE版限制 仅固定手数(无动态资金管理) 无追踪止损 升级到 Aurum T
FREE
Free automatic fibonacci
Tonny Obare
4.68 (50)
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
PZ Heiken Ashi EA
PZ TRADING SLU
4.64 (11)
This EA trades using the Heiken Ashi Smoothed Indicator. It offers many trading scenarios and flexible position management settings, plus many useful features like customizable trading sessions, a martingale and inverse martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise It implements three different entry strategies Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5
FREE
Zigzag Extremum points
Oleg Popov
4.81 (32)
New version 8.00 is available. In this version, I tried to take into account the wishes of the user. Each of you can also take part in the improvement of this advisor. In the default settings, the adviser opens trades when the extremum point is broken       standard indicator       Zigzag. When the upper point of the zigzag extremum is broken, it opens a buy deal, and when the lower point of the zigzag extremum is broken, it opens a sell deal. In addition to the standard ZigZag indicator, which
FREE
Macd Martin
Roman Yablonskiy
2.5 (2)
Double Breakout   is an automatic expert advisor with two separate strateges that uses martingale. The MACD indicator with adjustable parameters is used as inputs for each flow of orders. The specified takeprofit and stoploss levels are used to exit the position.  General recommendation The minimum recommended deposit is 1000 cents. Spread is recommended not more than 3 points. It is better to use trend currency pairs. The martingale parameter can be set from 0.1 to any value. When martingale i
FREE
Long Waiting MT4
Aleksandr Davydov
Expert description Algorithm optimized for Nasdaq trading The Expert Advisor is based on the constant maintenance of long positions with daily profit taking, if there is any, and temporary interruption of work during the implementation of prolonged corrections The Expert Advisor's trading principle is based on the historical volatility of the traded asset. The values of the Correction Size (InpMaxMinusForMarginCallShort) and Maximum Fall (InpMaxMinusForMarginCallLong) are set manually. Recomme
FREE
PZ Goldfinch Scalper EA
PZ TRADING SLU
2.72 (43)
这是我著名的剥头皮机Goldfinch EA的最新版本,它是十年前首次发布。它以短期内突然出现的波动性扩张为市场提供了头条:它假设并试图在突然的价格加速后利用价格变动的惯性。这个新版本已经过简化,使交易者可以轻松使用测试仪的优化功能来找到最佳交易参数。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 简单的输入参数可简化优化 可定制的贸易管理设置 交易时段选择 工作日选择 金钱管理 谨防... ick牛黄牛是危险的,因为许多因素都会破坏收益。可变的点差和滑点降低了交易的数学期望,经纪人的低报价密度可能导致幻像交易,止损位破坏了您获取利润的能力,并且网络滞后意味着重新报价。建议注意。 回溯测试 EA交易仅使用报价数据。请以“每笔交易”模式回测。 它根本不使用HLOC(高-低-开-关)数据 交易时间无关紧要 为了获得更好的性能,请为您希望在每个刻度线模式下交易的每个交易品种运行云优化。稍后分享! 输入参数 触发点:触发点差所需的价格变动。 (预设= 10) 最小时间窗口:价格波动发生的最短时间。 (默认= 3) 最长时间窗口:价格波动发生的最长时间。
FREE
Simple RSI Forex Trading Strategy
Victor Manuel Valderrama Zamora
2.5 (2)
Diversify the risk in your trading account by combining our Expert Advisors. Build your own custom trading system here:   Simple Forex Trading Strategies The expert advisor opens trades when RSI indicator enter in oversold or overbought areas. The Stop Loss, Take Profit, and Trailing Stop are calculated based on the ATR indicator. The recommended currency pair is EURGBP and the recommended timeframe to operate and to do backtests is H4. This Expert Advisor can be profitable in any TimeFrame an
FREE
Forex Fraus Dobby
Dmitriy Zaytsev
3.67 (3)
The Expert Advisor of the Forex Fraus family, the system is designed for scalping the EUR/USD pair on the M1 timeframe (for five digit quotes), and adapted for the accounts with fast execution of orders. Operation Principle Buys at the extreme Lows and sells at the extreme Highs of the Stochastic indicator values. When a signal is received the orders are opened by injection, using tick data. Positions are closed by Trailing Stop Not closed positions are closed at the opposite trade Built-in adj
FREE
EA Scalping Expert
Gerard Valldosera Gomez
3 (1)
This is a fully automated scalping Expert Advisor that can be run successfully using EURUSD currency pair at H1 timeframe. This EA can't run in the same account. If you want an Expert Advisor that trades daily this is not because it requires patience to wait for a few days or weeks on the right opportunity for it to trade. It takes advantage of the volatility of the price movement.
FREE
Proftrader Free
Alexander Nikolaev
4 (3)
This Expert Advisor analyzes the last candles and determines whether there will be a reversal or a large correction. Also, the readings of some indicators are analyzed (their parameters can be adjusted). Is a free version of Proftrader . Unlike the full version, in the free version of the adviser the initial lot cannot be higher than 0.1, trading pair only EURUSD and also it has fewer configurable parameters. Input parameters Lots - lot size (at 0, the lot will be calculated from the percentage
FREE
PZ Ichimoku EA
PZ TRADING SLU
4.27 (15)
Trade the Ichimoku Kinko Hyo Indicator with complete freedom using a powerful and flexible EA. It implements many entry strategies and useful features, like customizable trading sessions and a martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products   |  Get Help ] Easy to use and supervise It implements several entry conditions Customizable break-even, SL, TP and trailing-stop settings Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Implements
FREE
MACD Trader FREE
Konstantin Nikitin
1 (1)
This is an automated Expert Advisor that trades using the MACD and Envelopes indicators. The free version has the following limitations. No panel for opening orders. The trading is limited to the EURUSD currency pair and similar. Orders can only be opened with the minimum lot, no more than 5 orders can be opened in the same direction, to a total of 10 orders. Pause after closing of all orders is 6000 minutes. During the analysis, no more than 50 orders are added to the database and 15 bars are c
FREE
Introductory Pricing for one month Brute force trader is specially designed to find the best entry point and exit point with the regular tested and proven indicators. The EA will automatically analyse the market and will follow trends with the right entry exit points. Since the timeframe it is using is 30 minutes, the chances that you are stuck into a long trade is very low. Thought it does not use stoploss but it has the
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
Harvest FX
Sayan Vandenhout
4.56 (9)
Harvest FX USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $30000 a
FREE
Wise Men Indicator demo
Bohdan Kasyanenko
3 (2)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligator
FREE
Seine
Andrey Boytsov
3.5 (2)
This EA does not place pending orders, but forms a virtual grid according to the settings. The EA showed maximum efficiency on a pair of EURJPY. The work of the adviser can be seen on the information panel. For stable work on a cent account you need at least $ 600. With such a deposit, the EA withstands recoilless movement of the price of 4000 pips and does not lose the starting depositю
FREE
EA Gap Catcher
Mikita Kurnevich
5 (3)
Read more about my products EA 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
PZ Fractal Trader EA
PZ TRADING SLU
4.46 (13)
This EA trades untested fractals using pending orders. It offers many trading behaviors and flexible position management settings, plus many useful features like customizable trading sessions and a martingale mode. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Easy to use and supervise It implements 4 different trading behaviors Customizable break-even, SL, TP and trailing-stop Works for ECN/Non-ECN brokers Works for 2-3-4-5 digit symbols Trading can
FREE
Raven
Dmitriy Prigodich
5 (1)
"Raven" is an expert scalper who does not use dangerous strategies in his work. It trades at the extremes of the pullback, according to the trend. Channel scalping means confidence, reliability and minimal risks. The Expert Advisor implements all types of stops from the percentage of the balance to the signal stop, so you can always control your balance and not worry. It is recommended to use a signal stop - this will optimize losses and increase profits. The first 10 copies are priced at $ 10
FREE
Эксперт  MACD_LevelTrader создан для торговле валютной пары XAUUSD. Данная версия это наработки того, что можно извлечь  из  индикатора MACD и Moving Average.   Важно перед тестированием изменить настройку с 1000 на 5000                       Offset in points UP from SMA200 for sell            5000                       Offset in points DOWN from SMA200 for buy        5000   Тайм фрейм  М5. Два варианта логики, П араметр  true=вход по уровню  MACD + SMA200, false=вход по MACD  Тестируйте на демо
FREE
Goldfrenzy FX
Sayan Vandenhout
Gold Frenzy FX   USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $2
FREE
Succubus
Dmitriy Prigodich
3 (5)
淫妖是一个普遍的专家顾问。 它的主要优点是最高的输入精度,90%的交易及以上。 专家顾问参数根据用户需要的功能分为类别。 所有功能都可以禁用。 Ea交易旨在分散中小型存款。 主: TakeProfit-以盈利结束交易的点数 止损-关闭亏损交易的点数 滑点-滑点 魔术顾问ID 手数-交易量 动态手数设置: 动态-启用/禁用事务量的动态计算 风险-风险系数。 布洛克马丁*盖尔经典 每个方向一次只能开一笔交易。 在亏损的情况下,下一个交易将是一个交易量乘数。 马丁-启用/禁用鞅 乘数马丁-手数乘数 淫妖专家顾问也可以构建网格。 Setka-启用/禁用网格 距离Setka-网格中订单之间的距离 乘数Setka-乘数 当然,不是没有顾问拖网的存在。 如果需要,您可以启用它,如果你不使用网格。 智能止损 智能步停止-束缚步 有一个按时交易的功能。 如果00:00和23:59被设置为默认值,则禁用它。 开始-交易开始时间 交易结束 交易之间的停顿是必要的,这样当我们收到一个信号时,我们只交易一次。 Pause_orders-启用/禁用订单之间的
FREE
PZ MA Crossover EA
PZ TRADING SLU
3.88 (25)
此 EA 使用移动平均线交叉进行交易。它提供完全可定制的设置、灵活的头寸管理设置,以及许多有用的功能,如可定制的交易时段以及鞅和逆鞅模式。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 易于使用和监督 完全可定制的移动平均设置 它实现了两种不同的交易行为 可定制的盈亏平衡、止损、止盈和追踪止损 适用于 ECN/非 ECN 经纪人 适用于 2-3-4-5 位符号 交易可以符合 NFA/FIFO 标准 交易可以在相反的信号上关闭 实现鞅和逆鞅特征 按工作日和小时过滤交易 内置资金管理 EA 实现了四种不同的行为: 常规:在看涨交叉时买入,在看跌交叉时卖出 反向:在看涨交叉时卖出,在看跌交叉时买入 只买:看涨交叉点买入,不考虑看跌交叉点 只卖:在看跌交叉时卖出,不考虑看涨交叉 此外,它还实现了四种不同的资金管理模式: 手动交易手数:EA 将在每笔交易中交易固定手数 自动计算手数:EA 将在每笔交易中承担账户的 % 风险 Martingale:交易失败后,EA 将手数翻倍 逆鞅:交易获胜后,EA 将手数翻倍 输入参数 交易方向 - 按方向过滤交易:多头、空头或两者
FREE
Free Spike Finder MT4
Pier Gaetano Novara
3 (2)
Same behavior of https://www.mql5.com/en/market/product/25552 but fixed lot 0.01 The EA waits for a spike according to a specific logic and opens a position in spike direction setting stop loss and take profit. When positions are in profit they are managed with smart trailing mechanism based also on elapsed time from opened position. It works with 5-digit and 4-digit broker. Must be used on the M1 chart. Does not need historical data. It does not use Martingale Grid Hedge Parameters spikeFilte
FREE
Vik Standart
Ivan Kopchuk
4.33 (6)
Features: 1. Your constructor strategies. 2. Large selection of standard indicators. 3. Exact market entry according to your strategy. 4. Slip filter. 5. Support for four and five characters. 6. Trend trading. 7. Trading in flat. 8. Minimum deposit. 9. Aggressive or quiet trade. 10. Limit the lot. 11. Position tracking. 12. Restoring balance after loss. Input parameters    Lot - fixed lot size.    StopLot - lot restriction.    UseVxod - enable / disable login pattern.    UseStop -
FREE
SR Breakout EA MT4 Launch Promo: Depending on the demand, the EA may become a paid product in the future. Presets:  Click Here Key Features: Easy Installation : Ready to go in just a few steps - simply drag the EA onto any chart and load the settings. Safe Risk Management: No martingale, grid, or other high-risk money management techniques. Risk management, stop loss, and take profit levels can be adjusted in the settings. Customizable Parameters: Flexible configuration for individual trading pr
FREE
Bollinger with WPR demo
Alexander Nikolaev
4.33 (3)
This Expert Advisor is the free version of "Bollinger with WPR scalper", which is based on the Bollinger bands and Williams' Percent Range indicators. Limitations of the free version: lot is fixed to 0.01, only the EURUSD currency pair is supported, trading time cannot be selected, trailing stop is not available. Nevertheless, it can make quite a lot of deals, so you do not have to wait for positions to be opened (with the appropriate settings and timeframes below H1). The EA can be used on time
FREE
该产品的买家也购买
The Gold Reaper MT4
Profalgo Limited
4.62 (34)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal LATEST MANUAL 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓
Scalping Robot Pro MT4
MQL TOOLS SL
5 (11)
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 tra
Big Forex Players MT4
MQL TOOLS SL
4.72 (43)
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
Quantum King MT4
Bogdan Ion Puscasu
5 (5)
量子之王EA——智能力量,专为每位交易者打造 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 特价上市 实时信号:       点击这里 MT5版本:   点击此处 量子之王频道:       点击这里 ***购买 Quantum King MT4,即可免费获得 Quantum StarMan!*** 详情请私信咨询! 规则   你的交易精准而自律。 量子之王 EA     将结构化网格的优势和自适应马丁格尔策略的智能性融合到一个无缝系统中——专为 M5 上的 AUDCAD 而设计,适合希望实现稳定、可控增长的初学者和专业人士。 量子之王 EA     是一个为澳元/加元货币对在 M5 时间框架上开发的全自动交易系统。 它将网格策略的结构与马丁格尔策略的自适应恢复逻辑相结合,形成了一个能够智能管理所有市场阶段交易的系统。 专为易用性和一致性而设计   量子王
Gold Trade Pro
Profalgo Limited
4.61 (23)
推出促銷活動! 僅剩幾本,449 美元! 下一個價格: 599$ 最終售價:999$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here New live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro 加入了黃金交易 EA 俱樂部,但有一個很大的區別:這是一種真正的交易策略。 “真實交易策略”是什麼意思? 您可能已經註意到,市場上幾乎所有黃金 EA 都是簡單的網格/鞅系統,當市場與初始倉位相反時,該系統會添加交易。  它們通常偽裝成“神經網絡/人工智能/機器學習”,但如果您對外彙和 EA 有一點經驗,您可以輕鬆地將
Fortune MT4
Shane Lee
5 (3)
Real Trading Account  LIVE SIGNAL VT MARKETS:  https://www.mql5.com/en/signals/2363526 Join SmiteFX Algos MQL5 Public Chat :   https://www.mql5.com/en/messages/03e4dab0b20bdd01 Fortune is an automated breakout Expert Advisor for MetaTrader 4 & 5, developed primarily for XAUUSD. The EA identifies potential breakout and breakdown zones based on recent market structure, then manages each trade according to the risk percentage set by the user. Every position is opened with predefined Stop Loss and
Multi Sniper mq
DMITRII GRIDASOV
5 (4)
MULTI SNIPER EA 是一款精准的自动交易系统,在 MT4 平台上的准确率高达 90% 左右。 这款盈利丰厚的剥头皮 EA 无疑是目前市场上最稳定的系统之一。   No grid! No martingale! 它是独家产品,仅在本 MQL5 网站提供。 下载用于测试和交易的EA设置文件:   GBPAUD Set_file   GBPCAD Set_file - 实现了复利方法和剥头皮交易技术。 - 系统会根据市场波动自动设置动态止损。 - EA 默认具有自动(手数计算)风险管理功能,并提供固定手数选项。 - 可调整交易入场敏感度参数。 - 周末无交易缺口。 - 精确的操作时间过滤器,精度可达 1 分钟。 - 内置点差显示。 - 机器人具有盈亏平衡功能。 - 账户杠杆:1:30 至 1:2000 范围内任意选择。 - 最推荐的货币对是 GBPCAD 和 GBPAUD - 相应的 Set_files 可在“评论”部分找到。 - 不存在任何危险的马丁格尔/网格策略。每笔订单都有自己的止损位,以保护账户安全。 - 运行时间:EA 会根据设置中的时间过滤器,从美国交易时段结束
AW Recovery EA
AW Trading Software Limited
4.35 (84)
智能交易系统是一个旨在恢复无利可图头寸的系统。 作者的算法锁定了一个亏损仓位,将其拆分为多个独立的部分,并分别平仓。简单的设置、在回撤的情况下延迟启动、锁定、禁用其他 EA 交易、使用趋势过滤进行平均以及部分关闭亏损头寸都内置在一个工具中。 与仅在整个组中关闭订单的网格策略相比,使用部分关闭损失可以让您以较低的存款负载减少损失,从而确保更安全地处理损失。 如何恢复订单: 1 EA 关闭所选工具的其他窗口以关闭无利可图的 EA(可选)。 2 EA 重置所有已处理订单的止盈和止损水平,并删除具有相应标识符的挂单。 3 EA 关闭所有已处理的盈利订单,以便使用其利润来弥补部分非盈利订单并减少总头寸量(可选)。 4 EA 通过打开锁定订单来锁定亏损头寸。 5 然后,通过打开恢复订单,它开始通过部分关闭不盈利的订单来减少损失。 6 当部分关闭时,算法首先恢复定位最不成功的订单,或者最接近盈利的无利润订单。每个无利可图的订单都分为许多部分,顾问分别关闭每个部分。恢复订单以小量开仓,以免大幅增加入金负担 包含注释、设置和测试说明的完整输入设置列表  ->   这里  MT5 版本 ->   这里
Boring Pips MT4
Thi Thu Ha Hoang
4.6 (15)
你是否曾 经想过为什么大多数专家顾问在实盘交易中并不有效,尽管它们在回测中表现完美? 最有可能的答案是过拟合。许多专家顾问被创建为对现有的历史数据进行“学习”和完美适应,但由于构建模型的泛化能力不足,它们无法预测未来。 一些开 发者可能根本不知道过拟合的存在,或者他们知道但没有办法防止它。其他人则将其作为美化回测结果的工具,他们添加了数十个输入参数,而不考虑统计学意义,使交易策略过度依赖历史数据,并试图说服他人他们的专家顾问未来能够实现类似的表现。 如果你 对这个迷人的主题感兴趣,并想更深入地了解过拟合,请参考我的这些文章: Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading Strategy (Part 2): A Guide to Building Optimization Processes 有几种方法可以避免在 仅仅依赖读取过去数据的专家顾问上亏钱。而最简单的方法是,在没有至少 5 个月或 30
Bitcoin Scalp Pro
Profalgo Limited
5 (4)
當前促銷: 僅剩 1 件,549 美元 最終價格:999$ NEW: Choose 1 EA for free! (for 2 trade account numbers) 請務必在我們的促銷博客中 查看我們的“   Ultimate EA 組合包 ”   !   LIVE SIGNAL Bitcoin Scalp Pro 是市場上獨一無二的交易系統。  它完全專注於通過交易支撐位和阻力位的突破來利用比特幣市場的波動性。 EA 的重點在於安全性,這轉化為極低的回撤和非常好的交易風險/回報率。 EA 在內部使用“智能自適應參數係統”,它將根據比特幣的實際價格計算止損、止盈、尾隨止損以及入場和手數。 這意味著如果比特幣以 6000 或 30000 的價格交易,所有參數的值都會不同。 自 2022 年 6 月以來,該 EA 已在真實真實賬戶上進行了前瞻性測試,到目前為止,結果非常有希望。 還進行了 99.90% tickquality 的回溯測試,並且在過去幾年中顯示出非常穩定的增長。 該 EA 需要提供低比特幣點差的經紀商。 私信聯繫我,獲取推薦經紀商名單。 主要特徵: 自適
Limited-time 30-day promotion: Get Kenni Trades Gold Breakout for only $499.99 —regularly $799.99 —and receive Kenni Daily Scalp Breakout Gold FREE with your purchase. This exclusive offer is available for 30 days only. Kenni Trades Gold Breakout  now includes three selectable trading modes:   Kenni Gold Breakout ,   Kenni Daily Scalp Breakout Gold , and   Kenni Prop Firms . Kenni Trades Gold Breakout  is an automated trading system developed specifically for Gold on MetaTrader 4 hedging account
Vortex Gold MT4
Stanislav Tomilov
4.93 (43)
Vortex - 您对未来的投资 Vortex Gold EA 专家顾问专门用于在 Metatrader 平台上交易黄金(XAU/USD)。该 EA 使用专有指标和作者的秘密算法构建,采用全面的交易策略,旨在捕捉黄金市场中的盈利走势。其策略的关键组成部分包括 CCI 和抛物线指标等经典指标,这些指标共同作用,准确地发出理想的进入和退出点信号。Vortex Gold EA 的核心是先进的神经网络和机器学习技术。这些算法持续分析历史和实时数据,使 EA 能够更准确地适应和应对不断变化的市场趋势。通过利用深度学习,Vortex Gold EA 可以识别模式,自动调整指标参数,并随着时间的推移不断提高性能。Vortex Gold EA 是专有指标、机器学习和适应性交易算法的强大组合。使用 Vortex Gold EA 为您的未来投资。 售价 675 美元(还剩 2/10),下一个价格 795 美元 Live Monitoring  https://www.mql5.com/en/signals/2366351 Check out the live results in Profile >>
EA Gold Stuff
Vasiliy Strukov
4.7 (1091)
EA Gold Stuff是专为黄金交易设计的专家顾问。 该工作基于使用Gold Stuff指标打开订单,因此顾问根据"趋势跟随"策略工作,这意味着跟随趋势。 重要! 购买后立即与我联系,以获得说明和奖金! 您可以免费收到我们的强力支持和趋势扫描指标的副本,请私信。大部头书! 实时结果可以在这里查看 参数 打开新系列-打开/关闭新系列订单的开始。 起始地段-起始地段。 交易买入-允许Ea交易买入。 交易卖出-允许智能交易系统卖出。 使用对冲-当功能启用时,顾问将交易买入和卖出方向,当功能禁用时,顾问将只交易一个方向。 使用货币Manadgement-开/关使用自动手数计算。 自动旋转 每0.01手的可用保证金-每0.01手单位开仓的可用保证金金额。 Lot miltiplier-以下订单的手数乘法系数。 TP-止盈,以点为单位。 SL-止损,以点为单位从第一个订单。 跟踪开始-跟踪止损的激活。 Trail Step-追踪止损激活时与价格的距离。 DD减少算法是一种减少回撤的算法,其中具有利润的最后一个订单被关闭,系列的第一个订单处于亏损状态。 DD缩减算法的编号顺序-
XGen Scalper MT4
Burak Baltaci
3 (2)
XGen Scalper MT4 - 专业自动交易系统 XGen Scalper 是一款尖端专家顾问,通过将先进算法结构与成熟技术分析相结合,在所有市场中提供稳定可靠的交易结果。该强大交易系统可无缝运行于外汇货币对、黄金白银等贵金属、加密货币及大宗商品指数等多种市场。 先进算法技术 其专利波浪扫描算法通过实时处理市场数据,识别手动交易者可能忽略的高概率交易机会。该系统能持续适应变化的市场环境,在趋势、区间及波动市场中均能高效运作。 全局兼容性 不同于针对特定货币对设计的传统EA,XGen在所有交易品种中均表现卓越。 专业控制面板 通过精美的界面实时监控账户指标、详细交易统计数据及系统状态。集成波浪可视化功能清晰展示系统对市场状况的解读。 企业级风险管理 基于账户余额和风险承受能力的自适应仓位规模 根据市场波动动态调整的跟踪止损 点差过滤机制避免不利交易条件 多时间周期确认实现更高精度交易 精准交易 闪电般快速的订单处理,以最小滑点实现最优价格。兼容所有MT5经纪商和交易类型。智能订单管理自动处理从入场到离场的全流程。 完全可定制 根据您的策略调整头寸规
EA Ice Cube Scalper
Sergey Batudayev
4.71 (21)
交易顾问 Ice Cube Scalper -         这是一天的黄牛     , 每天进行大量交易,每笔交易拿几个点。 EA 的策略是使用 RSI 指标与趋势进行交易。 EA 使用乘数平均,您需要在使用 EA 之前了解这一点,但是该策略在回测和实时交易中表现良好。 购买前,请务必在策略测试器中测试顾问的工作。 为了控制 EA 交易中的风险,您可以限制平均订单的最大数量以及股权风险。 为了了解顾问的工作方式,您可以订阅免费信号,这样您就可以了解顾问的工作方式及其潜力。 输入参数 很多     _     乘数             -             手数乘数         参展时       平均订单 起始批次           -           起始批次 命令     _     斯佩特             - 介于两者之间       亲   命令         平均 智能步         =真/     错误的           包括/在         用于更改订单之间步骤的智能模式 起始步长系数           - 在平均顺序之
Aura Neuron MT4
Stanislav Tomilov
4.67 (15)
Aura Neuron 是一款独特的 EA 交易系统,延续了 Aura 系列交易系统。通过利用先进的神经网络和尖端的经典交易策略,Aura Neuron 提供了一种具有出色潜在性能的创新方法。这款 EA 交易系统完全自动化,旨在交易 XAUUSD (GOLD) 等货币对。从 1999 年到 2023 年,它在这些货币对中表现出了一致的稳定性。该系统避免了危险的资金管理技术,例如马丁格尔、网格或剥头皮,使其适用于任何经纪商条件。Aura Neuron 由多层感知器 (MLP) 神经网络驱动,利用它来预测市场趋势和走势。MLP 是一种前馈人工神经网络 (ANN),通常被称为“原始”神经网络,尤其是当它们由单个隐藏层组成时。MLP 包括三个基本层:输入层、隐藏层和输出层。除输入节点外,每个神经元都使用非线性激活函数。该网络使用称为反向传播的监督学习技术进行训练。 MLP 的多层结构和非线性激活使其有别于线性感知器,使其能够识别数据中非线性可分的模式。通过其复杂的 NN 智能,Aura Neuron 能够识别模式并适应不断变化的市场条件,例如汇率或交易者行为的变化。其处理复杂数据的能力使其能够
Forex GOLD Investor
Lachezar Krastev
4.39 (51)
BUY 1 and GET 1 FREE - Promotion! Buy Forex GOLD Investor with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $217 (Regular Price: $547 — You Save $330! ) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Forex GOLD Investor is one of the best expert advisors developed to trade on GOLD(XAUUSD) in the forex market. Forex GOLD Investor consists of 3 trading systems . The first one is based on scalping trading strat
Trend Catcher Exp
Ramil Minniakhmetov
5 (2)
Trend Catcher EA 使用作者自主研发的自适应趋势分析指标来分析市场价格走势。它通过过滤掉短期噪音,专注于潜在的动能强度、波动性扩张和价格结构行为,从而识别真实的市场方向。该 EA 结合了移动平均线、RSI 和波动率过滤器等特殊定制指标的平滑和趋势过滤功能,可以根据预设的交易条件自动执行交易。 该系统会等待趋势确认,而不是对每一次价格波动都做出反应,然后在进入动态均衡区域之前寻找可控的回调机会,并顺势而为。这是一款马丁格尔/网格交易 EA。 货币对和时间框架: 该 EA 在 15 分钟或更高时间框架(例如 H1)下运行良好,适用于 xauusd 或主要货币对,例如 eurusd、gbpusd、usdcad、audusd、audcad、nzdcad、nzdusd 等,以获得更高的准确性。 设置: 开启新系列 – 真/假 – 允许开启新系列 买入交易 – 真/假 – 允许买入 卖出交易 – 真/假 – 允许卖出 管理手动订单 – 真/假 – 如果交易者手动输入新订单,EA 将自动执行 使用对冲 – 真/假 – 允许对冲 订单备注 – EA 趋势 AI 最
GOLD Scalper PRO
Lachezar Krastev
4.48 (25)
BUY 1 and GET 1 FREE - Promotion! Buy GOLD Scalper PRO with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $177 (Regular Price: $447 — You Save $270!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Live Results:   https://www.mql5.com/en/signals/2353871 GOLD Scalper PRO is a fully automated trading system which takes much of the work out of trading, leaving you free to do other things! You should not be fooled
AW Double Grids EA
AW Trading Software Limited
4.5 (8)
AW Double Grids MT5 智能交易系统是一款激进的、全自动的基于网格的智能交易系统,具有信息交易面板和简单的设置。该策略包括同时进行的两侧工作,将一个方向的体积相乘。内置自动计算手数,以及订单乘法的变化。 说明 -> 此处  /  问题解决 ->   此处 / MT4 版本 ->   此处 顾问如何交易: AW 双网格通过一对方向相反的订单进行双向交易。 AW Double Grids 通过开立两个反向订单开始交易。在关闭盈利订单后,顾问会再次开立两个订单,将开仓方向的交易量乘以倍数。如果有未结订单,顾问可以根据设置更改获利点数。获利点可以是动态的,也可以是固定的。 输入参数: 主要设置 Size_of_the_first_order - 定义第一个订单大小的变量。 在“Enable_Autolot_calculation”禁用时使用。 Enable_Autolot_calculation - 使用自动手数计算。此功能允许您在更改存款时保存风险设置。     如果您使用 autolot,则不使用“   Size_of_the_first_order”   。 Autol
Bypass Generator MT4
Connor Michael Woodson
1 (1)
Bypass Generator 是一款基于机构级算法、专为 XAUUSD 设计的确定性剥头皮交易系统。 实时信号: 点击这里 这并不是一款典型的 EA,它不会毫无节制地一笔接一笔开仓,从而耗尽您的保证金并让您的资金承受不必要的风险。 每一次入场都会经过 16 个独立验证层的审核,之后才会开启单一仓位。系统不使用网格策略,每笔交易都设有虚拟止盈(Take Profit)和止损(Stop Loss)。 回测曲线并未针对不切实际的收益进行优化。该系统基于 21 年历史数据开发和验证,并在公开发布前通过真实市场表现进行了确认。 盈利交易可通过移动止盈机制持续扩大收益。系统严格限制同一时间仅持有一个仓位。不使用网格、马丁格尔或手数加仓,因此形成了始终保持可控的线性风险模型。 交易逻辑基于稳健的技术架构: 趋势强度与确认:系统在多个时间周期上计算动态趋势线,并为其赋予趋势强度值。随后,每个强度值都会根据历史价格走势乘以相应的数值系数,并按强弱排序。只有在识别出占主导地位的趋势后才会进场交易。 支撑与阻力:系统首先根据较低时间周期(H1 和 M15)中价格曾发生反应的位置计算历史支撑位和阻力位。
Mirror EA mt4
Vasiliy Strukov
Mirror EA 是一款基于 SmaSRS196 指标的自动交易系统。该指标结合了简单移动平均线 (SMA) 和相对强弱指数 (RSI),并采用 96 周期优化框架。该 EA 持续分析市场状况,通过 SMA 确认趋势方向,同时利用 RSI 检测动能强度和潜在的超买/超卖情况,从而识别高概率交易机会。当指标变为红色时,EA 会在移动平均线下方卖出;当指标变为绿色时,EA 会在移动平均线上方买入。 该策略旨在通过要求趋势和动能一致才能建仓,从而减少虚假信号。其可配置参数允许针对不同的金融工具和时间框架进行优化,同时保持执行的一致性。该 EA 适用于任何货币对和任何时间框架,但在 M15 时间框架下,例如 XAUUSD 等强趋势工具上表现尤为出色。这是一款马丁格尔/网格策略 EA。 即時結果可在此處查看。 購買後立即聯絡我,即可獲得個人獎勵!您可以免費獲得我們的強力支撐和趨勢掃描器指標, 請私訊我 ! 設定和手冊在此處 請注意,我不在 Telegram 上出售我的 EA 或特殊套件,它們僅適用於 MQL5,我的套件檔案僅在我的部落格上提供。請小心詐騙者,不要從其他人那裡購買任何套件!
BB Return mt4
Leonid Arkhipov
4.89 (18)
BB Return — 一款用于黄金交易(XAUUSD)的智能交易系统(EA)。该交易思路最初来自我的 手动交易 经验。策略核心是价格回归 Bollinger Bands(布林通道) 区间,但并非机械式或每次触及即入场。针对黄金市场的特性,系统加入了额外过滤条件,用于剔除无效和低质量的市场环境,仅在回归逻辑真正成立时才开仓。   Global   update   on   June   14th   交易原则 — 系统不使用网格、马丁或加仓平均成本等风险策略。EA 可使用 固定手数 或 AutoRisk 自动风险 模式运行。BB Return 对点差、滑点及不同经纪商的报价方式不敏感,可在任何经纪商及多种账户类型下运行,包括 Standard、ECN、Pro、Raw、Razor 。系统不受交易时段限制,可 24 小时运行 。   $ 359   不是最终价格。 当前价格仅剩 5–7 个名额。 之后将上涨。 该EA限量提供,以保证策略的稳定性。 设置与交易频率 — 启动系统无需复杂设置,策略设计即基于 默认参数 运行,通常只需调整手数或 AutoRisk 模式。系统平均每年约执行
HFT Prop EA
Manpreet Singh
4.93 (257)
HFT PROP EA is the High Frequency Trading Expert Advisor (EA/bot) designed to pass proprietary trading firms (prop firms) challenges which use stop orders to enter the trades when market is trending, It is basically designed for US30 just at opening of US30 in New York Session till it remain in its trending nature for 15-30 minutes, and using HFT PROP EA you can pass the challenge within few minutes for prop firms who doesn't have any lot size cap. To see its Live working you may check by signin
Scalp On Scalp Off MT4
Connor Michael Woodson
FastBull 市场情绪 是一项数据服务,汇总了数千个持仓,总账户价值超过 5 亿美元。 Scalp On Scalp Off 能够通过直接 API 集成即时获取这些数据,并在交易时加以利用。市场情绪会直接显示在您的图表上,以可自定义且易于使用的面板形式呈现。 实时信号: 点击此处 单次交易管理,无需使用网格或马丁格尔策略。 自适应动态追踪止损和止盈。 设置极其简单,不到 15 秒即可完成。只需将 API URL 添加到允许的 WebRequest 列表中。 推荐设置 图表:EURUSD、GBPUSD、XAUUSD 时间周期:H1 输入参数 市场情绪 URL - 将此 URL 添加到 WebRequest 市场情绪过滤器 - 启用或禁用市场情绪过滤器 市场情绪货币对 - 要监控并显示在面板上的货币对 市场情绪面板 - 启用或禁用情绪面板 手数计算方式 - 选择自动手数或固定手数 固定手数 - 固定手数大小 自动手数 - 每指定金额账户货币使用 0.01 手 最大点差 - 指定最大允许点差(点) 固定止损 - 指定固定止损(点) 自动 GMT 检测 - 自动计算您的经纪商 GMT 偏
Market Reversal Alerts EA
Lee Samson
4.13 (23)
市場反轉警報 EA 由同名指標(可在此處獲得)提供支持,並根據市場結構變化進行交易。 默認情況下,每次指標發送市場反轉警報時,EA 都會進行交易,並將根據您在 EA 設置中設置的條件和過濾器來交易這些警報。 當價格向當前趨勢方向移動時,它會繪製支撐矩形,並在價格急劇反轉並發出市場結構轉變或重新測試反轉信號時進行交易。更多在指標頁面。 此描述中有太多設置和可能性,因此有一篇包含所有設置的博客文章和一個視頻,在此博客文章中詳細介紹了它們。  https://www.mql5.com/en/blogs/post/745502 請閱讀上面的帖子並觀看視頻,您將了解 EA 的強大功能。 這篇博文中有一些很好的設置文件可以幫助您入門和策略。 https://www.mql5.com/en/blogs/post/745984 基於市場結構逆轉微調和創建多種策略和交易風格的可能性是無窮無盡的!了解我的人都知道,我每天都通過這個 EA 賺大錢,我很高興向您展示如何做。 EA 的 MT4 版本也可在此處獲得: https://www.mql5.com/en/market/product/
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 scalp
Aurum AI mt4
Leonid Arkhipov
4.94 (34)
更新 — 2025年12月 Aurum 交易系统于 2024 年 11 月底正式发布。 在这一整年里,它在真实市场环境中稳定运行,没有新闻过滤器,没有额外的防护限制,也没有复杂的交易约束 —— 依然保持了稳定与可靠的表现。 Live Signal (launch April 14, 2026) 这一年的真实交易充分证明了该交易系统本身的可靠性。 正是在真实数据与实际经验的基础上,我们于 2025 年 12 月发布了本次重大更新: 全面升级高级交易面板,并适配所有屏幕分辨率 新增扩展交易保护系统 新增基于 Forex Factory 的强力新闻过滤系统 新增两个额外过滤器,用于更精准的信号判断 全面优化执行速度与系统稳定性 新增安全的 Recovery 回本功能 图表主题升级为高级风格 关于 Aurum Aurum — 黄金交易高级 EA(XAU/USD) Aurum 是一款专为黄金市场打造的专业级交易 EA,核心目标是稳定性与安全性。系统基于趋势分析,并采用严格的风险控制机制。 本系统不使用任何危险交易方式 —— 不加仓、不网格、不马丁、不激进加仓。 每一笔交易都严格设置止损
AFTrade Scalper MT4 EA
Achmad Fathoni
5 (2)
AFTrade Scalper EA is an automated trading robot designed for XAUUSD using a breakout-based scalping approach. The EA focuses on very short-term opportunities with controlled risk management, fixed lot options, trading session filters, and a three-stage trailing stop system consisting of Trailing Start, Trailing Stop, and Trailing Step. No grid and no martingale, every trade has a defined Take Profit and Stop Loss. Please see below live signal of this EA : Live Signal Broker IC Markets (startin
BF Scalper PRO
Lachezar Krastev
4.05 (56)
BUY 1 and GET 1 FREE - Promotion! Buy BF Scalper PRO with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $177 (Regular Price: $447 — You Save $270!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! For Settings, Instructions and LIVE Results Click Here! BF Scalper PRO is the professional version of the very popular EA - BF Scalper EA. We have implemented a lot of new additional features and systems in this PRO v
作者的更多信息
【MT5】让图表分析更高效!一键切换货币对与时间周期的工具“One Touch Chart Switcher” 大家好! 在交易分析过程中,大家是不是经常需要在多个货币对和不同时间周期之间频繁切换呢?“那个货币对的1小时图怎么样了…?”“这个的4小时图也想看一下…”,像这样不停地点击切换图表,其实是一项相当耗费时间和精力的工作。 为了解决交易者们这些“小麻烦”,并 提升分析效率 ,我们开发了这款便捷的指标工具——“ One Touch Chart Switcher ”。   “One Touch Chart Switcher”是什么? 这款指标是一个简单的辅助工具,它会在图表左上角设置用于 切换货币对和时间周期的按钮 。 只需点击您想分析的货币对或时间周期的按钮,图表就会瞬间切换。您再也无需从市场报价窗口拖拽货币对,或从工具栏中选择时间周期了。 推荐给以下人群! 监控多个货币对的用户 经常进行多时间周期分析的用户 进行剥头皮交易等需要快速判断的交易者 希望减少电脑操作的麻烦,专注于分析的用户 主要功能 这款工具包含了众多功能,旨在让您的交易分析体验更加舒适。 一键切换时间周期
FREE
ThemeChanger for MT5: Instantly Transform Your Chart Environment with One Click In the dynamic world of trading, your chart's appearance is more than just aesthetics; it significantly impacts analytical efficiency, visibility, and even your psychological state. However, manually adjusting MT5's color settings can be time-consuming, and switching between preferred themes quickly is often a hassle. ThemeChanger is the advanced MT5 indicator designed to revolutionize how you interact with your c
FREE
【MT4 Edition】One-Click Theme Changer: Instantly Switch Up Your Chart's Look! "If only changing chart colors wasn't such a hassle..." Sound familiar? We heard you! Introducing the "Theme Changer" for MT4 – a handy indicator that lets you instantly switch your chart's color scheme with a single click! If you need the MT5 version, please click the link below: MT5 Theme Changer No more fiddling with complicated settings windows. With just one button on your chart, you can transform its appearance i
FREE
一键图表切换器 | 商品说明 一键图表切换器 | 让您的日常分析,更加轻松便捷 对于交易者来说,检查大量的货币对和时间周期是一项日常工作。但是,手动一一切换图表,总会觉得有些繁琐。 这款“一键图表切换器”正是为了让这些日常的图表分析工作变得更舒适而开发的MT4指标。 只需点击图表上的按钮,即可快速切换货币对和时间周期。让您在不打断分析节奏的同时,顺畅地进行下一步操作。 主要功能 一键快速切换 只需点击图表上显示的按钮,即可瞬间更改货币对或时间周期,让您的分析流程不中断。 高度个性化定制 不仅可以自定义要显示的货币对和时间周期列表,还可以根据自己的喜好精细设置按钮的颜色、大小和布局。 便捷的显示/隐藏功能,让图表更清爽 在不需要按钮时,可以通过“隐藏”按钮暂时将其隐藏。仅在需要时显示,可以保持图表界面的整洁。 当前设置一目了然 与当前图表上显示的货币对和时间周期相对应的按钮,会以您设定的高亮颜色显示,让您能随时直观地把握当前状态。 详细参数设置 您可以通过指标的属性设置窗口,根据自己的交易环境,直观地对该工具进行定制。 【显示的货币对与时间周期设置】 这是本工具的核心。请根据您的
FREE
Tokyo Fix Gotobi Anomaly EA - A Solid Automated Trading System Targeting Japan's "Gotobi" & "Nakane" Market Anomalies Introduction "On days ending in 5 or 0 (Gotobi), USDJPY tends to move." Have you ever heard of this famous market anomaly? Tokyo Fix Gotobi Anomaly EA is an automated trading system (EA) based on a classic, robust trading logic that focuses on the actual commercial demand for USD by Japanese importers (known as "Nakane" demand). Instead of relying on an excessive combination of c
筛选:
mastergu1
114
mastergu1 2026.02.01 17:17 
 

用户没有留下任何评级信息

Nezo Eliot
1338
Nezo Eliot 2025.12.19 02:18 
 

Soweit passt alles mit dem Robot, teste seit 1 Woche mit meinem eigenem Gold set . Danke danke

acer56
196
acer56 2025.06.24 06:38 
 

Der ea arbeitet bisher fehlerfrei und die backtests sehen gut aus.

回复评论