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
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
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
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
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+
This is a fully automatic trading robot for the EURCHF currency pair.  But this robot can be configured to trade for other currency pairs. TURBO SCALPER PRO using a trend following strategy based on MACD, Parabolic SAR and Moving Average indicator. The robot works in full automatic mode, on the M1 timeframe. The trader does not need to set it up for trading. Open EURCHF and attach TURBO SCALPER PRO only to EURCHF M1 using the default settings. Advantages of the TURBO SCALPER PRO :  We show you
CRAZZ Winter EA
Low Chun Chiat
1. Intro: Like the cold weather and freezing of winter, Crazz Winter EA’s open trades can be held for one day or TP within minutes. Aiming to have a high consistency and profitable amount, Crazz Winter EA is designed to trade with only two kinds of currency which are EURUSD and AUDUSD and there will only one trade open for each currency at the same time. With the combination of Moving Average and Relative Strength Index, it may detect and identify the current and following market trade. The EA h
该产品的买家也购买
Vortex Gold MT4
Stanislav Tomilov
5 (39)
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 >>
BB Return mt4
Leonid Arkhipov
5 (10)
BB Return — 一款用于黄金交易(XAUUSD)的智能交易系统(EA)。该交易思路最初来自我的 手动交易 经验。策略核心是价格回归 Bollinger Bands(布林通道) 区间,但并非机械式或每次触及即入场。针对黄金市场的特性,系统加入了额外过滤条件,用于剔除无效和低质量的市场环境,仅在回归逻辑真正成立时才开仓。   交易原则 — 系统不使用网格、马丁或加仓平均成本等风险策略。EA 可使用 固定手数 或 AutoRisk 自动风险 模式运行。BB Return 对点差、滑点及不同经纪商的报价方式不敏感,可在任何经纪商及多种账户类型下运行,包括 Standard、ECN、Pro、Raw、Razor 。系统不受交易时段限制,可 24 小时运行 。   $ 359   不是最终价格。 当前价格仅剩 5–7 个名额。 之后将上涨。 该EA限量提供,以保证策略的稳定性。 设置与交易频率 — 启动系统无需复杂设置,策略设计即基于 默认参数 运行,通常只需调整手数或 AutoRisk 模式。系统平均每年约执行 80–100 笔交易 。对于不使用网格、加仓或激进方法的系统来说,这是一个
The Gold Reaper MT4
Profalgo Limited
4.59 (32)
道具準備就緒! ( 下載SETFILE ) 推出促銷活動: 目前價格只剩幾本! 最終價格:990$ 免費取得 1 個 EA(適用於 2 個交易帳號)-> 購買後聯絡我 Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal 歡迎來到黃金收割者! 該 EA 以非常成功的 Goldtrade Pro 為基礎,設計為同時在多個時間框架上運行,並且可以選擇將交易頻率從非常保守到極端波動設定。 EA 使用多種確認演算法來找到最佳入場價格,並在內部運行多種策略來分散交易風險。 所有交易都有停損和止盈,但也使用追蹤停損和追蹤停盈來最小化風險並最大化每筆交易的潛力。 該系統建立在非常流行且經過驗證的策略之上:交易突破重要的支撐位和阻力位。   黃金非常適合這種策略,因為它是一種波動性很大的貨幣對。 系統根據您的帳戶規模和最大允許提款設定自動調整交易頻率和手數! 回測顯示出非常穩定的成長曲線,回撤非常可控且恢復很快。  該 EA 已針對黃金的最長可用期限進行了壓力測試,為不同經紀商使用了多
Quantum King MT4
Bogdan Ion Puscasu
5 (3)
量子之王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 时间框架上开发的全自动交易系统。 它将网格策略的结构与马丁格尔策略的自适应恢复逻辑相结合,形成了一个能够智能管理所有市场阶段交易的系统。 专为易用性和一致性而设计   量子王
Pattie Breakout ORB EA
Patrick Jeannot
4.5 (2)
Pattie Opening Range Breakout (ORB) is a range of price variation, which for each session, it generates a combination of support and resistance levels, positioning itself in favor of breaking out of the bands, when it is exceeded on the upside is a signal to buy or enter long and when it is exceeded on the downside it is a signal to sell or enter short. Pattie Break Out  EA  is a specialized trading tool designed to automate  time session-based breakouts . The EA operates by drawing a price rang
AW Recovery EA
AW Trading Software Limited
4.35 (84)
智能交易系统是一个旨在恢复无利可图头寸的系统。 作者的算法锁定了一个亏损仓位,将其拆分为多个独立的部分,并分别平仓。简单的设置、在回撤的情况下延迟启动、锁定、禁用其他 EA 交易、使用趋势过滤进行平均以及部分关闭亏损头寸都内置在一个工具中。 与仅在整个组中关闭订单的网格策略相比,使用部分关闭损失可以让您以较低的存款负载减少损失,从而确保更安全地处理损失。 如何恢复订单: 1 EA 关闭所选工具的其他窗口以关闭无利可图的 EA(可选)。 2 EA 重置所有已处理订单的止盈和止损水平,并删除具有相应标识符的挂单。 3 EA 关闭所有已处理的盈利订单,以便使用其利润来弥补部分非盈利订单并减少总头寸量(可选)。 4 EA 通过打开锁定订单来锁定亏损头寸。 5 然后,通过打开恢复订单,它开始通过部分关闭不盈利的订单来减少损失。 6 当部分关闭时,算法首先恢复定位最不成功的订单,或者最接近盈利的无利润订单。每个无利可图的订单都分为许多部分,顾问分别关闭每个部分。恢复订单以小量开仓,以免大幅增加入金负担 包含注释、设置和测试说明的完整输入设置列表  ->   这里  MT5 版本 ->   这里
FlipDamonHFT
Allistair Kabelo Mandow
1 (3)
Ask in private for more details after purchase Discounted   price .  The price will increase by $500 with every 10 purchases. ***Buy FLIPDEMON HFT MT4 and you could get TINGA TINGA or  FLIPDEMON HFT MT5 for free !*** Ask in private for more details! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. FlipDamonHFT – High-Frequency Trading Robot for XAUUSD (GOLD) FlipDamonHFT is a fully automated Expert Advisor for MetaT
Trendalgo AI MT4
Stefano Frisetti
TRENDALGO is an EA that uses ARTIFICIAL INTELLIGENCE to trade 100% automatically and as the name says it is a TREND FOLLOWING EA, it works well on ASSETs that are TRENDING. AI is used to identify the moment in which volumes, volatility and momentum explode, according to a proprietary equation created by me which takes these values ​​into consideration as objective data and never uses any indicator. TRENDALGO opens a new TRADE and follows it by continuously adjusting STOP LOSS and TAKE PROFIT, f
XIRO Robot MT4
MQL TOOLS SL
5 (4)
XIRO Robot is a   professional trading system   created to operate on two of the most popular and liquid instruments on the market:  GBPUSD,  XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable
Recovery Manager Pro MT4
Ianina Nadirova
5 (1)
Recovery Manager Pro 是一个用于从其他顾问或手动开立订单中恢复回撤的系统。 RM Pro具有自动动态调整的能力。交易者需要选择风险级别,顾问将以全自动模式工作。 可以在回撤恢复模式和待机模式下工作!如果另一位顾问产生回撤,RM Pro 将禁用它,锁定头寸并开始使用部分平仓恢复存款的过程。在交易中,顾问使用智能平均、锁定和部分平仓。该顾问致力于定制趋势指标,该顾问的所有买家都将收到该指标作为礼物。 Advisor 的主要特点是能够在待机模式下工作。一旦另一位顾问产生回撤,RM Pro 将接管订单管理并打开平均订单,然后部分关闭。 设置说明:           关联 MT5版本:           关联 顾问特点: 恢复无利可图头寸的回撤 当达到指定的回撤时可以操作 使用部分闭包 开立平均订单以恢复无利可图的头寸 处理其他顾问或手动下订单的损失 根据趋势进行工作。定制移动平均线指标作为送给每位买家的礼物! 既可以处理一个订单,也可以处理一系列无利可图的订单! 适用于当前符号 根据给定的风险程度自动调整 重要的! 在启动顾问之前,我们建议在策略测试器或模拟账户中
GOLD Scalper PRO
Lachezar Krastev
4.6 (25)
WINTER SALE — FINAL DAYS! Get GOLD Scalper PRO with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Sale Price: $177 (Regular Price: $447 — You Save $270!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Live Results:   https://w
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 有一點經驗,您可以輕鬆地將
Aura Black Edition
Stanislav Tomilov
4.62 (21)
Aura Black Edition 是一款完全自动化的 EA,仅用于交易黄金。专家在 2011-2020 年期间在 XAUUSD 上表现出稳定的结果。没有使用危险的资金管理方法,没有马丁格尔,没有网格或剥头皮。适用于任何经纪商条件。使用多层感知器神经网络 (MLP) 训练的 EA 是一类前馈人工神经网络 (ANN)。术语 MLP 的使用含糊不清,有时松散地指任何前馈 ANN,有时严格指由多层感知器组成的网络(具有阈值激活)。多层感知器有时被通俗地称为“原始”神经网络,尤其是当它们只有一个隐藏层时。MLP 由至少三层节点组成:输入层、隐藏层和输出层。除了输入节点之外,每个节点都是使用非线性激活函数的神经元。MLP 利用一种称为反向传播的监督学习技术进行训练。多层结构和非线性激活使 MLP 与线性感知器区别开来。它可以区分非线性可分的数据。 此价格还剩 2 份,之后价格将上涨至 3000 美元 如何设定及参数说明 (阅读这里) Live results: https://www.mql5.com/en/signals/2313678 More Signals:   Check my pr
实时信号:   https://www.mql5.com/en/users/varkotechnologies/seller MT5 版本:   https://www.mql5.com/en/market/product/164203 大体时间:       M1 货币对:       XAUUSD Varko Technologies 不是一家企业,而是一种自由的理念。 我感兴趣的是长期合作和建立声誉。 我的目标是不断改进和优化产品,以适应不断变化的市场环境。 黄金安全EA       - 该算法同时使用多种策略,其主要理念是强调控制亏损交易和风险。 交易的收尾和控制采用了多级措施。 如何安装专家版? 您需要将文件从EA传输到XAUUSD M1货币对图表。无需SET文件,只需设置时间偏移值即可。 我建议使用时间交易,例如通过 IC Markets 或 RoboForex 等经纪商。 GMT 时区偏移 =   IC Markets 时间 - 您的经纪商时间。
Quantum Emperor MT4
Bogdan Ion Puscasu
4.85 (172)
介绍     QuantumEmperor EA 是一款突破性的 MQL5 专家顾问,它正在改变您交易著名的 GBPUSD 货币对的方式!由拥有超过13年交易经验的经验丰富的交易者团队开发。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***购买 Quantum Emperor EA,即可免费获得  Quantum StarMan   !*** 私信询问更多详情 已验证信号:   点击此处 MT5版本:  点击这里 量子 EA 通道:       点击这里 每购买 10 件,价格将增加 50 美元。最终价格为 1999 美元 量子皇帝EA     采用独特的策略,将单笔交易连续拆分成五笔较小的交易。这意味着每次 EA 执行一笔交易时,它都会自动将其拆分成五个较小的仓位。 量子皇帝EA     量子帝王EA凭借其卓越的亏损交易处理方法,在众多专家顾问中脱颖而出。与
Golden Mirage mt4
Michela Russo
5 (7)
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
XG Gold Robot MT4
MQL TOOLS SL
4.32 (38)
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
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
Agera MT4
Anton Kondratev
AGERA MT4 是一款全自动、多方面的开放式 EA,用于识别黄金市场中的漏洞! Not        Grid       , Not        Martingale    ,    Not      "   AI"         , Not      "   Neural Network" ,    Not      "   Machine Learning"    ,     Not     "ChatGPT"   ,     Not       Unrealistically Perfect Backtests  AGERA    Community :       www.mql5.com/en/messages/01e0964ee3a9dc01 Vantage Real :    https://www.mql5.com/en/signals/2363787 Tickmill Real :     https://www.mql5.com/en/signals/2361808 Default       Settings for One Сhart     XAUU
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
GoldPro
Sergey Batudayev
5 (2)
GoldPro (MT4) — XAUUSD 智能交易系统,提供两种可选模式:经典模式和剥头皮模式 GoldPro 是一款专为 XAUUSD(黄金) 打造的自动交易系统,专为希望获得结构化交易、清晰的风险控制以及能够在不同市场节奏下运行的 EA 的交易者而设计。 在一个EA程序内部,您可以选择 其交易方式 : 1)经典模式——冷静的逻辑,应对波动和回调 经典方法侧重于反转/均值回归行为(从市场“衰竭”区域入场)和结构化仓位管理。 篮式管理(采用一系列职位管理方式) 可选的严格限制平均值计算(距离/步数/批号系数) 多种退出方式:固定目标、盈亏平衡、尾随逻辑 扩散滤波器 交易时间表控制(工作日/周五截止/周末停止交易) 交易方向选项:买入/卖出/双向/季节性模式 2) 超短线模式——更快的逻辑,把握日内交易机会 动态模式,旨在实现更快的操作,提供灵活的入场方式和全系列的利润保护。 入场策略 选择(不同的短线交易入场逻辑) XAUUSD 自动预设 : 安全/最优(推荐)/激进 (预设值会自动调整一组短线交易参数) 篮子止盈(现金)+ 利润保护(返还逻辑) 可选择采用金字塔式加仓(盈利时
HFT Prop Firm EA
Dilwyn Tng
4.96 (632)
HFT Prop Firm EA 也被称为 Green Man,因为其独特的标志,是专为克服允许高频交易 (HFT) 策略的专有交易公司 (prop firms) 的挑战或评估而设计的专家顾问 (EA)。 限时优惠:购买 HFT Prop Firm EA 免费赠送价值 $198 的工具 MT5 版本: https://www.mql5.com/en/market/product/117386 通过 HFT 挑战表现监控(起价 $200): 1) 经纪商:IC Markets 账号 66603384 服务器:ICmarketsSC-Demo06 密码:Greenman 2) 经纪商:IC Markets 账号 21718043 服务器:ICmarketsSC-Demo02 密码:Greenman 结果 1: https://c.mql5.com/31/1055/hft-prop-firm-ea-screen-4333.gif 结果 2: https://c.mql5.com/31/1055/hft-prop-firm-ea-screen-4648.gif 超过 600 条五星好
EA 22 Pairs
Tjia Elisabeth Jasmine Canadi
EA 22 Pairs – MultiPair Averaging + Hedge System (Smart Directional Extended) 促销活动上线——诚邀五星好评用户!终身6个月优惠价。名额有限,先到先得! 终身使用权仅比6个月价格加1美分—— 趁现在还能享受无与伦比的优惠价格,锁定永久所有权,之后将恢复至全额终身价值! 版本:完美交互式用户界面 - MT4(已打补丁) 开发者:CyberBot Project P R E P A R A T II O N 交易仅仅是另一种形式的赌博吗? 在极端情况下,交易确实类似于高风险赌博——财富可能在瞬间暴涨或暴跌。外汇和资本市场在剧烈波动的环境中运行,价格走势甚至可能超出最精密的预测。 这种现实引发了持续不断的争论。一些人认为,交易是一种结构化的金融活动,以数据、分析和经济原理为基础。然而,数据却揭示了一个更为残酷的现实:超过95%的交易者会遭受重大损失,而只有极少数人——通常是精英机构投资者——能够实现持续盈利。 那么,为什么会有人将交易比作赌博呢? 从法律角度来看,交
Vortex Turbo EA MT4
Stanislav Tomilov
5 (9)
Vortex Turbo——“驾驭风暴——掌控漩涡” Vortex Turbo代表了智能交易的下一个进化阶段——它融合了尖端人工智能架构、自适应市场逻辑和精准的风险控制,是一项独特的创新。Vortex Turbo基于成熟的算法原理,将多种策略整合到一个统一的高速生态系统中,并以全新的预测智能为驱动。Vortex Turbo专为黄金XAUUSD(GOLD)的超短线交易而设计,采用受控马丁格尔和均价网格,同时每个   仓位都受到内置止损的全面保护   ——确保了力量、精准度和安全性之间的完美平衡。 非常重要!购买专家服务后请给我发私信。我会把所有必要的建议和操作指南发给你。 399 美元的价格有效期至 2 月 15 日,之后价格将上涨至 499 美元。(最终价格为 999 美元) 购买   Vortex Turbo   智能交易系统后,您将有机会获得   我的其他任何一款智能交易系统的免费授权   ,该系统可关联到您选择的   三个交易账户    (赠送的智能交易系统将以 .ex 格式的文件直接发送)。  请私信询问具体条件   https://www.mql5.com/en/users
Monopolist
Aleksandr Shurgin
Professional automatic advisor with high performance. The advisor has preset settings, trades automatically calculated or fixed lot. You can use default settings or use your preferences. The Monopolist expert uses the author's, multi-component algorithm for fast processing of market data in real time, to open short-term transactions on dynamic instruments with a small spread. The advisor's strategy is based on price action, transactions are opened with a minimum waiting time for a decision, whic
Apache MHL Moving Average
Paulo Roberto Da Costa
Sinal (GOLD/XAUSD) - mais de 14 meses ativo e mais de 6 mil negociações em conta Standard (alavancagem de 1:400):   https://www.mql5.com/pt/signals/2278431 Produto para MetaTrader4:  https://www.mql5.com/pt/market/product/159627 Produto para MetaTrader5:  https://www.mql5.com/pt/market/product/160313 O Apache MHL Moving Average Expert Advisor ou simplesmente "Apache MHL" é um robô que opera no ativo GOLD/XAUUSD utilizando estratégias baseadas em médias móveis e gestão de risco com Martingale.
Infinity Trader EA
Lachezar Krastev
5 (18)
WINTER SALE — FINAL DAYS! Get Infinity Trader EA with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Christmas Price: $217 (Regular Price: $547 — You Save $330!) FREE BONUS: News Scope EA PRO A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Infinity Trader EA Live R
Forex Diamond EA
Lachezar Krastev
5 (5)
WINTER SALE — FINAL DAYS! Get Forex Diamond EA with a huge –60% discount AND receive News Scope EA PRO as a FREE BONUS ! Special Winter Sale Price: $217 (Regular Price: $547 — You Save $330!) FREE BONUS: News Scope EA PRO  A powerful multi-symbol strategy packed with advanced features, supporting 5 trading pairs — real value: $397! After completing your purchase, simply contact me and I will send you your BONUS EA immediately. Don’t miss this once-a-year opportunity! Forex Diamond EA – Relia
Pingo AI
Anastasiya Morozova
Pingo Pingo是一款全自动交易机器人,旨在为外汇市场提供稳定、安全的交易环境。 该投资顾问的设计重点在于严格的风险控制,并且不采用马丁格尔策略、网格策略或平均策略等危险策略。 MT5 Version:  https://www.mql5.com/ru/market/product/155602 工作原理 Pingo 利用智能波动率过滤器分析价格模式和短期市场动态。 该机器人能够识别冲动区和修正区,从而以较高的成功概率和最小的风险进入市场。 交易决策严格按照算法做出,不受情绪或交易员干预。 安全性和可靠性 不使用 鞅 、 平均 或 危险位置管理方法 通过动态批次或固定数量进行风险管理 兼容任何经纪商和账户类型 主要特点 无需 马丁格尔策略 、 平均策略 、 锁定策略 或 网格 策略即可生效 使用精确的价格和波动性分析算法 针对高执行速度和最小回撤进行了优化 设置简单——“设置好就不用管了” 适合长期自动化交易 推荐工具和设置 时间周期:M15 账户类型:ECN 或原始价差账户 最低存款额:100 美元起 建议点差:最高 20 个点 推荐货币对: EURUSD GBPUS
Aussie Loonie EA MT4
MQL TOOLS SL
5 (2)
Aussie Loonie EA is a professional trading system developed exclusively for the   AUDCAD   currency pair. This cross pair is widely recognized for its stable and technical behavior, which makes it particularly attractive for traders who prefer structured and predictable market conditions rather than extreme volatility and sudden price spikes. By focusing solely on AUDCAD, the system is able to   adapt precisely   to the specific characteristics, rhythm and movement patterns of this pair. The EA
作者的更多信息
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
筛选:
无评论
回复评论