VolGuard Volatility Risk Manager

为 MetaTrader 出售的东西几乎都在预测方向。我用十三年的 EURUSD 和黄金数据检验了这件事是否可能,做了前向滚动验证,并加了一次把标签随机打乱的对照运行。

方向的结果落在 48% 到 51% 之间。在黄金上,同样的模型在被打乱的标签上得到 53.4% —— 比在真实数据上还高。一个过拟合的系统从内部看就是这个样子,这也是回测曲线不能当作证据的原因。

明天会走多远,是另一个问题,而这个问题有答案。VolGuard 建立在这个答案之上,除此之外别无其他。

它做什么

每天日线收盘时,VolGuard 预测市场明天会走多远,并把这个预测变成一个数字:你的仓位大小应该乘以的系数。

预计走幅是平常两倍的一天,只给一半的仓位,这样承担的资金留在你放它的地方,而不是悄悄翻倍。平静的一天则多给一些。超过你自己设定的上限时,它会说今天不要交易 —— 因为在剧烈的一天里,小仓位仍然是仓位。

系数在两端都被刻意限制。不限制的话,一个非常平静的预测会发出五倍杠杆,而平静预测出错的那一天,恰恰就是要命的那一天。

面板

状态只用一个词:NORMAL、REDUCED、BLOCKED 或 WARMUP。然后是明天的预测波幅,用该品种自己的价格单位表示;用来比较的典型波幅;两者的比值;以及手数系数。

面板画得足够大,隔着房间也能读,并且可以缩放。

你的 EA 如何读取它

决策以终端全局变量发布,所以平台上运行的任何程序都可以使用它,而不需要为了认识 VolGuard 而改写:

double VolGuardMultiplier(const string symbol)
  {
   const string name = "VolGuard_" + symbol + "_mult";
   if(!GlobalVariableCheck(name))
      return(1.0);
   return(GlobalVariableGet(name));
  }

lots = lots * VolGuardMultiplier(_Symbol);
if(lots <= 0.0) return;

如果 VolGuard 没有运行,函数返回 1.0,你的仓位计算不受影响。零表示 BLOCKED。同时还会发布 VolGuard_<symbol>_state 和 VolGuard_<symbol>_ratio。

如果你手工交易,就从面板上读出手数系数,然后相乘。

测量结果

样本外,2022 年 9 月到 2026 年 8 月,数据从未用于构建任何东西。模型每 21 天重新拟合一次,每一天都由一个没见过它的模型来打分。这就是产品实际做的事,而不是一份回测可以被摆布成的样子。

黄金,1031 天:预测与结果的秩相关 +0.599。显而易见的对照 —— 用今天的波幅作为明天的预测 —— 得到 +0.450。对数波幅上的 R 方 +0.411。

EURUSD,1039 天:+0.511,同一对照为 +0.403。

实践中真正重要的数字:在黄金上,模型判定为剧烈的那三分之一天数,实际走幅是它判定为平静的那三分之一的 2.07 倍。EURUSD 上是 1.75 倍。

以上所有数字都是相对波幅,也就是波幅除以价格。黄金在这段时间里从 1700 涨到 4300,绝对波幅仅凭价格水平就会上升;用绝对单位做同样的检验会报出 4.35 倍,那是虚高的。诚实的数字是这里印出来的这个。

里面是什么

一个岭回归。十二个特征,十三个系数,闭式求解。

梯度提升和神经网络都试过,在两个品种上都输了 —— 黄金上线性模型 +0.683,另外两个是 +0.639 和 +0.653。波动率在对数空间里几乎是线性的,复杂模型把容量花在拟合噪声上。

所以没有 ONNX 文件,没有二进制资源,没有下载的权重,没有任何东西会加载失败,也没有任何东西会在货架上过期。

它学习你的品种和你的经纪商

这个产品里没有随附任何系数。启动时,VolGuard 会在它所附着图表的日线历史上拟合模型,数据来自你自己经纪商的行情,并在运行中每 21 天重新拟合一次。

这个周期不是装饰。只拟合一次然后不再更新的模型得到 +0.325,而同一个模型随行情前进不断重拟合得到 +0.683。波动率的状态会迁移,冻结的模型会停止工作,而且从不声张。

它不会做什么

它不会告诉你市场往哪里走,因为这一点已经被测量过,做不到。没有网格,没有马丁格尔,没有向下摊平,没有收益承诺。

它不开仓。默认情况下也不平仓 —— 阻断只是把系数设为零并告诉你。阻断时平掉已有仓位是一项需要你主动打开的设置,因为没有哪个工具应该在没被要求的情况下去平别人的仓。

它需要该品种至少 300 根日线,1500 根以上更好。

设置

用于拟合的日线数量、岭回归正则化强度、重拟合间隔。最小和最大手数系数、开始阻断的比值,以及是否启用阻断。被阻断的日子是否平掉已有仓位,以及是否只限于某个 magic number。面板位置与缩放。

默认值就是经过验证的那套配置。

适用于

任何有日线历史的品种、任何图表周期、对冲和净持仓账户,以及任何你能加上一行代码的 EA。

推荐产品
BulkOp Trade Manager
Ahmed Jumaa Saif Ali Almheiri
BulkOp Trade Manager 交易更快速。管理更智能。平仓更自信。 BulkOp Trade Manager 是一款强大的 MT5 交易管理工具 EA,专为需要速度、控制力和清晰执行体验的交易者打造,可直接在图表上管理交易。 它适合活跃的手动交易者、剥头皮交易者、黄金交易者,以及希望用更少点击管理多个仓位的交易者。 为什么选择 BulkOp? 超快速 Buy 和 Sell 执行 一键批量平仓盈利订单 一键批量平仓亏损订单 支持键盘快捷键交易控制 批量开仓功能 快速关闭 Buy 或 Sell 仓位 支持管理 MT5 手动和手机端交易 智能风险工具:SL、TP、ATR、Break-even 或无 SL/TP 模式 使用可视化价格线管理挂单 网格订单工具 保存和加载常用设置 图表上的清晰下拉式控制面板 为速度而生 BulkOp 专为快速市场反应而设计。 通过一个专业面板,即可开仓、锁定利润、控制亏损、管理风险并控制多个仓位。 适合人群 XAUUSD / 黄金交易者 剥头皮交易者 日内交易者 手动交易者 需要快速执行的交易者 管理多个仓位的交易者 核心功能 Main Contro
Global Stop Loss and Take Profit Manager Drag Lines Auto Apply Already using my free Global Stop Loss and Take Profit Setter? This is the always on version. Instead of setting levels once, you drag two lines on the chart and every manual position on that symbol — plus every new one you open — instantly inherits the Stop Loss and Take Profit. No clicking into each order. No forgetting a stop. Global Stop Loss and Target Manager is a drag-and-drop risk tool for manual traders on MetaTrader 5. Pu
Super Rebate Mix System
Mr Punnatorn Tunbee
Basic working principles of EA will have 2 main systems. 1. Timed order opening means that at the specified time the EA will open 1 Buy order and 1 Sell order. 2. When the graph is strong, the EA will remember the speed of the graph. is the number of points per second which can be determined You can set the number of orders in the function ( Loop Order ). The order closing system uses the trailling moneym Loss system, but I set it as a percentage to make it easier to calculate when the capital
Execution Guard
Joao Matheus Melo Soares
Execution Guard  "Place orders directly on the chart with a single click.” A professional risk and execution management tool designed for traders who value precision, discipline, and operational safety. Instead of focusing on signals or strategies, Execution Guard acts as a protective layer over your trading process, helping you maintain control over executions, reduce human error, and enforce predefined trading rules — especially during faster or volatile market conditions. What is Execution G
Grid Manager — Manual Multi-Basket Grid Assistant for MT5 Grid Manager is a hands-on control panel for building and managing grid "baskets" directly on your chart. You decide the direction and the moment; the tool opens the grid, manages every leg, and protects the position with money-based risk controls, on-chart breakeven/SL/TP lines, and one-click actions. It is an execution and management assistant — fast, visual, and fully under your control. What it is — and what it is not Grid Manager is
Introducing Neural Bitcoin Impulse - an innovative trading bot created using neural network training technology on voluminous market data sets. The built-in mathematical model of artificial intelligence searches for the potential impulse of each next market bar and uses the resulting patterns of divergence and convergence between the predictive indicators and the price to form high-precision reversal points for opening trading positions. The trading robot is based on the Neural Bar Impulse ind
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 是一个全自动的外汇交易智能交易系统(EA)。该机器人创建于 2014 年 ,在此期间完成了大量盈利交易,在我的个人账户上实现了超过 7000% 的收益增长 。经过多次更新, 2019 年版本 是最稳定、最优秀的。机器人可用于任何交易品种,但在 EURGBP、GBPUSD(M5 周期) 上表现最佳。使用错误的参数会导致较差结果。 真实账户的 set 文件仅提供给购买者。 ️ 主要优势 无马丁格尔、无对冲、无加仓,始终使用 SL/TP 。 高速测试与优化。 可选 Dynamic Take-Profit ,自动适应价格通道高低点。 内置 新闻日历过滤器 ,自动避开重大事件。 自动检测 GMT 偏移 。 针对实盘交易长期优化,结果稳定。 设置后可自动运行,无需干预。 参数说明 Core / Trading type_order — 订单执行类型 (默认 ORDER_FILLING_FOK)。 ReverseTrade — 反转交易方向。 ToolEnter — 入场工具 (RSI 或 None)。 RSI304 / NoRSIbars — RSI 周期与
Non-Repainting. Non-Redrawing. Non-Lagging. Signals appear only on confirmed bars. What you see on history is exactly what appeared in real time. Built specifically for Gold (XAUUSD) traders. Gold ML Supertrend MT5 is the only Supertrend indicator on MQL5 that learns. Instead of using a fixed multiplier, it runs a K-means clustering algorithm on recent price data to find the optimal band width. Then it adapts that width per trading session (Asia/London/NY) based on what actually worked. The resu
VegaXLR Manual Backtest Helper
Anderson Luiz Toledo Dos Santos
VegaXLR Manual Backtest Helper for MetaTrader 5 是一款可视化回测辅助工具,专为希望直接在 MT5 图表上测试、复盘和整理主观交易策略的交易者而设计。 无需使用电子表格或手动记录结果,您可以在价格历史图表上绘制交易,模拟进场和出场,计算绩效指标,并在图表上的清晰面板中查看每一笔交易。该工具可帮助您的手动回测流程更快速、更有条理,也更便于分析。 它既支持简单的 Win/Loss 标记,也支持 Buy/Sell 交易绘制,适用于不同类型的回测方式。您还可以使用带有可视化进场、止损和止盈区域的模拟交易,用于复盘交易形态和模拟场景。 该 EA 不执行真实交易。它专注于手动策略测试、交易复盘、交易日志辅助以及 MetaTrader 5 内的可视化绩效跟踪。 所有显示的结果均为手动模拟/回测结果,不代表真实交易、交易信号、投资建议或未来表现保证。 主要功能 直接在图表上绘制手动交易 将交易标记为 Win/Loss 或 Buy/Sell 使用可视化进场、止损和止盈区域模拟交易 跟踪点数、盈亏、佣金和模拟余额变化 使用固定手数、固定金额风险或余额百分比风险
SlopeChannelB MT5
MIKHAIL VINOGRADOV
SlopeChannelB – 一种技术分析工具,构建倾斜的价格运动通道,为评估当前市场状况和寻找交易信号提供独特机会。 指标的主要特点: 倾斜的价格运动通道 : 该指标有助于可视化支持和阻力水平,这些水平可能表明潜在的反转点或趋势持续。 线条颜色多样和背景突出显示 : 倾斜的支持和阻力级别以不同颜色显示,通道本身还通过背景额外突出,简化图表的视觉分析。 三种计算线条的选项 : 指标使用回归分析来构建通道线。您可以选择以下三种方法之一: Robust (默认) – 对异常值具有鲁棒性的方法。 OLS (普通最小二乘法) 。 Median (中位数计算) 。 最优模型选择 : SlopeChannelB根据五个质量标准的分析自动选择最适合的通道线变体。 质量参数直接在图表上显示,帮助您评估结果。您还可以使用按钮手动切换通道构建选项。 双信号系统 : 第一信号 – 当价格达到倾斜的阻力或支持级别时发生。 第二信号 – 记录价格从级别到通道中心的移动。 这些信号有助于寻找反弹的入场点,但始终需要其他工具的确认。 与其他指标联合使用 : 建议将SlopeChannelB与振荡器或趋势
Trade Copilot - 黄金(XAUUSD)及任意品种的半自动风险管理面板 Trade Copilot 是一款半自动交易面板,专为希望拥有EA纪律性、同时保留自主入场控制权的手动交易者设计。您决定方向和价位,面板自动计算风险仓位、设置止损、管理止盈并保护交易。 主要功能 - 基于风险的手数计算 - 可选择风险百分比、风险金额或固定手数;面板根据止损距离自动计算仓位大小 - 3种止损模式 - ATR倍数、固定点数或固定美元距离 - 一键市价单与挂单 (立即买入/卖出、挂单买入/卖出),入场/止损/止盈线可拖动调整 - 网格交易 - 在价格区间内按钟形曲线分布手数放置一系列挂单(并非马丁格尔 - 手数由距中心的距离决定,亏损时绝不加倍) - 多重止盈 (最多4级) - 可拖动止盈线,分别位于主目标距离的20/40/60/80%处;每个级别部分平仓,应用后视觉上锁定 - 自动保本 (+点差) - 将止损移至真正的保本位,并计入当前点差,避免小幅亏损离场 - 4种自动移动止损模式 - 固定步长、ATR距离、前一根K线高低点、或移动平均线 - 风险防护 (Risk Guard)
Visual Dolphin Indicator
AL MOOSAWI ABDULLAH JAFFER BAQER
Visual Dolphin Indicator Unlock the rhythm of the market with the Visual Dolphin Indicator, your ultimate tool for identifying and capitalizing on market trends with clarity and confidence. Designed for both novice and experienced traders, this indicator eliminates the noise and guesswork, providing crystal-clear buy and sell signals directly on your chart. The Logic Behind the Waves The core of the Visual Dolphin Indicator is a sophisticated yet intuitive dual-wave system based on moving avera
Walky Your Assistant
Hubert Rolando Montero Garrido
Walky Your Assistant 不是一个承诺盈利的机器人。 我在交易原油六年之后为自己开发了它。那时我明白,我的问题从来不是入场,而是出场。 我要么因恐惧过早平仓,要么抱着价格会回来的希望拖得太久。 这个工具做三件事,而且做得很好。 一、保护你开的仓位 如果你忘了设止损,它会根据当前波动率替你设置。当盈利达到你设定的阈值时,它会把止损 移到保本位。之后以 ATR 为基准跟随价格移动。适用于任何仓位,包括其他 EA 或手机端开的 仓位。 二、当行情环境改变时提醒你 成交量异常高于均值、更高周期趋势反转、持仓期间 ADX 衰减、价格接近前一日高点或低点。 屏幕提示加声音提醒,让你在忙别的事情时也不会错过。 最重要的是:当动能消失时,也就是 MACD 反向交叉且价格跌破快速均线时,它会告诉你当前 盈利是多少个 R,以及最高曾达到多少个 R。你可以自己平仓,也可以交给工具处理。 三、它测量任何经纪商都不会显示的数据 每笔交易都会写入 CSV 文件,其中两列比其他所有内容都重要: 达到的最大 R:在你平仓之前它曾走到多远 若触及目标的 R:如果让它跑完,你本可以获得多少 一个月后,你会
Account Protector Metatrader 5
Emmanuel Lovski Ijeawele Maduagwuna
Account Protector Meta Trader 5 This utility prevents risk of ruin per trading cycle.  Retail forex trading accounts are designed with stop-out levels that make it nearly impossible to restore lost capital after a trader — human or algorithmic —   blows an account . This is especially frustrating for traders who have grown their account to multiples of its starting value, only to suffer irreparable losses from a series of bad trade entries. The Account Protector solves this by enforcing a specif
XAU/USD is not a preset on top of a generic engine here. It is the whole project , one instrument, one model stack, built for it and nothing else. It started as research rather than as a product. What you get is the software itself, running on your account, at your broker, with the risk settings under your hand. Three models that disagree Direction and size are scored by an ensemble: a transformer, a gradient-boosted tree ensemble, and a recurrent network. Same feature set, three different induc
HedgeSafe Trade Assistant 一款以风险控制为核心的 MetaTrader 5 手动交易面板。 HedgeSafe 可帮助您在点击 BUY 或 SELL 之前,直接在图表上准备、验证和管理交易。 HedgeSafe 不是信号服务、行情预测工具、AI 机器人或自动交易策略。它不会替您选择交易方向,也不承诺盈利。每项交易决定均由交易者本人负责。 主要功能 按账户余额百分比或账户货币中的固定金额计算手数。 按点数或价格规划 Stop Loss;按点数、价格或 R 倍数规划 Take Profit。 实时预览风险金额、潜在收益、手数和风险回报比。 图表上的 Entry、Stop Loss 和 Take Profit 线与面板数值同步。 分别显示 BUY 与 SELL 的就绪状态,并在执行前进行方向相关的最终检查。 验证最小/最大交易量、交易量步长、tick size、tick value、stops level 和 freeze level。 检查市场可用性、品种交易模式、点差、允许偏差及 filling mode。 识别 hedging 与 netting 账户,并说明
You just blew your second funded account — not because your EA is broken, but because it traded the wrong way in the wrong market conditions. Market Regime Cockpit plugs directly into any existing EA with zero code changes, giving it the market awareness it was never built with. Stop losing challenges to drawdown and bad timing. What MRC Does For You Knows when to trade aggressively and when to back off — detects 5 distinct market regimes so your EA isn't firing trend entries into a choppy rang
Guardian Magic GT
Carlos Eduardo Rivas Istacuy
Guardian Magic GT - Risk Management Expert Advisor for MetaTrader 5 PROTECT YOUR TRADING CAPITAL WITH INTELLIGENT RISK MANAGEMENT Guardian Magic GT is a professional-grade Expert Advisor designed to safeguard your trading operations by implementing sophisticated risk control mechanisms. Whether you run a single bot or manage multiple automated trading systems simultaneously, Guardian Magic GT provides real-time monitoring and automatic position management to ensure your account stays within your
概述 Candle Timer Countdown Pro 显示当前K线收盘的平滑、精准倒计时,并配有一个圆形进度弧,让您一眼即可直观了解剩余时间。不同于其他在无新tick时会冻结或时间漂移的计时器,本指标使用服务器时间插值算法,在 M1 至 MN 的所有周期上提供无卡顿的平滑倒计时。 无论您是在1分钟图上进行剥头皮交易,还是在H4进行波段操作,准确知道当前K线何时收盘,有助于把握入场时机、确认K线形态,并避免过早决策。 为什么本计时器与众不同 大多数 MT5 计时器仅依赖 TimeCurrent(),该函数只有在新tick到来时才更新。在低波动或高周期图表中,tick可能间隔数秒,导致计时器冻结后突然跳动。 本指标通过在每次tick到达时锚定服务器时间,并在两次tick之间使用本地毫秒时钟进行插值计算,实现每0.5秒平滑递减,无卡顿、无延迟。同时配备实时圆形进度弧,提供独特的可视化时间提示。 主要功能 精准倒计时 服务器时间插值确保即使在tick稀少时也能平滑倒计时,无冻结、无跳动、无漂移。 圆形进度弧 在倒计时文字旁显示实时圆形进度环。 可选样式: 空心圆环 实心扇形 颜色随多空方
CCI Fixed Dual
Edoardo Centorame
什么是 CCI FIXED DUAL CCI FIXED DUAL 是一个专业级 Trend Direction Filter,旨在精准识别: 市场的主导方向 走势的结构质量 主趋势与加速阶段之间的一致性 它不是一个直接入场指标。 它不是一个传统振荡器。 它是一个市场环境工具,旨在帮助交易者决定何时交易以及何时不交易,从而大幅减少市场噪音和判断错误。 CCI FIXED DUAL 的基本理念 CCI FIXED DUAL 所基于的原则简单但强大: 一个信号只有在与市场结构一致时才有价值。 因此,该指标: 不使用单一数值 不会对价格做出冲动反应 不会刻意寻找反转点 而是建立在以下基础之上,构建出一种层级化的趋势解读: 基于 Typical Price 的 CCI 不同速度的 LWMA 移动平均线 短期 中期 和长期之间的动态比较 因此,其结果是对市场方向的一种稳定 干净 且可靠的表达。 指标的技术结构: CCI FIXED DUAL 由四个主要部分组成,全部显示在独立窗口中。 1 CCI magenta 线 这是指标的信息基础。 衡量典型价格的偏离程度 提供应用平滑处理的原始材料 它并不
QuickTrade Panel – Fast Order Execution & Risk Management The QuickTrade Panel is a powerful MetaTrader 5 trading tool that helps traders place orders faster, manage risk automatically, and control trades directly from the chart. It reduces manual work, improves trading accuracy, and makes trade management simple and efficient. Key Features On-Chart Trading: Change Lot Size, Risk %, Stop Loss (SL), Take Profit (TP), and Pending Distance without opening EA settings. Smart Position Sizing: Choose
DR Trade and Risk Manager: MT5的基础算法风险控制台 对于自主交易者来说,最大的敌人不是市场,而是缺乏纪律的自我。您拥有一个可靠的策略,但在高压时刻,您能完美地、始终如一地遵守您的规则吗?您能毫不犹豫地止损吗?您能让盈利的头寸持续增长,而不是因为恐惧而过早地了结吗?对大多数人来说,答案是否定的。这个在策略和执行之间的鸿沟,正是利润流失的地方。 DR Trade and Risk Manager 是弥合这一鸿沟的终极工具。它是一个基础的风险与交易管理控制台,旨在成为您坚定不移的算法合作伙伴。这个工具不预测市场,它强制执行您的计划。它提供了一个机构级的框架,以数学般的精度来管理您的交易,让您从导致结果不一致和账户爆仓的情绪过山车中解脱出来。 我们专注于专业交易管理的绝对要素:一个强大的算法引擎、一个统一的风险仪表板和稳健的执行。这个控制台是为那些不寻求灵丹妙药,而是寻求一个强大武器,将自己的战略规则锻造成持续、可盈利行动的严肃交易者而打造的。 为什么即使是最好的策略也会失败(以及如何修正) 没有纪律的执行,一个盈利的策略也毫无用处。这正是大多数交易者失败的地方,
Neon Trade — 超级现代交易解决方案,为您开启财务自由和顶级交易之路 我致力于创建一个独特的交易解决方案,能够满足任何交易者的需求,无论其目标和任务如何。主要理念是将机器学习与先进的交易技术相结合,以最大限度地发挥它们的协同效应。该系统既适用于在 1-2 个月内增长小额存款,也适用于长期的多年投资。 帮助您了解更多产品信息的链接 如果您想: 在购买前提出问题或在购买后获得支持和帮助 我的 Telegram 社区(您可以提出问题或与其他已购买产品的用户交流) 专为 MetaTrader 4 终端设计的类似版本! 深入学习产品及其输入参数的指南 重要!!!购买机器人后,或者如果您有兴趣购买,请务必给我写私信以获得咨询、建议和 .SET 配置文件 Neon Trade 使用选项 使用激进技术增长从 300 美元起的小额存款(适用于那些认为增加风险是合理和必要的且不害怕冒险的人) 为重视资产安全和长期稳定表现的严肃成熟投资者进行长期交易 通过自营公司挑战(FTMO、Darwinex)。我将帮助您根据您的需求配置一切,并解释如何最大限度地降低风险并尽快获得资金 优势 通用性    
Delta Hedge Master EA
Peter Robert Grange
DELTA HEDGE MASTER EA 结构化黄金交易。更精炼的保护架构。 LIVE SIGNAL — 实盘账户监控 公开 Live Signal: [ https://www.mql5.com/en/signals/2388935 ] 公开信号可独立展示 DELTA HEDGE MASTER EA 在真实市场环境下的运行情况,包括当前与历史交易、余额与净值变化、回撤、交易频率以及账户整体表现。 历史测试展示策略在过去市场环境中的表现。 Live Signal 则展示系统在当前真实市场中的运行情况。 概述 DELTA HEDGE MASTER EA 是一套专为黄金市场打造的结构化自动交易系统。 其架构围绕一个简单原则构建: 并不是每一次市场波动都值得交易。 黄金可能快速单边运行,也可能突然进入压缩区间,瞬间反转,或者出现看似很有吸引力、但底层结构并不充分的交易形态。 DELTA HEDGE MASTER 会持续评估当前市场环境,并在允许执行交易之前确认条件是否足够一致。 系统不会对每一根K线都做出反应,而是等待价格结构、方向压力、波动率以及当前市场状态之间形成足够的共振。 目标并
Auto Stop Loss MT5
Nabil Oukhouma
5 (1)
“一次设置,自动运行”的多品种风控管家 ️ 永远不要让您的交易裸奔。 Auto Stop Loss (MT5 Manager) 是注重资金安全的交易者的终极后台工具。与普通的交易面板不同,该工具在后台不知疲倦地运行,即时保护您的每一笔交易。无论您是手动开仓还是通过其他 EA 交易,该管家都能确保每个头寸立即附带硬止损 (Stop Loss)、止盈 (Take Profit) 和动态追踪止损 (Trailing Stop)。 颠覆性功能: 仅需在 一个图表 上即可管理您的整个投资组合。 无需打开 10 个不同的窗口拖慢电脑速度。只需列出您喜欢的货币对,该管家将同时监控所有货币对。 [   Get the MT4 Version Here   ] 核心功能 多品种控制 (节省 CPU 资源) :从一个图表管理 EURUSD, GBPJPY, US30 和黄金 (Gold) 的所有交易。 工作原理: 在逗号分隔的列表中输入代码(例如:EURUSD, GBPUSD, XAUUSD)。EA 将即时扫描并管理所有这些品种。 即时注入止损和止盈 :消除“胖手指”错误或网络断开的风险。交
TheRealPrice v3.0 | Ultimate Spread & Ask Visualizer TheRealPrice is a high-precision utility for MetaTrader 5 designed to expose the hidden cost of every trade: The Spread . While standard charts only display the Bid price, professional traders know that buy orders and short-exits happen at the Ask price. TheRealPrice bridges this gap by drawing a dynamic, real-time horizontal line that tracks the exact Ask level, providing a clear visual representation of the current market spread. Why do you
Stocks Trade — 基于机器学习的行业专用交易机器人 我们向您推出最高效的组合投资方法,结合严格限定的交易品种板块。核心目标是让任何用户无需前期准备即可交易美股。我们力求同时交易尽可能多的主流稳定美股,以确保资金安全的同时,在较短时间内实现可观收益。 帮助您深入了解产品并拓展功能的相关链接 如果您希望: 获取适用于 MetaTrader 4 终端的该机器人版本 获取同一机器人,但用于交易 28 个货币对的版本 获取同一机器人,但用于加密货币交易的版本 加入我们的 Telegram 社群——交流、支持与更新 获取基于相同技术的更先进免费版解决方案 获取基于相同技术的超级先进付费版解决方案 这款机器人适合谁? 希望将机器人挂载到图表上,以美股为核心资产快速获利的用户。(机器人开箱即用,无需预先配置。) 如果您对美股板块感兴趣并相信这些资产,您有很大机会在中长期获得收益。(具体结果取决于多种因素。) 已经交易美股,希望尝试新策略或分散风险的交易者。 核心优势与特点 行业专注 交易仅聚焦于单一板块 —— 美股。 云端 AI 训练 机器学习在强大的远程服务器上执行。优化结果由我定期手
Check Execution
Ivan Zaidenberg
1 (1)
This script will show you information about the execution speed of market orders. Instruction 1. Press " File/Open Data Folder " 2. Copy the log-files from  ../Logs   to   ../MQL5/Files 3. Run the CheckExec script on EURUSD chart, for example 4. Select parameters: AllOrders - check execution time of all market orders for EURUSD, OpenOrders - check execution time of market orders which where used to open positions on EURUSD, CloseOrders - check execution time of market orders which where used to
OneClick Auto Close MT5
Kyra Nickaline Watson-gordon
5 (2)
A utility to close all orders automatically when conditions meet. Various options are available to filter or select orders : Conditions : Closing conditions. 3 different conditions can be defined. EA will close orders anytime one or more defined conditions meet. Conditions can be defined based on account properties or selected orders properties. Also a fixed time to close orders is available. Type of orders : Buy / Sell / Buy Limit / Sell Limit / Buy Stop / Sell Stop Symbol Selection : All / Ch
The Gold Buyer
Moses Aboliwen Aduboa
Ride the Gold Trend with a Simple Buy-Only EA The  EA is a fully automated Buy-Only Expert Advisor for MetaTrader 5. It is designed to capture upward market opportunities with safe risk management and seamless execution. Why Traders Choose It: Best performance on Gold (XAUUSD) – highly liquid and trending. Buy-Only EA – focuses purely on long positions. Plug & Play setup – attach and let it trade automatically. Built-in Stop Loss & Take Profit protection. Smart one-position contro
该产品的买家也购买
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. ** After purchase,  Contact me via private message to receive t
Quant AI Agents
Ho Tuan Thang
5 (1)
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
AI Agent Supervisor is NOT an Expert Advisor. AI Agent Supervisor   is a   multi-agent AI risk & portfolio supervisor   that watches every EA on your account and intervenes in real time.  WANT AN AI PORTFOLIO MANAGER WATCHING YOUR FLEET 24/7?   Run your fleet on the same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. The Supervisor r
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
世界上没有本软件的同等产品,它代表一个覆盖交易信号的通用交易 "控制台",自动入场,设置止损和止盈,还有在单一窗口里同时进行多交易尾随终止。EA 的 "三次点击" 直观控制,确保在不同计算机上全方位使用所有功能,包括平板电脑。 与附加的信号指标交互来标记图标,给出实际市场的全貌,EA 令您做出正确的选择,以及在大多数情况下成为胜者一方。内置资金管理算法, 还有自动计算手数, 虚拟订单交易, 以及一些其它从崩溃账户里挽救交易者的 "诀窍"。它不是一个 "黑盒子"。而是一个深思熟虑的交易员的不可或缺的助理, 至少要尝试一次它的动作。 注,在面板上形成的 EA 不能在策略测试员中测试。可以在您的模拟账户里以实时模式检查它, 您可以下载本 EA 的免费版 - 混沌交易 EA 演示 。 EA 表现为一个面板,带有内置功能的交易机器人的,自动基于交易者可直观检查的交易信号入场,完全按照比尔·威廉姆斯的策略“混沌交易:第二版”和“新贸易维度”。在单独的窗口里,EA 识别价格走势的导向,用于指定品种和时间帧的全自动交易模式,也可以多品种并发。 它同时分析 MetaTrader 5“市场观察”窗口中显示
Features   With MT5 to Interactive Brokers(IB) Trader, you can: 1. Load chart data from IB to MT5, and Analyze with all standard or customer Indicators. 2. Place Orders to IB Account Directly in MT5. 3. Make your Own EAs upon IB Securities by only making minus changes of the trading function. Usage 1) Installation Copy the "Mt5ToIBTraderEn.ex4" and sample files to [MT5 Data Folder]->MQL5->Experts.  2)  MT5 Settings Add the IP Address to the MT5 Allowed URLs in 'Tools->Options->Expert Adviso
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
Check EA performance  https://www.mql5.com/en/signals/2376164?source=Site +Profile+Seller Spot vs Future Arbitrage EA for MT5 Spot vs Future Arbitrage EA is an automated Expert Advisor designed for MetaTrader 5 that operates using price differences between Gold spot and Gold futures instruments. The strategy opens positions on both instruments simultaneously to take advantage of temporary differences between spot and futures prices. Requirements The trading account must provide both Gold spot
Mt5 To InterativeBrokers Copier allows you to copy deals from MT5 account to Interactive Brokers. With this, you can run your EA strategy on a MT5 Demo/Real Account, then copy all the deals to Interactive Brokers account real time. Features: 1. Copy or Invert-Copy deals Realtime from MT5 to IB Account. 2. Synchronizing positions of both accounts periodicaly, in case any missing copying. 3. You can choose only Buy position or Sell position. Symbols Setup: General Format:  {MT Symbol} -> {IB S
Latency Arbitrage
Heri Yusufu Kaniugu
Latency Arbitrage – Ultra Fast Execution & Price Inefficiency Capture Latency Arbitrage  utility tool is designed to exploit short-term price inefficiencies between fast and slow price feeds. Instead of predicting market direction, the EA focuses on execution speed and price deviation opportunities, allowing traders to capture micro-movements before the market fully adjusts. With built-in risk controls and smart filtering, it ensures precise and disciplined trading performance. Price increases b
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
# 如果您有任何其他需求或對合作感興趣,請聯繫 zion.quantech.london@gmail.com。 Flash Trade (FT) 最友善的手動交易工具。 使用最直觀的操作來確保您的資金。 FT的特點 點擊任意位置快速交易 FT支持市場訂單和掛單 兩次點擊完成訂單並設置SL和TP 三次點擊完成掛單並設置SL和TP 自動將每個訂單的止損金額設置為您設置的餘額百分比或固定金額 下訂單時實時預估利潤 超簡單的界面和操作 支持拆分訂單 使用方式 市場訂單: 點擊圖表決定止損價位 點擊Buy或是Sell鈕 掛單: 點擊圖表決定入場價位 選擇掛單類型 點擊圖表決定止損價位 暫停FT: 點擊右上方的"On/Off"按鈕來切換開關 當按鈕從綠(On)變為紅(Off),代表FT已被停止 點擊"Off"按鈕再次開啟FT 如果有任何疑問、改善建議或是bug回報都可以聯繫e50310@gmail.com或留下評論 功能將持續於未來的版本推出
Adam FTMO MT5
Vyacheslav Izvarin
5 (2)
ADAM EA Special Version for FTMO Please use ShowInfo= false for backtesting ! Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94362 --------------------------------------------------------------------------------
MT5 Trading Deck
Manuel Michiels
5 (2)
One button. One trade. MT5 Trading Deck is a hotkey trading panel for MetaTrader 5 that turns the platform into a keyboard-driven execution cockpit. Stop loss, take profit and lot size are pre-calculated for every key; the moment you press, a market order is live on the broker. A complete technical user manual is attached in the product Comments section. It documents every input parameter, the full hotkey map, the recommended Stream Deck XL layout, and the advanced workflows for Pre-Limit orders
Gamma Edge Pro MT5 — GexBot Classic API Integration Gamma Edge Pro   brings institutional-grade   Gamma Exposure (GEX) data   directly onto your MetaTrader 5 chart — the same data used by professional options traders to anticipate price magnets, hedging flows, and dealer positioning. Powered by the   GexBot Classic API , this indicator automatically maps options market data from US-listed instruments onto any   MT5 CFD instrument   — Forex pairs, Gold, indices, and more — with intelligent price
QCML Assistant
Maxime Turcotte-lafreniere
QCML Assistant MT5 Your Trading. Our Assistant. Your Edge. Looking for a tool that completely transforms your experience on MetaTrader 5? QCML Assistant is the all-in-one solution built by traders, for traders. Just one tool installed on your chart, and you get access to an ultra-complete, ultra-fast, and ultra-simple trading platform. No more hours wasted setting up your workspace. No more complicated trade entries. With QCML Assistant, everything becomes simple, smooth, and efficient right fro
Hedge Trimmer EA
Michael Sipho Bhiya
Hedge Trimmer & Roll-Over EA Managing a hedged position means carrying two opposing trades simultaneously. Over time, the losing side grows while the profitable side offsets it. The standard problem is that closing the loser costs money you may not have sitting in cash — it has to come from somewhere. Hedge Trimmer EA solves this by using the floating profit on your winning trades as the funding source to progressively close down the losing side. It identifies which trades are in profit, uses a
News Trader Pro is a unique robot that allows you to trade the news by your predefined strategy. It loads every piece of news from several popular Forex websites. You can choose any news and preset the strategy to trade it, and then News Trader Pro will trade that news by selected strategy automatically when the news comes. News release gives opportunity to have pips since the price usually has big move at that time. Now, with this tool, trading news becomes easier, more flexible and more exciti
Elliott Wave Counter 是一个面板,用于快速和用户友好地手动标记 Elliott 波浪。可以选择一种颜色和一个级别的标记。还有用于删除最后一个标记和工具制作的整个标记的功能。一键制作标记。点击五次 - 有五波!艾略特波浪计数器对于艾略特波浪的初学者和专业分析师来说都是一个很好的工具。 艾略特波浪计数器安装和输入指南 如果你想得到   关于 EA 添加 URL (   http://autofxhub.com   ) MT5 终端的 通知 (见截图)。 MT4版本 https://www.mql5.com/en/market/product/14016 MT5版本 https://www.mql5.com/en/market/product/15081 一般输入: 波形类型按钮: 此按钮允许用户选择他们想要在图表上突出显示的波形类型。可用的选项包括推动波、调整波和其他自定义波模式。 波级按钮: 这个按钮   允许用户选择他们想要在图表上突出显示的波形级别。可用的选项包括初级、中级和次级波级别。 波浪颜色: 这个   按钮   允许用户选择他们想要在图表上突出显示的波浪图
If you wish to draw Support and Resistance lines, view: daily market opening, classical pivot levels, Fibonacci pivot levels, trend lines, Fibonacci levels, the remaining time to candle closing, and current spread. If you seek to place your orders with the exact lot that meets your desired stop loss risk. If you wish to do all this and more with just one click, then this is the perfect tool to use. This tool will allow you to feel more relaxed when deciding to open orders, as well as predicting
如果产品有任何问题或者您需要在此产品上添加功能,请联系我 Contact/message me if you encounter any issue using the product or need extra feature to add on the base version. There is Demo version of this panel Dashboard Babon Scalping System MT5 Demo in my product list, please try it out to get familiar with all functionalities for free. Free version: LINK MT4 version: LINK This system basically utilizes TDI, Heiken Ashi Trend, Price Trend on H1 time-frame and TMA on H1&H4 time-frame to generate the trend (big picture). Then
The new version of  MirrorSoftware 2021  has been completely rewriten and optimized.  This version requires to be loaded only on a single chart because  it can detect all actions on every symbol and not only the actions of symbol where it is loaded. Even the  graphics and the configuration mode  have been completely redesigned. The MirrorSoftware is composed of two components (all components are required to work):  MirrorController  (free indicator): This component must be loaded into the MASTER
ClusterSecond
Rafil Nurmukhametov
4.78 (32)
该工具允许绘制不同类型的图表。 秒图从1秒到86400秒 从1滴答开始的滴答图 成交量图 三角洲图 仁科图 范围图 用于体积分析的内置指标。 该工具的演示版 https://www.mql5.com/ru/channels/clustersecond 每日市场概况和所选时间框架的市场概况。 集群搜索。 不平衡。 VWAP。 动态POC、VAH、VAL 价格窗口简介 具有不同表现形式的垂直体积。 δ,有不同的可视化选项。 当前的和高的时间框架极 地下室指标烛台显示 也可以从图表中进行交易。 注意:该工具是为具有真实(交换)量的市场设计的。 它不适合外汇市场。它在VPS上不起作用。它在策略测试器中不起作用。 为了控制该图表,我们使用了 鼠标左键 - 移动图表,在设置中选择不同的模式,调用位于屏幕左下角带螺丝刀的钥匙图标下的主设置窗口。 鼠标右键 - 用于输入位于屏幕左上角图标下的图形结构的设置,以及绘制垂直、水平、趋势线和矩形的单独设置。 在图表区域旋转鼠标滚轮--左右移动图表,按住Ctrl键--上下移动图表,在价格比例区域--按价格比例,在时间轴区域--按时间比例。 H键--在
The script displays info about the share's corporate reports and dividends. The data is downloaded from   investing.com : Report date Profit per share (EPS) Revenue Market capitalization Amount of dividends Date of payment of dividends Dividend income The product cannot be tested in the tester (since it is not possible to receive data from the Internet). Before launching:  Add 2   URL   https://ru.investing.com/earnings-calendar/Service/getCalendarFilteredData  and   https://ru.investing.com/di
Telegram Publisher Agent 是一个附加组件,允许交易者实时向他们的 Telegram 频道和群组发送信号。通过可定制的消息、图表截图和其他功能,该工具可以帮助交易者与他们的追随者分享他们的交易见解和策略。该工具还具有亮暗主题切换的精美设计,为用户提供美观和功能性的交易体验。 Telegram Publisher Agent 旨在将您的所有交易作为信号发布在您的频道和群组中。您所要做的就是提供交易,然后 Telegram 发布商代理将为您完成所有繁重的工作,只需单击一个按钮即可将交易信号发送到您的交易渠道或群组。 电报发布代理   安装和输入指南 如果您想获得有关 EA 添加 URL (   http://autofxhub.com   ) MT4/MT5 终端的通知(见屏幕截图)。 MT4版本 https://www.mql5.com/en/market/product/18985 MT5版本 https://www.mql5.com/en/market/product/23946 主要特点: 信号发送 - 将信号发送到用户的 Telegram 频道和组,带有可
Telegram Notify MT5 Telegram Notify MT5 is an utility tool to bridge your MetaTrader 5 activities to your Telegram chat/channel. It is useful for monitoring your MetaTrader 5 account by sending a notification to your particular Telegram chat/channel when someone/EA is placing trades, modifying order's TP/SL, closing trades and etc. This EA does not place any trade for your account. This EA also could be a convenient tool for monitoring other's EA trading activities or a tool for publishing your
Telegram ChartSnap MT5 is an utility tool to bridge your MetaTrader 5 activities to your Telegram chat/group/channel. It will screen shot your MetaTrader 5 chart and send it to your dedicated Telegram chat/group/channel through a Telegram bot. The whole process will keep repeating based on a time cycle that predetermined by the user. It is a convenient tool for those who like to get access to their favorite system/dashboard that only available at MetaTrader Desktop. Beside that, trader can easi
The  Easy Strategy Builder (ESB)  is a " Do It Yourself " solution that allows you to create a wide range of the automated trading strategies without any line of codes. This is the world’s easiest method to automate your strategies that can be used in STP, ECN and FIFO brokers. No drag and drop is needed. Just by set conditions of your trading strategy and change settings on desired values and let it work in your account. ESB has hundreds of modules to define unlimited possibilities of strategi
快捷操作,快速买,卖,清空操作。 提供三个按钮:Buy,Sell,清空。 Buy:点击后快速下多单,默认1手,盈利点和止损点都是110点,下单成功后可手动修改。 Sell:点击后快速下空单,默认1手,盈利点和止损点都是110点,下单成功后可手动修改。 清空:快速全部订单清仓,包括买,卖订单。 提供快速操作,默认大小,盈利点和止损点都可以单独找我,定制开发。    图表可以自行设定品种,时间周期。 快捷操作,快速买,卖,清空操作。 提供三个按钮:Buy,Sell,清空。 Buy:点击后快速下多单,默认1手,盈利点和止损点都是110点,下单成功后可手动修改。 Sell:点击后快速下空单,默认1手,盈利点和止损点都是110点,下单成功后可手动修改。 清空:快速全部订单清仓,包括买,卖订单。 
GoDom Depth of Market EA
Fabio Oliveira Magalhaes
Go Depth of Market   This product helps to watch the order book in a easily and friendly way, helping traders to take decisions that are more consistent with the timing of the market. Parameters: Activating EA (robot) mode   if you leave true it will become a robot, if you leave false it will become an indicator. Initial volume  VolumeDynamic   if you leave it enabled will be automatic batch Proportion:   Example: If you put 500 every 500 $ it will open a lot of 1.0 Takeprofit Stoploss Daily pr
作者的更多信息
Most traders who fail a prop firm challenge do not fail because they did not know the rules. They fail because, at the moment it mattered, nobody was doing the arithmetic. Prop Guard Monitor does the arithmetic. It sits on one chart, watches the whole account, and answers one question continuously: how much room is left before a rule breaks. It never closes a position. It never deletes an order. It never locks anything. This build cannot touch a trade even if you want it to - the trading libr
FREE
丢掉一个资金账户,往往不是因为那笔让你后悔的交易,而是因为日内亏损上限被越过时、仍然开着的那一笔。 Prop Guard 挂在一张图表上,监控整个账户。它不开仓,也不发信号。它只持续回答一个问题:距离触发规则还剩多少空间——当答案足够接近零时,它就动手。 大多数防护工具做错的地方 回撤峰值会写入磁盘。关闭终端、重启电脑、一周后再连接:你的峰值仍然是你的峰值。只把峰值放在内存里的工具,要求你每天早上重新挂载一次;而一个会忘记峰值的追踪回撤规则,根本不是追踪回撤规则,只是一个长得像它的数字。 它监控什么 日内亏损。百分比可以按初始余额计算,也可以按当天开始时的余额计算;亏损可以从当天的起始余额衡量,也可以从当天的起始净值衡量。各家公司的表述不同,而这个差别就是真金白银,所以两者都是可设置项,而不是假设。 最大回撤。可选按初始余额的静态回撤,或按账户曾达到的最高余额、最高净值的追踪回撤。 敞口风险。账户上所有止损一旦同时触发会损失多少,并以亏损规则仍然留给你的空间来衡量。同样的止损距离,在一个全新的账户上是审慎的,在一个已经用掉大部分额度的账户上就是鲁莽的——这一行告诉你自己
筛选:
无评论
回复评论