MP MegaScanner

📡 MegaScanner — see the market with two eyes

A universal multi-symbol scanner that combines two analytical systems in one panel.

⚙️ Functionality

  • Finds entry points in the market and shows the MEGA TRADER — Complete User Guide

    Version: 1.05 Type: Expert Advisor for MetaTrader 5 Purpose: automated trading of DIVERG divergence signals with a sideways-market filter, deposit-based risk management, ATR-based SL/TP and a trailing stop.

    ⚠️ Important: this is a fully automated Expert Advisor. It opens, modifies and closes trades on its own. Always test on a demo account first and make sure the risk settings match your strategy before using it on a live account.

    1. What It Is

    MegaTrader is the trading "little brother" of the MegaScanner indicator: it uses the same signal logic, but instead of displaying signals on a panel, it opens trades itself according to strict rules.

    Key principles of the system:

    Principle Implementation
    Sideways only The system is counter-trend (divergence-based) — it trades only when EMA150 is nearly flat and ADX is below the flat threshold
    Fixed risk Lot size is calculated so that the SL loss equals a set % of the account balance
    ATR-based SL/TP Stop and target scale with current volatility (ATR multipliers)
    TP 1:2 Take profit = 2 stop distances — the classic risk/reward ratio
    Trailing stop Profitable positions are managed with a trailing stop (SL follows price)
    Breakeven After the first target is hit, the position moves to breakeven

    2. The DIVERG Signal System

    The EA trades signals from the DIVERG system — reversal divergences and patterns:

    Component What it uses
    Divergences RSI(9) and Stochastic — price/oscillator divergence
    Candlestick patterns Pin bar, engulfing, PPR (pindi-push-reverse), tweezer
    Volume Signal confirmation by increased volume
    Scoring Each fulfilled condition = 1 point; entry threshold — InpMinCond (recommended 2)

    Entry filters

    Filter Parameter Purpose
    Sideways (EMA slope) InpFlatEma Blocks entries if EMA150 is tilted more than 0.10% over 20 bars — market in a trend
    Flat (ADX) InpFlatFilter / InpFlatAdx Blocks entries when ADX(14) is below 25 — too weak movement
    Max spread InpMaxSpreadPts Skips trades with widened spread (>30 points)
    Position limit InpMaxTrades / InpMaxPosPerSym One position at a time, max 1 per symbol

    💡 Why the sideways filter is critical: divergences are a counter-trend tool. In a trend they produce losing streaks; in a sideways market they produce steady profit. The EMA slope filter removes trending regimes.

    3. Risk Management

    Lot calculation

    risk money = balance × InpRiskPct / 100 loss per 1 lot = (|entry − SL| / tickSize) × tickValue lot = risk money / loss per 1 lot

    So regardless of stop width, the loss per trade ≈ the set % of the deposit:

    • narrow SL → larger lot;
    • wide SL → smaller lot.

    Protection

    Protection Parameter Description
    Max lot InpMaxLot Insurance against over-risking (default 5.0)
    Margin check Lot is automatically reduced if free margin is insufficient
    Min lot If the calculated lot is below the minimum — the trade is skipped
    Normalization Lot is rounded down to the step (lotStep)

    📌 Example: deposit 10,000 USD, risk 3% = 300 USD per trade. If SL = 50 pips → lot ≈ 0.6. If SL = 15 pips → lot ≈ 2.0. The loss is ≈ 300 USD in both cases.

    4. SL / TP / Trailing

    Stop loss (ATR)

        SL = low/high ± max(10 points, ATR(14) × InpSLATRMult)
    

    The stop is placed beyond the signal bar's extreme with an ATR offset. If a support/resistance level is nearby, the stop is moved beyond it.

    Take profit 1:2

    TP = entry ± 2.0 × ATR(14) (1:2 ratio to the stop)

    Trailing stop

    Parameter Value Description
    InpTrailStart 0.5 ATR Trailing activates after +0.5 ATR profit
    InpTrailDist 1.0 ATR SL is kept 1.0 ATR from price

    Breakeven

    After the first target (1.0 ATR) is reached, SL moves to breakeven (+5 points).

    5. Installation & Setup

    1. Copy  MegaTrader.mq5  to the  MQL5\Experts\  folder.
    2. MetaEditor → Compile (F7) → should show  0 errors, 0 warnings .
    3. In MetaTrader 5, drag the EA onto a chart (e.g., EURUSD H1).
    4. Enable algorithmic trading (the "Algo Trading" button).
    5. Set  InpTradeEnable=true , configure risk and press OK.

    📌 The EA trades one symbol — the one it is attached to. The default timeframe is H1.

    6. Recommended Settings (validated on 2023–2024)

    Parameter Value Comment
    InpUseTrend false TREND branch adds noise — disabled
    InpUseDiverg true Main system
    InpMinCond 2 Optimal score threshold
    InpUseRisk / InpRiskPct true / 3.0 3% risk per trade
    InpFlatEma / Slope true / 0.10 Sideways filter
    InpFlatFilter / Adx true / 25 Flat filter
    InpTPLevel / TP2 2 / 2.0 ATR TP 1:2
    InpTrailSL / Start / Dist true / 0.5 / 1.0 Trailing stop
    InpSLATRMult 1.5 Stop multiplier

    Backtest results (EURUSD H1, deposit 10,000, risk 3%)

    Year Result
    2024 +14.6% (11,458 USD)
    2023 −40.6% (5,938 USD)

    7. Important Warnings

    1. ⚠️ The system works only in a sideways market. In trending years (like 2023) it loses money. This is normal for divergence strategies — but keep it in mind when planning.
    2. ⚠️ 3% risk is aggressive. With a 10,000 deposit that is ~300 USD per trade. In a bad year the drawdown can reach 40%+. For conservative trading, lower it to 0.5–1%.
    3. ⚠️ Past results do not guarantee future returns. Parameters were fitted on 2023–2024. A forward test and periodic review are recommended.
    4. ✅ The EA uses  InpMagic  to identify its own trades — it does not conflict with other EAs.
    5. ✅ Check your broker's conditions: minimum lot, lot step, leverage and commissions.

    8. Main Input Parameters (reference)

    Parameter Type Default Description
    InpMagic int 951357 Unique trade identifier
    InpTradeEnable bool true Trading allowed
    InpTF ENUM_TF PERIOD_H1 Working timeframe
    InpMinCond int 2 Minimum score for a signal
    InpLotFixed double 0.01 Fixed lot (if risk is off)
    InpUseRisk bool true Lot by risk % of balance
    InpRiskPct double 3.0 Risk per trade, %
    InpMaxLot double 5.0 Maximum lot
    InpTPLevel int 2 TP level (2 = double)
    InpBreakeven bool true Breakeven after TP1
    InpTrailSL bool true Trailing stop
    InpTrailStart double 0.5 Trailing start, ATR
    InpTrailDist double 1.0 Trailing distance, ATR
    InpMaxSpreadPts double 30.0 Max spread, points
    InpMaxTrades int 1 Max simultaneous positions
    InpMaxPosPerSym int 1 Max positions per symbol
    InpUseTrend bool false Trade TREND signals
    InpUseDiverg bool true Trade DIVERG signals
    InpFlatEma bool true Sideways filter (EMA slope)
    InpFlatEmaBars int 20 Slope measurement period
    InpFlatEmaSlope double 0.10 Max EMA slope, %
    InpFlatFilter bool true Flat filter (ADX)
    InpFlatAdx int 25 ADX threshold
    InpSLATRMult double 1.5 SL = ATR × multiplier
    InpTP1ATRMult double 1.0 First target, ATR
    InpTP2ATRMult double 2.0 Second target (TP), ATR
    InpATRPeriod int 14 ATR period
    direction with an arrow
     right on the chart;
  • Recommends entry point, Stop Loss and Take Profit (standard and ATR-based settings) — a ready-made trade plan without extra calculations;
  • Trend Scanner — trend by EMA 150/365 (H1) + daily trend (D1 EMA 9/21), confirmed by RSI 14 and MACD;
  • Divergence Scanner — divergences by Stochastic and RSI 9, reinforced by candlestick patterns (pin bar, engulfing, PPR) and above-average volume;
  • Combo signals "2×BUY/SELL" — when both systems point in the same direction, you get a high-confidence signal;
  • Support/Resistance levels — multiple price touches with above-average volume on higher timeframes;
  • Signal bar highlighting and real-time updates every few seconds.

🛡️ Reliability

  • The EA does NOT trade — it only analyzes: zero risk to your account;
  • Flat market filter (ADX) — signals are blocked in a sideways market, where mistakes are most common;
  • Double confirmation — two independent systems + multi-factor condition checks drastically reduce false signals;
  • Full transparency: all conditions are configurable — from the number of matches to timeframes and indicator periods.

💎 Benefits

  • Saves hours of manual analysis — scans dozens of instruments at once;
  • Two views of the market in one table — trend and divergences at a glance, no chart switching;
  • A ready trade plan — direction, entry point, stop and take are already determined;
  • For all skill levels — beginners get ready signals, professionals get full logic transparency.

推荐产品
TerminatorTrades
Uriel Alfredo Evia Canche
"Terminator Trades " EA robot, built on the powerful MQ5 code,  is designed to simplify the process of closing your positions and pending orders. You can adjust if you want close all the trades or by specific symbols. With just a single click on a button, you can efficiently manage your current positions, ensuring that you never miss an opportunity to terminate a trade.  Close Trades , Delete Pending Orders with Terminator Trades. 
FREE
MQL5 博客: https://www.mql5.com/en/blogs/post/761446 MT4 版本: https://www.mql5.com/en/market/product/136790 MT5 版本: https://www.mql5.com/en/market/product/136791 Time Wizard 是一款专业的交易助手,专为需要在简洁的控制面板上实现速度、时机和执行控制的交易者而设计。 这款智能交易系统 (EA) 专为事件驱动交易、定时执行和快速半自动订单管理而设计。它允许您提前准备订单、定义精确的执行时间、设置分层挂单、通过止损和止盈管理风险,并通过图表上的简洁界面监控所有信息。 无论您是围绕经济事件、开盘、突破点还是您自己的自定义计划进行交易,Time Wizard 都能帮助您以结构化和纪律性的方式执行交易。 主要功能 1. 基于时间的订单执行 设置具体的执行日期和时间,EA 即可在需要时精准下单。 此功能非常适合: 新闻交易 突破交易设置 预先计划的市场执行 定时下单 2. 挂单阶梯 创建多层挂单,层间距和
The only drawdown guardian that stops your other EAs from digging you deeper. PropMarshal monitors your account equity in real time and instantly closes all positions the moment a drawdown or profit target threshold is breached. But it doesn't stop there — it closes every chart on your platform too, cutting off any other Expert Advisors before they can open new trades and compound the damage. The Problem PropMarshal Solves Most prop firm traders run multiple EAs across multiple charts. When a dr
FREE
Welcome to Smart Algo Trade Panel Manager MT5 - the ultimate   risk management tool designed to make trading more effective based on user needs.  It is a comprehensive solution for seamless trade planning, position management, and enhanced control over risk. It does not matter weather you a beginner or an advanced trader, or a scalper needing rapid executions, SmartAlgo Trade Panel  adapts to your needs offering flexibility across all markets of your choice. You can put SL, Lot and TP of choice
Trading Calendar — 查看您最盈利的交易日 将您的交易历史转化为清晰的每日交易表现分析,使用 Trading Calendar 轻松掌握盈利规律。 Trading Calendar 是一款强大的 MT5 分析工具,帮助交易者通过交互式盈亏热力图直观查看每日交易表现。无需翻阅冗长的交易记录,您可以快速发现自己的最佳交易日、最差交易日,以及连续盈利和亏损的规律。 按天、按周或按月分析交易表现,精准了解您的交易策略在哪些时间段效果最佳。 核心功能 • 每日盈利热力图 通过颜色区分盈利和亏损交易日,快速掌握表现。 • 胜率追踪 实时监控您的交易准确率和稳定性。 • 盈利因子分析(Profit Factor) 评估交易策略整体质量和效率。 • 平均盈利与平均亏损统计 清楚了解您的风险回报比。 • 最佳与最差交易日识别 快速找出表现最强和最弱的交易日。 • 每周交易总结 一目了然查看每周整体表现。 • 夏普比率监控 评估风险调整后的收益表现。 • 交易量分析 了解交易频率与盈利之间的关系。 • 月度与年度视图 支持多时间周期切换,深入分析交易数据。 为什么选择 T
FREE
Get news5
Aleksander Gladkov
Utility for reading news from investing.com To access the site, you need to add WebRequest in the Options terminal menu on the Expert Advisors tab: https://sslecal2.investing.com If reading is successful, a message about writing the file is displayed. The INV_week_this.txt file is written to the MQL5\Files folder of the terminal and is kept up to date, updating data according to its own timer. The  INV_week_last.txt   file is recorded on Saturday and saves the news data of the previous week .
Telegram EA Manager
Ebunoluwa Abimb Owodunni
All in one Multipurpose Telegram Trade Management , Manage and Copy Trades on the go From Telegram Pro Version MT5:  www.mql5.com/en/market/product/95742 Pro Version MT4:  www.mql5.com/en/market/product/85691 Execute Trades on mobile with fast execution When away from desktop MT5, or scalping the market with mobile device, or needed to copy trades from telegram groups while away, or doing some other activities, Telegram EA Manager is an effective tool to perform any trade operation with swift
FREE
Trading Calendar — 查看您最盈利的交易日 将您的交易历史转化为清晰的每日交易表现分析,使用   Trading Calendar   轻松掌握盈利规律。 Trading Calendar   是一款强大的 MT5 分析工具,帮助交易者通过交互式盈亏热力图直观查看每日交易表现。无需翻阅冗长的交易记录,您可以快速发现自己的最佳交易日、最差交易日,以及连续盈利和亏损的规律。 按天、按周或按月分析交易表现,精准了解您的交易策略在哪些时间段效果最佳。 核心功能 •   每日盈利热力图 通过颜色区分盈利和亏损交易日,快速掌握表现。 •   胜率追踪 实时监控您的交易准确率和稳定性。 •   盈利因子分析(Profit Factor) 评估交易策略整体质量和效率。 •   平均盈利与平均亏损统计 清楚了解您的风险回报比。 •   最佳与最差交易日识别 快速找出表现最强和最弱的交易日。 •   每周交易总结 一目了然查看每周整体表现。 •   夏普比率监控 评估风险调整后的收益表现。 •   交易量分析 了解交易频率与盈利之间的关系。 •   月度与年度视图 支持多
Live Price With PNL
Muhammad Jawad Shabir
实时价格和总利润显示指标 完美适用于实盘交易和屏幕分享 专为日内交易者、剥头皮交易者和实时交易直播会话设计 这个专业指标直接在您的图表上提供实时价格显示和综合利润跟踪 - 对于高频交易和实时交易广播至关重要。 核心功能 实时价格显示 每秒更新实时买价 所有品种类型的专业格式化 黄金/XAU的特殊格式化 大型清晰显示,完美适合屏幕分享 日内交易决策的即时价格更新 综合利润跟踪 来自交易历史的账户总利润 交易平仓时的实时利润更新 自定义额外利润金额 包含佣金和库存费 带正负指标的专业利润格式化 性能优化 智能缓存系统 - 最小CPU使用 1秒更新间隔 - 闪电般快速 高效的基于定时器的更新 实时交易监控 专业错误处理 高级自定义 可调节字体名称和大小 盈亏自定义颜色 图表上任意位置的灵活定位 专业角落锚定 关键词: 实时价格显示,实时利润追踪器,交易利润指标,账户监视器,日内交易工具,剥头皮指标,直播显示,屏幕分享工具,高频交易,外汇指标,黄金价格显示,利润计算器,实时更新,实时图表显示,交易表现监视器,MT5指标,MetaTrader 5工具
FREE
MT5 history exporter for accurate trade analysis and CSV export. Export trades to Excel from MetaTrader 5 with full performance metrics. Advanced MT5 trade analyzer with MAE, trade duration, and reconstruction. Usually platforms hide critical information about how your trades actually behave. History Downloader and Trade Analyzer solves this. It rebuilds your trades from raw deal history and exports a clean, structured dataset with accurate metrics MT5 does not provide. What You Get A fully s
Limiter Drawdown EA – Automatic Account Protection for MetaTrader 5 Description Limiter Drawdown EA is a lightweight risk management tool for MetaTrader 5. It monitors your account drawdown in real time and will automatically close all open trades once the threshold you define is reached. This provides a reliable safeguard for any trading strategy. Main Functions Monitors equity versus balance continuously Closes all positions when your chosen drawdown percentage is reached Optionally removes
FREE
You can see Binance Spot data instantly in Metatrader 5 and it allows you to use all the features that Metatrader has provided to you. You can access the data of all symbols listed on Binance Futures. Don't forget to set the timezone. Binance it's 00:00 UTC. You need to fix it according to your own country You need to install the free Binance Spot Symbol List plugin. https://www.mql5.com/tr/market/product/83507 After loading, it automatically downloads the data of the cryptos in the market obser
1,本金最大亏损比例和金额清仓  2,单日本金最大亏损比例和金额清仓  3,单笔最大亏损比例和金额平仓  4,财经事件时间段过滤清仓(前后2-5分钟)  5,盈利目标比例和金额清仓(清仓值)  6,最低交易日限制 >= 4  7,收盘前清仓  8,最大净值回撤比例清仓(1-step)  9,净值金额平仓   10,保证金占比(杠杆使用率)  11,当前账户最大浮亏和浮盈显示  12,根据止损和风险比例自动计算仓位  13,划线下单  14,历史统计  15,跟踪止损 保本止损   16,定时清仓,分批清仓   17,重置初始本金金额   18, 重置止损止盈价格   19, 任意价格挂单   20, 全部品种清仓加入具体品种交易时间段过滤,只平仓在交易时间段的品种    21,趋势策略:海龟策略、日线趋势策略     22, 动态跟踪止损:ATR,MA,DC,SAR   
“可调分形” - 是分形指标的高级版本,非常有用的交易工具! .......................................................................................... - 众所周知,标准分形 MT5 指标根本没有设置 - 这对交易者来说非常不方便。 - 可调分形解决了这个问题 - 它具有所有必要的设置: - 指标的可调周期(建议值 - 高于 7)。 - 价格高点/低点的距离可调。 - 可调分形箭头设计。 - 指标内置移动和 PC 警报。 点击这里查看高质量的交易机器人和指标! 这是仅在此 MQL5 网站上提供的原创产品。 ....................................................
ProbAlgo
Marius Ovidiu Sunzuiana
ProbAlgo is an institutional‑grade trading indicator engineered to mirror the analytical discipline used inside major banks and hedge funds. Its core strength is not just detecting when to trade — but knowing when not to trade. By combining probabilistic modeling, volatility diagnostics, liquidity behavior, and structural market filters, ProbAlgo isolates the rare moments when conditions genuinely support a high‑quality entry. Instead of chasing every move, ProbAlgo evaluates the market through
Cyber Pulse
Marco Brugali
4.39 (18)
Cyber Pulse Cyber Pulse 是一个创新的自动交易机器人,专为在 GBPUSD、XAUUSD 和 USDJPY 市场 上高效运作而设计。该机器人平均每周执行 3-5 笔交易,采用机器学习算法和价格行动策略的聪明组合,以提供卓越的交易体验。 性能和可靠性: 市场多样性: Cyber Pulse 为包括货币和贵金属市场在内的广泛资产进行了优化,确保了灵活性和赚钱机会。 控制性回撤: 重点关注风险管理,Cyber Pulse 维持非常低的回撤,确保资本保全和顶级风险管理。 3年回测: 通过严格的三年回测过程,该机器人展示了出色的鲁棒性和可靠性,在时间上实现了令人印象深刻和持续的收益。 盈利因子: 凭借在 1.5 到 3 之间的盈利因子,Cyber Pulse 在盈利效率和一致性方面脱颖而出,有效适应市场动态。 技术和策略: 人工智能与技术分析: 人工智能算法与先进技术分析技术的创新整合,使 Cyber Pulse 能够主动预测并利用市场机会。 安全性和可持续性: Cyber Pulse 设计不使用高风险策略,如马丁格尔或网格系统,为可持续和长期资本增长奠定了基础。 余额图表
FREE
Easy GOLD MT5
Franck Martin
3.87 (45)
Easy Gold is the latest addition to the BotGPT family. It is surprising and very powerful. It is ideal for beginners due to its simplicity.  There is absolutely nothing to do, it's 100% automated, simply indicate the percentage of risk you want to take per trade and the EA is ready. Whatever your capital, the EA takes care of everything. Optimized on (XAUUSD).  Unleash all the power with the professional version (AGI Gold) and its connection to the neural network, available in my store. My othe
FREE
Advanced Trailing Stop & Break-Even Expert Advisor with Partial Profit Taking Overview Unlock the full potential of your trading strategy with this Expert Advisor that automates trade management to maximize profits and minimize losses. Designed for both novice and experienced traders, this EA offers precise control over your trades with customizable trailing stops, break-even protection, and partial profit taking — all working seamlessly to protect your capital and lock in gains. Key Features Dy
VP-MTF PRO - Institutional Volume Profile Multi-Timeframe                               OVERVIEW VP-MTF PRO is a professional-grade Volume Profile indicator designed for serious traders who want institutional-level analysis. It combines multi-timeframe volume profiling with automated signal generation, VPOC migration tracking, and HVN/
FREE
Price Action Builder Premium
Florea E. Sorin-Mihai Persoana Fizica Autorizata
The Price Action Builder Premium expert advisor is an extension of the freely available Price Action Builder Basic :     it provides 2 new candlestick patterns besides the pinbar (already available in the basic edition);     in most configurations, backtesting usually shows an average yearly return rate increased by approximately 50%;     the account growth curve is also smoother, due to larger number of trades, almost double (2x) compared to the free version. While aimed primarily at obtaining
Advanced Live signal panel
Taha Saber Ashour Kamel
5 (1)
Advanced Signals Pro v10.0 is a professional-grade, all-in-one trading dashboard that combines 11 powerful technical indicators into a single, elegant interface. Monitor multiple symbols simultaneously, receive instant buy/sell signals with calculated targets, and make informed trading decisions with confidence. adjust parameters as you wish and if you want to see detailed analysis for any pair double click on it you will get tp , sl and support and resistance and accurate signal Whether you're
FREE
Greybrea Gold Scalper
Louis Jacobus Pieterse
GREYBREA GOLD SCALPER Built for Gold. Engineered for precision. Designed for disciplined execution. How It Thinks: The Adaptive Engine Behind every trade, GREYBREA continuously evaluates Gold's market behaviour analysing momentum, market structure, volatility, and price action. However, this is where the technology diverges from the competition. GREYBREA does not rely on a single, static strategy. Instead, it acts as a real-time decision-maker. As the day progresses, the algorithm monitors the
Binance Quotes Updater
Andrey Khatimlianskii
5 (1)
This service is designed to stream online cryptocurrency quotes   from the Binance exchange to your MetaTrader 5 terminal. You will find it perfectly suitable if you want to see the quotes of cryptocurrencies in real time — in the Market watch window and on the MetaTrader 5 charts. After running the service, you will have fully featured and automatically updated  cryptocurrency charts in your MetaTrader 5. You can apply templates, color schemes, technical indicators and any non-trading tools to
Aegis SMC Matrix EA
Amanda Vitoria De Paula Pereira
Aegis SMC Matrix EA is a high-performance automated architecture engineered for XAUUSD structure trading, the engine bypasses lagging retail templates by mapping institutional order blocks and liquidity sweeps directly on the terminal execution thread. The core algorithm tracks raw price expansion and volume displacement to secure clean entries at market extremes with zero phase-lag, every trade gets handled by a dynamic position matrix that locks partial targets fast to stabilize your equity li
Month Stats
Elidio Xavier Guimaraes
Month Stats Overview Month Stats is a quantitative analysis indicator designed to perform statistical studies of price behavior by classifying candle data according to the calendar month in which each candle was formed. The indicator processes historical candle data and provides statistical results for each month of the year, allowing users to analyze price behavior individually for January, February, March, and the remaining calendar months. The input parameters allow users to define the sampli
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
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
Risk Calculator EA – Utility for Precise Trade Sizing If you find this tool useful consider to  Buy me a coffee!   The Ultimate Risk Calculator is a lightweight in-chart Expert Advisor (EA) designed to help you easily and quickly calculate position size and set stop-loss / take-profit levels with full control over risk management directly on the chart. What it does? It turns manual risk decisions into fast, visual, and accurate calculations. You draw or adjust the Entry, Stop-Loss and Take-P
FREE
WAPV Box Effort x Result
Eduardo Da Costa Custodio Santos
WA_PV_BOX_EFFORT X MT5 的结果 WAPV Box Effort x Result Indicator 是 Package Indicators 组(Wyckoff Academy Wave Market)的一部分。 MT5 的 WAPV Box Effort x Result Indicator 可帮助您阅读价格和交易量。它的阅读包括协助识别努力x结果 在图表创建的波浪中。 当方框为绿色时,MT5 的 WAPV Box Effort x Result Indicator 表示交易量有利于需求,而当方框为红色时 量有利于供应。 方框越大,成交量相对于价格的位移越大。如果价格的上升波与 Box 的大小不成比例,则 努力x结果。 以一种非常直观的方式,我们可以识别出数量和价格之间的这种差异。 MT5 的 WAPV Box Effort x Result Indicator 还允许您通过将指标置于零轴下方来改善可视化。 以即时交易量和实际交易量在市场上运作 看图片:
Gold Scalping Matrix MT5
Mohamed Abdulmohsen Mohamed Saeed Ali
The Gold Scalping Matrix is an advanced trading algorithm designed to capitalize on market action and price reversals in the gold market. This innovative bot employs real time market behavior trading strategy, intelligently placing buy and sell orders at predetermined intervals around the current market price.  All Configuration Set Files for back-test and live accounts   All Experts for back-Test find the new free versions before change to paid Recommended Broker Support group   or DM for any
该产品的买家也购买
================================================================================ 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
Premium Trade Manager - 内置交易导师的图表面板 Premium Trade Manager 将一位交易导师嵌入您的图表,并在其下搭载完整的执行引擎。像往常一样建立交易,然后让您的 AI 交易导师 Max 读取这笔具体的交易,结合您的实时账户给出直接判断,再由您决定是否下单:止损是否符合纪律化交易的要求、风险规模是否合理、高影响新闻事件是否即将发布、您是否接近资金盘限额。其下是完整的执行引擎,负责点击之后的一切:一键按风险下单、您在图表上拖动规划且交易进行中仍可随时调整的计划、最多四个分批止盈级别、七种移动止损方式、实时资金盘合规检查、新闻屏蔽保护,以及对自身成本进行评级的点差功能。决策由您做出。Max 给出第二次审视。面板负责此后的一切。 购买前先亲手体验。 直接在浏览器中点击实时面板,这是在购买前感受其工作方式的最快途径。 stein.investments/products/premium-trade-manager Max 是您的一对一 AI 交易导师,他直接内置于面板之中。  他了解您的账户、您的设置和您的规则,用您自己的语言回答,并在每笔交易下单前进
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.
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
Global Investing FX Terminal
Santiago Nicolas Pla Casuriaga
Global Investing FX Terminal 是一款面向 MetaTrader 5 的一体化外汇仪表盘——涵盖央行政策利率、CFTC COT 持仓、利差排名、经济意外指数、期权偏斜、散户情绪与相关性,共十三个分析面板——以单一无闪烁画布呈现,每 10 秒从单个挂载 EA 刷新一次,无需任何外部软件。 专业外汇分析需要同时调取通常分散在不同平台的数据:利率衍生品、政府数据门户、券商掉期规格、期权台。此 EA 将所有这些整合到交易终端内的单一界面中,在您执行决策的地方完成分析。 仪表盘上显示的内容 市场概览 外汇对列表 — 所有 28 个 G10 货币对,加上当券商 Market Watch 中存在 NOK/SEK 交叉盘时显示的交叉盘——最多共 36 个货币对——的实时买卖价。每行显示点差、日度与周度变化、以点数表示的绝对区间,以及 ADR%——当前交易时段区间占 14 日平均日区间的百分比。ADR 达到 95% 的货币对已消耗其统计日内延伸空间;伦敦盘中场 ADR 仅 25% 的货币对仍有运行余地。颜色逐 Tick 实时更新。 货币对详情 — 点击列表中的任意行,即可打开该
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
世界上没有本软件的同等产品,它代表一个覆盖交易信号的通用交易 "控制台",自动入场,设置止损和止盈,还有在单一窗口里同时进行多交易尾随终止。EA 的 "三次点击" 直观控制,确保在不同计算机上全方位使用所有功能,包括平板电脑。 与附加的信号指标交互来标记图标,给出实际市场的全貌,EA 令您做出正确的选择,以及在大多数情况下成为胜者一方。内置资金管理算法, 还有自动计算手数, 虚拟订单交易, 以及一些其它从崩溃账户里挽救交易者的 "诀窍"。它不是一个 "黑盒子"。而是一个深思熟虑的交易员的不可或缺的助理, 至少要尝试一次它的动作。 注,在面板上形成的 EA 不能在策略测试员中测试。可以在您的模拟账户里以实时模式检查它, 您可以下载本 EA 的免费版 - 混沌交易 EA 演示 。 EA 表现为一个面板,带有内置功能的交易机器人的,自动基于交易者可直观检查的交易信号入场,完全按照比尔·威廉姆斯的策略“混沌交易:第二版”和“新贸易维度”。在单独的窗口里,EA 识别价格走势的导向,用于指定品种和时间帧的全自动交易模式,也可以多品种并发。 它同时分析 MetaTrader 5“市场观察”窗口中显示
Power Candles 策略扫描器——自优化多符号设置查找器 Power Candles策略扫描器 采用与Power Candles指标相同的自优化引擎,可同时扫描您“市场观察”中的所有交易品种。一个面板即可显示当前哪些品种在统计上具备交易价值、每种策略的最佳应用方向、最优止损/止盈组合,并在新信号触发时立即向您发送提醒。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 您的全面市场监控。每个交易品种超过3,000次自动优化。2种警报类型。一键切换图表并采取行动。 为何您需要此工具 大多数多标的扫描器仅展示价格 波动 。每只股票的波动率、百分比变化、RSI。您仍需自行摸索正确的策略、合适的止损位以及理想的入场阈值。Power Candles策略扫描器针对每只股票自动解答这些问题,仅在数学验证过的交易设置中触发实际入场信号时才会向您发出提示。这就是全部卖点。 自动
Custom Alerts AIO:多市场智能监控,一键启动,无需设置 概述 Custom Alerts AIO 是一款“开箱即用”的高级市场扫描工具,无需额外安装任何其他指标或进行复杂设置。它内置了 Stein Investments 的所有核心指标(FX Power、FX Volume、FX Dynamic、FX Levels 和 IX Power),可帮助您轻松监控所有主要资产类别,如外汇、黄金、指数和加密货币。如果您的经纪商支持股票,您也可以手动添加个股进行监控。 1. 为什么选择 Custom Alerts AIO? 无需额外购买任何指标 • 所有关键指标均已内置,开箱即用。 • 专注于实时预警,不包含任何图形元素,性能高效,界面简洁。 全面覆盖所有主要市场 • 支持监控外汇、金属、加密货币和指数市场。 • 无需手动输入任何交易品种,只需在设置中勾选资产类别即可启用。 • 股票并不属于默认类别,如有需要可手动通过参数输入添加。 高效、专业、便捷 • 无需图表模板和手动加载,适合自动化或远程交易环境。 • 非常适合 VPS 上长期运行,或作为后台市场预警工具使用。 2
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
VirtualTradePad PRO SE MT5 — MetaTrader 5 专业交易控制中心 VirtualTradePad PRO SE 是一款基于图表的高级交易面板,也是适用于 MetaTrader 5 的交易管理工作区。它专为希望获得更快执行、更清晰持仓控制、结构化交易管理、可视化价位规划,以及直接在图表上完成专业交易流程的交易者而设计。 这不仅仅是一个 BUY / SELL 面板。PRO SE 将手动交易、挂单、持仓管理、部分平仓、篮子利润/亏损控制、加仓均价层级、ATM 规则、信号监控、实时市场信息、策略测试器 (Strategy Tester) 流程以及面向 VPS 的运行方式整合到一个互相关联的界面中。 MT4 版本 | 完整说明和截图 | 如何购买 | 如何安装 | 如何获取日志文件 | 如何测试与优化 | Expforex 的所有产品 为什么交易者会选择这套面板 图表一键交易 ,并支持键盘快速操作 快速完成开仓、平仓、修改、反转、锁仓与部分平仓 深度控制仓位、挂单、总利润与风控逻辑 自动参数计算,减少手动输入与重复劳动 为什么 PRO SE 比标准手动交易更高
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
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
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
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 文件,直接适配主流智能工具和平台。 完整导出内容: • 三个可选周期的货币强度分析 • 净多头头寸变化体现市场情绪 • 成交量变化、
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
Trade Copier Pro MT5
Vu Trung Kien
3.67 (3)
Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTradfer 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 not be abl
The product will copy all  Discord  signal   to MT5   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT5. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrader
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
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 --------------------------------------------------------------------------------
ManHedger MT5
Peter Mueller
4.83 (6)
THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please TEST this product before BUYING  and watch my video about it. The price of the ManHedger will increase to 250$ after 20 copies sold. Contact me for user support or bug reports or if you want the MT4 version! MT4 Version  I do not guarantee any profits or financial success using this EA. With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading s
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
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY 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 ROL
Indicator Automator EA: The Ultimate Indicator Automation Tool Tired of being chained to your desk, waiting for signals from your favorite indicator? Do you want to eliminate emotional trading and unlock the true potential of your manual strategy? Indicator Automator EA is a powerful and highly versatile Expert Advisor for MetaTrader 5 designed to automate any trading indicator that provides clear Buy and Sell signals through its indicator buffers. You don't need to be a programmer. If you have
Crystal Trade Manager – Advanced MT5 Risk and Trade Control Utility Overview Crystal Trade Manager (CTM) is a professional MetaTrader 5 utility designed for risk management, trade automation, and instant execution control. It provides traders with an integrated system for protecting equity, managing daily drawdowns, controlling lot sizes, and applying automation features such as automatic SL/TP, break-even, and trailing stop. The tool is suitable for manual traders, prop-firm challenge particip
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)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! ONLY UNTIL 08/22 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? - Understand
Active Lines
Yury Kulikov
5 (2)
Attention: Demo version for review and testing can be downloaded here . It does not allow trading and can only be run on one chart. Active Lines - a powerful professional tool for operations with lines on charts. Active Lines provides a wide range of actions for events when the price crosses lines. For example: notify, open/modify/close a position, place/remove pending orders. With Active Lines you can assign several tasks to one line, for each of which you can set individual trigger conditions
Telegram To MT5 Receiver
Levi Dane Benjamin
4.53 (15)
将信号从您所属的任何渠道(包括私人和受限渠道)直接复制到您的 MT5。 该工具在设计时充分考虑了用户的需求,同时提供了管理和监控交易所需的许多功能。 该产品采用易于使用且具有视觉吸引力的图形界面。 自定义您的设置并在几分钟内开始使用该产品! 用户指南 + 演示  |   MT4版本  |   不和谐版本 如果您想尝试演示,请参阅用户指南。 Telegram To MT5 接收器在策略测试器中不起作用! Telegram 至 MT5 功能 一次复制多个通道的信号 从私人和受限频道复制信号 不需要机器人令牌或聊天 ID(如果出于某种原因需要,您仍然可以使用这些) 使用风险百分比或固定手数进行交易 排除特定符号 选择复制所有信号或自定义要复制的信号 配置单词和短语以识别所有信号(默认值应适用于 99% 的信号提供商) 配置时间和日期设置以仅在需要时复制信号 设置一次打开的最大交易量 交易和头寸管理 使用信号或自动设置的管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止过度交易 确
Telegram to mt5 pro
Janet Abu Khalil
4 (4)
Telegram to MT5 Pro — 高级 Telegram 信号复制器(Auto-Fix,多TP,风险控制,完整交易管理) Telegram to MT5 Pro — 专业 Telegram 信号复制系统 Telegram to MT5 Pro 可将来自 Telegram 的交易信号实时复制到您的 MetaTrader 5 账户,并提供完整的风险控制、执行管理与交易管理功能。 系统由两个组件组成: • 运行在 MetaTrader 5 内的 Expert Advisor(EA) • 连接 Telegram 并将信号发送到 EA 的桌面桥接程序 两个组件必须在同一台电脑运行。由于 MQL5 限制,EA 无法直接连接 Telegram。 支持与安装 提供完整 PDF 安装指南。 支持内容: • 完整 PDF 使用手册 • 分步安装指导 • 在线聊天支持 • 交易商设置帮助(前缀、后缀、符号映射) 功能说明 • 读取任意 Telegram 群组或频道信号 • 自动解析交易品种、方向、入场、止损、止盈 • 秒级执行交易 • 管理交易(移动止损、保本、部分平仓) • 支持多账户与多信号
作者的更多信息
️ MPSmartPanel — 您可靠的交易助手 MPSmartPanel   是一款适用于 MetaTrader 5 的紧凑型交易面板,它将手动交易的便利性与严格纪律和全面风险控制相结合。该面板 保护您的资金免受损失 ,并帮助您按照自己的系统有意识地交易。 交易系统检查清单(由程序控制) 您 自行填写 自己的检查清单(4 个条件块,例如:趋势、新闻、形态、信号),面板会在每次交易前 自动检查   — 若未确认所有条件,您将无法开仓。这排除了冲动和随机的交易。 ️ 风险管理器 — 资金保护 内置的风险管理器会在 至少违反一项条件时自动阻止新交易 :   当日亏损 达到设定限额(例如 500 美元)   当日盈利 达到目标水平   每日交易次数 超过限额(例如 10)   连续亏损 超过允许的限额(例如 3)   未平仓交易的总日风险 超过限额(每日风险限额) 同时进行 每日风险核算 :面板显示已用风险与剩余风险,防止您超过设定限额。 ️ 时间与交易时段控制 内置的 交易计时器 (START/FINISH 按钮)记录您的工作时间,自动将其分配到
DIVERGENCE SCANNER Find Divergences Faster. See What Others May Miss. Divergence Scanner is a specialized tool designed to automatically identify potential divergences across multiple trading instruments. It analyzes Stochastic and RSI , detects bullish and bearish divergences, and presents the results in a clear, structured table. Key Features: Automatic divergence detection; Stochastic analysis; RSI analysis; Bullish divergences; Bearish divergences; MOSTIPAN SMART TRADING
FREE
TREND SCANNER Stay With the Trend. Trade With Confidence. Trend Scanner analyzes the market to determine trend direction and strength using a combination of technical indicators. The system combines EMA 150/365, EMA 9/21, RSI, MA to confirm market direction and filter out weak or sideways conditions. Key Features: Bullish and bearish trend detection; EMA 150/365 and EMA 9/21 analysis; RSI confirmation; MACD momentum analysis; ️ ADX ranging-market filter; Trend strength measur
FREE
MP Risk Manager
Pavlo Mostipan
️ RISK MANAGER — Risk Management Indicator Indicator version:   1.70 ·   Style:   QuikTrade ·   Position:   bottom-left corner of the chart 1. What it is Risk Manager   is an informational indicator for MetaTrader 5 that shows the   daily risk budget   in real time and helps calculate the   recommended lot , taking into account: risk per single trade (% of balance); daily risk (% of balance); losses and profits already realized today; risk of open positions (based on their Stop Loss); distance
FREE
筛选:
无评论
回复评论