Trade Risk Manager Pro

Trade Risk  Manager Pro (Trade Control Assistant Pro) - User Manual

1. Product Overview & Key Features

Trade Risk Manager Pro is an institutional-grade risk management panel developed for the MetaTrader 5 (MT5) platform. Its core philosophy is to decouple "Trade Execution" from "Risk Control." By enforcing hard constraints, it helps traders overcome psychological weaknesses (such as holding losing trades, over-leveraging, or revenge trading) while providing a modern, seamless user experience.

A. Global Risk Takeover (Global Control)

  • Universal Management: Whether you place orders manually via mobile, use the MT5 One-Click Trading panel, or run other EAs, RiskManagerPro can manage all orders for the current symbol.

  • Enforcement: Once enabled, the EA continuously scans open positions. Any order without a Stop Loss (SL) or with parameters violating your rules will be immediately corrected.

B. Smart Single Trade Risk

  • Hard SL/TP (Server-Side): Immediately after an order is detected, the EA calculates and modifies the order's SL and TP on the broker's server. Your risk is capped even if your internet disconnects or MT5 crashes.

  • Dual Calculation Modes ($ / %):

    • Absolute Mode ($): Risk a fixed amount per trade (e.g., Max loss $50).

    • Percent Mode (%): Risk a percentage of Account Equity (e.g., Max loss 2% of Equity).

  • Advanced Trailing Stop: Features a professional two-step logic: Activation Threshold + Trailing Distance, allowing profits to run while securing gains.

C. Account Circuit Breaker (Lockdown Mechanism)

  • Period Limits: Define maximum allowable loss for the Day or Week.

  • Hard Lockdown: If the loss limit is breached, the EA enters "Lockdown Mode":

    1. Immediately closes all open positions.

    2. Deletes all pending orders.

    3. Blocks New Trades: Any new order opened during the lockdown period will be closed instantly (millisecond reaction).

D. Portfolio Management

  • Equity Protection: Set a "Total Floating Loss" limit (e.g., -$200) to flatten the account if exposure gets too high.

  • Profit Taking: Set a "Total Floating Profit" target (e.g., +$500) to secure total portfolio gains.

  • Time Limit: Define a maximum holding time (e.g., 60 mins). Orders held longer than this are automatically closed to prevent "scalps turning into investments."

  • Exposure Limit: Limit the maximum total lots for Buy or Sell sides to prevent over-leveraging in one direction.

E. Modern UI & Interaction

  • Hot-Apply: Modifying a parameter in the panel and pressing Enter immediately recalculates and updates SL/TP for all existing orders.

  • Instant Unit Switch: Toggle between Value ($) and Percent (%) modes with a single click. Existing orders update immediately to reflect the new logic.

  • Bilingual: Native support for English and Chinese.

2. Operating Mechanism

Understanding the internal logic ensures you use the tool effectively.

1. Scanning & Takeover Engine

The EA operates using a hybrid of OnTick (price updates) and OnTimer (1-second intervals).

  • Global Control = True: The EA iterates through all live orders for the chart symbol.

  • Correction Logic: If a new order is found (e.g., placed via phone) with SL = 0 , the EA calculates the correct price based on your Single SL parameter (Amount or %) and sends an OrderModify request to the server instantly.

2. "Hot-Apply" Logic

Unlike traditional EAs that only apply settings to new orders, RiskManagerPro is dynamic.

  • Action: You change Single SL from $50 to $20 and press Enter.

  • Reaction: The EA triggers ApplyRiskToExistingPositions() . It recalculates the SL price for every open trade based on the new $20 risk and updates them on the server immediately.

3. Trailing Stop Algorithm

The trailing logic is precise and strictly non-retrospective (ratchet mechanism).

  • Trigger (Trailing Start): The feature remains dormant until the order's floating profit exceeds this value.

  • Distance (Trailing Dist): Once triggered, the SL moves to Current Price minus Distance .

    • Buy Orders: SL moves Up only.

    • Sell Orders: SL moves Down only.

4. Circuit Breaker State

The EA calculates Realized P/L (Today) + Floating P/L .

  • If Total Loss > Day Max Loss : RiskLockdown becomes true .

  • Effect: The dashboard turns into a "Gatekeeper," actively closing anything that tries to open until the server time resets (new day) or the user manually increases the limit.

3. Parameters Guide

Below is an explanation of all parameters available in the inputs tab or on the panel.

=== Basic Settings ===

Parameter Description Recommendation
Language Switch interface language (Chinese / English). User preference
Risk Unit Default calculation mode. Absolute ($) or Percent (%). Absolute (for beginners)
Global Control

True: Manages ALL orders for this symbol.


False: Manages only orders with matching Magic Number.

True (Highly Recommended)
Magic Number ID to identify orders opened by this EA. Any integer
Bg Color / Font Size Customize panel appearance. Default

=== 1. Single Trade Risk ===

Controls logic for individual orders. Input 1 in % mode means 1% of Equity.

Parameter Description
Single SL Stop Loss. Set to 0 to disable. If set to 50 ($), the EA calculates the price where loss is $50 and sets Hard SL.
Single TP Take Profit. Set to 0 to disable. Works same as SL.
Trailing Start Activation Threshold. Trailing begins only when floating profit > this value.
Trailing Dist Following Distance. The distance the SL maintains behind the current price once activated.

Example: Start = 100, Dist = 30.

When profit hits $100, SL moves to lock in $70 profit (100 - 30). If price moves +$10, SL moves +$10.

=== 2. Total Position Risk ===

Controls the aggregate risk of all open positions for the current symbol.

Parameter Description
Total Float Loss Max Floating Loss. If total floating P/L drops below this (e.g., -$200), Close All is triggered.
Total Float Win Target Profit. If total floating P/L reaches this (e.g., +$500), Close All is triggered.
Max Lots One Way Net Exposure Limit. Limits total Buy volume or total Sell volume. Prevents adding too many positions in one direction.

=== 3. Period Limits (Circuit Breaker) ===

The ultimate safety net for your account.

Parameter Description
Day Max Loss Daily Stop Loss. Sum of (Today's Realized Loss + Current Floating Loss). Breaching this triggers Lockdown.
Week Max Loss Weekly Stop Loss. Same logic, calculated from the start of the week.
Max Hold Mins Time Limit. Maximum duration (in minutes) a trade is allowed to remain open. Excess time triggers closure.

4. Operation Workflow

  1. Installation: Drag the EA onto the chart. Ensure "Algo Trading" is enabled in MT5.

  2. Mode Selection:

    • Look at the button at the top of the panel: "Mode: Value $" or "Mode: Percent %".

    • Click to toggle. The logic for all existing trades will update immediately.

  3. Adjusting Parameters:

    • Click any input box on the panel (e.g., change StopLoss from 0 to 50).

    • CRITICAL: Press ENTER to confirm.

    • The EA will immediately process the new value and update orders.

  4. Trading:

    • Place trades using your preferred method (One-click, Mobile, etc.).

    • Watch the EA apply SL/TP automatically within milliseconds.

  5. Emergency Controls:

    • Close All (Red Button): Immediately closes all positions and deletes pending orders.

    • Close Win (Green Button): Immediately closes only profitable positions.

5. FAQ

  • Q: Why does my SL change back after I manually move it on the chart?

    • A: You have Global Control enabled and a value in Single SL . The EA is enforcing your rule. To manage SL manually, set Single SL to 0 on the panel.

  • Q: Why can't I open a new trade? It closes instantly.

    • A: You have likely hit your Day Max Loss , Week Max Loss , or Max Lots One Way limit. Check the "Daily P/L" or "Weekly P/L" on the monitor; if it's red and exceeds your limit, the EA is in Lockdown Mode.

  • Q: What does "Trailing Start" mean?

    • A: It is the minimum profit required to start the trailing stop. If you set it to $50, the trailing stop will not activate until the trade is at least $50 in profit.


Рекомендуем также
Category: Utilities → Trade Panels Version: 1.2 (auto-sizing buttons + adjustable font size) ClickCloserExpress is a super-lightweight panel for MetaTrader 5 that lets you close positions instantly by profit/loss, symbol, side (Buy/Sell), and magic number— without opening new trades or cluttering your chart. Perfect for manual/semi-auto management, scalping, and fast portfolio clean-ups. What it does One-click closing of: All positions. Profitable only or losing only . Symbol on chart o
This EA is primarily used for scalping XAUUSD. Purpose Removes emotion from trade management   - automatically protects positions and takes profits so you don't have to make difficult decisions under pressure. What It Does ️   Auto Stop Loss Sets SL based on recent highs/lows + buffer No more manual placement stress   Auto Partial Profits Two modes: Fixed Movement : Close 50% after X price movement R-Ratio : Close 50% at 1.2R profit target Locks in gains while letting winners run. ️   One
Trade Assistant For MT5
Abdelkhabir Yassine Alaoui
Trade Assistant для MT5 Панель управления торговлей институционального уровня для точности и контроля Возьмите полный контроль над своей торговлей с помощью Trade Assistant для MT5 — профессиональной панели исполнения и управления, разработанной для трейдеров, которым важны скорость, точность и дисциплинированный контроль рисков. Созданный с учетом производительности и удобства использования, этот инструмент превращает ваш график MetaTrader 5 в полноценную торговую рабочую станцию, позволя
Forget about enabling templates when you launch the window. Auto Template Master Service  is a professional utility tool that runs as a system service in MetaTrader 5, and it will do it for you. Unlike traditional indicators or expert advisors (EAs), the program runs in the background of the entire terminal and doesn't require you to add it to each window individually. As soon as you open a new chart of any instrument (Forex, Stocks, Crypto), the service immediately detects the new window and a
Recluse FX
Michael Prescott Burney
3 (2)
Recluse FX is the ultimate trading system for US30 on the H1 chart. With dedicated stop-loss and take-profit for each order, it guarantees optimal performance and risk management. Validated across over 1200 trades since 2021 with a 100% win rate, Recluse FX delivers unmatched stability and consistent gains under all market conditions. Its progressive pricing means that after 50 copies are sold, the system becomes exclusive to its owners. Purchase Recluse FX now and message for free access to th
This is a utility that helps you close market orders and pending orders (optional), using keyboard shortcuts. For me,  it's more convenient and  faster  than clicking a button on the chart. You can set:  Keyboard Shortcut Hotkey: You can change and use most of the keys on the keyboard.   Key combination (Ctrl, Shift) also available in case you want to use  (Note that not all combinations work).  Magic Number  Symbol: All Symbol, or Current Chart Symbol, or Select Symbol List  Close Pending orde
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
Recovery Manager Panel MT5 is a manual order management panel for traders who want to manage open positions directly from the chart in a clearer and more organized way. This tool is not a signal robot. It does not predict market direction, generate entry signals, or trade automatically based on market forecasts. Instead, it helps traders work with positions that are already open. You can calculate possible recovery lot sizes, view estimated target levels on the chart, and use available floating
Apart from psychology, another thing that makes traders successful is risk management. This utility helps the trader in risk management, order management, and monitoring the profits that are made within a certain period. The utility works on the forex market. inputs: The following are inputs that are required before an order is executed ·        Sl- this is the stop loss in pips. ·        Tip: this is the take profit in pips. ·        Risk%: the percentage of the equity that the user wants to ri
Отличная панель для аналитики рынка. Панель помогает анализировать значения индикатора  Ichimoku  и его сигналы. С помощью данной панели вы сможете: смотреть текущий сигнал с Ichimoku по всем таймфреймам; смотреть текущий сигнал с   Ichimoku   по разным символам; смотреть текущее значение   Ichimoku ; несколько типов сигналов для аналитики. Значения в ячейке таблицы: Значение Tenkan-Sen Значение Kijun-Sen Значение Senkou Span A Значение Senkou Span B Значение Chikou Span Span A - Span B. Тип
Аналог   Виртуального   Stop Loss / Take Profit Возможности: автоматическое закрытие сделок по прибыли/убытку показывается количество сделок и общий профит по Инструменту Автоматическое закрытие сделок по прибыли/убытку (аналог виртуального StopLoss/TakeProfit): режим работы:  Off - Выключен; by Points - по прибыли/убытку в пунктах by Money - по прибыли/убытку в валюте депозита Типы сделок: Покупка и продажа Только покупка Только продажа Указываем условия закрытия по прибыли на сделку Указывае
CosmiCLab SMC FIBO CosmiCLab SMC FIBO — это профессиональный торговый индикатор, основанный на концепциях Smart Money Concepts (SMC), анализе структуры рынка и уровнях Fibonacci. Индикатор автоматически определяет свинги рынка и строит уровни Fibonacci по последнему импульсному движению. Также индикатор определяет ключевые изменения структуры рынка: BOS — Break Of Structure CHOCH — Change Of Character Дополнительно отображаются сигнальные стрелки BUY / SELL при пробое структуры. Индикатор подход
Telegram to mt5 pro
Janet Abu Khalil
3.67 (3)
Telegram to MT5 Pro — Расширенный копировщик сигналов Telegram с Auto-Fix, Multi-TP, управлением риском и полным управлением сделками Telegram to MT5 Pro — профессиональный копировщик сигналов Telegram Telegram to MT5 Pro автоматически копирует торговые сигналы из Telegram прямо в ваш аккаунт MetaTrader 5 в реальном времени с полным контролем риска, исполнения и управления сделками. Система состоит из двух компонентов: • Expert Advisor (EA), работающий внутри MetaTrader 5 • Desktop bridge прило
DYJ MOBILE GAMING TRADING WINNER может использовать ваши различные терминалы (MOBILE PHONE, WEB, TRADINGVIEW, MT5) для ручной торговли, а затем автоматически обрабатывается EA. Мобильная торговля может использовать различные режимы сетки советника, режим скальпирования, режим хеджирующего арбитража и режим независимого ордера для открытия позиций вручную. Советник может автоматически устанавливать стоп-лосс для мобильного открытия. И используйте свой мобильный телефон, чтобы открывать сетку,
AW Workpad MT5
AW Trading Software Limited
AW Workpad - это многофункциональная панель управления торговлей, созданная для для ручной и полуавтоматической торговли. Позволяет управлять отложенными ордерами, рыночными позициями, предоставляет широкий набор статистических данных, а также мультипериодный анализ группы классических индикаторов.  Утилита представлена пятью вкладками:  Positions, Pending, Close, Indicators, Info . Каждая вкладка имеет свою группу функций обработки ордеров или информации о текущей рыночной ситуации. MT4 версия
Size Bars – индикатор отображает на графике максимальный, минимальный, текущий и средний размер баров (свечей) за выбранный период. Отображаемые параметры индикатора Size Bars: 1)       Текущий размер бара в писах (по максимум/минимум, тело бара). 2)       Максимальный, минимальный и средний размер свечей BUY . 3)       Максимальный, минимальный, средний размер свечей SELL . 4)       Количество свечей BUY и количество свечей SELL . 5)       Среднее количество свечей подряд BUY и SELL . 6)     
Prop Calculator Assistant  Хватит сливать счета из-за ошибок в расчетах. Доверьте управление рисками вашему Ассистенту. Prop Calculator Assistant — это профессиональная панель управления сделками, созданная специально для трейдеров, проходящих челленджи (FTMO, и др.) или уже работающих на оплаченных счетах. Забудьте о расчетах в уме и ручном перетаскивании ордеров — наш визуальный интерфейс обеспечит строгое соблюдение ваших правил. Это не автоматический торговый робот, который «угадывает» рынок
Trade Panel Pro is a powerful and easy-to-use trading utility designed for traders who need fast execution, accurate position sizing, and complete risk management directly from the chart. Whether you scalp on the 1-minute chart or swing trade on the 4H, Trade Panel Pro gives you the tools to manage trades with confidence and precision — all in one clean interface. Price will double after 5 purchases. Grab this offer Key Features Fast Trade Execution Open Buy/Sell positions instantly from the pan
FREE
This tool will help you calculate position size based on the lines that you draw on the chart. It will automatically create the trading setup in the background and provide adaptive buttons for market and pending order confirmation. The design is very simple and straightforward, with just a single click you will be able to place the trading setup. Features Set your risk based on your predefined amount or percent of your account balance. Drag the lines to define the entry, take profit target and s
Risk Reward Manager is Utilities to help you calculate exact profit and loss or Risk Reward Ratio based on your preference Risks. There is panel you can change at anytime. The panel shows : Volume per Trade (Editable). You can change the volume you desire. Percent per Trade (Editable). You can change the Percentage of your desire Risks. You can change to 1% Risk per Trade for Conventional Trading Strategy. Risk Reward Ratio (Editable). You can change any Risk Reward Ratio you want. 1:1,5 || 1:2
This EA will provide you with the amount of points once you open a position, being a sell or a buy. I use it instead of the profit, as this plays some tricks in my mind. You can also set up a Take Profit and/or a Stop Loss in the settings of the EA. The point calculation will only work with manual trade. Magic number is 0. You also have the possibility to create labels for + Haut, - Haut, - Bas, + Bas and some trendlines at a 45 or - 45 degree angle. Here are the settings : Settings  Choices
Check Execution
Ivan Zaidenberg
1 (1)
Этот скрипт покажет вам информацию о скорости исполнения рыночных ордеров. Инструкция 1. Нажмите « Файл/Открыть папку данных » 2. Скопируйте лог-файлы из папки ../Logs в папку ../MQL5/Files 3. Запустите скрипт CheckExec , например, на графике EURUSD 4. Выберите параметры: AllOrders - проверить время выполнения всех рыночных ордеров для EURUSD, OpenOrders - скрипт будет анализировать скорость исполнения маркет ордеров, которые открывали позиции по EURUSD, CloseOrders - скрипт будет анализировать
SLSum
Simon Buksek
SLSum is a simple on-chart utility that shows your total risk and reward across all open trades. It helps you instantly see how much you are risking and what your potential reward is — perfect for manual traders and prop-firm challenges. ️ Features Shows number of open trades Total SL (money + %) Total TP (money + %) Automatic R:R ratio calculation Works for current symbol only or all symbols Clean multi-line on-chart display Fast, lightweight, no chart clutter ️ Inputs Text color & font siz
Риск-менеджер по принципу «Настроил и забыл» для мультивялютной торговли ️ Никогда не оставляйте сделку без защиты. Auto Stop Loss (MT5 Manager) — это незаменимая фоновая утилита для трейдеров, которые ставят безопасность на первое место. В отличие от громоздких торговых панелей, этот инструмент работает незаметно, мгновенно защищая каждую открытую сделку. Открываете ли вы ордера вручную или используете другой советник (EA), этот менеджер гарантирует, что у каждой позиции сразу же появятся жес
Account Statistics – Панель мониторинга торговой статистики в MetaTrader 5 Account Statistics — это инструмент анализа и отчетности для MetaTrader 5. Он отображает ключевые показатели вашего торгового счета непосредственно на графике и позволяет структурированно оценивать вашу производительность за различные периоды времени. Продукт предназначен для трейдеров, которые хотят системно анализировать свои результаты и документировать их в понятной форме. Функции Встроенная панель отображает основн
It mesures the lot size based on the points measured by clicking with the MIDDLE MOUSE BUTTON then CLICK and DRAG , previous that configure the indicator based on the risk you accept; The risk can be % based on fixed account, actual account size, and fix capital risk; If the INDICATOR DOESN'T WORK propperly try after configuring it CHANGE the TIMEFRAME and GET BACK to the PREVIOUS timeframe, SOMETIMES  this FIX IT
Trader Evolution
Siarhei Vashchylka
5 (7)
"Trader Evolution" - Утилита, предназначенная для трейдеров, которые используют в своей работе волновой и технический анализ. Одна вкладка утилиты способна управлять капиталом и открывать ордера, а другая - помогать в построении волн Эллиотта, уровней поддержки и сопротивления, а также линий тренда. Инструкция/Мануал ( Обязательно читайте перед приобретением ) | Версия для МТ4 Преимущества 1. Торговля в несколько кликов. В панели доступны немедленные и отложенные ордера 2. Управление капиталом
XXXX ATR (Average True Range) Position Manager: ATR StopLoss, ATR Target, ATR Breakeven, ATR Trailing StopLoss, with Risk % Calculation / Position. More about ATR: www.atr-trading.com Key takeaways   One click does it all: SELL and BUY button automatically places ATR stoploss, ATR target, ATR breakeven, ATR trailing stop and Risk % calculation of equity Entire position is calculated based on ATR No more manual position calculations = No more wasted time =  No more late entries Position sizes c
BerelzBridge
Barend Willem Van Den Berg
BerelzBridge Pro MT5-to-JSON мост данных для всех таймфреймов с информацией о счете. Обзор BerelzBridge Pro — это индикатор MT5, который экспортирует рыночные данные в реальном времени в JSON-файл на диск. Он записывает цены bid и ask, спред, тиковый объем, дневную статистику, информацию о счете и бары OHLCV для всех 9 таймфреймов. Файл обновляется с настраиваемым интервалом, по умолчанию 2 секунды. Индикатор работает одновременно с советниками на одном графике без конфликтов. Он не использует
Product Title AP Manager – Auto SL, TP, Break Even & Trailing Stop for MT5 Product Description Take full control of your risk management with AP Manager , a powerful and flexible tool designed to automatically manage Stop Loss, Take Profit, Break Even, and Trailing Stop for all your trades. This utility is perfect for traders who want to protect profits, minimize losses, and trade with discipline — without constantly monitoring the charts. Key Features Automatic Stop Loss & Take Pr
С этим продуктом покупают
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (211)
Помогает рассчитать риск на сделку, простая установка нового ордера с помощью линий, управление ордерами с функциями частичного закрытия, 7 типов трейлинг-стопа и другие полезные функции. Дополнительные материалы и инструкции Инструкция по установке - Инструкция к приложению - Пробная версия приложения для демо счета Функция Линии   - отображает на графике линию открытия, стоп-лосс, тейк-профит. С помощью этой функции легко установить новый ордер и увидеть его дополнительные характеристики пе
Добро пожаловать в Trade Manager EA — лучший инструмент для управления рисками, предназначенный для упрощения, точности и эффективности торговли. Это не просто инструмент для размещения ордеров; это комплексное решение для удобного планирования торгов, управления позициями и усиленного контроля над рисками. Независимо от того, начинающий вы трейдер, опытный специалист или скальпер, нуждающийся в быстром исполнении, Trade Manager EA адаптируется к вашим потребностям и работает с любыми активами:
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (139)
Опыт экстремально быстрого копирования сделок с помощью Local Trade Copier EA MT5 . Благодаря простой установке в течение 1 минуты этот копировщик сделок позволяет вам копировать сделки между несколькими терминалами MetaTrader на одном компьютере с Windows или на Windows VPS с крайне быстрыми скоростями копирования менее 0.5 секунды. Независимо от того, новичок вы или профессиональный трейдер, Local Trade Copier EA MT5 предлагает широкий спектр опций, чтобы настроить его под ваши конкретные по
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
Бета-версия Telegram to MT5 Signal Trader почти готов к официальному альфа-релизу. Некоторые функции все еще находятся в разработке, и вы можете столкнуться с небольшими ошибками. Если вы заметите проблемы, пожалуйста, сообщите о них, ваша обратная связь помогает улучшать программное обеспечение для всех. Telegram to MT5 Signal Trader — мощный инструмент, который автоматически копирует торговые сигналы из каналов и групп Telegram прямо в ваш счёт MetaTrader 5 . Поддерживаются как публичные, так
TradePanel MT5
Alfiya Fazylova
4.87 (156)
Trade Panel — это многофункциональный торговый помощник. Приложение содержит более 50 торговых функций для ручной торговли и позволяет автоматизировать большинство торговых операций. Перед покупкой вы можете протестировать демоверсию на демо-счете. Скачать пробную версию приложения для демонстрационного аккаунта: https://www.mql5.com/ru/blogs/post/750864 . Полная инструкция здесь . Торговля. Позволяет совершать торговые операции в один клик: Открыть отложенные ордера и позиции с автоматическим р
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
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.91 (33)
Профессиональный копировщик сделок для MetaTrader 5 Быстрый, профессиональный и надежный копировщик сделок для MetaTrader . COPYLOT позволяет копировать сделки Forex между терминалами MT4 и MT5 с поддержкой счетов Hedge и Netting . Версия COPYLOT для MT5 поддерживает: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Версия MT4 Полное описание + DEMO + PDF Как купить Как установить Как получить файлы жур
Прежде чем покупать EA, проверьте, действительно ли он держится, или ему просто повезло в бэктесте. Большинство роботов продаются с красивым бэктестом. Растущая кривая доходности. Хороший profit factor. Почти никаких сомнений. И всё же многие такие EA разваливаются, как только рынок перестаёт двигаться так, как в этом историческом участке. Почему? Потому что бэктест доказывает только одно: что эта стратегия сработала на одном конкретном ценовом пути. Он не доказывает, что система выдержит другие
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
The News Filter MT5
Leolouiski Gan
4.77 (22)
Этот продукт фильтрует всех экспертных советников и ручные графики во время новостей, так что вам не нужно беспокоиться о внезапных скачках цены, которые могут разрушить ваши ручные торговые настройки или сделки, введенные другими экспертными советниками. Этот продукт также поставляется с полной системой управления ордерами, которая может обрабатывать ваши открытые позиции и ордера на ожидание перед выпуском новостей. После покупки   The News Filter   вам больше не придется полагаться на встроен
Power Candles Strategy Scanner — самооптимизирующийся инструмент для поиска настроек по нескольким инструментам Power Candles Strategy Scanner использует тот же самооптимизирующийся движок, что и индикатор Power Candles — для всех символов в вашем Market Watch, одновременно. На одной панели отображается информация о том, какие символы в данный момент являются статистически торгуемыми, какая стратегия выигрывает на каждом из них, оптимальная пара Stop Loss / Take Profit, а также отправляется увед
Premium Trade Manager - Быстрое и дисциплинированное управление сделками в MetaTrader 5 Premium Trade Manager создан для трейдеров, которые хотят сосредоточиться на решении, пока панель ведёт рутину: расчёт объёма, выставление ордера, частичные закрытия, трейлинг, новостные и проп-фирмовые ограничения, всё это выполняется одним и тем же дисциплинированным образом в каждой сделке. Это быстрая панель на графике для MetaTrader 5, которая снимает механическую работу с каждой сделки. Вы определяете н
Copy Cat More Trade Copier MT5 (Копи-Кот MT5) — это локальный торговый копировщик и полная система управления рисками и исполнения, разработанная для современных торговых задач. От испытаний проп-фирм до управления личным портфелем, он адаптируется к любой ситуации с сочетанием надежного исполнения, защиты капитала, гибкой настройки и продвинутой обработки сделок. Копировщик работает как в режиме Мастер (отправитель), так и в режиме Слейв (получатель), с синхронизацией в реальном времени рыночны
Trade Dashboard MT5
Fatemeh Ameri
4.94 (126)
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
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.
Timeless Charts
Samuel Manoel De Souza
5 (6)
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
Trade copier MT5
Alfiya Fazylova
4.55 (44)
Trade Copier — это профессиональная утилита, предназначенная для копирования и синхронизации сделок между торговыми счетами. Копирование происходит от счета/терминала поставщика к счету/терминалу получателя, которые установлены на одном компьютере или vps. АКЦИЯ - Если вы уже приобрели "Trade copier MT5", вы можете получить "Trade copier MT4" бесплатно (для копирования MT4 > MT5 и MT4 < MT5). Для получения более подробной информации об условиях, пожалуйста, свяжитесь с нами через личные сообщени
HINN MAGIC ENTRY - лучший инструмент для входа и менеджмента позиций! Выставляет ордера через выбор уровня на графике! полное описание    ::    demo-версия    ::   60-sec-video-description Основные функции: - Рыночные, лимитные и отложенные ордера -  Автоматический подсчет лоттажа  -  Автоматический учет спреда и комиссий -  Неограниченное количество промежуточных тейков для позиций - Перевод в безубыток и трейл стоп-лосса и тейк-профита - Уровни инвалидаций - Интуитивно понятный,  адаптивный,
Telegram To MT5 Receiver
Levi Dane Benjamin
4.31 (16)
Копируйте сигналы из любого канала, участником которого вы являетесь (в том числе частного и ограниченного), прямо на свой MT5. Этот инструмент был разработан с учетом потребностей пользователей и предлагает множество функций, необходимых для управления и мониторинга сделок. Этот продукт представлен в простом в использовании и визуально привлекательном графическом интерфейсе. Настройте свои параметры и начните использовать продукт в течение нескольких минут! Руководство пользователя + Демо  |
Prop Firm Os
Gayathiri Gopalakrishnan
5 (1)
PROP FIRM OS Structured Trading Assistant for MetaTrader 5 PROP FIRM OS is a structured trading assistant designed for MetaTrader 5 users who prefer rule-based market analysis and organized trading workflows. The Expert Advisor combines market analysis tools, scanner functions, dashboard monitoring, alerts, risk-control settings, and trade management features inside one system. PROP FIRM OS is designed to help traders follow selected rules, filters, and monitoring conditions during trading activ
MT5 to Telegram Signal Provider — это простой в использовании полностью настраиваемый инструмент, который позволяет отправлять определённые сигналы в чат, канал или группу Telegram, превращая вашу учётную запись в провайдера сигналов . В отличие от большинства конкурирующих продуктов, он не использует импорт DLL. [ Демо ]   [ Руководство ] [ Версия MT4 ] [ Версия для Discord ] [ Канал в Telegram ]  New: [ Telegram To MT5 ] Настройка Доступно пошаговое руководство пользователя . Никаких знаний A
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)
Внимание: Ознакомиться с работой программы можно с помощью бесплатной версии  YuClusters DEMO . YuClusters это профессиональная система анализа рынка. Для трейдера открываются уникальные возможности анализа потока ордеров, объемов торговли, движения цены используя различные графики, профили, индикаторы, графические объекты. YuClusters оперирует данными на основе ленты сделок или тиковой информации, в зависимости от того, что доступно в котировках финансового инструмента.  YuClusters позволяет с
Signal TradingView to MT5 Pro Automator Мгновенное профессиональное исполнение между TradingView и MetaTrader 5 Автоматизируйте свою торговую стратегию с помощью самого надежного моста связи между алертами TradingView и реальным исполнением в MT5. Разработанный для трейдеров, которым требуются скорость, гибкость и безупречное управление рисками, этот советник (Expert Advisor) превращает любое сообщение с алертом в точный рыночный или лимитный ордер. ПРЕИМУЩЕСТВА И СИЛЬНЫЕ СТОРОНЫ Универсальный д
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
Trade Manager, который поможет вам быстро входить и выходить из сделок, автоматически рассчитывая риск. Включает функции, которые помогут предотвратить чрезмерную торговлю, торговлю из мести и эмоциональную торговлю. Сделками можно управлять автоматически, а показатели эффективности счета можно визуализировать в виде графика. Эти функции делают эту панель идеальной для всех трейдеров, занимающихся ручной торговлей, и помогают улучшить платформу MetaTrader 5. Многоязычная поддержка. Версия для МТ
SMC Trade Pilot MT5 Полуавтоматический торговый помощник для трейдеров, использующих концепции Smart Money. Получайте сигналы прямо в Telegram со скриншотом графика, затем размещайте сделку одним нажатием. Управляйте позициями со смартфона, даже когда вы вдали от компьютера. Какую проблему решает Сетапы Smart Money не ждут вас. Order Blocks и Liquidity Sweeps формируются во время открытия Лондона, Нью-Йорка или в разгар азиатской сессии, часто когда вы на работе, на встрече или просто вдали от э
The Ultimate TradingView to MT5 Bridge Automation Прекратите торговлю вручную и избавьтесь от проблем с задержками. TradingView to MT5 Copier PRO — это самый быстрый и надежный мост для исполнения ваших алертов TradingView напрямую в MetaTrader 5. Используете ли вы пользовательские индикаторы, скрипты тестера стратегий или ручную разметку, этот советник (EA) мгновенно исполняет ваши сделки, используя технологию High-Speed WebSocket . В отличие от простых копировщиков, эта PRO-версия включает Are
EA Portfolio Analyzer
Jimmy Peter Eriksson
4 (1)
Инструкция по установке:    Нажмите здесь! Анализ нескольких экспертных советников одновременно. Сравните результаты работы советников по «магическому числу». Отслеживание прибыльности и просадок Фильтрация результатов по диапазону дат Кривая визуальной привлекательности и подробные метрики Готов к использованию менее чем за минуту. EA Portfolio Analyzer EA Portfolio Analyzer — это   профессиональный аналитический инструмент   , предназначенный для мониторинга   текущей эффективности работы нес
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
Другие продукты этого автора
OrderFlow Bubbles Pro  (OFB-Pro)( Order flow main force large order bubble monitoring indicator )  DEMO version,modleling must choose " Every tick based on real ticks" Peer into the Micro-World of Candlesticks Like an Institutional Trader。[The last two screenshots show scenarios where the Orderflow Smart Flip indicator is used in combination with other indicators.] important note: on the strategy tester, when testing the indicator use either of the modes below Every Tick Every tick based on re
FOOTPRINTORDERFLOW: The Authoritative Guide ( This indicator is also compatible with economic providers that do not offer DOM data and BID/ASK data, It also supports various foreign exchange transactions, DEMO version,modleling must choose " Every tick based on real ticks"  ) Important notice: Before placing an order, please contact me first, and I will provide you with professional answers and services 1. Overview FOOTPRINTORDERFLOW  is an advanced Order Flow analysis tool designed for MetaTra
Orderflow Super Candles - Simple Footprint Chart Indicator Platform: MetaTrader 5 (MT5)  (The last screenshot shows the use of the DOM tool in conjunction with the product.) 1. Product Introduction Orderflow Super Candles is a professional charting tool based on underlying Tick data analysis, designed to provide traders with a deep "X-ray" view of the market. By parsing the buy and sell volume distribution within each candlestick, this indicator visualizes the hidden market microstructure. It
Dom Book HeatMAP Lightning Trading Panel Professional-Grade Microstructure Lightning Trading Panel · User Manual Important notice: Before placing an order, please contact me first, and I will provide you with professional answers and services Major update explanation: On January 10, 2016, automatic trading EA and control panel were added. For detailed parameter configuration, please refer to the latter half of this article. Important Note: 1、As this is a heatmap, footprint map, and DOM tradin
Support Resistance Pro line — Insight into Institutional Footprints, Capturing Reversals, Making Every Line Data-Driven.(This indicator has the same function as the Orderflow Smart Flip indicator, with only the name differing) Product Introduction Say Goodbye to Guesswork. Embrace the Data Truth. Support Resistance Pro line  is not just another drawing tool; it is an institutional behavior analysis system built on   Tick-level microscopic data . Acting like an X-ray for the market, it penetrate
Orderflow Smart Flip ( DEMO version,modleling must choose " Every tick based on real ticks") — Insight into Institutional Footprints, Capturing Reversals, Making Every Line Data-Driven. Important notice: Before placing an order, please contact me first, and I will provide you with professional answers and services Product Introduction Say Goodbye to Guesswork. Embrace the Data Truth. [The last two screenshots show scenarios where the OrderFlow Bubbles Pro indicator is used in combination.] Ord
AI Adaptive Market Holographic System Indicator Based on Microstructure and Field Theory Abstract: This paper aims to explore the construction principles and implementation mechanism of a novel financial market analysis tool—the Micro gravity regression AIselfregulation system. This system fuses Market Microstructure theory, classical mechanics (elasticity and gravity models), information entropy theory, and adaptive AI algorithms. By aggregating Tick-level data in real-time, physically modeling
After downloading this service program, it will be used as a service support program for Dom BookHeatMAP Lightning Trading Panel. Dom BookHeatMAP Lightning Trading Panel   download link: https://www.mql5.com/zh/market/product/159414?source=Site+Market+MT5+Search+Rating006%3aDom+BookHeatMAP+Lightning+Trading+Panel Please first drag and drop the downloaded file to the corresponding service folder (` MQL5 \ Services `) in the MT5 data directory, and confirm that the file has been successfully pla
ProQuant Probability Map: A Dual-Quant Prediction System to Navigate the Future Say goodbye to blind guessing. Let historical data be your compass. The ProQuant Probability Map is an advanced quantitative tool exclusively designed for MetaTrader 5. Unlike traditional lagging indicators (such as RSI or MACD), it calculates historical price distribution probabilities in real-time, directly projecting a "Heatmap" of potential future price levels onto the right side of your chart. Version 7 introduc
Crypto Gold Arbitrage Pro - Product Introduction    [MT5 limit,  DEMO version dont work!] Core Positioning Crypto Gold Arbitrage Pro is a cross-exchange gold arbitrage system designed for the MT5 platform, capturing price discrepancies between MT5 brokers and cryptocurrency exchanges (Binance/OKX) to achieve low-risk, high-efficiency arbitrage trading.  Five Core Advantages 1. Dual-Platform Intelligent Switching Support for Binance and OKX - two major cryptocurrency exchanges Choose single-platf
Фильтр:
Нет отзывов
Ответ на отзыв