NewsRForestExpert

Trading assistant NewsRForestExpert v4.01

  1. Purpose and principle of operation

NewsRForestExpert is a trading assistant for MetaTrader 5, using the built-in economic calendar
and the machine learning model "Random Forest" of the ALGLIB library (hereinafter simply "model").

The assistant:

  • in this version works only on the EURUSD currency pair timeframes M1 – M5;

  • loads news history for the selected period and forms training and test samples;

  • trains on the obtained data or loads an already trained model;

  • tests the quality of model training;

  • draws news on the chart, shows a control panel. On an additional chart shows quality metrics of training/testing;

  • in the Strategy Tester checks on history the quality of trading of the trained model, or conducts training of a new model with the possibility of optimizing model parameters and checking trading quality on history;

  • in real time receives new events, the trained model forms signals: SELL / OUT OF DEAL / BUY;

  • can work in auto-trading mode or with manual confirmation.

  • is not intended for intensive trading and scalping

  1. Requirements

MetaTrader 5 terminal (current version).
Internet connection.
Availability of the built-in economic calendar in the terminal.
Quality price history M1/M5 for correct synchronization and calculations.
Allowed autotrading, if ExpertAutoTrade = true is planned.
Currency pair EURUSD, timeframes M1 – M5.

  1. Installation and launch

Copy the files to the MT5 terminal directory. The assistant (*.ex5) should be located in MQL5/Experts.
Launch MT5 and drag the assistant onto a regular trading chart of the required instrument (EURUSD, period M1 - M5). Do not install on "service" charts.
Allow Algo Trading.
Press OK. When launched, the assistant:

  • will prepare "train" and "test" samples (train - for the specified period, test - the day of the end date of the train sample until the current time);

  • will train the model or load a saved one, depending on user settings;

  • will create a subwindow with a control panel, draw news on the chart;

  • will output to the log recommended dates for Strategy Tester;

Further the expert advisor will update news and forecasts by timer and new M1 bar. In non-auto-trading mode, a confirmation window will appear before opening a position.

  1. Control panel on the chart

Elements:

  • four date pickers: start and end of the TRAIN period (for training) and start and end of the TEST period (for verification);

Buttons:

  • TRAIN - retrain the model on the selected TRAIN period. After training, "train" metrics/charts are built;

  • TEST - test the model on the selected TEST period. "Test" metrics/charts are built and recommended testing dates for Strategy Tester are printed to the log;

  • SAVE - save the current trained model (will overwrite the previous one);

Behavior:

  • subwindow and panel are restored if accidentally closed;

  • panel color adapts to the chart background (dark/light);

  • when incorrect dates are entered (start >= end − 1 day) a warning is issued.

  1. Work in Strategy Tester

Before starting the tester, prepare the data:
Launch the expert advisor on a real chart, this will load historical economic calendar data and form training and test samples, according to the dates set in the user settings.
The log of the expert advisor will output recommended dates "Testing start date" and "Test completion date".

In Tester (Ctrl+R):
Set the expert advisor, symbol, mode "Every tick" or "1 Minute OHLC".
Set the recommended dates.
Parameter SavedModelUse:
true - load a previously saved model (StateRandomForest).
false - train anew on train. Option SaveStateModel = true will save the model trained in the Strategy Tester with the Tester suffix.

Inside the tester, the expert advisor synchronizes with event timestamps and executes trades at the "minute of release" of the news. News clusters are processed collectively as in real trading.

  1. Input parameters

PARAMETERS OF PREPARATION OF INPUT FEATURES
**Begin date for loading economic calendar events (datetime) - start date of train.
**End date for loading economic calendar events (datetime) - end date of train.
**Minimum news importance (lov_level, medium_level, high_level) - minimum importance of events.
*Normalization of input features (without_normalization, MinMax_method, RobustScaler_method) - normalization of features (basic).

RANDOM FOREST PARAMETERS
Use a previously saved Random Forest (bool) - use a previously trained and saved model.
Selecting Random Forest Model Variants ( stationary model_1, random model_2) - forest implementation variant (for Free by default model_1).
Number of trees in a Random Forest (int) - number of trees in the model.
Share of data used to train the tree (double) - share of sample for training each tree "bootstrap" (0.2 - 0.95).
Number of features for each split (int) - number of features for each split (0 - 48; if -1 then auto)
Auto selection of the best Forest parameters (bool) - auto-selection of the best Forest parameters (beta option).
Minimum value of forecast probability (double) - threshold of model confidence in its forecast (0.2 - 0.95).

TRADE TRANSACTION PARAMETERS
*Expert Auto Trade (bool) - enable autotrading.
*Magic number (int) - magic number.
Lot size (double) - lot size.
Stop loss in points / Take profit in points (int, points) - SL/TP levels.
Slippage in points (int, points) - slippage.

TESTING PARAMETERS IN STRATEGY TESTER
*Save the state of the model trained in the strategy tester (bool) - save the model trained in the tester.

PARAMETERS OF VISUALIZATION OF ECONOMIC CALENDAR EVENTS
*Low importance – LowImpactColor.
*Medium importance – MediumImpactColor.
*High importance - HighImpactColor.
*Line width – line width.
*Line style – line style.

Footnote:
Parameters marked "*" in the source code do not affect optimization in the tester.
Parameters marked "**" must match in the tester and real settings,
otherwise work and optimization in the Strategy Tester will be incorrect.

  1. Signal logic and trade execution

The model issues a forecast for each event: class and confidence (probability).
The final signal is built on the sum of "weighted votes" at the minute of the event release:
Weight = forecast confidence × news importance.
Sums are calculated for BUY and SELL for all events in the minute.
If BUY weights > SELL weights - BUY signal, if SELL weights > BUY weights - SELL signal, otherwise NEUTRAL.
The ProbabilityOfPrediction threshold cuts off forecasts with low confidence.

When a signal is given:
In non-autotrading mode, a confirmation window is displayed; if there is already a position in the same direction - notification, the trade is not repeated.
Before opening a new position, the expert advisor closes opposite positions of this MagicNumber.
Positions are opened by trade_signal with specified Lot/SL/TP/Slippage.

  1. Generated files and names

Prefix: account number + currency pair + timeframe, for example "34764EURUSD_5_".

Main files created by the assistant:
StateRandomForestC.bin - saved trained model (real).
StateRandomForestTesterC.bin – saved trained model (tester).
FilteredCalendarData_train.bin / _test.bin - binary datasets (used by the Strategy Tester).

Additional files created by the assistant (control):
FilteredCalendarData_train.csv – dataset prepared for model training (real).
FilteredCalendarData_test.csv – dataset prepared for testing model quality (real).
DatasetDataForTester_train.csv – dataset prepared for model training (tester).
DatasetDataForTester_test.csv – dataset prepared for checking model operation in trading on history (tester).
ControlDatasetTester_test.csv — control dataset – for checking the correctness of data feed during testing in the Strategy Tester.

File location: C:\Users\User\AppData\Roaming\MetaQuotes\Terminal\Common\Files

  1. Verification and testing procedure

On a real chart:
Train the model (TRAIN) on the training period - get metrics and a heat map.
Check (TEST) on another, test period - get metrics and a heat map.
If the training results are satisfactory, save the model with the Save button

In the strategy tester:
Use the recommended dates from the log.
Run in the strategy tester, evaluate the trading results of the model.

Out-of-sample:
Move the period windows to avoid overfitting.
Periodically retrain the model to account for fresh data.

IMPORTANT!
Since quotes provided by one broker may differ from quotes of other brokers, it is recommended before using the NewsRForestExpert assistant in real trading to train the model using optimization.
The parameter Use a previously saved Random Forest must be set to false.

List of optimizable model parameters:

  • Number of trees in a Random Forest (10 – 4000);

  • Share of data used to train the tree (0.2 - 0.95);

  • Number of features for each split (0 - 48);

  • Minimum value of forecast probability (0.2 - 0.95).

Also at the user's discretion, parameters from the section "TRADE TRANSACTION PARAMETERS" can be optimized.
After optimization, reload the assistant setting the parameters of the best result.

  1. Frequent problems and solutions

No data/signals:
Make sure the calendar is available (View → Calendar), internet is available.
Check the Begin/EndDateForLoad range, lower NewsImportance.

Low quality:
Increase TreeCount/TrainRatio, adjust ProbabilityOfPrediction.
Check the integrity of price history, broker time shifts.

Times do not match in the tester:
Use the recommended dates from the log after pressing TEST in real.

  1. Limitations and features

Events with undefined time ("during the day") are excluded.
For reliable testing, use exactly the dates that the expert advisor outputs in the logs after data preparation on a real chart.

  1. Checklist before enabling autotrading

Tested in Strategy Tester with prepared files and correct dates.
Checked metrics on TRAIN and TEST in the panel.
Optimized model parameters in the Strategy tester (if necessary).
Set a unique MagicNumber on each symbol/timeframe.
Selected SL/TP and lots according to volatility and risks.
ProbabilityOfPrediction optimized for the desired signal selectivity.

  1. Notes on normalization

Basic normalization methods are available (Without/MinMax/RobustScaler).
Default parameters in this build are focused on stable operation; increase power (TreeCount, etc.) gradually.

  1. Security and risk management

Start with demo and manual confirmation (ExpertAutoTrade = false).
Consider spread widening and slippage on news.
Regularly retrain the model and monitor out-of-sample results.
Automated trading carries significant risks of loss of funds. The NewsRForestExpert assistant uses news analysis and machine learning, but does not guarantee profit. Test the strategy on a demo account before real trading. You use the assistant at your own risk.


Recommended products
PZ Goldfinch Scalper EA MT5
PZ TRADING SLU
3.33 (57)
This is the latest iteration of my famous scalper, Goldfinch EA, published for the first time almost a decade ago. It scalps the market on sudden volatility expansions that take place in short periods of time: it assumes and tries to capitalize of inertia in price movement after a sudden price acceleration. This new version has been simplified to allow the trader use the optimization feature of the tester easily to find the best trading parameters. [ Installation Guide | Update Guide | Troublesh
FREE
AI Advisor – Let AI See Your Real Trading World AI Advisor builds rich prompts directly from your account information, ready to paste into any AI chat. It helps you quickly review your account status, understand the current market structure, spot risks, and explore potential profit opportunities. Quick links  Download & versions Download:      AI Advisor v1.02.ex4      AI Advisor   v1.02.ex5 Installation guide AI Advisor  Version Overview FAQ & troubleshooting How to Use – 3 Simple Steps Open
FREE
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
The Go Long EA implements an advanced intraday trading strategy based on the principle of systematic daily trading with multiple technical confirmations. While many traders seek complex algorithms, this EA combines simple yet effective concepts with sophisticated risk management and multiple technical filters. The EA opens positions at a specific time each day, but only when market conditions align with multiple technical indicators. This systematic approach helps capture intraday moves while a
FREE
Auric Mohd iK
Md Iqbal Kaiser
AURIC MOHD-iK is a dynamic, logic-based Expert Advisor (EA) engineered specifically for trading XAUUSD (Gold). Unlike standard trading systems that rely on lagging, unreliable indicators, this EA operates purely on clean price logic—executing trades the way an experienced human trader naturally reads the market. This version is completely free with limitations, offering permanent value to your trading setup with zero hidden costs. Active Auric Mode That's it!!!!!!!!!! Core Trading Parameters Ac
FREE
SolarTrade Suite Financial Robot: LaunchPad Market Expert - designed to open trades! This is a trading robot that uses special innovative and advanced algorithms to calculate its values, Your Assistant in the World of Financial Markets. Use our set of indicators from the SolarTrade Suite series to better choose the moment to launch this robot. Check out our other products from the SolarTrade Suite series at the bottom of the description. Do you want to confidently navigate the world of inves
Cyber Grid BB XAU Edition MT5
Jonathan Fernandes Xavier Da Silva
Cyber Grid BB — XAUUSD H1 Edition FREE Gold (XAUUSD) Expert Advisor with Bollinger Bands and Intelligent Grid Management Hello, trader! If you are looking for a free Expert Advisor to trade Gold (XAUUSD) on MetaTrader 5, Cyber Grid BB was built specifically for that purpose. This EA combines Bollinger Bands volatility analysis with an intelligent grid management system, creating an automated strategy optimized for XAUUSD on the H1 timeframe. Cyber Grid BB is part of the ForexDexsters family of a
FREE
Golden Square X
Huynh Tan Linh N
4.18 (11)
This is my latest Free version for Gold. With optimized parameters and user-friendly features, this version is likely very easy to use and highly effective. You can customize TP and SL parameters as you wish, but the default settings should work well for you without the need for further adjustments.  This version is designed for the M5. This version does not require a large capital investment; only $100-$200 is sufficient for Golden Square X to run and generate profits for you. Based on backtest
FREE
MQL5 Market Professional Description MUNNA Venus XAUUSD – Free Demo Edition Professional Gold Trading Expert Advisor for MetaTrader 5 MUNNA Venus XAUUSD – Free Demo Edition is a fully automated Expert Advisor developed exclusively for XAUUSD (Gold) trading on MetaTrader 5. This free educational version allows traders to study, test, and understand automated basket-based trading in a controlled environment using demo accounts and the MT5 Strategy Tester. The Expert Advisor combines configurable g
FREE
Aurum Intraday EA
Rodrigo Leonardo Favreau Giuliodoro
Aurum Intraday EA – Advanced Gold Trading Algorithm The Aurum Intraday EA is a powerful automated trading system designed specifically for Gold (XAUUSD) traders who want to capture strong intraday movements while maintaining full control over risk and strategy configuration. Built with a robust algorithm and optimized for H1 and H4 timeframes (H4 recommended) , this Expert Advisor is capable of identifying high-probability opportunities in the gold market and executing trades with precision and
input double MaxLossLevel      = 500.0; // Max Loss Level in account currency input double SafetyBufferMoney = 10.0;  // Safe Buffer. In this case Threshold be 500+10 = 510 input int    CheckEverySeconds = 2; input bool   is_debugged       = false; // Print additional messages in the Terminal It will checks every CheckEverySeconds. If the total Loss of the account Go below Threshold of  MaxLossLevel + SafeBufferMoney, then start Heding: for each open Position, open a new reversed Position with
FREE
The only EA for TRADING PSYCHOLOGY:Discipline, Mindset Training & Risk Control  Checklist-Enforced Trading (No trades allowed until  strategy checklist is met)  1-Click Revenge Trade Blocker (Auto-freezes account after losses)  Overtrading Circuit Breaker (Hard daily trade limits enforced)  Neuroplasticity Training (Rewires retail habits into institutional discipline)  Institutional Risk Protocols (Auto SL/TP, position sizing, daily loss cutoffs)  Prop Firm  and account Safeguard (Preve
Phoenix Volume Trader
Nigel Nii Darku Narnor Darko
The Phoenix Volume Trader is a high-performance Semi-Automatic Execution EA designed for traders who prioritize Order Flow and Momentum Analytics. Built for the MetaTrader 5 platform, it bridges the gap between complex Volume Profile analysis and lightning-fast trade execution. At its core, the Phoenix Engine identifies the Point of Control (POC)—the price level with the highest trading activity—and visualizes it as a dynamic "Value Zone." By monitoring the Volume Ratio, the EA alerts traders t
FREE
Inverse Liquidity Grab Ultimate EA
Stephen Muriithi Muraguri
5 (1)
This EA finds Fair Value Liquidity (FVL) on the chart, tracks when they get mitigated , and then looks for an inversion signal (price “fails” through the zone). When that inversion happens, it places a trade in the opposite direction of the original Liquidity gap (an Inverse FVG approach). It also lets you control when it trades using market sessions , and it can auto-close positions at New York open (all positions or profitable-only). Key advantages Clear, rule-based entries (no guessing): trad
FREE
SL Limiter Pro
Carlito Manaloto Jr
Experience a new level of precision and control with the SL Limiter Pro , an enhanced version of the SL Limiter, now available on MetaTrader 5. Built for serious traders, SL Limiter Pro offers sophisticated features that allow you to manage your trades more effectively and with greater flexibility. Take your trading strategy to the next level with this powerful risk management tool! Whether manual trading, EA trading, or using Trade Signals, SL Limiter Pro will help you minimize your risk! Anoth
Grid Assistent
Vadym Slobodeniuk
Grid Assistant Vadyxa v3 (MQL5) Специализированный торговый помощник, разработанный для автоматизации ручной торговли сеточными стратегиями (Grid) на платформе MetaTrader 5 (работает исключительно на хеджинговых счетах).   Основные возможности и логика работы 1. Интерактивная кнопка экстренного закрытия («ЗАКРЫТЬ ВСЁ») На графике отображается крупная информативная кнопка темно-красного цвета. При нажатии на неё советник мгновенно закрывает все открытые рыночные позиции и удаляет все отложенные о
FREE
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Automated Trading Advisor Based on Hull Moving Average (HMA) for MetaTrader 5 OVERVIEW HMA Scalper Pro EA is a professional trading robot (Expert Advisor) for MetaTrader 5 that trades in the direction of the Hull Moving Average (HMA). The HMA indicator determines the current trend direction, and the EA opens trades in that direction, enhanced by Smart Risk capital management, adaptive grid trading, trailing stop, breakeven, and time filters. The EA supports both Netting a
Aurum Vector Gold Pullback is a MetaTrader 5 Expert Advisor designed to trade structured pullbacks on Gold. The EA studies the broader market direction and waits for price to return to a technically relevant area before considering an entry. It is designed to avoid chasing extended price movements and does not trade continuously. A position is opened only when the trend, pullback location, momentum and entry conditions are aligned. The recommended setup is XAUUSD on the M5 timeframe . Broker suf
FREE
Break Runner
Damaso Perez Moneo Suarez
BreakRunner - Automated Trading with Advanced Risk Management BreakRunner is an Expert Advisor designed for traders seeking to automate their operations with a Price Action scalping strategy and advanced risk control. The robot identifies price accumulations and executes buy or sell trades when key highs or lows are broken. Key Features Trading Strategy: Identifies price accumulation breakouts to execute scalping trades. Recommended for 5-minute timeframes, configurable. Risk Management: Variab
FREE
SimpleTrade by Gioeste
Giovanni Scelzi
4 (3)
Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
FREE
EA Zone Recovery Assistant เป็น EA ที่ช่วยเปิดออเดอร์ Recovery ตามระดับราคาที่ผู้ใช้กำหนดได้อัตโนมัติ //โดยหลักการทำงานมีดังนี้// เมื่อผู้ใช้เปิดออเดอร์ Buy หรือ Sell (Market Order) EA จะตรวจสอบจุด SL ภายในเวลาที่กำหนดในตัวแปร Input Delay Check for setting Price Recovery ถ้าผู้ใช้วาง SL วางภายในเวลาที่กำหนด ระบบจะลบ SL ออกแล้วใช้จุดที่วาง SL เปิดออเดอร์ Recovery เมื่อกราฟวิ่งผิดทางถึงจุดที่กำหนด //แต่ถ้าผู้ใช้ไม่วาง SL ภายในเวลาที่กำหนดระบบจะไม่มีการทำ Recovery ในออเดอร์นั้นแม้ผู้ใช้มีการวาง SL
FREE
The Impossible Coin
MORTAH Technology Limited
The Impossible Coin v1.53 BTCUSD session breakout + momentum continuation EA for the M5 timeframe. The EA identifies consolidation ranges during configurable session hours and waits for a confirmed breakout. Four independent scoring components (ADX, EMA, ATR, RSI) must all agree above a configurable threshold before any trade opens. A second momentum continuation strategy catches pullback entries in established trends. Every trade opens with a defined TP and SL. No martingale, no grid, and no av
FREE
Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AU
Babel Assistant
Iurii Bazhanov
4.33 (9)
Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
FREE
PrecisionEntry EA is a semi-automatic Expert Advisor for MetaTrader 5 that enables precise order placement at the click of a button — without taking control away from the trader. With a single click on the LONG or SHORT button, the EA automatically places a BuyStop or SellStop order at the high or low of the previous candle. Stop-loss, take-profit, and lot size are calculated fully automatically — based on the configured risk percentage and the desired risk-reward ratio. Features: Interactive on
ICT Premium Discount Zone EA
Charles Antoine Dominique Julien Fournel
October Sales : Free until 31th October 2025 ! ! Introducing the ICT Premium Discount Zone EA – Smart Trading for EUR/USD The ICT Premium Discount Zone EA is a cutting-edge Expert Advisor engineered for traders who demand precision, safety, and consistent performance. Built on the proven principles of ICT Premium/Discount Zones , this EA executes only Buy Stop  and Sell Stop  orders, ensuring entries are always aligned with optimal market structure. Key Features: Already set up for EUR / USD P
FREE
Neuro Edge
Agus Wahyu Pratomo
5 (4)
Please give review to support development of this Expert Advisor NeuroEdge EA is an advanced trend-following scalper designed to adapt dynamically to market behavior. Built with precision algorithms and smart averaging logic, it maintains minimal drawdown while capturing high-probability setups in trending conditions. NeuroEdge continuously analyzes market flow to ensure optimal entries and exits — giving traders the edge they need in volatile markets. ️ Core Features: Adaptive Trend Detection
FREE
King Experts V2
Craig Alden Matteo
King_Expert EA - Professional Trading System Overview King_Expert EA is a sophisticated automated trading system for MetaTrader 5 that combines trend-following strategies with intelligent risk management. The EA uses a multi-layered approach to identify high-probability trading opportunities while incorporating advanced features like grid averaging and dynamic position management. Core Trading Strategy Primary Signal Generation EMA Crossover System : Uses dual Exponential Moving Averages (21/50
FREE
Long Waiting
Aleksandr Davydov
Expert description Algorithm optimized for Nasdaq trading The Expert Advisor is based on the constant maintenance of long positions with daily profit taking, if there is any, and temporary interruption of work during the implementation of prolonged corrections The Expert Advisor's trading principle is based on the historical volatility of the traded asset. The values of the Correction Size (InpMaxMinusForMarginCallShort) and Maximum Fall (InpMaxMinusForMarginCallLong) are set manually. Recomm
FREE
Adx rsi orion
Murtadha Majid Jeyad Al-Khuzaie
ADX RSI Orion — Smart Trend Alignment Expert Advisor ADX RSI Orion is a precision-engineered Expert Advisor that combines two of the most respected indicators in technical trading — the Relative Strength Index (RSI) and the Average Directional Movement Index (ADX) — into one intelligent and adaptive trading system. Designed for traders who want clarity and automation, this EA identifies high-probability entries only when both momentum and trend strength agree, delivering smart, data-driven dec
FREE
Gold Adaptive EA MT5 is an automated Expert Advisor for MetaTrader 5 designed for trading Gold (XAUUSD). The EA uses several internal trading models and market filters to adapt to different phases of Gold price movement. Instead of relying on one fixed entry pattern, Gold Adaptive EA MT5 analyzes market behavior and selects suitable logic for trend continuation, impulse moves, pullbacks and selected recovery conditions. The main goal of the Expert Advisor is to provide a structured Gold tradi
FREE
Buyers of this product also purchase
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
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 (668)
Trade Manager MT5 is an advanced position size calculator and trade management tool for MetaTrader 5, designed to help traders plan trades faster, control risk more precisely, and manage open positions directly from the chart. It combines order placement, risk based lot calculation, Stop Loss and Take Profit management, Break Even, Trailing Stop, Partial Close, Equity Protection, and external trade management in one panel. Whether you trade forex, indices, metals, commodities, crypto, or future
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (143)
Experience exceptionally fast trade copying with the   Local Trade Copier EA MT5 . With its easy 1-minute setup, this trade copier allows you to copy trades between multiple MetaTrader terminals on the same Windows computer or Windows VPS with lightning-fast copying speeds of under 0.5 seconds. Whether you're a beginner or a professional trader, the   Local Trade Copier EA MT5   offers a wide range of options to customize it to your specific needs. It's the ultimate solution for anyone looking t
TradePanel MT5
Alfiya Fazylova
4.88 (163)
Trade Panel is a multi-functional trading assistant. The app contains over 50 trading functions for manual trading and allows you to automate most trading tasks. Before making a purchase, you can test the demo version on a demo account. Download the trial version of the application for a demonstration account: https://www.mql5.com/en/blogs/post/750865 . Full instructions here . Trade. Allows you to perform trading operations in one click: Open pending orders and positions with automatic risk cal
Beta Release The Telegram to MT5 Signal Trader is nearly at the official alpha release. Some features are still under development and you may encounter minor bugs. If you experience issues, please report them, your feedback helps improve the software for everyone. Telegram to MT5 Signal Trader is a powerful tool that automatically copies trading signals from Telegram channels or groups directly to your MetaTrader 5 account. It supports both public and private Telegram channels, and you can conn
Telegram to MT5 Multi-Channel Copier automatically copies trading signals from your Telegram channels directly into MetaTrader 5. No bots, no browser extensions, no manual copying. You receive a signal on Telegram and the EA opens the trade on your terminal in a few seconds. The product includes two components: a Windows application that listens to your Telegram channels, and this Expert Advisor that executes the signals on your MT5 terminal. An MT4 version is also available. Setup guide and app
Trade copier MT5
Alfiya Fazylova
4.56 (50)
Trade Copier is a professional utility designed to copy and synchronize trades between trading accounts. Copying occurs from the account / terminal of the supplier to the account / terminal of the recipient, which are installed on the same computer or VPS . PROMOTION - If you have already purchased the "Trade Copier MT5," you can receive the "Trade Copier MT4" for free (for copying MT4 > MT5 and MT4 < MT5). For more detailed information about the conditions, please contact us via private message
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
Professional Trade Copier for MetaTrader 5 Fast, professional, and reliable trade copier for MetaTrader . COPYLOT allows you to copy Forex trades between MT4 and MT5 terminals with support for Hedge and Netting accounts. COPYLOT MT5 version supports: - MT5 Hedge to MT5 Hedge - MT5 Hedge to MT5 Netting - MT5 Netting to MT5 Hedge - MT5 Netting to MT5 Netting - MT4 to MT5 Hedge - MT4 to MT5 Netting MT4 version Full Description +DEMO +PDF How To Buy How To Install How to get Log Files H
Power Candles Strategy Scanner - Self-Optimizing Multi-Symbol Setup Finder Power Candles Strategy Scanner runs the same self-optimizing engine that powers the Power Candles indicator - on every symbol in your Market Watch, side by side. One panel tells you which symbols are statistically tradable right now, which strategy wins on each, the optimal Stop Loss / Take Profit pair, and pings you the moment a fresh signal fires. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max
Anchor Trade Manager
Kalinskie Gilliam
5 (6)
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, including daily loss protection built for prop firm rules. 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 prop firms. Built for discipline. The Problem Running multiple EAs on the same acc
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
DaneTrades Trade Manager is a professional trade panel for MetaTrader 5, designed for fast, accurate execution with built‑in risk control. Place market or pending orders directly from the chart while the panel automatically calculates position size from your chosen risk, helping you stay consistent and avoid emotional decision‑making. The Trade Manager is built for manual traders who want structure: clear risk/reward planning, automation for repeatable management, and safeguards that help reduc
Premium Trade Manager - The Trade Panel With a Coach Built In Premium Trade Manager puts a trading coach inside your chart, with a full execution engine underneath it. Set the trade up the way you always do, then let Max, your AI trading coach, read that exact setup against your live account and give you a straight verdict before you commit: is the stop disciplined, is the risk sane, is a high-impact release minutes away, are you near a prop-firm limit. Below sits the engine that runs everything
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:/
VirtualTradePad PRO SE MT5 — professional trading control center for MetaTrader 5 VirtualTradePad PRO SE is a premium chart-based trading panel and trade-management workspace for MetaTrader 5 . It is designed for traders who want faster execution, clearer position control, structured trade management, visual level planning and a professional workflow directly from the chart. This is not only a BUY / SELL panel. PRO SE combines manual trading, pending orders, position management, partial exits, b
EA Auditor
Stephen J Martret
5 (4)
EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a consistent, data-driven framework for reviewing them, answer
HINN MagicEntry Extra
ALGOFLOW OÜ
4.75 (16)
LIMITED SUMMER SALE -40% !   ONLY $30 insead of $50!  Maximum real discount!  ONLY UNTIL 08/22 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-p
Timeless Charts
Samuel Manoel De Souza
5 (7)
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
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.
MT5 to Telegram Signal Provider turns your trading account into a signal provider. Every trade action, whether manual, by EA or from your phone, is instantly sent as a message to Telegram. You can fully customize the format or use a ready-made template for quick setup. [ Demo ] [ Manual ] [ MT4 Version ] [ Discord Version ]     New: [ Telegram To MT5 ] Setup A step by step user guide is available. Key Features Ability to customize order details sent to subscribers You can create a tiered subs
================================================================================ 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
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
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
Working Demo Download Copy Cat More Trade Copier MT5 is a local trade copier and a complete risk management and execution framework designed for today’s trading challenges. From prop firm challenges to personal portfolio management, it adapts to every situation with a blend of robust execution, capital protection, flexible configuration, and advanced trade handling. The copier works in both Master (sender) and Slave (receiver) modes, with real-time synchronization of market and pending orders,
Trade Dashboard MT5
Fatemeh Ameri
4.95 (131)
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
VirtualTradePad One Click Trading Panel
Vladislav Andruschenko
4.59 (74)
Trading Panel for MetaTrader 5 — professional one-click trading from chart and keyboard A powerful trading panel for active manual trading, designed to open, manage, and close trades far faster and more efficiently than the standard MetaTrader interface. This panel is built for traders who want full control over positions, pending orders, profit management, and trading execution inside one professional workspace. This is not just another utility. It is a complete trading cockpit for MetaTrader
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (2)
Telegram To MT5 — Signal Copier Turn the trading calls from your Telegram channels into real MT5 orders — automatically, on as many accounts as you like, with risk and rules fully under your control. Telegram To MT5 connects the VIP / signal channels you already follow on Telegram to your MetaTrader 5 terminal. A free companion desktop app reads the messages (even from channels that block bots), and this Expert Advisor executes them on your account — applying your own risk settings, symbol mappi
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – All-In-One Power for AI-Driven Trading Want to skip the setup and start scanning the entire market – Forex, Gold, Crypto, Indices, and even Stocks – in seconds? EASY Insight AIO is the complete plug-and-play solution for AI-powered trade analysis. It includes all core Stein Investments indicators built-in and automatically exports clean, structured CSV files – perfect for backtesting, AI prompts, and live market decision-making. No need to install or configure indicators manu
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
KT Equity Protector MT5
KEENBASE SOFTWARE SOLUTIONS
3.6 (5)
The one EA every MetaTrader trader should be running, but isn't. Most accounts don't blow up because the strategy was wrong. They blow up because, in a bad moment, a trader let a loss run, doubled down, held trades into the weekend, gave back a winning week, or forgot the daily prop-firm limit by one bad click. KT Equity Protector is the automated guardian that won't let that happen. Install it on one chart. Set your rules once in a guided, plain-English wizard: daily loss, max drawdown, profit
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
More from author
TickScalp
Vitaliy Davydov
5 (5)
Free version of the TickScalper indicator. The Tick Scalp indicator is a trading assistant for a scalping trader. Works in a separate window. Tracks the momentary activity of the market, shows the graph of the movement of ticks and the strength of bulls or bears. Sometimes it can anticipate the beginning of a strong movement before any other indicators. Helps the trader to make a decision to open the desired order. Designed to work on any instrument. Used timeframes from M1 to M15. Has simple a
FREE
CandlestickForMt5
Vitaliy Davydov
5 (8)
CANDLESTICK_MT5 A very interesting indicator of candlestick patterns, converted from the free version of the CANDLESTICK indicator for the MetaTrader4 terminal to the version for the MetaTrader5 terminal. In addition to candlestick patterns, it draws support and resistance lines, which are perfectly worked out by the price on the chart. It can work on any timeframe. Has simple settings. When converting, the logic of work and the design of the original CANDLESTICK indicator for the MT4 terminal
FREE
InfoLossLevel
Vitaliy Davydov
Risk Control Utility: Margin Call & Loss Level Calculator Info Loss Level is an information utility for MetaTrader 5 traders that monitors critical risk levels in real-time and provides clear visualization of deposit loss points.   Key Features Critical Risk Level Calculations Margin Call Level - price level where broker force-closes positions   Loss Level - theoretical price level for complete deposit depletion   The difference between levels shows your account's "safety buffer"   Critica
FREE
Assistant_for_Reopen - an Expert Advisor that helps to re-set pending orders. Many brokers force the order to expire at the end of the trading session or at the end of the trading day. Therefore, a trader has to restore all pending orders manually every time at the beginning of a new trading session. Assistant_for_Reopen frees the trader from this routine work. It controls expiration by the order expiration time and resets it if the trader ticked the checkbox. The maximum number of orders the EA
FREE
Tredi
Vitaliy Davydov
The indicator Tredi shows the direction of the price channel and its correction. The indicator shows the points of support and resistance of the price channel with thin lines, the thick lines show the narrowing or expansion of the price channel, as well as the simplest patterns - the triangle and the flag. Divergence confirms or refutes this direction. The indicator works on any charts and time frames, both on the currency exchange and others. Has clear and simple settings.
SmartZigZag
Vitaliy Davydov
The SmartZigZag indicator is a generated system for successful trading, consisting of two indicators - a modified ZigZag and a trend indicator. The system automatically determines the expected reversal levels of the chart price, and also, using the Alert function, gives signals about a favorable situation for buying or selling. Has simple and straightforward settings. It can work in all foreign exchange and non-foreign exchange markets. Any timeframe.
Ziraf
Vitaliy Davydov
This indicator is intended for both beginners and more experienced traders. The indicator is based on the price channel, which shows the direction of price movement: up (BUY), flat (sideways movement), down (SELL). The channel does not roll over when the price is corrected, but corrects with it. The indicator arrows show price fluctuations in the market and are not redrawn. The ExtrLineLenght lines can be increased to determine the nearest supports and resistances. The indicator is simple and ea
ChannelVM
Vitaliy Davydov
ChannelVM - is a  channel indicator converted from an indicator for MT4 to an indicator for working in MT5. In addition to displaying price channels on a chart, it recognizes the simplest patterns - "triangle" and "flag". Helps to determine further price movement. Has simple and understandable settings that do not need a description. When redesigning for the MT5 trading terminal, the logic of work and the appearance of the original indicator were preserved as much as possible.
Super Cloud
Vitaliy Davydov
The Super Cloud indicator helps to determine the direction of the trend when trading. Shows on the chart signals about a possible upcoming trend change.   The indicator provides an opportunity to detect various features and patterns in price dynamics that are invisible to the naked eye. Based on this information, traders can anticipate further price movement and adjust their strategy accordingly. Works on all timeframes except MN.
FT Power
Vitaliy Davydov
The FT Power indicator system is designed to determine the trend direction of the price chart. Consists of two histograms. The central histogram Bull/Bear Power determines the predominance of bullish or bearish power. When the indicator value is above zero, Bull/Bear Power shows that the bulls are strong, and when the histogram goes below 0, the bulls are exhausted and further growth becomes doubtful. The main histogram is used to determine the trend or flat sections of the chart and confirm the
LevelsFib DTZ
Vitaliy Davydov
The combined Levels Ib DTZ indicator helps to determine the trend direction when trading. Displaying signals on the chart about a possible upcoming trend change. The indicator is a combination of Fibonacci levels with overbought and oversold zones and a trend indicator based on ZigZag and ATR indicators. The Levels Ib DTZ indicator helps traders predict future price movements and adjust their strategy accordingly. It works on all timeframes.
Filter:
No reviews
Reply to review