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.


推荐产品
PZ Goldfinch Scalper EA MT5
PZ TRADING SLU
3.33 (57)
这是我著名的剥头皮机Goldfinch EA的最新版本,它是十年前首次发布。它以短期内突然出现的波动性扩张为市场提供了头条:它假设并试图在突然的价格加速后利用价格变动的惯性。这个新版本已经过简化,使交易者可以轻松使用测试仪的优化功能来找到最佳交易参数。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 简单的输入参数可简化优化 可定制的贸易管理设置 交易时段选择 工作日选择 金钱管理 谨防... ick牛黄牛是危险的,因为许多因素都会破坏收益。可变的点差和滑点降低了交易的数学期望,经纪人的低报价密度可能导致幻像交易,止损位破坏了您获取利润的能力,并且网络滞后意味着重新报价。建议注意。 回溯测试 EA交易仅使用报价数据。请以“每笔交易”模式回测。 它根本不使用HLOC(高-低-开-关)数据 交易时间无关紧要 为了获得更好的性能,请为您希望在每个刻度线模式下交易的每个交易品种运行云优化。稍后分享! 输入参数 触发点:触发点差所需的价格变动。 (预设= 10) 最小时间窗口:价格波动发生的最短时间。 (默认= 3) 最长时间窗口:价格波动发生的最长时间。
FREE
AI Advisor – 让 AI 真正看见你的交易世界 AI Advisor 会根据你的真实账户信息自动生成高质量提示词,可以直接粘贴到任意 AI 聊天中使用。 它帮你快速梳理账户状态,理解当前品种格局,识别风险点,挖掘潜在盈利机会,让 AI 以你的真实交易情况为基础来思考和交流,而不是凭空猜测。 快速链接 Download:      AI Advisor v1.02.ex4      AI Advisor   v1.02.ex5 Installation guide AI Advisor  Version Overview FAQ & troubleshooting 使用方法 – 三步搞定 在你关心的品种图表上打开 AI Advisor。 在右侧列表中选择一个合适的 “AI Advisor 模式”(AI Advisor Modes),让程序自动把账户信息、仓位、品种和结构整理进提示词。 点击「复制」,然后把生成的文本粘贴到你常用的任意 AI 聊天界面中,开始对话即可。 内置 Prompt 简要说明 AI Advisor 内置了一组常用分析场景,覆盖交易中最典型的几类问题,例如
FREE
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
Go Long EA实现了基于系统性日间交易原则的高级日内交易策略,具有多重技术确认。虽然许多交易者寻求复杂的算法,但该EA将简单而有效的概念与复杂的风险管理和多重技术过滤器相结合。 该EA每天在特定时间开仓,但仅在市场条件符合多个技术指标时才会执行。这种系统性方法有助于捕捉日内行情,同时避免过夜持仓成本侵蚀利润。EA会在预设时间自动平仓,这对想要避免过夜风险的交易者来说是理想之选。 该EA的特别之处在于其自适应风险管理系统。持仓规模根据多个因素自动调整: - 基础资金和风险百分比设置 - 技术指标条件(均线、RSI、MACD等) - 在条件特别有利时增加持仓规模的特殊乘数 该EA包含多个可启用/禁用的技术过滤器: - 移动平均线(MA)过滤器,带价格关系检查 - RSI超卖条件和乘数 - MACD趋势确认 - ATR波动率过滤器 - 布林带位置验证 - ADX趋势强度确认 - 动量确认 - 随机指标超卖条件 - 一目均衡表云图位置验证 - 摆动模式识别 <资金管理设置> 基础资金:风险计算的基础资金 风险百分比:每笔交易基础资金的风险百分比 获利百分比:止盈距离(0 = 禁
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 金融机器人:LaunchPad 市场专家 - 专为开启交易而设计! 这是一个使用特殊创新和先进算法来计算其价值的交易机器人,是您在金融市场世界中的助手。 使用我们来自 SolarTrade Suite 系列的指标集来更好地选择启动此机器人的时机。 在描述底部查看我们来自 SolarTrade Suite 系列的其他产品。 您想自信地驾驭投资和金融市场的世界吗? SolarTrade Suite 金融机器人:LaunchPad 市场专家是一款创新软件,旨在帮助您做出明智的投资决策并增加您的利润。 SolarTrade Suite 金融机器人的优势:LaunchPad 市场专家: - 准确计算:我们的机器人使用先进的算法和分析方法来准确预测市场走势。 计算购买和出售资产的最佳时机。 - 用户友好界面:直观的界面将使您能够轻松掌握程序并在安装后立即开始享受其好处。 - 专家支持:我们的专业团队随时准备为您解答任何问题,并为您提供有关使用该程序的建议。 立即试用 SolarTrade Suite 金融机器人:LaunchPad Market
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 — 基于 Hull Moving Average (HMA) 指标的 MetaTrader 5 自动交易顾问 概述 HMA Scalper Pro EA 是一款专业的 MetaTrader 5 交易机器人(Expert Advisor),根据 Hull Moving Average (HMA) 的方向进行交易。HMA 指标确定当前趋势方向,顾问据此开仓,并辅以 Smart Risk 资金管理、自适应网格交易、追踪止损、保本止损和时间过滤器。 该顾问支持 Netting 和 Hedging 账户,适用于黄金(XAU/USD)、外汇货币对、原油、指数和加密货币的交易。 为什么选择 HMA SCALPER PRO EA - Hull Moving Average 信号 — 基于 HMA 方向入场,该指标对趋势变化的反应快于经典移动平均线 - 多时间框架 HMA 计算 — 方向可在独立于图表时间框架的单独时间框架上计算 - Smart Risk 替代经典马丁格尔 — 每个后续网格订单的手数都比前一个小 - 自适应网格交易 — 固定步长、订单限制、
AutoGen Hybrid Mean Reversion EA MT5 Designed for Gold (XAUUSD) and major forex pairs, AutoGen Hybrid Mean Reversion EA MT5 is a fully automated expert advisor for MetaTrader 5 that trades the classic Bollinger Bands mean-reversion setup, filtered by the ADX indicator to stay out of strong trending markets. It combines two well-known concepts — reversion to the mean and trend-strength filtering — into a single robust trading robot. The strategy is symbol-agnostic: the same Bollinger / ADX / ATR
FREE
Break Runner
Damaso Perez Moneo Suarez
BreakRunner - 自动化交易与高级风险管理 BreakRunner 是一款为寻求自动化操作的交易者设计的专家顾问,采用基于价格行为的剥头皮策略,并具备先进的风险控制功能。该机器人识别价格积累,当关键的最高点或最低点被突破时执行买入或卖出操作。 主要特点 交易策略:通过识别价格积累的突破来执行剥头皮交易。推荐使用5分钟的时间框架,可配置。 风险管理: 可变风险:该功能允许在上一笔交易亏损的情况下增加下一笔交易的风险。可以根据需要配置额外的风险,以帮助弥补之前的损失。交易会使用止损关闭,因此并不采用"马丁格尔"策略。 可变止损/止盈:根据价格积累范围的最大值或最小值自动调整止损和止盈,推荐的比例为1:2。 固定止损/止盈:可以设置固定的止损/止盈值,单位为点,可以根据不同资产调整。 保本和平仓:高级控制功能,优化每笔交易的管理。 最大风险:可以设置每日风险限制,以防超过允许的最大风险或危及融资账户。 优化:适用于任何资产,但建议根据资产和市场条件优化积累时间、止损/止盈水平等参数。定期优化对于适应市场变化至关重要。 回测和表现:在ICMarkets上进行的回测中,初始风险为$20
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, AUD
Fully autonomous neural network Expert Advisor for Gold (XAUUSD) trading. Features real-time dynamic Self-Learning based on closed trades and a unique interactive AI training progress bar directly on your chart! Aurum AI Evolution XAUUSD is a next-generation, high-tech trading robot engineered specifically for the highly volatile Gold market. The core of the EA utilizes a single-layer perceptron mathematical model paired with a Hyperbolic Tangent (MathTanh) activation function. The network is co
FREE
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
该产品的买家也购买
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (215)
它有助于计算每笔交易的风险,容易安装新的订单,具有部分关闭功能的订单管理, 7 种类型的追踪止损和其他有用的功能。   附加材料和说明 安装说明   -   应用程序说明   -   模拟账户应用程序的试用版 线条功能  - 在图表上显示开仓线、止损线、止盈线。 有了这个功能,就可以很容易地设置一个新的订单,并在开仓前看到它的附加特性。   风险管理  - 风险计算功能在考虑到设定的风险和止损单的大小的情况下,计算新订单的成交量。它允许你设置任何大小的止损,同时观察设定的风险。 批量计算按钮 - 启用 / 禁用风险计算。 在 " 风险 " 一栏中设置必要的风险值,从 0 到 100 的百分比或存款的货币。 在 " 设置 " 选项卡上选择风险计算的变量: $ 货币, % 余额, % 资产, % 自由保证金, % 自定义, %AB 前一天, %AB 前一周, %AB 前一个月。   R/TP 和 R/SL - 设置止盈和止损的关系。 这允许你设置相对于损失的利润大小。 例如, 1 : 1 - 这决定了 TP = SL 的大小。 2 : 1 - 这意味着 TP 是 SL 的两倍。 RR -
欢迎来到 Trade Manager EA——这是一个终极风险管理工具,旨在使交易变得更直观、精准和高效。它不仅仅是一个下单工具,而是一个用于无缝交易计划、仓位管理和风险控制的全面解决方案。不论您是新手交易员、资深交易员,还是需要快速执行的剥头皮交易员,Trade Manager EA 都可以满足您的需求,适用于外汇、指数、大宗商品、加密货币等各种市场。 借助 Trade Manager EA,复杂的计算已成过去。只需分析市场,在图表上用水平线标记入场、止损和止盈,设置您的风险水平,Trade Manager 就会立即计算出理想的头寸规模,并实时显示以点、账户货币计价的止损和止盈。每笔交易都得以轻松管理。 主要功能: 头寸规模计算器 :根据定义的风险瞬间确定交易规模。 简单的交易计划 :在图表上用可拖动的水平线直接计划交易,设置入场、止损和止盈。 实时显示 SL 和 TP :以账户货币、点或分显示止损和止盈,便于分析。 高级保护工具 盈亏平衡选项 : 基本盈亏平衡 :当您的交易达到设定水平时自动保护利润。 多级盈亏平衡 :设置多达 4 个级别以逐步保护利润。 尾随止损选项 : 基本尾随
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
通过 Local Trade Copier EA MT5 获得非常快速的交易复制体验。它的简单1分钟设置,使您可以在同一台Windows计算机或Windows VPS上在多个MetaTrader终端之间复制交易,具有闪电般快速的复制速度,低于0.5秒。 无论您是初学者还是专业交易者, Local Trade Copier EA MT5 都提供了广泛的选项,可根据您的特定需求进行自定义。对于任何希望增加利润潜力的人来说,这都是终极解决方案。 今天就尝试一下,看看为什么它是市场上最快、最简单的贸易复印机! 提示: 您可以在您的模拟账户中下载并试用 Local Trade Copier EA MT5 模拟版: 这里 将下载的免费演示文件粘贴到您的 MT5 >> 文件 >> 打开数据文件夹 >> MQL5 >> 专家文件夹并重新启动您的终端。  免费演示版本每次可在 4 小时内发挥全部功能,仅限演示帐户。 要重置试用期,请转至 MT5 >> 工具 >> 全局变量 >> Control + A >> 删除。 请仅在非关键模拟账户上执行此操作,不要在挑战道具公司账户中执行此操作。 如果您无法
TradePanel MT5
Alfiya Fazylova
4.88 (166)
交易面板是一款多功能交易助手。该应用包含超过50种手动交易功能,并允许您自动执行大多数交易任务。 在购买之前,您可以在演示账户上测试演示版本。下载用于演示账户的试用版应用程序: https://www.mql5.com/zh/blogs/post/762579 。 完整说明 这里 。 贸易. 只需单击一下即可执行交易操作: 打開掛單和頭寸,並自動計算風險。 一鍵打開多個訂單和頭寸。 打開訂單網格。 按組別關閉掛單和頭寸。 反轉頭寸方向(關閉買入>打開賣出,關閉賣出>打開買入)。 鎖定頭寸(通過開啟缺少的頭寸,使買入和賣出頭寸的數量相等)。 一鍵部分關閉所有頭寸。 將所有頭寸的止盈和止損設置在同一價格水平。 將所有頭寸的止損設置在盈虧平衡水平。 開倉時,可使用以下功能: 在多個訂單或倉位之間分配計算出的數量(在單擊一次時開啟多個訂單和倉位)。 在開啟訂單前在圖表上可視化交易水平。 僅在當前點差不超過設定值時才開啟倉位。 止盈和止損之間的自動比例。 虛擬止損和止盈。 自動將止損和止盈的大小增加為當前點差的大小。 基於ATR指標讀數計算止盈和止損。 設置掛單的到期日期。 為掛單設置追蹤(掛單
================================================================================ 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
测试版发布 Telegram to MT5 Signal Trader 即将进入正式的 Alpha 版本。一些功能仍在开发中,您可能会遇到一些小错误。如果您遇到问题,请反馈,您的意见将帮助我们改进软件。 Telegram to MT5 Signal Trader 是一款强大的工具,能够将 Telegram 频道或群组的交易信号自动复制到您的 MetaTrader 5 账户。 支持公开和私人频道,可将多个信号提供者连接至一个或多个 MT5 账户。软件优化、高效、稳定,精准控制每笔复制交易。 界面简洁,仪表盘美观,图表交互性佳,导航直观。您可以管理多个信号账户,自定义每个提供者的设置,并实时监控所有操作。 系统需求 由于 MQL 限制,EA 需要配合 PC 端应用与 Telegram 通信。 安装程序可通过官方 安装指南 获取。 核心功能 多提供者支持: 从多渠道复制信号至多个 MT5 帐户 高级信号识别: 关键词、模式和标签全面自定义 逐提供者控制: 可启用/禁用特定信号类型、平仓策略等 灵活风险管理: 固定手数、固定金额、余额/权益百分比、部分平仓设置 可定制 SL/TP: 覆盖信号
Astro Trade MT5
Indra Maulana
5 (2)
AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Visual Trade Execution and Risk Management The application includes a specialized trading panel that assists in c
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
适用于 MetaTrader 5 的专业交易复制器 快速、专业、稳定可靠的 交易复制器 ,适用于 MetaTrader 。 COPYLOT 可在 MT4 和 MT5 终端之间复制 Forex 交易,并支持 Hedge 和 Netting 账户。 COPYLOT 的 MT5 版本支持: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 版本 完整说明 + DEMO + PDF 如何购买 如何安装 如何获取日志文件 如何测试和优化 Expforex 的所有产品 您也可以将交易复制到 MT4 终端(MT4 → MT4,MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT 是一款专业的交易和持仓复制器,可同时与 2、3 甚至 10 个终端协同工作。 支持从 模拟账户和投资者账户 复制,也支持同时在多个终端上运行。 您可以使
HINN MagicEntry Extra
ALGOFLOW OÜ
4.71 (17)
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
Power Candles 策略扫描器——自优化多符号设置查找器 Power Candles策略扫描器 采用与Power Candles指标相同的自优化引擎,可同时扫描您“市场观察”中的所有交易品种。一个面板即可显示当前哪些品种在统计上具备交易价值、每种策略的最佳应用方向、最优止损/止盈组合,并在新信号触发时立即向您发送提醒。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 您的全面市场监控。每个交易品种超过3,000次自动优化。2种警报类型。一键切换图表并采取行动。 为何您需要此工具 大多数多标的扫描器仅展示价格 波动 。每只股票的波动率、百分比变化、RSI。您仍需自行摸索正确的策略、合适的止损位以及理想的入场阈值。Power Candles策略扫描器针对每只股票自动解答这些问题,仅在数学验证过的交易设置中触发实际入场信号时才会向您发出提示。这就是全部卖点。 自动
Telegram to MT5 Multi-Channel Copier 可自动将您 Telegram 频道中的交易信号直接复制到 MetaTrader 5。无需机器人,无需浏览器扩展,无需手动复制。您在 Telegram 上收到信号,EA 会在几秒钟内在您的终端上开仓。 本产品包含两个组件:一个监听您 Telegram 频道的 Windows 应用程序,以及在您的 MT5 终端上执行信号的 EA。同时也提供 MT4 版本。 设置指南和应用程序下载: https://www.mql5.com/en/blogs/post/768988 工作原理 Windows 应用程序使用您自己的 API 凭据连接到 Telegram,而不是机器人。这意味着它可以读取您订阅的任何频道、群组或话题,包括私人和 VIP 频道。检测到信号后,它会进行解析并发送给 EA。EA 根据您的经纪商解析交易品种名称,基于您的风险设置计算手数,然后开仓。 整个过程都是自动的。您无需守在电脑前。 打开应用程序并登录 Telegram(仅第一次)。 选择要监听的频道或话题。 按下 Start。EA 会处理其余的一切。 支持的
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copier 是一种专业实用程序,旨在复制和同步交易账户之间的交易。 复制发生从供应商的帐户/终端到收件人的帐户/终端,安装在同一台计算机或 vps 上。 促销活动 - 如果您已经购买了“Trade copier MT5”,您可以免费获取“Trade copier MT4”(用于 MT4 > MT5 和 MT4 < MT5 的复制)。欲了解更多详细条款,请通过私人消息与我们联系! 在购买之前,您可以在演示帐户上测试演示版本。 演示 这里 。 完整说明 这里 。 主要功能和优点: 支持复制MT5>MT5、MT4>MT5、MT5>MT4,包括МТ5 netting账户。 供应商和收件人模式在同一产品中实现。 简单直观的界面,允许您直接从图表中实时控制复制。 连接中断或终端重新启动时不会丢失设置和位置。 允许您选择要复制的符号,也可以替换接收者的符号,例如 EURUSD> USDJPY。 支持回拷贝。 能够仅复制某些订单。 允许您设置开仓交易价格的最大差异和最大时间延迟。 正确复制部分订单关闭的执行。 计算复制手数的几种方法。 同步止盈和止损。有几种方法可以计算它们的位置。 支持
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:/
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (4)
Telegram To MT5 — 信号复制器 将您的 Telegram 频道中的交易信号变成真实的 MT5 订单 — 自动执行,可用于任意数量的账户,风险与规则完全由您掌控。 Telegram To MT5 将您已在 Telegram 关注的 VIP / 信号频道连接到您的 MetaTrader 5 终端。一个免费的配套桌面应用读取消息(即使是禁止机器人的频道),而本 EA 在您的账户上执行这些信号 — 应用您自己的风险设置、品种映射、止盈处理、交易时段与新闻过滤。 它是一个信号复制器,而非黑箱策略:由您决定信任哪些频道,以及每笔交易如何计算手数和管理。 分步设置与配套应用安装指南 工作原理 [您的 Telegram 频道] -> [配套桌面应用] -> [MT5 + 本 EA] -> 订单 配套桌面应用(免费,已包含)使用您的 Telegram 账户登录并监视您所选择的频道。即使是禁止机器人的 VIP 频道也能正常工作,它通过一个私有、加密的本地桥接转发每条消息。 本 EA 挂在一个图表上,在 MT5 接收这些信号,并按照您的规则开仓 / 管理交易。 应用与 EA 之间的连接是位于
Premium Trade Manager - 内置交易导师的图表面板 Premium Trade Manager 将一位交易导师嵌入您的图表,并在其下搭载完整的执行引擎。像往常一样建立交易,然后让您的 AI 交易导师 Max 读取这笔具体的交易,结合您的实时账户给出直接判断,再由您决定是否下单:止损是否符合纪律化交易的要求、风险规模是否合理、高影响新闻事件是否即将发布、您是否接近资金盘限额。其下是完整的执行引擎,负责点击之后的一切:一键按风险下单、您在图表上拖动规划且交易进行中仍可随时调整的计划、最多四个分批止盈级别、七种移动止损方式、实时资金盘合规检查、新闻屏蔽保护,以及对自身成本进行评级的点差功能。决策由您做出。Max 给出第二次审视。面板负责此后的一切。 购买前先亲手体验。 直接在浏览器中点击实时面板,这是在购买前感受其工作方式的最快途径。 stein.investments/products/premium-trade-manager Max 是您的一对一 AI 交易导师,他直接内置于面板之中。  他了解您的账户、您的设置和您的规则,用您自己的语言回答,并在每笔交易下单前进
VirtualTradePad PRO SE MT5 — MetaTrader 5 专业交易控制中心 VirtualTradePad PRO SE 是一款基于图表的高级交易面板,也是适用于 MetaTrader 5 的交易管理工作区。它专为希望获得更快执行、更清晰持仓控制、结构化交易管理、可视化价位规划,以及直接在图表上完成专业交易流程的交易者而设计。 这不仅仅是一个 BUY / SELL 面板。PRO SE 将手动交易、挂单、持仓管理、部分平仓、篮子利润/亏损控制、加仓均价层级、ATM 规则、信号监控、实时市场信息、策略测试器 (Strategy Tester) 流程以及面向 VPS 的运行方式整合到一个互相关联的界面中。 MT4 版本 | 完整说明和截图 | 如何购买 | 如何安装 | 如何获取日志文件 | 如何测试与优化 | Expforex 的所有产品 为什么交易者会选择这套面板 图表一键交易 ,并支持键盘快速操作 快速完成开仓、平仓、修改、反转、锁仓与部分平仓 深度控制仓位、挂单、总利润与风控逻辑 自动参数计算,减少手动输入与重复劳动 为什么 PRO SE 比标准手动交易更高
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
交易管理器可帮助您快速进入和退出交易,同时自动计算风险。 包括帮助您防止过度交易、报复性交易和情绪化交易的功能。 交易可以自动管理,账户绩效指标可以在图表中可视化。 这些功能使该面板成为所有手动交易者的理想选择,并有助于增强 MetaTrader 5 平台。多语言支持。 MT4版本  |  用户指南+演示 交易经理在策略测试器中不起作用。 如需演示,请参阅用户指南 风险管理 根据%或$自动调整风险 可选择使用固定手数或根据交易量和点自动计算手数 使用 RR、点数或价格设置盈亏平衡止损 追踪止损设置 最大每日损失百分比,在达到目标时自动平仓所有交易。 保护账户免遭过多提款并阻止您过度交易 最大每日损失(以美元为单位)在达到目标时自动关闭所有交易。 保护账户免遭过多提款并阻止您过度交易 一键实现所有交易的盈亏平衡 自动计算从手机/电话发送的交易的风险 OCO 在设置中可用 交易和头寸管理 通过设置每月、每周、每天、每小时或每分钟的最大交易次数,停止过度交易和报复性交易。 高级挂单管理。 调整何时关闭挂单的规则 追踪挂单 支持市价订单和挂单 每日最大利润目标(以美元为单位)以确保头寸并停止
Anchor Trade Manager
Kalinskie Gilliam
5 (7)
Anchor: The EA Manager Your EAs manage their own trades. Anchor manages the account around them. Anchor gives you one place to control your EAs, manage risk and decide when trading is allowed. Any EA, any vendor, any broker or symbol. No source-code changes required. The Problem Most EAs only know what they are doing. They cannot see when another EA is already trading, when several EAs open and are stacking risk or when the account has reached your loss limit. Even using just one EA, it may not
Trade Dashboard MT5
Fatemeh Ameri
4.95 (132)
疲于复杂的订单下达和手动计算?Trade Dashboard 是您的解决方案。凭借其用户友好的界面,订单下达变得轻而易举,只需点击一下,您就可以开设交易、设置止损和止盈水平、管理交易手数,并计算风险回报比,让您只需专注于您的策略。告别手动计算,使用 Trade Dashboard 简化您的交易体验。 立即下载演示版本 。 您可以在这里找到仪表盘功能和特性的详细信息 。 加入 Telegram 频道 。 购买后请给我发消息以获取支持。如果您需要添加更多功能,可以在产品的评论区留下您的想法,我愿意听取任何建议,希望您能在使用我的产品时获得最佳体验 。 这是 MT4 版本。 风险管理:使用 Trade Dashboard,可以将您的风险设置为账户余额或权益的百分比,或将风险设置为总金额。在图表上直观地定义您的止损,让工具准确计算每个货币对的适当手数。该工具还可以根据您期望的风险回报比自动设置止盈水平。它甚至可以在手数计算中涵盖佣金和点差费用。此外,您的止损和止盈可以转变为虚拟水平,隐藏于经纪商。通过 Trade Dashboard 的高级风险管理功能,掌控风险,保护您的资本。 交易线
Custom Alerts AIO:多市场智能监控,一键启动,无需设置 概述 Custom Alerts AIO 是一款“开箱即用”的高级市场扫描工具,无需额外安装任何其他指标或进行复杂设置。它内置了 Stein Investments 的所有核心指标(FX Power、FX Volume、FX Dynamic、FX Levels 和 IX Power),可帮助您轻松监控所有主要资产类别,如外汇、黄金、指数和加密货币。如果您的经纪商支持股票,您也可以手动添加个股进行监控。 1. 为什么选择 Custom Alerts AIO? 无需额外购买任何指标 • 所有关键指标均已内置,开箱即用。 • 专注于实时预警,不包含任何图形元素,性能高效,界面简洁。 全面覆盖所有主要市场 • 支持监控外汇、金属、加密货币和指数市场。 • 无需手动输入任何交易品种,只需在设置中勾选资产类别即可启用。 • 股票并不属于默认类别,如有需要可手动通过参数输入添加。 高效、专业、便捷 • 无需图表模板和手动加载,适合自动化或远程交易环境。 • 非常适合 VPS 上长期运行,或作为后台市场预警工具使用。 2
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Timeless Charts
Samuel Manoel De Souza
5 (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
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
Seconds Chart MT5
Boris Sedov
4.61 (18)
秒级图表 (Seconds Chart) - 一款专为 MetaTrader 5 设计的独特工具,用于创建秒级时间框架的图表。 通过 秒级图表 ,您可以构建以秒为单位的时间框架图表,获得标准分钟或小时图表无法提供的极致灵活性和分析精度。例如,时间框架 S15 表示每根蜡烛图持续15秒。您可以使用任何支持自定义交易品种的指标和EA交易系统。操作它们就像在标准图表上交易一样方便。 与标准工具不同, 秒级图表 让您能够在超短时间框架下进行高精度交易,无延迟干扰。 免费演示版: Seconds Chart v2.29 Demo.ex5 下载免费演示版,亲自体验: 功能齐全 - 所有功能均可使用 24小时测试 - 足够评估准确性和便利性 仅限模拟账户 - 大多数经纪商均可轻松开立 仅限GBPCAD图表 - 大多数终端均可使用 这些限制仅适用于演示版。完整版适用于任何账户类型(真实、演示、竞赛)和任何图表(XAUUSD、EURUSD 等),无任何限制。 如何安装演示版 通过上方链接下载演示文件 打开MetaTrader -> 文件 -> 打开数据文件夹 -> MQL5 -> Experts 将下
Quant AI Agents
Ho Tuan Thang
5 (1)
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
Features   With MT5 to Interactive Brokers(IB) Trader, you can: 1. Load chart data from IB to MT5, and Analyze with all standard or customer Indicators. 2. Place Orders to IB Account Directly in MT5. 3. Make your Own EAs upon IB Securities by only making minus changes of the trading function. Usage 1) Installation Copy the "Mt5ToIBTraderEn.ex4" and sample files to [MT5 Data Folder]->MQL5->Experts.  2)  MT5 Settings Add the IP Address to the MT5 Allowed URLs in 'Tools->Options->Expert Adviso
Trade Command Center
Nguyen Thanh Trieu
5 (2)
附加材料和说明 安装说明 - 用于模拟账户的应用程序试用版 ; 官方信息 官方频道 卖家个人资料 Trade Command Center — 专业交易执行与实时 Risk Guard 控制面板 Trade Command Center 是一款面向 MetaTrader 5 的高性能直观交易执行、手数计算器及风险管理工具。它专为需要严格风险控制、资金保护以及实时回撤监控的自主交易者而设计,完美适配具有每日/最大回撤限制的资金账户或实盘投资组合。 通过单张图表上的五个专用功能模块,该面板提供机构级风险控制、自动化持仓管理和精准订单规划,且无需外部 DLL 或 network 连接。 界面与模块架构 控制面板由五个专用选项卡组成,便于无缝导航并优化图表空间管理: 选项卡 / 模块 核心功能 屏幕操作与指标显示 TRADE 直观视觉规划、基于风险的动态手数计算、UTC 交易时间管理。 拖拽式参数线、实时 R:R 计算器、一键下单。 ARMOR 高级保护设置、全局与单笔保本(BE)、多级止盈、移动止损。 ATR 波动率、Fractal 波段高低点、Parabolic SAR、K线
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
MT5 to Telegram Signal Provider 是一个易于使用且完全可自定义的工具,它允许向 Telegram 的聊天室、频道或群组发送 指定 的信号,将您的账户变为一个 信号提供商 。 与大多数竞争产品不同,它不使用 DLL 导入。 [ 演示 ] [ 手册 ] [ MT4 版本 ] [ Discord 版本 ] [ Telegram 频道 ]  New: [ Telegram To MT5 ] 设置 提供了逐步的 用户指南 。 不需要了解 Telegram API;开发者提供了您所需的一切。 关键特性 能够自定义发送给订阅者的订单详情 您可以创建分层的订阅模型,例如铜、银、金。其中金订阅获得所有信号等。 通过 id、符号或评论过滤订单 包括执行订单的图表截图 在发送的截图上绘制已关闭的订单,以便额外核实 延迟发送新订单消息的可能性,以便在发送前对位置进行调整 订单详情完全透明: 新的市场订单*带截图 订单修改(止损、获利) 已关闭的订单*带截图 部分关闭的订单** 新的挂单 修改的挂单(进场价格) 挂单激活(作为新的市场订单附加) 已删除的挂单 历史订单报告
作者的更多信息
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
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
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
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.
筛选:
无评论
回复评论