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.


Prodotti consigliati
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
Questo EA è utilizzato principalmente per lo scalping su XAUUSD. Scopo   Rimuove l’emozione dalla gestione delle operazioni — protegge automaticamente le posizioni e prende profitto così non devi prendere decisioni difficili sotto pressione. Cosa fa   ️ Stop Loss automatico   Imposta SL basandosi su recenti massimi/minimi + buffer   Niente più stress per la collocazione manuale   Profitti parziali automatici   Due modalità:   Movimento fisso: chiude il 50% dopo uno spostamento di prezzo
Trade Assistant For MT5
Abdelkhabir Yassine Alaoui
Trade Assistant per MT5 Pannello di gestione del trading di livello professionale per precisione e controllo Assumi il pieno controllo del tuo trading con Trade Assistant per MT5: un pannello di esecuzione e gestione di livello professionale progettato per i trader che esigono velocità, precisione e un controllo del rischio disciplinato. Realizzato pensando alle prestazioni e alla facilità d'uso, questo strumento trasforma il tuo grafico MetaTrader 5 in una workstation di trading completa,
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
What this dashboard does The panel displays: Current Ichimoku signal per symbol Current Ichimoku signal per timeframe Key Ichimoku line values Signal direction summary Instead of switching charts manually, you can analyze the market structure in seconds. Available Ichimoku values Each cell may display: Tenkan-Sen Kijun-Sen Senkou Span A Senkou Span B Chikou Span Span A – Span B difference This allows detailed analysis or quick signal filtering. Signal types The dashboard can detect:
What this tool does Assistant AutoClose monitors open trades and closes them when selected conditions are met. You can automatically close trades by: Profit in points Loss in points Profit in deposit currency Loss in deposit currency It can work: On Buy and Sell trades Only Buy trades Only Sell trades You can also: Limit by number of deals Control total profit per symbol Close trades per-trade or based on overall result Typical use cases Closing trades after fixed profit without using b
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
Telegram to mt5 pro
Janet Abu Khalil
3.67 (3)
Telegram to MT5 Pro — Advanced Telegram Signal Copier with Auto-Fix, Multi-TP, Risk Control and Full Trade Management Telegram to MT5 Pro — Copiatore di segnali Telegram professionale Telegram to MT5 Pro è un copiatore di trading ad alte prestazioni che esegue automaticamente i segnali da Telegram direttamente nel tuo account MetaTrader 5, con pieno controllo su rischio, esecuzione e gestione del trading. Il sistema è composto da due componenti: • L’Expert Advisor (EA) che gira all’interno di M
Il DYJ MOBILE GAMING TRADING WINNER può utilizzare i vari terminali (TELEFONO CELLULARE, WEB, TRADINGVIEW, MT5) per il trading manuale e quindi elaborato automaticamente da EA. Il trading mobile può utilizzare le varie modalità di griglia di EA, la modalità scalp, la modalità di arbitraggio di copertura e la modalità di ordine indipendente per aprire le posizioni manualmente, EA può impostare automaticamente lo stop loss per l'apertura mobile. E usa il tuo cellulare per aprire una griglia, sc
AW Workpad MT5
AW Trading Software Limited
AW Workpad è un pannello di controllo del trading multifunzionale progettato per il trading manuale e semiautomatico. Ti consente di gestire ordini pendenti, posizioni di mercato, fornisce un'ampia gamma di dati statistici, nonché un'analisi multiperiodale di un gruppo di indicatori classici. L'utilità è rappresentata da cinque schede:  Positions, Pending, Close, Indicators, Info .  Ogni scheda ha il proprio gruppo di funzioni per l'elaborazione degli ordini o informazioni sulla situazione attu
Size Bars
Viktor Loginov
Size Bars – индикатор отображает на графике максимальный, минимальный, текущий и средний размер баров (свечей) за выбранный период. Отображаемые параметры индикатора Size Bars: 1)       Текущий размер бара в писах (по максимум/минимум, тело бара). 2)       Максимальный, минимальный и средний размер свечей BUY . 3)       Максимальный, минимальный, средний размер свечей SELL . 4)       Количество свечей BUY и количество свечей SELL . 5)       Среднее количество свечей подряд BUY и SELL . 6)     
Prop Calculator Assistant  Smetti di bruciare conti Prop Firm per errori di calcolo. Lascia che l’Assistente gestisca il rischio per te. Prop Calculator Assistant è la dashboard definitiva per la gestione operativa, progettata specificamente per i trader che affrontano challenge (FTMO, ecc.) o che gestiscono capitali finanziati. Sostituisce i calcoli mentali e il posizionamento manuale degli ordini con un’interfaccia visiva di precisione che ti mantiene rigorosamente entro le tue regole. Questo
Trade Panel Pro MT5
Elvis Wangai Muriithi
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
Open Positions and Buttons
Paul, Matthieu Paturle
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)
This script will show you information about the execution speed of market orders. Instruction 1. Press " File/Open Data Folder " 2. Copy the log-files from  ../Logs   to   ../MQL5/Files 3. Run the CheckExec script on EURUSD chart, for example 4. Select parameters: AllOrders - check execution time of all market orders for EURUSD, OpenOrders - check execution time of market orders which where used to open positions on EURUSD, CloseOrders - check execution time of market orders which where used to
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
Nabil Oukhouma
5 (1)
Il Gestore del Rischio "Set & Forget" per il Trading Multi-Asset ️ Mai lasciare un trade senza protezione. Auto Stop Loss (MT5 Manager) è l'utility di background definitiva per i trader che mettono la sicurezza al primo posto. A differenza dei pannelli standard, questo strumento lavora instancabilmente dietro le quinte per proteggere istantaneamente ogni operazione. Che tu apra trade manualmente o tramite un altro EA, questo manager assicura che ogni posizione abbia immediatamente un Stop Loss
Account Statistics – Dashboard per statistiche di trading in MetaTrader 5 Account Statistics è uno strumento di analisi e reporting per MetaTrader 5. Mostra le principali metriche del tuo conto di trading direttamente nel grafico e consente una valutazione strutturata delle tue performance su diversi periodi di tempo. Il prodotto è rivolto ai trader che desiderano analizzare sistematicamente i propri risultati e documentarli in modo trasparente. Funzioni Il dashboard integrato mostra in tempo
Lot Size Calculator Panel
Italo Martins Coutinho
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 " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simplifies
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 Bridge dati da MT5 a JSON per tutti i time frame con informazioni sul conto. Panoramica BerelzBridge Pro è un indicatore MT5 che esporta i dati di mercato in tempo reale in un file JSON su disco. Scrive prezzi bid e ask, spread, volume tick, statistiche giornaliere, informazioni sul conto e barre OHLCV per tutti i 9 time frame. Il file viene aggiornato a un intervallo configurabile con un default di 2 secondi. L'indicatore funziona insieme agli Expert Advisor sullo stesso grafi
AP Manager
Ardian Putra
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
Gli utenti di questo prodotto hanno anche acquistato
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (211)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Forex Trade Manager MT5
InvestSoft
4.98 (659)
Benvenuto a Trade Manager EA, lo strumento definitivo per la gestione del rischio , progettato per rendere il trading più intuitivo, preciso ed efficiente. Non è solo uno strumento per l'esecuzione degli ordini, ma una soluzione completa per la pianificazione delle operazioni, la gestione delle posizioni e il controllo del rischio. Che tu sia un principiante, un trader avanzato o uno scalper che necessita di esecuzioni rapide, Trade Manager EA si adatta alle tue esigenze, offrendo flessibilità s
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (139)
Sperimenta una copia di trading eccezionalmente veloce con il   Local Trade Copier EA MT5 . Con la sua facile configurazione in 1 minuto, questo copiatore di trading ti consente di copiare i trades tra diversi terminali di MetaTrader sullo stesso computer Windows o su Windows VPS con velocità di copia ultra veloci inferiori a 0.5 secondi. Che tu sia un trader principiante o professionista,   Local Trade Copier EA MT5   offre una vasta gamma di opzioni per personalizzarlo alle tue esigenze speci
Versione Beta Telegram to MT5 Signal Trader è quasi pronto per il rilascio ufficiale in versione alpha. Alcune funzionalità sono ancora in fase di sviluppo e potresti riscontrare piccoli bug. Se riscontri problemi, ti preghiamo di segnalarli, il tuo feedback aiuta a migliorare il software per tutti. Telegram to MT5 Signal Trader è uno strumento potente che copia automaticamente segnali di trading da canali o gruppi Telegram al tuo account MetaTrader 5 . Supporta canali pubblici e privati e cons
TradePanel MT5
Alfiya Fazylova
4.87 (156)
Trade Panel è un assistente commerciale multifunzionale. L'applicazione contiene più di 50 funzioni di trading per il trading manuale e permette di automatizzare la maggior parte delle attività commerciali. Prima dell'acquisto, è possibile testare la versione dimostrativa su un conto demo. Scaricare la versione di prova dell'applicazione per un account dimostrativo: https://www.mql5.com/it/blogs/post/762419 . Istruzioni complete qui . Commercio. Consente di effettuare operazioni di trading con u
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
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
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
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:/
Premium Trade Manager - Gestione dei trade rapida e disciplinata per MetaTrader 5 Premium Trade Manager è per i trader che vogliono tenere il focus sulla decisione mentre il pannello gestisce la routine: dimensionamento, piazzamento, parziali, trailing, news e limiti prop-firm, gestiti con la stessa disciplina su ogni trade. È un pannello rapido sul grafico per MetaTrader 5 che si occupa di tutto il lavoro meccanico in ogni trade. Decidi tu direzione, simbolo e momento; il pannello calcola la di
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.91 (33)
Copiatore professionale di trade per MetaTrader 5 Un copiatore di trade veloce, professionale e affidabile per MetaTrader . COPYLOT consente di copiare operazioni Forex tra terminali MT4 e MT5 con supporto per conti Hedge e Netting . La versione MT5 di COPYLOT supporta: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versione MT4 Descrizione completa + DEMO + PDF Come acquistare Come installare Come ot
AntiOverfit PRO MT5
Enrique Enguix
5 (6)
Prima di comprare un EA, verifica se regge davvero oppure se in backtest è sembrato forte solo per fortuna. La maggior parte dei robot viene venduta con un backtest bello da vedere. Curva in crescita. Buon profit factor. Pochi dubbi. Eppure molti di questi EA crollano non appena il mercato smette di muoversi come in quello storico. Perché? Perché un backtest dimostra una cosa sola: che quella strategia ha funzionato su un percorso di prezzo ben preciso. Non dimostra che reggerà su percorsi diver
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
Copy Cat More Trade Copier MT5 (Gatto Copiatore MT5) è un copiatore di trade locale e un framework completo di gestione del rischio ed esecuzione progettato per le sfide di trading odierne. Dalle sfide delle prop firm alla gestione di portafogli personali, si adatta a ogni situazione con una combinazione di esecuzione robusta, protezione del capitale, configurazione flessibile e gestione avanzata dei trade. Il copiatore funziona sia in modalità Master (mittente) che Slave (ricevente), con sincro
HINN MagicEntry Extra
ALGOFLOW OÜ
4.73 (15)
HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
Timeless Charts
Samuel Manoel De Souza
5 (6)
Timeless Charts è un'utilità di trading completa progettata per trader professionisti. Combina tipi di grafici personalizzati come Grafici a Secondi e Renko con analisi avanzata del flusso ordini tramite Footprints , Clusters , Profili di Volume , studi VWAP e strumenti di analisi ancorata per una visione più approfondita del mercato. Il trading e la gestione delle posizioni vengono eseguiti direttamente dal grafico tramite un pannello integrato di gestione delle operazioni , mentre Market Repla
Trade copier MT5
Alfiya Fazylova
4.53 (43)
Trade Copier è un'utilità professionale progettata per copiare e sincronizzare le transazioni tra conti di trading. La copiatura avviene dal conto/terminale del fornitore al conto/terminale del destinatario, che sono installati sullo stesso computer o vps. PROMOZIONE - Se avete già acquistato il "Trade copier MT5", potete ottenere gratuitamente il "Trade copier MT4" (per la copia MT4 > MT5 e MT4 < MT5). Per maggiori informazioni sulle condizioni, vi preghiamo di contattarci tramite messaggi priv
Power Candles Strategy Scanner - Strumento di ricerca configurazioni multi-simbolo con ottimizzazione automatica Power Candles Strategy Scanner utilizza lo stesso motore di auto-ottimizzazione che alimenta l'indicatore Power Candles, applicandolo a tutti i simboli presenti nel tuo Market Watch, uno accanto all'altro. Un unico pannello ti indica quali simboli sono statisticamente negoziabili in questo momento, quale strategia è vincente su ciascuno di essi, la coppia ottimale di Stop Loss / Take
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
Telegram To MT5 Receiver
Levi Dane Benjamin
4.31 (16)
Copia i segnali da qualsiasi canale di cui sei membro (compresi quelli privati e ristretti) direttamente sul tuo MT5.  Questo strumento è stato progettato con l'utente in mente offrendo molte funzionalità necessarie per gestire e monitorare gli scambi. Questo prodotto è presentato in un'interfaccia grafica facile da usare e visivamente accattivante. Personalizza le tue impostazioni e inizia ad utilizzare il prodotto in pochi minuti! Guida per l'utente + Demo  | Versione MT4 | Versione Discord
The News Filter MT5
Leolouiski Gan
4.77 (22)
Questo prodotto filtra tutti gli esperti consulenti e i grafici manuali durante il periodo delle notizie, così non dovrai preoccuparti di improvvisi picchi di prezzo che potrebbero distruggere le tue impostazioni di trading manuali o le negoziazioni effettuate da altri esperti consulenti. Questo prodotto viene fornito anche con un sistema completo di gestione degli ordini che può gestire le tue posizioni aperte e gli ordini in sospeso prima della pubblicazione di qualsiasi notizia. Una volta che
MT5 to Telegram Signal Provider è un'utilità facile da usare e completamente personalizzabile che consente l'invio di segnali specificati a una chat, canale o gruppo Telegram, rendendo il tuo account un fornitore di segnali. A differenza della maggior parte dei prodotti concorrenti, non utilizza importazioni DLL. [ Dimostrativo ] [ Manuale ] [ Versione MT4 ] [ Versione Discord ] [ Canale Telegram ]  New: [ Telegram To MT5 ] Configurazione Una guida utente passo-passo è disponibile. Nessuna cono
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.
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
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
EA Portfolio Analyzer
Jimmy Peter Eriksson
4 (1)
Guida all'installazione:    clicca qui! Analizzare più consulenti esperti insieme Confronta i risultati EA per numero magico Traccia la redditività e i ribassi Filtra i risultati per intervallo di date Curva di equità visiva e metriche dettagliate Pronto all'uso in meno di un minuto Analizzatore di portafoglio EA EA Portfolio Analyzer è uno   strumento di analisi professionale   progettato per monitorare   in tempo reale le prestazioni di più Expert Advisor   in modo chiaro e strutturato. Quand
Anchor Trade Manager
Kalinskie Gilliam
5 (2)
Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Click OK. Anchor begins coordinating immediately. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite positions
Poc Breakout Signal: The Ultimate Institutional Order Flow & Price Action System Elevate your trading with Poc Breakout, a comprehensive technical analysis tool designed to bridge the gap between retail trading and institutional market understanding. This all-in-one system combines powerful Buy/Sell signals, advanced Volume Profile analysis, real-time Order Flow (Depth of Market), and critical macroeconomic data to give you a clear, unambiguous edge in the markets. Poc Breakout Signal decodes c
Signal Trading View to MT5 Pro
Mirel Daniel Gheonu
4 (1)
Signal TradingView to MT5 Pro Automator Esecuzione professionale istantanea tra TradingView e MetaTrader 5 Automatizza la tua strategia di trading con il ponte di comunicazione più robusto tra gli alert di TradingView e l'esecuzione reale in MT5. Progettato per i trader che richiedono velocità, flessibilità e una gestione del rischio impeccabile, questo Expert Advisor trasforma qualsiasi messaggio di avviso in un preciso ordine a mercato o limite. PUNTI DI FORZA E VANTAGGI Motore di Parsing Univ
Telegram to MT5 Coppy
Sergey Batudayev
5 (9)
Da Telegram a MT5:   la soluzione definitiva per la copia del segnale Semplifica il tuo trading con Telegram su MT5, il moderno strumento che copia i segnali di trading direttamente dai canali e dalle chat di Telegram sulla tua piattaforma MetaTrader 5, senza bisogno di DLL. Questa potente soluzione garantisce un'esecuzione precisa dei segnali, ampie opzioni di personalizzazione, fa risparmiare tempo e aumenta la tua efficienza. [ Instructions and DEMO ] Caratteristiche principali Integrazione d
Trade Assistant 38 in 1
Makarii Gubaydullin
4.91 (23)
Strumento multifunzionale: Calcolatore di Lotto, Ordini Grid, Rapporto R/R, Gestore di Trade, Zone di Domanda e Offerta, Price Action e molto altro Versione Demo   |   Manuale Utente L'Assistente di Trading   non funziona nel tester di strategie : puoi scaricare la   Versione Demo QUI  per testare l' utilità . Contattami   per qualsiasi domanda  / idee di miglioramento / in caso di bug riscontrato Se hai bisogno di una versione MT4, è disponibile qui Semplifica, accelera e automatizza il tuo  
Altri dall’autore
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
Jingfeng Luo
5 (4)
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
BinanceData
Jingfeng Luo
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
Filtro:
Nessuna recensione
Rispondi alla recensione