FoxterAI

FoxterAI — 基于ATR自适应步长的网格交易EA,内置实时控制面板

FoxterAI 是一款用于 MetaTrader 4 的自动网格交易机器人,基于均值回归网格策略构建。网格步长通过 ATR 指标计算,而非固定点数:波动率高时订单间距变宽,波动率低时间距变窄,实现自动适应市场节奏。EA 同时管理两个独立序列——BUY 和 SELL。

核心功能:控制面板在策略测试器中完全可用

内置交互式控制面板在策略测试器可视化模式下完全正常运行。回测过程中无需停止测试即可修改关键参数:启用/禁用交易、切换方向、更改入场模式、激活 Basket Mode、调整盈利目标、启用关卡系统、修改网格限制——并立即看到对结果的影响。这极大地加快了参数优化速度。

运行架构

每个 Tick EA 依次执行:序列更新、DetectTrend()(趋势检测)、CheckNewSeriesEntry()(入场条件检查)、ManagePositions()(保本、追踪止损、网格均值、止盈管理)、面板更新。

趋势检测

自定义 ATR 算法——计算所选时间框架上 N 根已完成 K 线的 High-Low 均值。ATR 缓存处理,仅在新 K 线生成时重新计算。

  • TrendTimeframe — 趋势检测时间框架(H1)
  • TrendATR_Period — ATR 周期,单位:K 线数(14)

SuperTrend

无需外部指标的内置计算。基准线 = (High+Low)/2,上轨 = 基准线 + 倍数 × ATR,下轨 = 基准线 - 倍数 × ATR。用作入场过滤器、均值过滤器和价格关卡来源。SuperTrend 线直接绘制在图表上。

  • SuperTrendTF — SuperTrend 时间框架(H1)
  • SuperTrendATRPeriod — ATR 周期(10)
  • SuperTrendMultiplier — ATR 倍数(3.0)
  • DrawSuperTrend — 在图表上绘制线条(true)
  • SuperTrendBarsToDraw — 绘制 K 线数(300)

入场模式

通过面板上的 Entry Mode 按钮循环切换,共四种模式:

  • Trend only — 顺趋势方向入场
  • Trend + Impulse(默认)— 额外要求 M15 上出现冲量 K 线,其波动范围超过 ATR 的指定百分比
  • Trend + Impulse + SuperTrend — 最大过滤:趋势、冲量和 SuperTrend 同时满足
  • Trend + SuperTrend — SuperTrend 确认趋势,无冲量要求
  • EntryMode — 入场模式(Trend + Impulse)
  • ImpulseTimeframe — 冲量检测时间框架(M15)
  • ImpulseATR_Period — 冲量 ATR 周期(14)
  • ImpulseMinPercent — 最小冲量大小,占 ATR 的百分比(150)
  • MinBarsBetweenSeries — 平仓与新入场之间的 K 线数(1)

均值网格

步长 = ATR(Grid_Timeframe, Grid_ATR_Period) × Grid_StepPercent / 100。均值触发条件:价格从最后一单移动一个步长、趋势与序列方向一致、已过最小时间间隔、订单数量和总手数在限制范围内。

  • Grid_Timeframe — 步长计算时间框架(M15)
  • Grid_ATR_Period — 步长 ATR 周期(14)
  • Grid_StepPercent — 网格步长,占 ATR 的百分比(50)
  • MartinCoeff — 马丁格尔倍数(1.5)
  • FirstLotMultiplier — 第一单手数倍数(1.0)
  • MaxOrdersBuy / MaxOrdersSell — 每个序列最大订单数(10)
  • MaxTotalLot — 每个序列最大总手数(2.0)
  • GridIntervalMinutes — 均值订单最小时间间隔,单位:分钟(30)
  • UseSTForAveraging — 均值过滤使用 SuperTrend(false)

高级网格与马丁格尔模式

扩展网格(UseExpandingGrid):每个网格步长乘以 GridStepMultiplier,减少深度逆势时的均值频率。

分段马丁格尔(UseSteppedMartin):将网格分为三个区域,各有不同倍数。示例:前 3 单为 1.0,后 3 单为 1.3,之后为 1.6。仅在网格深处激活马丁格尔。

ATR 自适应马丁格尔(UseATRAdaptiveMartin):根据当前波动率动态调整倍数。高波动时使用最小系数,低波动时使用最大系数。三种模式可组合使用。

  • UseExpandingGrid — 扩展网格(false),GridStepMultiplier — 步长倍数(1.3)
  • UseSteppedMartin — 分段马丁格尔(false)
  • StepZone1Count / Coeff — 区域1:订单数和倍数(3 / 1.0)
  • StepZone2Count / Coeff — 区域2(3 / 1.3),StepZone3Coeff — 区域3(1.6)
  • UseATRAdaptiveMartin — ATR 自适应马丁格尔(false)
  • ATRAdaptive_MinCoeff — 高波动时最小系数(1.0)
  • ATRAdaptive_MaxCoeff — 低波动时最大系数(2.0)

止盈模式

ATR 止盈:距离 = ATR(TP_Timeframe, TP_ATR_Period) × TP_Percent / 100。

账户百分比止盈:目标 = 余额 × FirstTPDepositPercent / 100。

单独止盈:每单固定点数止盈(仅限 Basket Mode,0 = 禁用)。

序列综合止盈:存在 2 单以上时,止盈从加权平均开仓价重新计算。启用 IncludeCommissionSwap 时,从盈利中扣除累计手续费和隔夜利息。

  • TP_Timeframe — ATR 止盈时间框架(M15),TP_ATR_Period — 周期(14)
  • TP_Percent — 止盈大小,占 ATR 百分比(100)
  • UseDepositPercentTP — 账户百分比止盈(false)
  • FirstTPDepositPercent — 第一单止盈,占余额百分比(0.5)
  • IndividualTP_Points — 单独止盈点数(100,0=禁用)
  • IncludeCommissionSwap — 计入手续费和隔夜利息(true)
  • SlippagePercent — 滑点补偿,占盈利百分比(0.1)

篮子(Basket)

将 BUY 和 SELL 序列合并,在共同盈利目标达成时一起平仓。三种类型:

  • OFF — 序列独立管理
  • Immediate — 从第一单起合并
  • After N — N 次均值后合并

Basket Mode(熔炉):扩展盈利管理——不仅计入当前未平仓订单,还包括本次网格已平仓订单,允许从部分平仓中积累利润。

  • BasketType — 类型:OFF / Immediate / After N(OFF)
  • BasketProfitPercent — 目标盈利,占余额百分比(0.1)
  • BasketAfterNOrders — N 次均值后合并(5)
  • UseBasketMode — Basket Mode 熔炉(false)

保本与追踪止损

保本(Breakeven)在序列有 2 单以上时激活。价格达到指定距离后,止损移至开仓价(或带偏移量)。

  • UseBreakeven — 启用保本(false)
  • BreakevenActivatePoints — 激活所需点数(100)
  • BreakevenSL_Points — 止损距开仓价偏移(0 = 开仓价处)

追踪止损(Trailing)仅作用于序列第一单(无均值订单时)。第二单出现时自动禁用。距离以 ATR 百分比设置。

  • UseFirstOrderTrailing — 启用追踪止损(false)
  • TrailActivatePercent — 激活阈值,占 ATR 百分比(70)
  • TrailDistancePercent — 追踪距离,占 ATR 百分比(50)

关卡系统(Level System)

可选模块,将网格逻辑锚定到重要价格关卡。通过面板上的 Levels 按钮启用。

三种关卡来源(Source 按钮):

  • Round levels — 以固定点数步长设置关卡(如每 50 点)。当前价格附近生成 21 个关卡
  • Daily High/Low — 基于两个时间框架上 N 根 K 线的最高/最低价关卡。默认:D1×1 + W1×1 = 4 个关卡
  • SuperTrend TF — LevelTF 时间框架上的 SuperTrend 边界

四种工作模式(Mode 按钮):

  • Filter — 显示关卡,不影响交易
  • TP at levels — 止盈设置在交易方向上最近的关卡
  • Entry only — 第一单仅在关卡附近开仓(LevelEntryZone × ATR 范围内)
  • Full — 关卡止盈 + 关卡附近入场 + 网格步长自适应至下一关卡
  • UseLevelAveraging — 启用系统(false),LevelSource — Round/D-HL/ST-TF
  • RoundLevelStep — 圆形关卡步长点数(50),LevelTF — 时间框架(H4)
  • LevelHL_TF1/Count1 — D-HL 对1(D1/1),LevelHL_TF2/Count2 — 对2(W1/1)
  • UseLevelTP — 关卡止盈(false),LevelTP_OffsetPips — 止盈偏移点数(5)
  • UseLevelEntry — 仅关卡附近入场(false),LevelEntryZone — 区域 ATR 比例(0.15)
  • UseLevelGrid — 自适应网格步长(false),UseLevelAutoLot — 自动手数(false)

亏损单剔除(Trim)

当剩余订单仍可达到盈利目标时,强制平掉序列中亏损最大的一单。面板上的 Trim 按钮控制。

  • OFF — 禁用
  • Own — 同方向剩余订单达到目标盈利时平掉亏损单
  • Joint — 所有 BUY 和 SELL 剩余订单合计达到目标盈利时平掉亏损单

过滤器与保护

  • 点差过滤器:当前点差不得超过 MaxSpread 点(30)
  • 保证金过滤器:可用保证金水平不低于 MinFreeMarginLevel %(200)
  • 交易时间窗口:最多三个独立时间段"09:00-17:00",支持跨午夜设置。若全部为空——24 小时交易
  • ATR 保护:ATR = 0(历史数据未加载)时——阻止所有交易
  • 品种名称标准化(UseNormalizeSymbol):移除经纪商后缀(EURUSDm → EURUSD)

交互式控制面板

三个选项卡。白色输入框接受键盘输入——点击字段,输入数字,按 Enter 应用,按 Escape 取消。

Trading 选项卡:START/STOP、方向 BUY/SELL/BOTH、Entry Mode、Dry Run(不开新序列,现有仓位正常平仓)、Max BUY/SELL、Max Lot、Profit %、BASKET ON/OFF、Individual TP、BASKET 类型、TRIM、ST 均值过滤器、BREAKEVEN、TRAILING、Lot Mult。

Grid 选项卡:Expanding Grid、Step Mult、带区域的 Stepped Martin、带 Min/Max 的 ATR Martin、Levels ON/OFF、Source(Round/D-HL/ST-TF)、圆形关卡步长、Mode(Filter/TP/Entry/Full)。

Info 选项卡:趋势和 SuperTrend 方向、Bid/Ask/点差、BUY/SELL 序列状态(订单数、总手数、浮动盈亏、止盈)、余额和净值、回撤、日/周/月统计数据。

系统按钮(所有选项卡):Emergency Close——立即平所有仓位、Remove Robot、Close BUY / Close SELL、面板缩放(70-200%)。

系统要求

  • MetaTrader 4,任意品种和时间框架
  • 无需外部 DLL——完全兼容 MQL Market
  • 支持分账户(UseCentAccount、CentMultiplier、CentBalanceBase)

风险提示

网格交易涉及同时持有多个未平仓头寸。在强方向性行情中,回撤可能较大。在实盘账户使用前,请在策略测试器中充分测试所有设置,并根据账户规模合理配置风险管理参数(初始手数、最大订单数、最大总手数)。

联系我们

我们随时欢迎交流!如果您有关于设置的问题、改进建议,或者希望根据您自己的交易策略开发定制机器人——请随时发送私信给我们。我们将讨论您的需求,提出解决方案,并将您的想法变为可运行的智能交易系统。

推荐产品
JumpLump
Olga Zhdanova
對您利潤豐厚的專家顧問組合來說是一個很好的補充。該策略基於在特定時間段內突破已構建水平的算法。 EA 有一個固定的止損,允許您保持最小的回撤。 使用報價數據套件對所有報價進行測試,並使用最接近的真實交易條件,觀看視頻。 前 10 位買家的價格為 75 美元(請在評論中發布您的報告) 推薦:低點差的優秀 ECN 經紀商。 推薦貨幣對 EURUSD。可以使用其他貨幣對,例如 GBPUSD 和 USDJPY。 評論中的設置文件。 如有任何問題,請聯繫您的私信! 我很樂意為您提供幫助! 在 M1 上為上面列出的貨幣對安裝“EA 交易”,加載設置文件。 請務必通知我交易結果! 在交易中不使用危險(有毒)的交易方式導致整個存款(鞅,網格,套利等)的急劇損失; 每筆交易都有止損和止盈以保護您的存款;
GRV Grid
Roman Gergert
GRV Grid expert Advisor is a regular grid trader trading in both directions. The peculiarity of this grid is that subsequent orders in the grid are opened not only upon reaching the set step but also on the basis of the signal, which allows not to accumulate a lot of orders that can very quickly drain the entire Deposit. The EA makes a decision based on the signals from THE mA indicator and the trend filter. The EA trades almost non-stop, i.e. there are almost always open orders, so for stable
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
Make grid trading safe again | Built by a grid trader >> for grid traders.    Walkthrough Video  <== Get Grid Rescue up and running in 5 minutes  This is MT4 version, click  here  for  BlueSwift GridRescue MT5  (settings and logics are same in both versions) BlueSwift Grid Rescue MT4  is a risk management utility  EA  (used together with other grid trading experts) that can help you trade aggressive grid systems with manageable drawdown, therefore reduce substanstially margin call risk as we
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
AEC Scalper
Gennady Kuznetsov
AEC Scalper I bring to your attention the AEC Scalper trading Advisor. The adviser works from 20:00 to 22:00 GMT. For testing in the strategy tester, the trading time should be set from 23:00 to 1:00. The EA works well on the following currency pairs: AUDCAD, AUDCHF, AUDJPY, CADCHF, CADJPY, EURAUD, EURCAD, EURCHF, EURGBP, EURUSD, GBPAUD, GBPCAD, GBPUSD  M5 Timeframe. Minimum deposit from $100 Trading is conducted on ECN accounts with a low spread. Leverage from 1:100 Trading is conducted in a
Elastic Grid
Aliaksandr Charkes
4.86 (7)
Elastic Grid MT4 is a multi-functional grid Expert Advisor, designed for full or partial automation of various ideas related to grid trading. The EA trades on any timeframe and symbol. It can also trade several symbols with any amount of decimal places. It does not interfere with manual trading and other EAs' operation or any indicators. It allows to adjust its settings on the fly, works only with its own orders displaying all necessary data on them when needed, and for some situations it can be
Ultra KZM MT4
Nattapat Jiaranaikarn
Ultra KZM is an Expert Advisor that using the unique trading operation. It's strategy is based on the combination of grid and correlation system which is the new method that I invented and developed for a long time. You can see Live Signal from these links : (delete space) 1.  https: //www .myfxbook.com/portfolio/ultra-kzm-eurjpyeurchf/10224608 2.  https: //www .myfxbook.com/portfolio/ea-ultra-kzm-real-account/10374382  Note that You cannot backtest this EA in MT4 because MT4 cannot backtest in
Reversepro Smartsma ea mt4
AL MOOSAWI ABDULLAH JAFFER BAQER
ReversePro SmartSMA EA – A Fully Customizable Moving Average Strategy ReversePro SmartSMA EA is an advanced yet fully customizable trading tool designed for traders who prefer to fine-tune their strategies. This Expert Advisor (EA) is not pre-optimized, allowing you the flexibility to adjust its settings to fit your trading style, risk management preferences, and market conditions. How It Works This EA is based on the well-known Simple Moving Average (SMA) crossover strategy, enhanced with addi
How the EA works (simple explanation) Trades on   M5   timeframe Uses   H1 timeframe   to analyze global market context Analyzes   2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on   trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol:   EURUSD Timeframe:   M5 Trading
Harvest GOLD
Sayan Vandenhout
Harvest GOLD 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
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
Matrix Arrow EA MT4 是一款独特的智能交易系统,可以通过图表上的交易面板手动或 100% 自动交易 Matrix Arrow Indicator 的 MT4 信号。 Matrix Arrow Indicator MT4 将在其早期阶段确定当前趋势,从多达 10 个标准指标中收集信息和数据,它们是:平均定向运动指数 (ADX) , 商品渠道指数 (CCI) , 经典 Heiken Ashi 蜡烛 , 移动平均线 , 移动平均收敛散度 (MACD) , 相对活力指数 (RVI) , 相对强弱指数 (RSI) , 抛物线SAR , 随机振荡器 , 威廉姆斯的百分比范围 。 当所有指标给出有效的买入或卖出信号时,相应的箭头将打印在图表上,在下一个蜡烛/柱线的开盘时表示强劲的上升趋势/下降趋势。用户可以选择使用哪些指标,并可以单独调整每个指标的参数。使用 Matrix Arrow EA MT4 ,您可以直接从图表上的交易面板手动交易 Matrix Arrow Indicator MT4 信号,或使用 100% 算法交易选项 100% 自动交易! 注意力:   如果您想用您的
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is no
DoubleEverest
Eduard Khisamov
The DoubleEverest Expert Advisor is a pure, distilled idea. This automated EA follows its own unique mathematical algorithm. DoubleEverest : no indicators no martingale, locking, averaging, other risky money management techniques trades every day DoubleEverest catches the price in the European and American sessions. Considers the volatility and dynamics of the market. DoubleEverest places pending orders on the price extremes: of the past and current day, fractals, significant resistance and supp
Dream Chaser
Roman Lomaev
Dream Chaser: MetaTrader 4 智能交易系统 Dream Chaser   是一款功能强大且多功能的智能交易系统,它结合了市场波动性分析和网格交易策略。它专为自动寻找入场点和管理头寸而设计,并配备了方便的手动控制可视化界面。 主要特点 混合策略:   使用蜡烛线大小分析进行初始入场,并采用网格方法进行均价处理。 可视化控制面板:   包含信息显示屏和用于交易者手动操作的按钮。 风险管理系统:   自动手数计算和最大订单数控制。 通用性:   可在任何时间框架和货币对上工作。 ️ 详细设置 资金和风险管理 参数 默认值 描述 Risk 0.5 用于自动计算手数的存款风险百分比。 ProfitPips 30 关闭所有智能交易系统订单的总体目标利润(点)。 MaxOrders 200 最大同时开仓订单数。 Magic 2025 智能交易系统订单的唯一标识符(魔术号码)。 交易逻辑与分析 参数 默认值 描述 ExpBar 2.9 用于确定极端蜡烛线大小的乘数。 HowBar 1000 用于计算平均蜡烛线大小的历史柱线数量。 时间限制 参数 默认值 描述 Ti
Max ScalperSpeed
Paranchai Tensit
Max ScalperSpeed   is a fully automated expert advisor. This system has been developed to improve the efficiency of generating more returns. Rely on scalping trading strategies and recovery strategies with appropriate trading frequencies, and also able to work well in all market conditions, whether trend or sideways, able to trade full time in all conditions. Enable or disable news filtering according to user needs. Added a proportional lot size adjustment function, where users can choose to ad
High Freq Grid Scalper
Letsekang Bruno Sekhosana
This E.A is designed to wait for the perfect opportunity to get in the market, take a few trades (low risk) and get out. There is an option to Cut Loss at specific percentage of balance, this should be set to a max of 1% since we scalping. Very cautious EA, can go up to a few days without taking a trade. This should not alarm you, it simply means there currently is no opportunity available. Mainly designed for low spread brokers. Tested Pairs and their settings: EURUSD M1 : Jan 2022 - Dec 2022
Prime Gold HFT Ali Coded by Prime Capital Vietnam Best with XAUUSD -  High frequency trading Find your best setting with the backtest before trade with a real account please! With default setting: - Deposit: min 10k-20k money (USC or USD) - Lot trade from 0.01 - Max DD: ~10-20% - Profit: ~10-20% per month with default setting - Leverage: best with 1:2000 Note: - Best with spread max < 30 - Time frame: any - Important: Contact Us before buy  ------   ------   ------   ------   ------   ------
Calmed
Jennifer Afi Azasoo
5 (3)
EA Calmed Gold We have tried to optimise Calmed Expert Advisor  for Gold but works with any other forex pairs and stocks. This expert uses  martingale (optionally) for recovery. Please, backtest for at least 1 year and run a demo for at least one whole month before going live; that way, you will know how the Calmed Expert Advisor behaves across the various markets. Please do not just purchase and start using the EA, as past performance cannot guarantee future results. Backtest results may be di
TrendLines And Volumes
Alexander Nikolaev
This Expert Advisor trades based on trend lines, as well as on the basis of volume analysis. Volumes are calculated using minute bars, in order to determine if they were ascending or descending. The trend lines are drawn based on High and Lows in the trade history. There are also additional indicators. Buy or sell signals depend on all those factors. This allows the EA to enter the market with more accuracy and to perform more deals. Input parameters Lots - lot size (if 0, a lot is calculated b
Currency EURUSD . Timeframe H1 The minimum deposit is $ 200 when trading 1% per trade.  Classic trend advisor.  The Expert Advisor is based on classic, time-tested indicators . Also, some strategies use Price Action . Every trade is protected by a stop loss  No martingale, no grid, no high risk strategies. All strategies used here are trend following and reversal. Compliance with MM = 4% for each trade is recommended. Question: - Why is testing so slow? Answer: - Be patient, 15 very diff
Gold Pulse AI MT4
Rodrigo Arana Garcia
此价格仅剩 4/10 份 ---> 下一价格 175 美元 // MT5 版本 限时优惠:购买即送免费 EA! Gold Pulse AI 使用 TensorTrade 创建,TensorTrade 是一个开源的 Python 框架,专为构建、训练、评估和部署基于强化学习的稳健交易算法而设计。 该算法的策略是利用挂单来把握黄金市场的动能。在分析之前的 K 线图以识别感兴趣的区域后,它会设置挂单,并在价格达到这些水平时执行。该算法会实时自动适应您的经纪商的条件(点差、延迟、滑点、市场缺口等)。如果算法判断挂单无法带来预期收益,则会取消该挂单。 请注意,为了保持 AI 的更新,神经网络将每 4-5 个月使用最新的历史数据进行训练。 此机器人不使用马丁格尔或对冲等有害的风险管理方法。相反,所有交易都受到追踪止盈和止损的保护。 最重要的是:回测结果与实盘交易结果完全一致(您可以在下方查看结果)。 IC Trading 实时信号 // 下载回测 推荐设置 交易品种 XAUUSD(黄金) 时间周期 M15 最低资金 100$ 经纪商 任意,推荐 IC Markets   / IC Trad
Doctor
Andrey Kolmogorov
This is a universal adviser working in several directions. The first and main thing is assistance in various situations that arise during trading. The second is scalping or positional trading according to the trend, open orders, at the same time, insured with support orders using the model of a quantum set of algorithms. Main Advantages Work in several directions; Increase in account balance during drawdown; Maintenance of already open orders; Building a grid lock; Scalping and/or trend trading
Overview Gold Liquidity Capture EA is an automated Expert Advisor for MetaTrader 4 designed for XAUUSD (Gold) on the H1 timeframe. It uses Bollinger Bands and swing reference points to prepare stop-entry orders at adaptive distances. Orders are intended to trigger only when price movement confirms direction after a defined setup condition. The EA places fixed Stop Loss and Take Profit levels and removes pending orders after a set bar limit if they are not triggered. What the EA Does The EA monit
This PORTFOLIO of 3 strategies has been developed, tested and traded live on DAX H1 timeframe. Multiple EAs traded together will lead to a BIGGER PROFITS and SMOOTHER EQUITY CURVE. 3 not correlated EAs logics for DAX H1 timeframe merged to a single strategy. Very SIMPLE STRATEGIES with only FEW PARAMETERS. Every trade has his own logic for STOP LOSS. To catch the profits every strategy uses different approach - some has TAKE PROFIT, some uses TIME BASED EXITS or PROFIT TRAILING. EA has been back
This PORTFOLIO of 3 strategies has been developed, tested and traded live on DAX M30 timeframe. Multiple EAs traded together will lead to a BIGGER PROFITS and SMOOTHER EQUITY CURVE. 3 not correlated EAs logics for DAX M30 timeframe merged to a single strategy. Very SIMPLE STRATEGIES with only FEW PARAMETERS.  Every trade has his own logic for STOP LOSS. To catch the profits every strategy uses different approach - some has TAKE PROFIT, some uses TIME BASED EXITS or PROFIT TRAILING. EA has been
Project Infinity
Sergey Yarmish
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with s
機器人使用突破布林帶指標線的交易策略。 該策略的本質在於不斷分析指標線並為其線尋找最有效的突破點。 當價格在其中一個方向突破指標線時,機器人會在該方向開倉並開始跟隨它。但機器人不會在每次指標線被突破時開倉,而只會在它突破的那些地方開倉認為它是最有效的。 這是一個非常可靠的策略,多年來已被全球數以千計的交易者測試過。 這是 GPTchat 提供學習的有效剝頭皮策略之一。 人工智能認為,這是 M5 時間框架內最有效的交易剝頭皮策略之一。 我們也會認同人工智能,並在實踐中證實這一策略的有效性。 機器人優勢: 不使用鞅。 手數由交易者在設置中指定。 餘額每增加10%,手數將增加10% 機器人使用自適應風險管理功能 使用機器人的建議: 貨幣對 GBPUSD M5期 最低初始餘額 $500 起 ECN賬戶類型 機器人設置: Lots - 開立訂單的手數。 TrailingStop - 追踪止損大小。 Open_Order - 開倉交易過濾器。 Spread - 貨幣對的平均交易點差,用於正確計算風險。 Magic - 一個獨特的幻數。
The Super scalper universal is a fully automated scalping Expert Advisor, which uses five indicators. Each open position is protected by a hidden stop order managed by an advanced modification algorithm. When searching for the suitable signals, the EA uses the integrated indicator in conjunction with the trend and time filters, as well as the volatility filter. It use dynamic position closure, which considers the location where the order had been opened and the subsequent price action. Profit is
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
该产品的买家也购买
Scalping Robot Pro MT4
MQL TOOLS SL
5 (8)
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
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 有一點經驗,您可以輕鬆地將
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 已針對黃金的最長可用期限進行了壓
BB Return mt4
Leonid Arkhipov
5 (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 模式。系统平均每年约执行
Vortex Gold MT4
Stanislav Tomilov
4.93 (44)
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 >>
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,核心目标是稳定性与安全性。系统基于趋势分析,并采用严格的风险控制机制。 本系统不使用任何危险交易方式 —— 不加仓、不网格、不马丁、不激进加仓。 每一笔交易都严格设置止损
AW Recovery EA
AW Trading Software Limited
4.35 (84)
智能交易系统是一个旨在恢复无利可图头寸的系统。 作者的算法锁定了一个亏损仓位,将其拆分为多个独立的部分,并分别平仓。简单的设置、在回撤的情况下延迟启动、锁定、禁用其他 EA 交易、使用趋势过滤进行平均以及部分关闭亏损头寸都内置在一个工具中。 与仅在整个组中关闭订单的网格策略相比,使用部分关闭损失可以让您以较低的存款负载减少损失,从而确保更安全地处理损失。 如何恢复订单: 1 EA 关闭所选工具的其他窗口以关闭无利可图的 EA(可选)。 2 EA 重置所有已处理订单的止盈和止损水平,并删除具有相应标识符的挂单。 3 EA 关闭所有已处理的盈利订单,以便使用其利润来弥补部分非盈利订单并减少总头寸量(可选)。 4 EA 通过打开锁定订单来锁定亏损头寸。 5 然后,通过打开恢复订单,它开始通过部分关闭不盈利的订单来减少损失。 6 当部分关闭时,算法首先恢复定位最不成功的订单,或者最接近盈利的无利润订单。每个无利可图的订单都分为许多部分,顾问分别关闭每个部分。恢复订单以小量开仓,以免大幅增加入金负担 包含注释、设置和测试说明的完整输入设置列表  ->   这里  MT5 版本 ->   这里
One Gold MT4
Stanislav Tomilov
4.68 (19)
介绍 One Gold EA,这是 Meta Trader 平台上一种先进的黄金交易机器人,旨在帮助交易者进行高级市场分析。我们的专有技术利用神经网络和数据驱动算法来分析历史和实时黄金市场数据,提供有助于决策的见解。与传统的手动策略不同,One Gold EA 以最少的干预运行,简化了交易流程并旨在降低相关风险。虽然使用先进的神经插件可以增强机器人的分析能力,但需要注意的是,与任何交易工具一样,One Gold EA 并不保证盈利。然而,它被设计为具有通过提供更明智和数据支持的见解来提高交易绩效的潜力。One Gold EA 持续监控黄金市场,以检测人类交易者可能难以发现的模式和趋势。该系统能够适应各种市场条件,提供更一致的交易方法,尤其是在黄金交易等高度波动的环境中。无论您是经验丰富的交易员还是市场新手,One Gold EA 都旨在通过提供全面的市场分析和减少手动工作量来支持您的决策过程。虽然 One Gold EA 旨在简化交易体验,但将机器人与深思熟虑的交易计划和适当的风险管理策略结合使用至关重要。我们相信我们的技术有潜力为交易员提供支持,但鼓励负责任地使用和持续监控结果以获得
RiskShield Dragon   — Automated Multi-Currency Advisor Combining intelligent algorithms, robust protection mechanisms, and flexible configuration, **RiskShield Dragon** delivers consistent profits with minimal risk. --- ## Key Advantages * **Multi-Currency & Multi-Threaded**: Supports over 20 currency pairs (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDJPY, and more) simultaneously on any timeframe. * **Minimum Deposit from 10,000**: Optimized for trading with a starting balance of 10,000 account uni
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
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 时间框架上开发的全自动交易系统。 它将网格策略的结构与马丁格尔策略的自适应恢复逻辑相结合,形成了一个能够智能管理所有市场阶段交易的系统。 专为易用性和一致性而设计   量子王
Wall Street Robot MT4
MQL TOOLS SL
5 (1)
Wall Street Robot is a   professional trading system   developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to oper
Tom Scalper MT4
Xuan Bach Nguyen
Tom Scalper - The Trendline Breakout Expert Advisor Overview: Tom is an Expert Advisor designed for Gold (XAUUSD) trading. It uses a single trendline to determine the trend and incorporates pattern recognition to identify breakout conditions. Built for traders seeking a structured approach, Tom follows predefined criteria to execute trades based on market movements. Join My MQL5 Channel for the Latest Updates! Live Signal :   https://www.mql5.com/en/signals/2361938 Pricing Launch Price : $199
Gold Zilla AI MT4
Christophe Pa Trouillas
5 (2)
使用 Grok AI辅助 、风险分散且 黄金优化的EA 生成可控回报。 GoldZILLA AI 是一种多策略算法,可检测市场状态以动态选择五种不同的策略,在XAUUSD上优化回报同时最小化回撤。 [   Live Signal   ] - [  Dedicated group   | Version   MT5   -   MT4   ] 购买后,请发送私信给我以获取用户手册和AI设置说明。 为什么选择此EA? 动态多策略方法 先进的市场状态检测,用于优化策略选择 五种不同的、不相关的交易策略 买卖信号的对称算法规则 风险分散 多时间框架分析(M5至H1) 五种不相关策略降低整体投资组合风险 基于市场状况的动态风险调整 所有仓位均设止损保护 先进的AI风险管理 基于具有实时网络搜索功能的Grok大语言模型 实时宏观分析和新闻事件监控 带有详细推理的每日趋势预测 黄金优化性能 专为XAUUSD CFD交易设计 利用黄金独特的波动特性 多种策略针对黄金价格行为量身定制 最高道德标准的回测和可靠的真实表现 100%高质量数据,无遗漏 零操纵历史止损或止盈 无过度拟合 定期比较Live S
Fortune MT4
Lee See Hao
5 (1)
Real Trading Account  LIVE SIGNAL VT MARKETS:  https://www.mql5.com/en/signals/2363526 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 Take Profit levels, allowing the EA to trade with controlled exposure and clear exit condi
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
GOLD Scalper PRO
Lachezar Krastev
4.48 (25)
ULTIMATE SALE -60% OFF! Get GOLD Scalper PRO with a huge –60% discount ! Special Price: $177 (Regular Price: $447 — You Save $270!) Don't miss out on getting this amazing gold trading EA at such a low price. The price will increase very soon! 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 by the low price – GOLD Scalper Pro is
Dark Algo
Marco Solito
4.66 (67)
Last copy at 399$ -> next price 499$ Dark Algo  is a fully automatic Expert Advisor for Scalping Trading on Eurusd and Gbpusd . This Expert Advisor is based on the latest generation of algorithm and is highly customizable to suit your trading needs.  If you   Buy this Expert   Advisor you can   write a feedback   at market and   get   a second EA for   Free , for More info contact me The basic strategy of this EA is built on a sophisticated algorithm  that allows it to identify and follow market
Universal Indicator EA, your ultimate solution to automate your trading strategy without any coding requirements. This powerful expert advisor is designed to work with any indicator that gives Buy and Sell Signals, making it a versatile tool for traders of all levels. With Universal Indicator EA, you can easily read signals from both Indicator Buffers and Objects on the Chart. You can also test your indicator on the demo account before purchasing to ensure that the EA is compatible with your ind
Recovery Manager Pro MT4
Ianina Nadirova
5 (1)
Recovery Manager Pro 是一个用于从其他顾问或手动开立订单中恢复回撤的系统。 RM Pro具有自动动态调整的能力。交易者需要选择风险级别,顾问将以全自动模式工作。 可以在回撤恢复模式和待机模式下工作!如果另一位顾问产生回撤,RM Pro 将禁用它,锁定头寸并开始使用部分平仓恢复存款的过程。在交易中,顾问使用智能平均、锁定和部分平仓。该顾问致力于定制趋势指标,该顾问的所有买家都将收到该指标作为礼物。 Advisor 的主要特点是能够在待机模式下工作。一旦另一位顾问产生回撤,RM Pro 将接管订单管理并打开平均订单,然后部分关闭。 设置说明:           关联 MT5版本:           关联 顾问特点: 恢复无利可图头寸的回撤 当达到指定的回撤时可以操作 使用部分闭包 开立平均订单以恢复无利可图的头寸 处理其他顾问或手动下订单的损失 根据趋势进行工作。定制移动平均线指标作为送给每位买家的礼物! 既可以处理一个订单,也可以处理一系列无利可图的订单! 适用于当前符号 根据给定的风险程度自动调整 重要的! 在启动顾问之前,我们建议在策略测试器或模拟账户中
ORIX mt4
Leonid Arkhipov
4.75 (4)
ORIX System —— 一款专为 GBPUSD 货币对在 M5 时间周期上开发的交易机器人。该EA基于价格行为与市场结构分析,不使用任何标准技术指标。系统不使用马丁格尔、交易网格、逆势加仓、对冲、无止损交易,也不进行高频或混乱交易。 Live signals 主要要求与建议 交易品种:GBPUSD 时间周期:M5 最低入金:从 100 USD / EUR(最小交易手数 0.01) 经纪商:任何提供高质量报价的正规 ECN 经纪商 账户类型:ECN / RAW / Razor(支持 Netting 与 Hedging 模式) VPS:建议使用 VPS 以保证 EA 稳定、连续运行 推荐风险:每笔交易 1%–5%(风险基于单笔交易的止损计算) 参数设置:默认设置 交易逻辑与风险管理 策略类型:价格行为与市场结构分析,识别关键反转区域 不使用标准技术指标 每笔交易均带有强制止损 支持固定手数交易 支持 Auto Risk 自动风险模式 风险基于单笔交易的止损进行计算 推荐风险:每笔交易 1–5% GMT 参数 默认情况下,EA 使用最常见的服务器时间偏移:冬令时 GMT +2,
DAX Robot MT4
MQL TOOLS SL
DAX Robot is an advanced automated trading system developed specifically for the   DAX 40 Index   on the H1 timeframe. Designed to handle the fast paced nature of one of Europe's   most actively traded indices , the robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic. The system focuses on identifying high probability   trading opportunities   by combining trend analysis, market momentum, and volatility based conditions. DAX Robot
XG Gold Robot MT4
MQL TOOLS SL
4.29 (42)
The XG Gold Robot MT4 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
Javier Gold Scalper V2
Felipe Jose Costa Pereira
5 (4)
Javier Gold Scalper:让我们的技术伴您左右! 手册和配置文件:购买后请联系我获取手册和配置文件 价格:根据已售许可数量逐步上涨 剩余可用副本:5 交易黄金这一金融市场上最具波动性的资产之一,需要极高的精准度、严谨的分析以及极其有效的风险管理。 Javier Gold Scalper 正是为整合这些核心要素而设计,打造出一个强大而复杂的系统,旨在优化黄金市场中的交易表现。借助尖端技术与先进策略,Golden Scalper 为初学者与专业交易者提供支持,使其能够安全应对挑战,把握这个动态市场中的各种机遇。有了 Golden Scalper,您将拥有一款专为应对黄金特性而开发的可靠工具。 交易品种 XAUUSD(黄金) 时间周期 M30 PropFirm 已准备好 起始资金 最低 $1000 经纪商 任意经纪商 账户类型 任意,推荐低点差账户 杠杆 最低 1:500 VPS 推荐使用,但不是强制 深入了解 Javier Gold Scalper! 图表形态分析市场 Golden Scalper 不仅能存储图表的全部数据,还能实时进行图表分析,精准识别图中频繁出现的价
Golden Mirage mt4
Michela Russo
5 (9)
Limited stock at the current price! Final price: $1999 --> PROMO: From $299 --> The price will go up every 5 purchases, next price : $399 Golden Mirage is a robust gold trading robot designed for traders who value reliability, simplicity, and professional-grade performance. Powered by a proven combination of RSI, Moving Average,  ADX, and High/Low Level  indicators, Golden Mirage delivers high-quality signals and fully automated trading on the M5 timeframe for XAUUSD (GOLD) . It features a robu
Pro Multi Sniper mp
DMITRII GRIDASOV
PRO MULTI SNIPER EA   是一款高质量的自动交易系统,在 MT4 平台上的准确率高达 90% 左右。 这款盈利丰厚的剥头皮 EA 确实是目前市场上最稳定的系统之一。 M15 timeframe!   No Grid! No Martingale! 它是仅在本 MQL5 网站提供的原创产品。 下载用于测试和交易的EA设置文件: GBPCAD Set_file GBPAUD Set_file EA 的独特功能: - 使用机器学习方法. - 实现复利方法和剥头皮技术。 - 系统根据市场波动自动设置动态止损。 - EA 默认具有自动(手数计算)风险管理功能,并提供固定手数选项。 - 可调整交易入场敏感度参数。 - 周五至周一不保留未结订单,避免出现缺口。 - 精确的运行时间过滤器,精度为 1 分钟。 - 机器人具有盈亏平衡功能。 - 账户杠杆:1:30 至 1:2000 范围内任意选择。 - 最推荐的货币对是 GBPCAD 和 GBPAUD。 - 不存在任何危险的马丁格尔/网格策略。每笔订单都有自己的止损位,以保护账户安全。 - 运行时间:EA 会根据设置中的时间过滤
FlipDamonHFT
Allistair Kabelo Mandow
1 (4)
FlipDamonHFT is a fully automated Expert Advisor for MetaTrader 4, developed for trading XAUUSD (Gold) on the M15 timeframe. It uses a high-frequency approach combined with advanced risk controls to identify and capture short-term opportunities in the gold market. The EA is designed for traders who understand the high-risk nature of HFT strategies. It focuses on precision execution, dynamic position sizing, and multi-layer protection to manage trades during volatile gold movements. Key Features
Iberian EA Ultimate - FX H4 is a fully automatic professional Forex expert advisor. This EA trades according to trends (NO scalping, NO martingale) This EA combines various strategies to verify the possibility of a trend and a series of global validations to give the final approval to the opening of the order Despite its complexity, detecting trends is not always the greatest difficulty, it is also necessary to know when to close the operation. In this case, the success of the EA is supported b
Session Breakout PRO 是一款专业的区间突破交易 EA(Breakout EA),专为 Forex 市场自动化交易而设计,并基于经典的 Session Breakout 策略构建。 该 EA 支持多个交易时段,包括 London Breakout 和 Asian Session Breakout,并结合了高级信号过滤、自适应风险管理(Risk Management)以及现代化风险控制工具。灵活的参数配置系统使交易者能够将策略应用于不同的货币对、CFD、指数、贵金属及其他金融工具,同时适应不同的市场环境和交易风格。 Gold Signal :  https://www.mql5.com/zh/signals/2378603 默认参数已针对 XAUUSD H1(GOLD H1)进行优化  |  Session_Breakout_PRO_GOLD_H1.set  |  Reports.zip 为什么并非每一次区间突破都能成为盈利交易 区间突破是最常见的市场入场方式之一。然而,价格突破区间边界并不意味着趋势一定会持续发展。 在实际交易中,有些突破会迅速回到区间内部,有些只产生
PZ Hedging EA MT4
PZ TRADING SLU
2 (1)
该EA将使用独特的不平衡对冲策略将您的亏损交易变成赢家。一旦初始交易进入预定义数量的点数的负数区域,回收机制就会启动:它将在当前价格之上和之下放置有限数量的另类交易,直到所有这些都可以用很小的净利润结清。 [ 用户指南 | 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 特征 易于使用和监督 使用图表按钮轻松交易 完全可定制的职位管理 控制和预先计算的风险敞口 实施许多自动进入策略 交易微型账户从$ 1,000起 按外汇时段过滤交易 如何开始 将EA加载到任何图表和时间表 编辑设置,直到风险可以接受为止 使用图表按钮或启用入场策略进行交易 让EA工作并预定利润 重复! 如果市场长期保持平稳,复苏将在少数情况下失败。如果失败,则会导致计算的损失。 使用技巧 使用图表按钮加载EA并进行交易 请勿使用同一交易品种交易任何其他EA 每个交易品种只进行一次初始交易-绝不进行两次或多次交易- 如果未显示“购买/出售”按钮,则表示EA忙 EA可以同时独立交易许多交易品种 但是要小心:永远不要在同一符号上两次加载EA 无需设置其他幻数即可交易不同的交易品种 从VPS进
作者的更多信息
FoxterAII
Serhii Shal
FoxterAI — 基于ATR自适应步长的网格交易EA,内置实时控制面板 FoxterAI 是一款用于 MetaTrader 5 的自动网格交易机器人,基于均值回归网格策略构建。网格步长通过 ATR 指标计算,而非固定点数:波动率高时订单间距变宽,波动率低时间距变窄,实现自动适应市场节奏。EA 同时管理两个独立序列——BUY 和 SELL。 核心功能:控制面板在策略测试器中完全可用 内置交互式控制面板在策略测试器可视化模式下完全正常运行。回测过程中无需停止测试即可修改关键参数:启用/禁用交易、切换方向、更改入场模式、激活 Basket Mode、调整盈利目标、启用关卡系统、修改网格限制——并立即看到对结果的影响。这极大地加快了参数优化速度。 运行架构 每个 Tick EA 依次执行:序列更新、DetectTrend()(趋势检测)、CheckNewSeriesEntry()(入场条件检查)、ManagePositions()(保本、追踪止损、网格均值、止盈管理)、面板更新。 趋势检测 自定义 ATR 算法——计算所选时间框架上 N 根已完成 K 线的 High-Low 均值。ATR
筛选:
无评论
回复评论