Position Closure Management MT5

NOHEDGE — Automated Hedge Manager and Risk Controller for MetaTrader 5

A close-only utility that never opens a trade. It resolves the buy/sell pairs you already carry, at zero spread, across your entire account.

OVERVIEW

Running grid, martingale or manual hedging strategies means you constantly carry open buy/sell pairs that need to be resolved at exactly the right moment — before the spread widens at rollover, before a news spike blows your account, or exactly at your daily profit target. Doing that manually is slow, error-prone and stressful.

NOHEDGE automates the entire process. It scans every tick, matches opposing buy/sell pairs across your account and closes them with MT5's native CloseBy mechanism, which settles both sides in a single server transaction at zero spread cost. Partial-volume matching is fully supported, so even complex multi-lot grids are unwound cleanly.

One EA, one chart, full account scope: NOHEDGE monitors and controls all symbols simultaneously from whatever chart you attach it to.

FEATURES

Zero spread on pair closings
Most close approaches call PositionClose() twice, once per leg, and pay the full spread twice. NOHEDGE uses the MT5 function CloseBy(), which settles both legs in one server request at zero spread. On gold or volatile pairs with a 30-50 point spread that is real money over hundreds of closes. Partial-volume matching handles any lot-size combination, with automatic fallback to PositionClose() for brokers without CloseBy support.

Master switch and safe defaults
EnableEA defaults to false, so not a single trade can be closed until you activate it. That makes NOHEDGE safe to attach to a live account for observation first: dashboard, panic buttons and all visual elements stay fully active while the automation is paused.

Live dashboard panel [new in v1.4]
An on-chart panel shows buy and sell count with total volume, P/L per side in real time, net P/L across all positions, daily P/L with an animated progress bar between loss limit and profit target, and the active filter status for rollover, spread, CloseBy mode and anti-loop. It refreshes every 2 seconds.

Accurate daily P/L with target and loss limit
Many tools track only the floating P/L of open positions. NOHEDGE adds every deal already realised that day before comparing against your target, so no close is triggered by an uncounted loss and no limit is missed because earlier profits were ignored. When daily P/L reaches the target or drops to the limit, the whole account is closed automatically, broker-accurate rather than estimate-based.

Three one-click panic buttons, always live
Three permanent on-chart buttons cover CLOSE ALL, CLOSE PROFIT ONLY and CLOSE LOSS ONLY. Dashboard, rollover guard and spread filter never disable them: even with EnableEA false or the rollover window active they fire immediately, and panic close deliberately bypasses the anti-loop cooldown so every position stays reachable. They centre horizontally by default and reposition themselves when the chart is resized.

Anti-loop protection for grid EAs
Grid and martingale EAs reopen positions the instant they are closed, and without a cooldown that turns into a destructive cycle that burns through equity in seconds. The ring-buffer cooldown runs at O(1) performance and blocks re-closing the same symbol for a configurable window, five minutes by default, then clears itself.

Rollover protection and spread filter
A configurable quiet window, 23:55 to 00:10 by default, suspends automated closing around the daily swap rollover, with three behaviours: postpone, close regardless, or close selectively by each symbol's spread. It applies separately to hedge closing, daily limits, time-based close and panic buttons. A per-symbol spread check also runs before every close attempt, with separate thresholds for standard pairs and for crypto and XAU, optionally active outside the rollover window too.

Cross-symbol hedging
No other basic close manager on the MQL5 Marketplace detects hedges across different symbols. NOHEDGE pairs a EURUSD buy with a GBPUSD sell — common in correlation-based strategies and basket grids — and closes them together with full partial-volume matching. Unpaired single positions are processed in the same pass when CloseSinglePositions is active.

Time-based closing and trading day filter
A forced close can be scheduled at a specific server time on individually selectable weekdays, covering all positions, buy only or sell only, with optional exclusion of crypto and XAU. Ideal for a Friday evening close before the weekend gap. Automated hedge closing has its own independent per-weekday switch.

Closing priority
Four close-order modes are available: newest first, oldest first, most profitable first and least profitable first, applied consistently across pair closing, single-position closing and cross-symbol mode.

Broker-grade error handling
Retry logic with exponential backoff, trade.ResultRetcode() for accurate broker rejection codes instead of the unreliable GetLastError(), specific error messages for every known TRADE_RETCODE, and automatic fallback to direct close when CloseBy is unavailable — all production-tested on live accounts running 24/7 on a VPS.

Multi-instance, multi-strategy
The magic-number filter restricts all operations to positions carrying a given magic number. Chart A can manage your grid EA with MagicNumber 1001 while chart B manages your scalper with MagicNumber 2002 — same account, fully independent, no conflicts.

Layout control and position markers
Independent PanelTopOffset and ButtonTopOffset inputs push dashboard and panic buttons down from the chart top separately [new in v1.4], for brokers whose toolbars overlap the chart header. Arrow markers mark every open position, green for buy and red for sell, optionally limited to the current symbol.

PARAMETERS

Every parameter ships with a working default. The only one you must change is EnableEA.

Master switch. EnableEA (false) is the master on/off; false means monitoring mode with dashboard and buttons active and no automated closing.

Hedge closing. EnableHedgeClosing (true) enables automatic hedge pair detection and closing. CloseOrder (newest first) chooses between newest, oldest, most profitable and least profitable. CloseOnlyMagic (false) restricts management to positions matching MagicNumber (12345). UseDirectClose (false) uses PositionClose instead of CloseBy for brokers without CloseBy support. MaxPositionsPerCycle (5) caps positions closed per tick to limit server load. MaxRetries (3) and RetryDelay (200 ms, doubling with each attempt, capped at 1 s) govern broker rejections, and VerboseLogging (false) enables detailed journal logging.

Daily profit and loss limits. EnableDailyLimits (true) activates the system. DailyProfitTarget (+1000.0) and DailyLossLimit (-500.0) are set in account currency and close all positions when daily P/L reaches or drops to them. DailyLimitBehavior (respect rollover) covers a limit hit inside the rollover window: postpone, close regardless or selective. CryptoHandling (always close) defines how crypto and XAU are treated when a limit triggers.

Anti-loop protection. PreventTradeLoop (true) locks a symbol after a close to prevent cycling with grid EAs, and TradeLoopCooldown (300 s) sets how long it stays locked, implemented as a ring buffer with O(1) lookup.

Cross-symbol and single positions. CrossSymbolClose (false) matches buy and sell across different instruments. CloseSinglePositions (false) also closes unpaired positions, independent of the daily limits, with SinglePosMaxCount (5) as the maximum per cycle. MinimumLotSize (0.01) ignores positions below that volume.

Trading day filter. MondayEnabled through SundayEnabled switch the EA per weekday; Monday to Friday true, Saturday and Sunday false.

Rollover protection. EnableIgnoreTime (true) activates the quiet window, defined in server time by IgnoreStartHour (23), IgnoreStartMinute (55), IgnoreEndHour (0) and IgnoreEndMinute (10).

Spread filter. CheckSpreadInIgnoreTime (true) extends the spread check outside the rollover window. MaxAllowedSpread (5.0 points) applies to standard pairs such as forex and indices, CryptoMaxSpread (25.0 points) to crypto and XAU, and CryptoPrefix holds the comma-separated prefixes such as BTC and ETH identifying those instruments.

Time-based closing. EnableTimeBasedClosing (false) is the master switch for scheduled closing at CloseHour (17) and CloseMinute (0) in server time. CloseOnlyForex (true) excludes crypto and XAU, CloseBuyOnly (false) and CloseSellOnly (false) restrict it to one direction. TimeBasedCloseBehavior (respect rollover) decides whether the rollover window is respected or overridden, and ClosingMon to ClosingSun configure each weekday individually, defaulting to Friday only.

Panic buttons. EnablePanicButton (true) shows the emergency close buttons. ButtonWidth (210 px), ButtonHeight (35 px) and ButtonFontSize (7) control their size, ButtonRightMargin (0) centres them horizontally while any higher value is a fixed pixel distance from the right edge, and ButtonTopOffset (10 px) their distance from the chart top. ButtonColor (red), ProfitButtonColor (green), LossButtonColor (crimson) and TextColor (white) define the appearance, and PanicButtonBehavior (close regardless) decides whether a panic close respects the rollover window.

Info panel. EnableEAComment (true) shows the live dashboard. PanelInfoWidth (480 px) scales the whole internal layout, PanelTopOffset (25 px) sets the distance from the chart top independently of the buttons, CommentRefreshSeconds (2 s) is the refresh interval, and CommentBgColor (80,80,80) plus CommentFontSize (7) give full RGB and font control.

Position markers. ShowPositionMarkers (true) draws an arrow per open position, ShowOnlyCurrentSymbol (true) limits them to the chart symbol, and BuyMarkerColor (SeaGreen), SellMarkerColor (Crimson) and MarkerSize (8) define their look.

INSTALLATION

Copy the compiled .ex5 file into the MQL5 Experts folder of your MT5 data folder, then restart MetaTrader 5 or press F5 to refresh the Navigator. Drag the EA onto any chart; the chart symbol does not matter, because NOHEDGE manages all account symbols by default. In the EA properties enable Allow automated trading and click OK. Dashboard and panic buttons appear immediately.

Set EnableEA to true to activate automated closing. Until you do, the EA runs in observation mode and is safe to use on a live account. Then set DailyProfitTarget and DailyLossLimit to your account size, switch EnableDailyLimits to true, and adjust IgnoreStartHour and IgnoreEndHour to your broker's swap rollover time; the default of 23:55 to 00:10 server time covers most brokers.

If your broker's toolbar overlaps the panel or the buttons, adjust PanelTopOffset and ButtonTopOffset. For multi-strategy setups, run a second instance on another chart with a separate MagicNumber filter.

IMPORTANT NOTES

Hedge account required. NOHEDGE closes buy/sell pairs by ticket, so both legs must exist as separate positions. That is only possible on hedge accounts. Netting accounts merge opposing positions immediately and cannot be managed.

AutoTrading must be enabled. The AutoTrading button in the MT5 toolbar must be green and Allow automated trading must be checked in the EA properties, otherwise no close operation can execute.

The EA never opens trades. It only closes what already exists and carries zero directional risk of its own. Because EnableEA defaults to false, nothing is closed until you activate it, which prevents unexpected closes on accounts that already have positions open.

Panic buttons bypass the guards. PanicButtonBehavior defaults to CLOSE_REGARDLESS, so the buttons execute even during the rollover window or under high spread; switch it to RESPECT_IGNORE_TIME if rollover protection should block panic closes too. The anti-loop cooldown never blocks them either.

The spread filter uses points, not pips. MaxAllowedSpread and CryptoMaxSpread are broker points as returned by SYMBOL_SPREAD. On a 5-digit broker, 5 points equal 0.5 pip for forex, and 50 points are 50 points for gold. Verify your broker's spread unit before setting these values.

Commission accuracy. Daily P/L and position P/L include profit, swap and commission, retrieved from the deal history instead of the deprecated POSITION_COMMISSION property, which keeps limit enforcement accurate even on commission-heavy ECN accounts.

COMPATIBILITY

MetaTrader 5 from build 3000 upwards, written in MQL5, for hedge accounts only; MT5 netting accounts are not supported. All instruments work, including forex, metals such as XAU and XAG, indices, crypto, energy and CFDs, and any timeframe works because NOHEDGE manages the account, not the chart. Any account size is fine, with DailyProfitTarget and DailyLossLimit set in your account currency. AutoTrading must be enabled in the terminal and in the EA properties, and a VPS with a stable broker connection is recommended for 24/7 operation and reliable rollover protection. A one-month rental is available alongside the full purchase.


Version 1.40 | fi.con Investment Group | MQL5 Marketplace
推荐产品
Anchor Trade Manager
Kalinskie Gilliam
5 (8)
Anchor: The EA Manager Your EAs cannot see each other, but Anchor can. Anchor gives you one place to coordinate your EAs, manage risk, and decide when trading is allowed. It works alongside the trading bots you already use without any changes to them. The Problem One EA opens a trade. Then another starts trading. The next thing you know, you wake up to multiple grids built across your account. Each EA may be doing exactly what it was designed to do, but together they can place far more risk on y
Ultimate Pro Trading Panel — All-In-One Manual & Grid Trading Dashboard Pro Trading Panel   is an all-in-one on-chart control panel that gives discretionary and semi-automated traders a complete toolkit for entries, exits, risk management, and grid trading — without leaving the chart. Every function is visual, draggable, and updates in real time. If you want to test this utility feel free to download the basic preview version of this tool here:  https://www.mql5.com/en/market/product/181435 Who
CYGNIX RISK GLADIATOR — Professional Trade Manager & Risk Guardian for MT5 Guard every position. Manage every trade. Sleep at night. Cygnix Risk Gladiator is a professional-grade position management Expert Advisor that watches every open trade on your account and automatically applies institutional-level risk controls in real time. It does not generate signals — it protects, manages, and exits trades opened by you, your strategies, or any other EA. Built for IC Markets and fully compatible w
King Trade Copier
Mohammed Maher Al-sayed Mohammed Ahmed Saleh
KingCopier – Lightning-Fast Local Trade Copier for MetaTrader (Master + Slave) KingCopier is a professional local trade copier that mirrors every trading action from one Master account to unlimited Slave accounts on the same PC or VPS — with an internal copy latency of just a few milliseconds. It was built by a real trader for daily real-money use, with one goal: whatever happens on the Master must happen on the Slave, instantly and without exceptions. Watch the demo video to see the real cop
The Stop Loss Manger - SL Mange With the Stop Loss Manager you can finally sleep peacefully while it effectively manages your risk in stock market trading. Simply set your individual stop loss limits and let the manager trade for you. Never worry about losses again - the Stop Loss Manager takes care of it for you! Get the ultimate support for your trading now and maximize your profits with ease. Join the community of successful traders who swear by Stop Loss Manager today. Function overview: 1.
This tool will perform Trailing stop loss and Break even management for orders. Helps you limit or reduce the time spend watching orders on the screen, especially when you need to go to sleep. Just add this EA to 1 chart, you can manage all pairs. You can filter orders by comment, magic number, symbol and order ticket number. When Breakeven it can add shift/offset pips (to cover the commission...). You can try in strategy tester before purchase. The EA will add Buy and Sell alternately, so you
CoPilot dashboard MT5
Frederic Jacques Collomb
CoPilot — 每日交易仪表板 掌握你的数据。清晰地交易。 MT4 版本 什么是 CoPilot? CoPilot 是一款 专业级 交易助手,可将您每日的交易绩效统计数据 实时 显示在图表上——配备 实时权益曲线 ,逐笔更新。专为需要在不离开图表的情况下即时了解交易状态的活跃交易者而设计,CoPilot 汇总 当日所有交易品种的每笔已平仓交易 ,并以简洁、色码化的交互面板呈现。 无需再切换到终端历史选项卡,无需手动计算。CoPilot 就像您的 副驾驶 ——时刻守候,持续计算,始终在您眼前。 实时统计面板 CoPilot 显示完整的每日绩效指标,分为三个部分: 活动 — 今日总交易数、已平仓交易、持仓数量、盈利/亏损笔数、 胜率 (%) 及保本交易。胜率颜色动态调整:高于 50% 显示绿色,低于 50% 显示红色。 盈亏 — 净盈亏 、 盈利因子 、每笔平均盈利和平均亏损、 平均风险回报比 、当日最佳交易和最差交易。每个数值根据其含义以绿色或红色显示。 时间与点数 — 平均持仓时间、最短和最长持仓时间、所有交易品种累计 总点数 ,以及 最大连续盈利/亏损次数 。 所有统计数据均基于
Trading Utility for Forex Currency Pairs Only not for Gold  Functions Auto Lot Calculation based on Risk Auto stoploss  Auto TakeProfit Breakeven Auto Close Half % Close in percentage with respect to the PIPs Pending Orders BuyLimit Sell Limit with distances BuyStop Sell Stop    with distances Trading Informations Risk in percentage For Multiple trades Combine Takeprofit and Combine Stoplosses
Trade copier MT5
Alfiya Fazylova
4.59 (54)
Trade Copier 是一种专业实用程序,旨在复制和同步交易账户之间的交易。 复制发生从供应商的帐户/终端到收件人的帐户/终端,安装在同一台计算机或 vps 上。 促销活动 - 如果您已经购买了“Trade copier MT5”,您可以免费获取“Trade copier MT4”(用于 MT4 > MT5 和 MT4 < MT5 的复制)。欲了解更多详细条款,请通过私人消息与我们联系! 在购买之前,您可以在演示帐户上测试演示版本。 演示 这里 。 完整说明 这里 。 主要功能和优点: 支持复制MT5>MT5、MT4>MT5、MT5>MT4,包括МТ5 netting账户。 供应商和收件人模式在同一产品中实现。 简单直观的界面,允许您直接从图表中实时控制复制。 连接中断或终端重新启动时不会丢失设置和位置。 允许您选择要复制的符号,也可以替换接收者的符号,例如 EURUSD> USDJPY。 支持回拷贝。 能够仅复制某些订单。 允许您设置开仓交易价格的最大差异和最大时间延迟。 正确复制部分订单关闭的执行。 计算复制手数的几种方法。 同步止盈和止损。有几种方法可以计算它们的位置。 支持
Bastion is a monitor-and-close-only risk manager for prop-firm traders. It watches your account against your firm's daily-loss and maximum-drawdown limits in real time and force-closes your open positions BEFORE you cross a line. It never opens a trade of its own, so it stays fully within the tools allowed by FTMO, FundedNext, The5ers, FTUK and FXIFY. Why traders fail challenges A large share of failed evaluations end on a single daily-loss breach: a moment of inattention, a news spike, one tra
Chart Pro Classic Dark v1.00 Chart Pro Classic Dark is a professional MT5 chart styling and customization tool designed to give your charts a clean, modern, and professional dark appearance. Key Features Dark Black Background — Applies a clean black background to the chart. ️ Candlestick Chart — Automatically configures the chart to use candlesticks. Bullish Candles — Green/Lime bullish candles. Bearish Candles — White bearish candles. Grid Removal — Hides the chart grid for a clean
FREE
Enhanced Telegram Position Tracker MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Telegram Position Tracker — Real-Time Trade Monitoring and Reporting for MT5 The most complete Telegram reporting solution for MetaTrader 5. Every trade, every update, every alert is delivered to your Telegram channel, group and forum topics. No missed closures, no duplicates, no spam. OVERVIEW Most Telegram tools send one message when a trade opens and another when it closes. That is all they do. This EA tracks the complete lifecycle of every position — open, SL/TP modification, p
DYJ MOBILE GAMING TRADING WINNER 可以使用您的各种终端(移动电话、浏览器、TRADINGVIEW、MT5)进行手动交易,然后由EA自动处理。 移动交易可以使用EA的各种网格模式、剥头皮模式、对冲套利模式和独立下单模式手动开仓, EA可以自动设置移动开仓的止损。并用手机开格、剥头皮、对冲订单。 EA可以设置全自动交易,设置自动和手机手动混合交易,或者设置独立的手机手动交易。 当订单方向正确时,TP 离场。 当订单方向错误时,EA可以将其从亏损转为盈利。 EA 适用于任何外汇经纪商和任何种类的交易。它与 Deriv 经纪商 Syntheic 账户品种兼容 EA不限制入金和杠杆大小,账户杠杆建议500或更高,建议入金5美元至10000或更高,建议使用最低交易量交易 推荐交易Boom 1000 Index趋势强,风险很低的品种 Input InpMagicNumber = 1935  InpPairs  = "GBPUSD,EURUSD"  -- comma-separated list of symbols to be traded. In
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
交易管理器可帮助您快速进入和退出交易,同时自动计算风险。 包括帮助您防止过度交易、报复性交易和情绪化交易的功能。 交易可以自动管理,账户绩效指标可以在图表中可视化。 这些功能使该面板成为所有手动交易者的理想选择,并有助于增强 MetaTrader 5 平台。多语言支持。 MT4版本  |  用户指南+演示 交易经理在策略测试器中不起作用。 如需演示,请参阅用户指南 风险管理 根据%或$自动调整风险 可选择使用固定手数或根据交易量和点自动计算手数 使用 RR、点数或价格设置盈亏平衡止损 追踪止损设置 最大每日损失百分比,在达到目标时自动平仓所有交易。 保护账户免遭过多提款并阻止您过度交易 最大每日损失(以美元为单位)在达到目标时自动关闭所有交易。 保护账户免遭过多提款并阻止您过度交易 一键实现所有交易的盈亏平衡 自动计算从手机/电话发送的交易的风险 OCO 在设置中可用 交易和头寸管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 高级挂单管理。 调整何时关闭挂单的规则 追踪挂单 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
EA Risk Manager is a professional risk‑management Expert Advisor designed to protect your trading account and enforce disciplined money management. The EA does not open trades by itself – it only monitors and manages all existing positions (manual and automated) on the account. It is especially useful for traders who want to: Hard‑limit daily / weekly / monthly losses and profits. Restrict lot size and the number of open trades. Trade a basket of G7‑related Forex pairs using one centralized
SwiftEdge Scalper 具有完全手动控制的专业跳动点剥头皮EA 剥头皮交易需要瞬间决策、精确的风险管理和无缝的订单执行。在观察价格走势的同时管理盈亏平衡计算、追踪止损和多个仓位,没有合适的工具是难以应付的。 SwiftEdge Scalper是为活跃的剥头皮交易者和日内交易者设计的专业交易助手。通过一键点击或键盘快捷键执行交易,而EA自动处理盈亏平衡、追踪止损和仓位管理。这不是自动交易机器人——只有当您决定时才会交易。 了解更多: 完整设置指南和文档 (English) 限时优惠: 前50次下载免费!之后该产品将变为付费。立即下载以获取免费副本。 主要功能 一键交易: 通过面板按钮或可自定义的键盘快捷键(B/S/A/C/E/M)即时执行买入/卖出 智能盈亏平衡: 包含点差和佣金的成本感知BE计算——永不因交易成本亏损 激进追踪: 自动追踪止损,随着价格朝有利方向移动逐跳锁定利润 双重TP/SL模式: 选择固定点数或基于ATR的动态水平以适应市场波动 剥头皮模式: 相反方向键立即平仓——完美适用于快速反转 扩展功能: 在强势趋势中即时放大您的TP/SL 可拖动面板: 完全可自
Expert TP SL v04 - Professional Trading Assistant with AI Motivation System Advanced manual trading tool with automatic risk management, overtrading protection, and intelligent psychological support for disciplined trading. PRODUCT OVERVIEW Expert TP SL v04 is a comprehensive trading assistant designed for manual traders who want to maintain emotional discipline while automating risk calculations. This isn't just another order placement tool - it's a complete trading psychology system that pr
CRYPTO ZEUS DUAL-CORE PROTOCOL  Advanced Crypto Matrix: Supertrend AI + External Sync Module - [NEW] 24/7 Crypto Unlock: The EA now fully supports weekend trading by auto-detecting Crypto assets. - [NEW] Continuous Trend Rider: Re-enters trades continuously on pullbacks if the macro-trend remains strong, maximizing profit on long runs. - [NEW] Ghost Trailing Stop: Added a virtual trailing stop to fully ride breakouts instead of exiting at fixed Fibo targets. - [NEW] Preset System: Added a buil
Trade Assistant 38 in 1
Makarii Gubaydullin
4.91 (23)
多功能工具:手数计算器,网格订单,风险回报比,交易管理器,供求区域,价格行为等等 演示版本   |   用户手册 交易助手   不能在策略测试器中工作 :您可以下载   此处的演示版本  来测试此 工具 。 联系我   如有任何问题  / 改进建议 / 发现错误 如需MT4版本,请访问 此处 简化、加速并自动化您的交易   流程 。通过此   仪表板 扩展标准终端功能。 交易面板  适用于任何交易品种:外汇、股票、指数、加密货币等。 1. 开立新交易 :手数 / 风险 / 风险回报比计算 :手动交易的风险管理 手数计算器(根据风险大小计算交易量) 风险计算器(根据手数大小计算风险金额) 风险回报   比率 网格订单:  + 动态距离选项,及拆分手数选项 订单激活触发器,+ 买入止损限价 / 卖出止损限价 虚拟止损,虚拟止盈(隐藏止损,隐藏止盈:经纪商不可见) 智能止损 / 入场价位:若K线收盘突破则避免虚假触发 隐藏订单(虚拟挂单) 计划订单:即使市场休市也可挂单交易(周末计划器) 额外多级止盈价位 具有不同ID的OCO(一单取消另一单)订单 图表上的交易可视化 + 调整 止损 /
TradeControl Pro —— 适用于 MetaTrader 的高级交易管理工具 TradeControl Pro 是一款用于 MetaTrader 的交易管理工具,可在图表中直接实现结构化且高效的持仓管理。该应用结合了清晰的用户界面、自动化计算功能以及灵活的控制选项,适用于不同的交易方式。 内置的图表面板采用表格布局,并划分为三个主要区域(标签): Execution 、 Close 和 Info 。界面设计注重清晰性与直接交互。 结构清晰,功能分组合理 关键交易数据实时动态更新 无需额外窗口,直接在图表中操作 标签:Execution(交易规划与执行) Execution 区域用于新交易的规划与执行。 Open Calc(挂单设置) 通过 Open Calc 可在图表中自动生成三条价格线: 入场价格(Entry) 止损(SL) 止盈(TP) 这些价格线可自由拖动调整。系统将基于当前价格水平实时计算: 止损价格及潜在亏损 止盈价格及潜在盈利 仓位大小(手数) 风险回报比 在该模式下仅用于设置挂单(Pending Orders)。通过 Execute 和 Confirm 按钮执
Risk Ruler
AL MOOSAWI ABDULLAH JAFFER BAQER
Risk Ruler Plan every trade with precision before you enter the market. Risk Ruler is a professional on-chart position sizing and risk management tool for MetaTrader that helps traders calculate the optimal trade size based on their predefined risk. By simply dragging the Entry, Stop Loss, and Take Profit lines directly on the chart, all essential trading calculations update instantly, allowing you to make informed decisions before placing a trade. Designed for both manual and professional trade
The Multilevel PnL Calculator EA is an advanced trading tool designed for Forex and CFD traders who need precise position sizing and risk management calculations. This intuitive panel-based calculator allows you to simulate multiple entry positions with automatic profit and loss calculations in real-time USD values. Key Features Multi-Position Management Calculate Profit and Loss for up to 10 or more simultaneous positions (configurable) Support for both LONG and SHORT trading modes Real-time
Equity Master Stop v2 MT5
Frank William Jr Colbert
Trading tool combining a sophisticated equity stop-loss, dynamic take-profit management (Breakeven & Trailing), and symbol-group-based closing logic. It is a complete risk management and trade supervision tool. Features: All features of `Equity Master Stop v1` (floating profit/loss limits, exit protection, skip hours). Take-Profit Override: Can force a TP on any order to lock in a `MAX_FLOATING_PROFIT`. Step Breakeven: Locks in increasing amounts of profit as a trade moves favorably (e.g., aft
SmartRAL
Jemy Yeferson Dimu Ludji
SmartRAL (Smart Risk Auto-Lot EA) SmartRAL: The Ultimate Risk & Lot Management Expert Advisor (EA) SmartRAL is an essential tool for traders who demand precise risk management and automated position sizing in MetaTrader 5. Stop guessing your lot size and let the algorithm handle the calculations. This EA allows you to trade with confidence by guaranteeing your risk exposure on every single trade, while offering absolute flexibility in setting your Stop Loss (SL). Key Features & Benefits Guarante
## Product Title ``` SuperDOM — Advanced Depth of Market Trading Panel ``` --- ## Short Description  ``` Professional SuperDOM panel for MT5. Interactive price grid with one-click BUY/SELL/FLAT, pending orders on any level, Trailing Stop (ATR or fixed), and 5 draggable info panels. Works with US Stocks, CFDs, Metals, Indices and B3. Auto-detects resolution (4K/2K/FHD/HD). ``` --- ## Full Description  ### Overview SuperDOM is a professional Depth of Market trading panel for MetaTrader 5.
MANAGING YOUR FOREX TRADING LIKE A PROFESSIONAL WITH   POSITION SIZE   CALCULATOR Position Size Calculator – an MT5 indicator, is a user-friendly tool that allows you to determine your required forex trading size for each trade based on how much you want to risk and available capital in your forex trading account. Load the calculator onto your chart and simply draglines to show your stop loss and take profit level. The calculator will automatically calculate the trade size instantly. This indica
Product Name: Smart Switch Dashboard STOP WASTING SECONDS. SECONDS COST MONEY. Are you losing trades because you're fumbling through the Market Watch? Is your workspace messy and slowing you down? In trading, Speed is everything. If you aren't organized, you are losing money to traders who are. Smart Switch Dashboard is not just a tool—it is your COMMAND CENTER . Designed for serious Scalpers and Day Traders who demand Speed, Precision, and Zero Lag. DOMINATE YOUR WORKFLOW 1. ULTRA-FAST SY
User Manual Buy Trading Utility, Get 1 indicator FREE ! After purchase contact me for your " one indicator GIFT (Any one you want) ", adding you in group. Trading Utility MT5 The manual trader's cockpit. Size every trade by risk, place it from the chart, and manage it without ever opening the order dialog. Eight tabs, seven trailing engines, and every stop and target draggable with one click. One panel between you and the order window. Risk-sized entries, draggable stops, seven trailing modes,
MT4 to Discord Signal Provider 是一款用户友好、完全可定制的工具,专为直接向 Discord 发送交易信号而设计。这个工具将您的交易账户转变为一个高效的信号提供者。 自定义消息格式以适应您的风格!为了方便使用,您可以从预先设计的模板中选择,并决定包括或排除哪些消息元素。 [ 演示 ] [ 手册 ] [ MT4 版本 ] [ Telegram 版本 ]  New: [ Telegram To MT5 ] 设置 遵循我们详细的 用户指南 进行简单设置。 不需要预先了解 Discord API;我们提供所有必要工具。 主要特性 为订阅者更新自定义订单详情。 实施分层订阅模型,如铜牌、银牌、金牌,每一层都提供不同级别的信号访问。 附加执行订单的图表截图。 在这些截图上显示已关闭的订单,以增加清晰度。 提供延迟发送新订单消息的选项,以便在发送前进行最后调整。 透明和详细的订单信息: 带截图的新市场订单。 订单修改(止损、获利)。 已关闭和部分关闭的订单。 新的和修改的挂起订单。 挂起订单的激活和删除。 关于历史订单的详细报告。 每个订单的可定制评论。 注意: *
TradeGuard Capital Protection Professional Risk, Exposure & Trade Manager for MetaTrader 5 This utility acts as a professional insurance system for your trading account. TradeGuard Capital Protection is a professional-grade risk & money management utility designed to protect your trading account from excessive losses, emotional trading, and uncontrolled exposure. This tool does NOT open trades . It strictly manages risk, drawdown, exposure, and safety protections . Perfect for manual traders, EA
该产品的买家也购买
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。   附加材料和说明 安装说明   -   应用程序说明   -   模拟账户应用程序的试用版 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是 SL 的两倍。 RR -
欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
TradePanel MT5
Alfiya Fazylova
4.88 (167)
交易面板是一款多功能交易助手。该应用包含超过50种手动交易功能,并允许您自动执行大多数交易任务。 应用程序说明 + 视频教程: https://www.mql5.com/zh/blogs/post/761102 用于模拟账户的应用程序试用版: https://www.mql5.com/zh/blogs/post/762579 如何安装应用程序: https://www.mql5.com/zh/blogs/post/762580 如何在可视化模式下测试应用程序: https://www.mql5.com/zh/blogs/post/770278 如何在VPS MetaTrader上安装应用程序: https://www.mql5.com/zh/blogs/post/770196 贸易. 只需单击一下即可执行交易操作: 打開掛單和頭寸,並自動計算風險。 一鍵打開多個訂單和頭寸。 打開訂單網格。 按組別關閉掛單和頭寸。 反轉頭寸方向(關閉買入>打開賣出,關閉賣出>打開買入)。 鎖定頭寸(通過開啟缺少的頭寸,使買入和賣出頭寸的數量相等)。 一鍵部分關閉所有頭寸。 將所有頭寸的止盈和止損設置在同
测试版发布 Telegram to MT5 Signal Trader 即将进入正式的 Alpha 版本。一些功能仍在开发中,您可能会遇到一些小错误。如果您遇到问题,请反馈,您的意见将帮助我们改进软件。 Telegram to MT5 Signal Trader 是一款强大的工具,能够将 Telegram 频道或群组的交易信号自动复制到您的 MetaTrader 5 账户。 支持公开和私人频道,可将多个信号提供者连接至一个或多个 MT5 账户。软件优化、高效、稳定,精准控制每笔复制交易。 界面简洁,仪表盘美观,图表交互性佳,导航直观。您可以管理多个信号账户,自定义每个提供者的设置,并实时监控所有操作。 系统需求 由于 MQL 限制,EA 需要配合 PC 端应用与 Telegram 通信。 安装程序可通过官方 安装指南 获取。 核心功能 多提供者支持: 从多渠道复制信号至多个 MT5 帐户 高级信号识别: 关键词、模式和标签全面自定义 逐提供者控制: 可启用/禁用特定信号类型、平仓策略等 灵活风险管理: 固定手数、固定金额、余额/权益百分比、部分平仓设置 可定制 SL/TP: 覆盖信号
Telegram to MT5 Multi-Channel Copier   可将您 Telegram 频道中的交易信号自动复制到 MetaTrader 5。无需机器人、无需浏览器扩展、无需手动复制。信号一到 Telegram,EA 几秒内就在您的终端开仓。 产品包含两个组件:一个监听您 Telegram 频道的 Windows 应用程序,以及在 MT5 终端执行信号的本 EA。同时提供 MT4 版本   点此 . 设置指南与应用下载: https://www.mql5.com/en/blogs/post/768988 工作原理 Windows 应用通过您自己的 API 凭据连接 Telegram——不是机器人。这意味着它可以读取您订阅的任何频道、群组或话题,包括私有和 VIP 频道。您还可以把直接给您发消息的信号机器人、私聊,甚至自己的"收藏夹"(Saved Messages)用作信号来源。检测到信号后,应用会解析并交给 EA。EA 按您的经纪商解析品种名称,按您的风险设置计算手数并开仓。 整个过程全自动,无需守在电脑前。专为 24/7 无人值守运行设计:Telegram 连接断开
Premium Trade Manager - 内置交易导师的图表面板 Premium Trade Manager 将一位交易导师嵌入您的图表,并在其下搭载完整的执行引擎。像往常一样建立交易,然后让您的 AI 交易导师 Max 读取这笔具体的交易,结合您的实时账户给出直接判断,再由您决定是否下单:止损是否符合纪律化交易的要求、风险规模是否合理、高影响新闻事件是否即将发布、您是否接近资金盘限额。其下是完整的执行引擎,负责点击之后的一切:一键按风险下单、您在图表上拖动规划且交易进行中仍可随时调整的计划、最多四个分批止盈级别、七种移动止损方式、实时资金盘合规检查、新闻屏蔽保护,以及对自身成本进行评级的点差功能。决策由您做出。Max 给出第二次审视。面板负责此后的一切。 购买前先亲手体验。 直接在浏览器中点击实时面板,这是在购买前感受其工作方式的最快途径。 stein.investments/products/premium-trade-manager Max 是您的一对一 AI 交易导师,他直接内置于面板之中。  他了解您的账户、您的设置和您的规则,用您自己的语言回答,并在每笔交易下单前进
Ultimate Extractor
Clifton Creath
5 (8)
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate EA manager also now available when you use cloud pro and above for free!! Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automa
Timeless Charts
Samuel Manoel De Souza
5 (8)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
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
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
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
Power Candles 策略扫描器——自优化多符号设置查找器 Power Candles策略扫描器 采用与Power Candles指标相同的自优化引擎,可同时扫描您“市场观察”中的所有交易品种。一个面板即可显示当前哪些品种在统计上具备交易价值、每种策略的最佳应用方向、最优止损/止盈组合,并在新信号触发时立即向您发送提醒。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 您的全面市场监控。每个交易品种超过3,000次自动优化。2种警报类型。一键切换图表并采取行动。 为何您需要此工具 大多数多标的扫描器仅展示价格 波动 。每只股票的波动率、百分比变化、RSI。您仍需自行摸索正确的策略、合适的止损位以及理想的入场阈值。Power Candles策略扫描器针对每只股票自动解答这些问题,仅在数学验证过的交易设置中触发实际入场信号时才会向您发出提示。这就是全部卖点。 自动
MT5 to Telegram Signal Provider 是一个易于使用且完全可自定义的工具,它允许向 Telegram 的聊天室、频道或群组发送 指定 的信号,将您的账户变为一个 信号提供商 。 与大多数竞争产品不同,它不使用 DLL 导入。 [ 演示 ] [ 手册 ] [ MT4 版本 ] [ Discord 版本 ] [ Telegram 频道 ]  New: [ Telegram To MT5 ] 设置 提供了逐步的 用户指南 。 不需要了解 Telegram API;开发者提供了您所需的一切。 关键特性 能够自定义发送给订阅者的订单详情 您可以创建分层的订阅模型,例如铜、银、金。其中金订阅获得所有信号等。 通过 id、符号或评论过滤订单 包括执行订单的图表截图 在发送的截图上绘制已关闭的订单,以便额外核实 延迟发送新订单消息的可能性,以便在发送前对位置进行调整 订单详情完全透明: 新的市场订单*带截图 订单修改(止损、获利) 已关闭的订单*带截图 部分关闭的订单** 新的挂单 修改的挂单(进场价格) 挂单激活(作为新的市场订单附加) 已删除的挂单 历史订单报告
EA Overfitter
Stephen J Martret
回测看起来很漂亮。但它明天、下周、下个月还能继续赚钱吗? EA Overfitter 让您的 EA 在 100 段它从未见过的价格历史上重新运行。一个分数告诉您这个优势是否真实。 限时首发价 99 美元,仅限接下来 24 小时,之后价格将上调至 149 美元 回测告诉您的,是 EA 在某一段价格历史上的表现——那段恰好发生过的历史。您无法从中判断,这个结果有多少来自策略本身,又有多少只是那一条特定路径带来的。 EA Overfitter 回答的正是这个问题。它构建最多 100 段您的 EA 从未交易过的合成价格历史,让策略在全部这些历史上重新运行,并展示它所产生的完整结果区间。您得到的不再是一条幸运或不幸路径上的单个数字,而是一幅真实的图景:策略在陌生数据上多久能赚钱、典型结果是什么样(而不是最好的那一次),以及您的回测离它有多远。 这些世界是由您自己的近期历史重建而成,因此这不是预测——任何从历史数据出发的检验都不可能是预测。它告诉您的是:这个优势是否依赖于价格的某一种特定排列,以及回测数字距离典型结果有多远。在投入资金之前,这才是值得回答的问题。 三个步骤 1. 构建。在
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
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Bots Builder Pro MT5
Andrey Barinov
4.17 (6)
This is exactly what the name says. Visual strategy builder . One of a kind. Turn your trading strategies and ideas into Expert Advisors without writing single line of code. Generate mql source code files with a few clicks and get your fully functional Expert Advisors, which are ready for live execution, strategy tester and cloud optimization. There are very few options for those who have no programming skills and can not create their trading solutions in the MQL language. Now, with Bots Builde
Local Trade Copier EA 是针对需要从外部来源执行交易信号或需要同时管理多个账户的个人交易者或账户经理的解决方案,无需 MAM 或 PAMM 账户。它可以从多达 8 个主帐户复制到无限的从帐户 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 100% 自托管 容易安装和使用 不使用安装程序、配置文件、服务器、内存管道或 DLL 1000 次激活可永久使用 EA 本地执行,无网络延迟 它实现了您需要的所有功能: 最多8个主账户和无限从属账户 适用于所有经纪人和 DD/NDD/ECN/STP 执行 适用于具有不同帐户货币的帐户 在真实账户和模拟账户之间工作不明显 支持主从账户中的符号名称后缀 按幻数和订单评论过滤 不会干扰其他交易 可选择复制 SL 和 TP 水平 可选择复制挂单 支持符号翻译 支持部分关闭 反向模式 灵活的交易规模: - 固定地段 - 乘数 - 成比例的 - 与乘数成比例 EA 可以使用投资者或任何账户的主密码复制交易。 如何将交易从一个主账户复制到一个或多个从账户 在源终端中安装 EA 将 EA 加载到任何图表并选择“MA
The real‑time view of what is happening inside the market. Footprint Secrets brings detailed analysis directly into MetaTrader 5. It shows where volume is trading, how buyers and sellers are interacting, and how liquidity shifts as the market evolves. Designed for traders who want a precise, real‑time understanding of market behavior. Check out the free preview version here:  https://www.mql5.com/en/market/product/172398 Benefits for the Trader See the real activity behind price . Footprint ch
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual是一个交易面板,用于处理订单网格。 该实用程序是通用的,具有灵活的设置和直观的界面。 它不仅可以在亏损方向上设置订单网格,还可以在盈利方向上设置订单网格。 交易者不需要创建和维护订单网格,实用程序会这样做。 打开一个订单就足够了,Grid manual会自动为它创建一个订单网格,并伴随它直到非常关闭。 完整说明和演示版 此處 。 该实用程序的主要特性和功能: 伴隨以任何方式打開的訂單,包括從移動終端打開的訂單。 適用於兩種類型的網格:“限制”和“停止”。 使用兩種方法計算網格間距:固定和動態(基於 ATR 指標)。 允許您更改未結訂單網格的設置。 顯示圖表上每個網格的盈虧平衡水平。 顯示每個網格的利潤率。 允許您一鍵關閉網格中的盈利訂單。 讓您一鍵關閉每個訂單網格。 允許您對訂單網格應用追踪止損功能。 允許您在訂單網格上應用將訂單網格的止損轉移到盈虧平衡水平的功能。 相對於訂單網格的盈虧平衡水平自動重新排列止盈(僅在限價網格模式下,距離取決於所選的計算類型:“保守”或“激進”)。 最多可管理 20 個訂單網格,每個網格最多可包含 100 個訂單。 計算初始手數時,
The AZT Profit Locker is an advanced automated risk-management utility designed specifically for MetaTrader 5 (MT5) traders who want to remove emotional interference and protect their hard-earned profits. Traders aren't just fighting the Forex market, they're fighting their own biology. Fear, Greed and Anxiety lead to holding losers too long and cutting winners too early. The utility flips the script by removing emotion from risk management. Operating as a dedicated automated risk manager, this
AlgoRadar
Stephen J Martret
5 (4)
AlgoRadar is an on-chart analytics dashboard for MT5 that aggregates Expert Advisor performance across multiple accounts, brokers, and platforms, including both MT4 and MT5 data, into a single live view on your MT5 chart. All analysis runs from the chart interface, with no external applications or manual report processing required. EA Analysis and Ranking For traders running multiple Expert Advisors, AlgoRadar provides a consolidated view of each EA's performance across accounts. Active EAs a
Ultimate Trailing Stop EA MT5
BLAKE STEVEN RODGER
4.13 (8)
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (override
Custom Alerts AIO:多市场智能监控,一键启动,无需设置 概述 Custom Alerts AIO 是一款“开箱即用”的高级市场扫描工具,无需额外安装任何其他指标或进行复杂设置。它内置了 Stein Investments 的所有核心指标(FX Power、FX Volume、FX Dynamic、FX Levels 和 IX Power),可帮助您轻松监控所有主要资产类别,如外汇、黄金、指数和加密货币。如果您的经纪商支持股票,您也可以手动添加个股进行监控。 1. 为什么选择 Custom Alerts AIO? 无需额外购买任何指标 • 所有关键指标均已内置,开箱即用。 • 专注于实时预警,不包含任何图形元素,性能高效,界面简洁。 全面覆盖所有主要市场 • 支持监控外汇、金属、加密货币和指数市场。 • 无需手动输入任何交易品种,只需在设置中勾选资产类别即可启用。 • 股票并不属于默认类别,如有需要可手动通过参数输入添加。 高效、专业、便捷 • 无需图表模板和手动加载,适合自动化或远程交易环境。 • 非常适合 VPS 上长期运行,或作为后台市场预警工具使用。 2
MT5 was never built to draw a footprint chart. Orderflow Atlas replaces the chart entirely. It blanks the native price display and renders everything itself on a canvas, owning its own coordinate system. Two things follow from that: you can zoom far past MT5's six native scale steps — the per-candle magnification a footprint actually needs — and the whole view repaints in about 10 milliseconds , because the chart is pixels rather than thousands of graphical objects. The footprint Three cell styl
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
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – 全能智能交易一站式解决方案 概述 想象一下,您可以在几秒钟内扫描整个市场——外汇、黄金、加密货币、指数,甚至股票——无需手动筛选图表、繁琐安装或配置指标。 EASY Insight AIO 是您专为 AI 交易打造的即装即用数据导出工具。它将整个市场快照一次性输出为简洁的 CSV 文件,直接支持 ChatGPT、Claude、Gemini、Perplexity 等各类 AI 平台的即时分析。 无需窗口切换,无需图表叠加,也没有任何杂乱。只需纯净、结构化的数据自动导出,让您专注于基于数据的高效决策,无需再盯盘耗时。 为什么选择 EASY Insight AIO? 真正的一体化 • 无需设置,无需安装指标,无图表叠加。只需安装、运行并导出——就是这么简单。 多资产全覆盖 • 扫描分析外汇、金属、加密货币、指数、股票——您的券商所能提供的一切市场。 AI 专属数据导出 • 高度结构化、针对 AI 优化的 CSV 文件,直接适配主流智能工具和平台。 完整导出内容: • 三个可选周期的货币强度分析 • 净多头头寸变化体现市场情绪 • 成交量变化、
The ultimate assistant to help you customize your risk per position, open multiple orders with different distance and sizes, manage and track your positions automatically with 5 types of Trailing Stops, Breakeven and Conditional Close functions, stop overtrading or exceeding various drawdown limits, stay safe from possible broker manipulation and many other easy-to-use functionalities. Suitable for both beginner and professional traders of all financial markets. NOTICE   Trade Guardian applic
作者的更多信息
Trading Reporter Dashboard MT5
Juergen Marcus Wolfgang Rosswinkel
5 (1)
Trading Reporter — Visual Performance Dashboard for MT5 A complete account performance dashboard rendered directly on your MT5 chart. No browser, no external tool, no subscription. Attach it once and resize it to fit your screen. Balance and Live Drawdown update every second, and closed-trade statistics refresh within about a second of a position closing, so there is no waiting for the next bar whatever timeframe the chart runs on. Free. No limitations. No trial period. Full source transparen
FREE
Chart Order Trade Manager MT5
Juergen Marcus Wolfgang Rosswinkel
Trade Manager — Professional Order and Position Management Panel for MetaTrader 5 Automatic lot, Stop Loss and Take Profit calculation, entry by chart click, draggable SL and TP lines, trailing stop, auto break-even, partial close and a complete CSV export of your trading history — all from one interactive chart panel. OVERVIEW Trade Manager is a professional order and position management panel for MetaTrader 5. It significantly simplifies manual order entry, automatically calculates lot siz
Enhanced Telegram Position Tracker MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Telegram Position Tracker — Real-Time Trade Monitoring and Reporting for MT5 The most complete Telegram reporting solution for MetaTrader 5. Every trade, every update, every alert is delivered to your Telegram channel, group and forum topics. No missed closures, no duplicates, no spam. OVERVIEW Most Telegram tools send one message when a trade opens and another when it closes. That is all they do. This EA tracks the complete lifecycle of every position — open, SL/TP modification, p
Telegram Trading Reporter MT5
Juergen Marcus Wolfgang Rosswinkel
Telegram Trading Reporter — Automated Performance Reports & Chart Delivery for MetaTrader 5 A pure analysis and reporting Expert Advisor that turns your MetaTrader 5 account history into structured performance reports and delivers them to Telegram automatically, together with visual charts rendered by the terminal itself. OVERVIEW The Telegram Trading Reporter is a pure analysis and reporting Expert Advisor for MetaTrader 5. It does not open, close or modify any positions. It analyses your a
MT5 to Telegram Informer
Juergen Marcus Wolfgang Rosswinkel
MT5 to Telegram Signal Provider — Real-Time Trade Notifications for MetaTrader 5 Every trade event on your account, delivered to your Telegram chats and channels as a formatted message the moment it happens. OVERVIEW MT5 to Telegram Signal Provider is a utility Expert Advisor for MetaTrader 5 that automatically sends trade notifications to one or more Telegram chats or channels. Every trade event on the account is captured and delivered as a formatted message in real time. The EA runs on an
筛选:
无评论
回复评论