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.


おすすめのプロダクト
Gifted FX
Michael Prescott Burney
Giftex FX Portfolio for GBPUSD H1 Giftex FX Portfolio is a professional MetaTrader 5 Expert Advisor for GBPUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on GBPUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Giftex FX Portfolio combines its portfolio-style strategy logic for GBPUSD with the Expert Adviso
FREE
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
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 使い方 – 3 ステップ 分析したい銘柄のチャート上で AI Advisor を起動します。 右側の「AI Advisor Modes」リストから、目的に合ったモードを選びます (単一銘柄の分析・ポジションチェック・ポートフォリオリスク・ウォッチリスト・テーマ・マクロ など)。AI Advisor が口座情報・ポジション・銘柄・相場構造を自動でプロ
FREE
Yellowstone FX
Michael Prescott Burney
4 (5)
Yellowstone FX:最も安全な金取引ロボット、MT5プラットフォーム、上半期のXAUUSDチャート。 イエローストーンの特殊効果   精密な設計が施されている。     最も安全なMT5ゴールド取引ロボット   このソリューションは、資本保全、規律ある取引執行、そして管理可能なリスクレベルを重視するトレーダー向けに設計されています。       XAUUSD市場 。特に以下の目的で設計されています...       MetaTrader 5     最適化は以下の領域で実施されました。     上半期のXAUUSD   :この高度な自動取引システムは、攻撃的で予測不可能な取引行動ではなく、安定性と構造化された自動化に重点を置いています。 オペレーターをお探しの方へ   セーフゴールドEA MT5     低リスクのMT5ゴールド取引ロボット または     Yellowstone FXは 、MT5プラットフォーム上で金取引を行うためのエキスパートアドバイザーであり、強力なリスク管理機能を 備えています。高度なシステムアーキテクチャを採用し、一貫性があり論理的かつプロフェッショ
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
Go Long EAは、複数の技術的確認を伴う体系的な日中取引の原則に基づいた高度なイントラデイ取引戦略を実装します。多くのトレーダーが複雑なアルゴリズムを求める中、このEAは単純かつ効果的な概念と洗練されたリスク管理、複数の技術的フィルターを組み合わせています。 このEAは毎日特定の時間にポジションを開きますが、市場条件が複数のテクニカル指標と一致する場合にのみ実行されます。このシステマティックなアプローチにより、利益を損なう可能性のある一晩の保有コストを避けながら、日中の値動きを捕捉することができます。EAは事前に設定された時間に自動的にポジションを閉じるため、一晩のエクスポージャーを避けたいトレーダーに最適です。 このEAの特徴は、適応型リスク管理システムにあります。ポジションサイズは以下の複数の要因に基づいて自動的に調整されます: - 基本資金とリスクパーセンテージの設定 - テクニカル指標の条件(MA、RSI、MACDなど) - 条件が特に有利な場合にポジションサイズを増加させる特別な乗数 このEAには、有効/無効を切り替えられる複数のテクニカルフィルターが含まれてい
FREE
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 Market Expert - 取引を開始するために設計されています! これは、革新的で高度なアルゴリズムを使用して値を計算する取引ロボットであり、金融​​市場の世界でのアシスタントです。 SolarTrade Suite シリーズのインジケーター セットを使用して、このロボットを起動するタイミングをより適切に選択してください。 説明の下部にある SolarTrade Suite シリーズの他の製品をご覧ください。 投資と金融市場の世界を自信を持ってナビゲートしたいですか? SolarTrade Suite 金融ロボット: LaunchPad Market Expert は、情報に基づいた投資決定を行い、利益を増やすのに役立つ革新的なソフトウェアです。 SolarTrade Suite 金融ロボット: LaunchPad Market Expert の利点: - 正確な計算: 当社のロボットは、高度なアルゴリズムと分析方法を使用して、市場の動きを正確に予測します。 資産を売買するのに最適なタイミングを
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
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
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
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
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
AURUM VECTOR GOLD PULLBACK Aurum Vector Gold Pullback is an automated Expert Advisor for MetaTrader 5. It is designed primarily for Gold trading and uses a selective multi-timeframe pullback approach. The EA waits for a qualified market condition instead of opening trades continuously. Aurum Vector manages only one active position per symbol and Magic Number. While a position is open, the EA focuses on position management and does not open an additional trade. MAIN FEATURES Selective multi-timef
FREE
Break Runner
Damaso Perez Moneo Suarez
BreakRunner - 自動取引と高度なリスク管理 BreakRunnerは、Price Actionに基づくスキャルピング戦略と高度なリスク管理を提供する、自動取引を求めるトレーダー向けに設計されたエキスパートアドバイザーです。このロボットは、価格の蓄積を特定し、重要な高値または安値を突破した際に売買注文を実行します。 主な特徴 取引戦略:価格蓄積の突破を識別し、スキャルピング取引を実行します。推奨タイムフレームは5分、設定可能です。 リスク管理: 変動リスク:前回の取引が損失であった場合、次の取引でリスクを増加させる機能。追加のリスクは設定可能で、前回の損失を回収するのに役立ちます。取引はSLで終了するため、「マーチンゲール」ではありません。 変動SL/TP:価格蓄積範囲の最大値または最小値に基づいてSLとTPを自動調整。推奨比率は1:2です。 固定SL/TP:資産ごとに調整可能な固定SL/TP値を設定するオプション。 ブレークイーブンと部分決済:取引管理を最適化するための高度なコントロール。 最大リスク:設定した最大リスクを超えないように、日々のリスク制限を設定可能。 最適化
FREE
Betty White EA
Michael Prescott Burney
Betty White Portfolio for EURUSD H1 Betty White Portfolio is a professional MetaTrader 5 Expert Advisor for EURUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on EURUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Betty White Portfolio combines its portfolio-style strategy logic for EURUSD with the Expert
FREE
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
Bull Torque FX
Michael Prescott Burney
Bull Torque Portfolio for NZDUSD H1 Bull Torque Portfolio is a professional MetaTrader 5 Expert Advisor for NZDUSD on the H1 timeframe, running on the Expert Advisor HQ universal portfolio framework. It is designed for structured automated trading on NZDUSD H1, with clear on-chart feedback for entries, exits, protections, and live performance so you can see how the EA is operating in real time. Overview Bull Torque Portfolio combines its portfolio-style strategy logic for NZDUSD with the Expert
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
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_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
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
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.96 (142)
Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
TradePanel MT5
Alfiya Fazylova
4.88 (160)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
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:/
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.94 (34)
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台のターミナル間で同時に動作できる、プロフェッ
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! 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? - Understands Larry Williams
Telegram to MT5 Multi-Channel Copier は、Telegram チャンネルのトレードシグナルを MetaTrader 5 に自動的に直接コピーします。ボットも、ブラウザ拡張機能も、手動コピーも不要。Telegram でシグナルを受信すると、EA が数秒でターミナル上でトレードをオープンします。 本製品は 2 つのコンポーネントで構成されています:Telegram チャンネルを監視する Windows アプリケーションと、MT5 ターミナルでシグナルを実行するこの Expert Advisor です。MT4 版も利用可能です。 セットアップガイドとアプリケーションのダウンロード: https://www.mql5.com/en/blogs/post/768988 動作原理 Windows アプリケーションは、ボットではなくあなた自身の API 認証情報を使用して Telegram に接続します。つまり、プライベートおよび VIP チャンネルを含む、購読しているあらゆるチャンネル、グループ、トピックを読み取ることができます。シグナルを検出すると、それを解析し
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 ac
Trade copier MT5
Alfiya Fazylova
4.59 (49)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
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
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
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
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
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
EASY Insight AIO – スマートで手間いらずな取引のオールインワンソリューション 概要 数秒で市場全体——FX、ゴールド、暗号資産、指数、さらには株式まで——を、手作業のチャート確認や複雑なセットアップ・インジケーター導入なしにスキャンできたらどうでしょうか? EASY Insight AIO はAIトレードのための究極のプラグ&プレイ型エクスポートツールです。市場全体のスナップショットを、クリーンなCSVファイルで一括出力。ChatGPT、Claude、Gemini、Perplexityなど、さまざまなAIプラットフォームで即座に解析できます。 ウィンドウの切り替えやグラフのごちゃごちゃしたオーバーレイはもう不要。自動エクスポートされる純粋で構造化されたインサイトだけで、無駄なチャート監視に悩まされず、スマートなデータ主導の判断に集中できます。 なぜEASY Insight AIOなのか? 本当のオールインワン • セットアップ不要、インジケーターのインストール不要、チャートへのオーバーレイ不要。インストールして起動し、エクスポートするだけです。 マルチアセット対
LIMITED SUMMER SALE -40% !   ONLY $30 insead of $50!  Maximum real discount! HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions -
================================================================================ 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
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
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
The Ultimate TradingView to MT5 Bridge Automation 手動取引や遅延の問題に終止符を。 TradingView to MT5 Copier PRO は、TradingViewのアラートをMetaTrader 5で直接実行するための、最速かつ最も信頼性の高いブリッジツールです。カスタムインジケーター、ストラテジーテスターのスクリプト、または手動の描画ツールを使用しているかに関わらず、このEAは 高速WebSocket技術 を使用して即座にトレードを実行します。 単純なコピーツールとは異なり、このPROバージョンには Arena Statistics が含まれています。これは、トレードパフォーマンス、ドローダウン、シャープレシオをチャート上で直接分析できる、プロ仕様の統合ダッシュボードです。 主な機能 トレードコピー機能 (Trade Copier) 超高速約定: WebSocket接続(標準的なWebRequestよりも高速)を使用し、スリッページを最小限に抑えます。 ユニバーサルブローカー対応: あらゆるブローカー および プロップファーム
Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Free Demo: Seconds Chart v2.29 Demo.ex5 無料デモをダウンロードしてご自身でお確かめください: 完全機能版 - すべての機能が利用可能 24時間テスト - 精度と利便性を評価するのに十分な時間 デモ口座のみ - ほとんどのブローカーで簡単に開設可能 GBPCADチャートのみ - ほとんどの端末で利用可能 これらの制限はデモ版のみに適用されます。製品版は、あらゆる口座タイプ(リアル、デモ、コンテス
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
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.
Risk Manager Pro MT5 is an account protection Expert Advisor for traders who want strict risk control inside MetaTrader 5. The utility monitors your account equity, daily and weekly results, drawdown, open positions, trade count, consecutive losses, and trading hours. When a configured limit is reached, it can automatically close positions, cancel pending orders, stop other EAs, send notifications, or close the terminal. Instead of relying on discipline during a stressful trading session, you de
DrawDown Limiter
Haidar Lionel Haj Ali
5 (20)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
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
作者のその他のプロダクト
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
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
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
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.
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.
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 - 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.
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.
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
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.
フィルタ:
レビューなし
レビューに返信