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.


おすすめのプロダクト
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
FREE
Go Long Advanced
Phantom Trading Inc.
4.78 (9)
Go Long EAは、複数の技術的確認を伴う体系的な日中取引の原則に基づいた高度なイントラデイ取引戦略を実装します。多くのトレーダーが複雑なアルゴリズムを求める中、このEAは単純かつ効果的な概念と洗練されたリスク管理、複数の技術的フィルターを組み合わせています。 このEAは毎日特定の時間にポジションを開きますが、市場条件が複数のテクニカル指標と一致する場合にのみ実行されます。このシステマティックなアプローチにより、利益を損なう可能性のある一晩の保有コストを避けながら、日中の値動きを捕捉することができます。EAは事前に設定された時間に自動的にポジションを閉じるため、一晩のエクスポージャーを避けたいトレーダーに最適です。 このEAの特徴は、適応型リスク管理システムにあります。ポジションサイズは以下の複数の要因に基づいて自動的に調整されます: - 基本資金とリスクパーセンテージの設定 - テクニカル指標の条件(MA、RSI、MACDなど) - 条件が特に有利な場合にポジションサイズを増加させる特別な乗数 このEAには、有効/無効を切り替えられる複数のテクニカルフィルターが含まれてい
FREE
SolarTrade Suite 金融ロボット: LaunchPad Market Expert - 取引を開始するために設計されています! これは、革新的で高度なアルゴリズムを使用して値を計算する取引ロボットであり、金融​​市場の世界でのアシスタントです。 SolarTrade Suite シリーズのインジケーター セットを使用して、このロボットを起動するタイミングをより適切に選択してください。 説明の下部にある SolarTrade Suite シリーズの他の製品をご覧ください。 投資と金融市場の世界を自信を持ってナビゲートしたいですか? SolarTrade Suite 金融ロボット: LaunchPad Market Expert は、情報に基づいた投資決定を行い、利益を増やすのに役立つ革新的なソフトウェアです。 SolarTrade Suite 金融ロボット: LaunchPad Market Expert の利点: - 正確な計算: 当社のロボットは、高度なアルゴリズムと分析方法を使用して、市場の動きを正確に予測します。 資産を売買するのに最適なタイミングを
Daily Cycle Assistant PRO Daily Cycle Assistant PRO is a trade management Expert Advisor (EA) for MetaTrader 5 designed to automate time-based position handling and simplify manual trading workflows. The EA allows users to open trades with predefined parameters and automatically manage closing and reopening based on specified times. Positions can be closed at a defined time (for example before rollover) and optionally reopened later with the same direction and parameters. This helps maintain tr
FREE
Golden Square X
Huynh Tan Linh N
4.1 (10)
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
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
Gifted FX
Michael Prescott Burney
Gifted FX for GBPUSD H1 Chart Overview: Gifted FX for GBPUSD on the H1 chart is an advanced trading system designed for precision and profitability. It is engineered to adapt to various market conditions, ensuring consistent performance. Key Features: 100 Strategy Index: Leveraging a robust index of 100 unique strategies to cover a wide range of market scenarios. High Win Rate: Boasts an exceptionally high win rate, ensuring frequent successful trades. Super Low Drawdown (DD): Designed to mainta
Xauusd 1 Minute
Anastase Byiringiro
3.5 (2)
XAUUSD 1 MINUTE EA MT5 A free early-access Gold Expert Advisor built for traders who want a cleaner, smarter, and more disciplined start with XAUUSD automation. XAUUSD 1 MINUTE EA MT5 is a MetaTrader 5 Expert Advisor created for traders who want to enter the Gold market with structure, controlled execution, and a professional automation mindset. This EA is built around the same gold-focused trading vision behind the Gold Family system: clean market structure, pending-order execution, controlled
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 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
Break Runner
Damaso Perez Moneo Suarez
BreakRunner - 自動取引と高度なリスク管理 BreakRunnerは、Price Actionに基づくスキャルピング戦略と高度なリスク管理を提供する、自動取引を求めるトレーダー向けに設計されたエキスパートアドバイザーです。このロボットは、価格の蓄積を特定し、重要な高値または安値を突破した際に売買注文を実行します。 主な特徴 取引戦略:価格蓄積の突破を識別し、スキャルピング取引を実行します。推奨タイムフレームは5分、設定可能です。 リスク管理: 変動リスク:前回の取引が損失であった場合、次の取引でリスクを増加させる機能。追加のリスクは設定可能で、前回の損失を回収するのに役立ちます。取引はSLで終了するため、「マーチンゲール」ではありません。 変動SL/TP:価格蓄積範囲の最大値または最小値に基づいてSLとTPを自動調整。推奨比率は1:2です。 固定SL/TP:資産ごとに調整可能な固定SL/TP値を設定するオプション。 ブレークイーブンと部分決済:取引管理を最適化するための高度なコントロール。 最大リスク:設定した最大リスクを超えないように、日々のリスク制限を設定可能。 最適化
FREE
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Aurum Nevermind 100ml AI (MT5) [Subtitle: Neural Mean Reversion | Adaptive ATR Grid | Solvency Stress-Tested] Introduction Aurum Nevermind 100ml AI is a sophisticated mean-reversion trading architecture designed to capture profits from overextended market conditions. Unlike rigid grid systems that fail during volatility, the "Aurum Core" utilizes a dual-confirmation neural engine—combining Bollinger Bands and the Relative Strength Index
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
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
YenSync
Michael Prescott Burney
1 (1)
円同期     YenSyncは、実績のある富士波システムのコアロジックに基づいた、USD/JPYの1時間足チャート向け高度トレーディングシステムです。USD/JPYペア特有の価格変動に対応するように設計されたYenSyncは、様々なボラティリティ状況下において、正確な市場エントリー、トレンド同期、リスク管理を最優先事項としています。 このシステムは、内部のモメンタム追跡機能と方向性アライメントフィルターを活用し、明確かつ一貫した市場トレンドを捉え、短期的な変動の影響を最小限に抑えます。取引タイミング、最大スプレッド、資本削減フィルターを精密に制御できるほか、ロットサイズ、最大ポジションサイズ、取引頻度をユーザーが自由にカスタマイズできるため、リスクと取引戦略を好みに合わせて調整できます。 YenSyncは効率性と適応性を重視して設計されており、USD/JPYペアの高い変動性を管理するために、信頼性が高く体系的なアプローチを求めるトレーダーにとって理想的な選択肢となっています。
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
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
Quantum Grid Gold EA v1.8は、MetaTrader 5上で動作するXAUUSD(ゴールド)向けの完全自動エキスパートアドバイザーです。自動選択型のトリプル戦略エンジンが、トレンド、ブレイクアウト、レンジングの状況に自動的に適応します。すべてのポジションは1つの統合バスケットとして管理され、設定されたUSD損益目標でまとめて決済されるため、サイクルごとにクリーンで管理されたリスクを実現します。 主な機能 トリプル戦略エンジン - トレンドグリッド、ブレイクアウト、平均回帰 - ADX + EMA によって自動選択 方向性グリッド - ブラインドマーチンゲールではなく、トレンド方向にのみレベルを追加 米ドル建てバスケットの TP と SL - 損益合計が目標値に達すると、すべてのポジションが接近 自動ブレイクイーブン - すべての SL を TP の 40% でエントリーへ移動 ATR トレーリングストップ - TP の 60% でエンゲージ、バーごとに 1 回ずつ前進 H4 トリプルゲート - トレンドバイアス、価格ゲート、エントリー前のローソク足確認 セッ
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
Brent Trend Bot
Maksim Kononenko
4.5 (16)
The Brent Trend Bot special feature is simple basic tools and logic of operation. There are no many strategies and dozens of settings, like other EAs, it works according to one algorithm. The operating principle is a trend-following strategy with an attempt to get the maximum profitability adjusted for risk. Therefore, it can be recommended for beginners. Its strong point is the principle of closing transactions. Its goal is not to chase profits, but to minimize the number of unprofitable trans
FREE
Account Protector Pro is a lightweight Expert Advisor that monitors open positions and closes them when they exceed your configured profit or loss thresholds. It includes a daily loss limit that halts trading when triggered. Features Overview The EA provides multiple ways to manage risk at both the trade level and account level. You can use any combination of these features: Per-trade profit and loss thresholds Lot-scaled loss limit that adjusts with position size Daily loss limit that resets ea
FREE
Smart Breakout Recovery EA Smart Breakout Recovery EA is an advanced automated trading system based on EMA trend filtering and Supply/Demand breakout logic. The EA identifies high-probability breakout and false-break opportunities, combined with a controlled recovery system to optimize trade management. Key Features: - Dual EMA trend confirmation (M15 + H1) - Breakout and False Break detection - Supply & Demand zone integration - Smart Recovery (Martingale-based) - Adjustable lot scaling
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
V12 Black Hole — High-Power Grid Trading EA for MT5 V12 Black Hole is a powerful and professionally engineered Expert Advisor for MetaTrader 5 , designed specifically for EURCAD on the H1 timeframe . Built with a strong execution framework and disciplined risk structure, V12 Black Hole operates as a grid-based trading system with a dynamic basket management model , engineered to handle complex market conditions with control and precision. The EA is designed to adapt its internal behavior to evol
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (210)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 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 (136)
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 フォルダに貼り付けて、ターミナルを再起動しま
TradePanel MT5
Alfiya Fazylova
4.87 (154)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
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 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
Copy Cat More Trade Copier MT5 (コピーキャット MT5) は、今日の取引課題に対応して設計されたローカルトレードコピーシステムと完全なリスク管理・実行フレームワークです。プロップファームのチャレンジから個人ポートフォリオ管理まで、堅牢な実行、資本保護、柔軟な設定、高度な取引処理の組み合わせで、あらゆる状況に適応します。 コピーシステムはマスター(送信側)とスレーブ(受信側)の両方のモードで動作し、成行注文と指値注文、取引修正、部分決済、両建て決済操作のリアルタイム同期を行います。デモ口座とライブ口座、取引ログインまたは投資家ログインの両方に対応し、EA、ターミナル、またはVPSが再起動してもパーシスタント取引メモリシステムを通じて復旧を保証します。複数のマスターとスレーブをユニークIDで同時に管理でき、ブローカー間の違いはプレフィックス/サフィックス調整またはカスタムシンボルマッピングを通じて自動的に処理されます。 マニュアル/設定  | Copy Cat More MT4 | チャンネル  特別機能: 設定が簡単 — わずか30秒で完了(ビデオをご覧
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.82 (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台のターミナル間で同時に動作できる、プロフェッ
Trade copier MT5
Alfiya Fazylova
4.53 (43)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
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.
TelegramからMT5へ: 究極のシグナルコピーソリューション Telegram to MT5 を使えば、取引がシンプルになります。DLL を必要とせず、Telegram のチャンネルやチャットから MetaTrader 5 プラットフォームに取引シグナルを直接コピーできる最新ツールです。この強力なソリューションは、正確なシグナル実行、豊富なカスタマイズオプション、時間の節約、そして効率性の向上を実現します。 [ Instructions and DEMO ] 主な特徴 直接的なTelegram API統合 電話番号とセキュアコードで認証します。 ユーザーフレンドリーな EXE ブリッジを通じてチャット ID を簡単に管理できます。 複数のチャネル/チャットを追加、削除、更新して、同時に信号をコピーします。 高度なフィルターによる信号解析 例外的な単語 (例: 「レポート」、「結果」) を含む不要な信号をスキップします。 柔軟な SL および TP 形式 (価格、ピップ、ポイント) をサポートします。 価格ではなくポイントを指定するシグナルのエントリ ポイントを自動的に計算します。
EA を買う前に、本当に耐えられるのか、それともバックテストでたまたま良く見えただけなのかを確認してください。 ほとんどのロボットは、見栄えのするバックテストと一緒に売られています。 右肩上がりのカーブ。 良い Profit Factor。 ほとんど疑いのない見た目。 それでも、その多くの EA は、市場がその履歴どおりに動かなくなった瞬間に崩れ始めます。 なぜでしょうか。 それは、バックテストが証明するのは一つだけだからです。 その戦略が、ある特定の価格の流れでは機能したということです。 別の流れでも通用することは証明しません。 頑健であることも証明しません。 もちろん、その EA があなたのお金に値することも証明しません。 なぜなら、あなたが EA を買うのは過去のきれいなカーブを眺めるためではないからです。 変化する市場で使うために買うのです。 AntiOverfit PRO がすること AntiOverfit PRO は、MetaTrader 5 の Expert Advisor が本当にしっかりしているのか、それとも特定の過去データにたまたまうまくはまっているだけなのかを確
Timeless Charts
Samuel Manoel De Souza
5 (4)
Timeless Charts is an advanced charting solution designed for professional traders seeking for custom charts / custom timeframes , including seconds charts / seconds timeframe, renko charts / renko bars, cluster charts / footprint charts and advanced tools present in most of the popular platforms. Unlike traditional offline charts or simplistic custom indicators, this solution constructs fully custom bars with true timestamp accuracy , down to miliseconds, allowing for a powerful and precise tr
HINN MAGIC ENTRY – the ultimate tool for entry and position management! Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, adaptive, and customizable interface - Works
ABQ Visual Risk Sizer
Cristian David Castillo Arrieta
ABQ Visual Risk Sizer - Institutional Risk & Trade Execution カテゴリ:ユーティリティ / リスク管理 手動によるロット計算は、時間とコストの浪費につながります。 現代のトレーディング、特にプロップファーム(Prop Firms)の口座を運用する場合、ロット計算の誤りや注文入力のわずか5秒の遅れが、デイリードローダウンルールの違反や絶好のエントリーポイントを逃す原因となります。 ABQ Visual Risk Sizer は、この問題を根本的に解決するために設計された機関投資家レベルのツールです。複雑なリスクの数学的計算を、MetaTrader 5のチャート上で直接、直感的かつ迅速、そして100%正確な視覚的体験へと変貌させます。 外部のカレンダ計算機やExcelシートはもう必要ありません。チャート上のラインをドラッグするだけで、ワンクリックで取引を実行できます。 ABQ Visual Risk Sizer が必要な理由 プロップファームのための完全保護: 各取引で、設定した正確なリスク比率(または金額)を維持します。ゴールド
Seconds Chart - MetaTrader 5で秒足チャートを作成するユニークなツールです。 Seconds Chart を使用すると、秒単位のタイムフレームでチャートを構築でき、標準的な分足や時間足チャートでは得られない柔軟性と分析精度を実現します。例えば、 S15 は15秒足を表します。カスタムシンボルをサポートしているインジケーターやEAをすべて使用できます。標準的なチャートと同様に便利に操作できます。 標準的なツールとは異なり、 Seconds Chart は超短期のタイムフレームでも高い精度と遅延なく作業できるように設計されています。 Seconds Chartの利点 1秒から900秒 までのタイムフレームをサポート。 組み込みのティックデータベースにより、ヒストリカルデータを 瞬時にロード 。 リアルタイムでデータが更新され、 遅延やラグなし 。 複数の秒足チャートを同時に作成可能。 Seconds Chartが最適な用途 スキャルピング や高頻度取引。 正確なエントリーとエグジット。 短期タイムフレームでの取引戦略のテスト。 タイムフレームの設定 デフォルトの設
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 market structure - Understands swing market structure by Michael Huddleston
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (override
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
この製品は、ニュースタイム中にすべてのエキスパートアドバイザーと手動チャートをフィルタリングするため、急激な価格変動によるマニュアルトレードのセットアップの破壊や他のエキスパートアドバイザーによって入力された取引について心配する必要はありません。この製品には、ニュースのリリース前にオープンポジションとペンディングオーダーを処理できる完全な注文管理システムも付属しています。 The News Filter  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
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 so only one trades at a time. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Anchor handles the rest. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite posit
Grid Manual MT5
Alfiya Fazylova
4.9 (21)
「Grid Manual」は、注文のグリッドを操作するための取引パネルです。 ユーティリティはユニバーサルで、柔軟な設定と直感的なインターフェイスを備えています。 それは、損失を平均化する方向だけでなく、利益を増やす方向でも注文のグリッドで機能します。 トレーダーは注文のグリッドを作成して維持する必要はありません。 すべてが「Grid Manual」によって行われます。 注文を開くだけで十分であり、「Grid Manual」は注文のグリッドを自動的に作成し、非常に閉じるまでそれに付随します。 完全な説明とデモバージョン ここ。 ユーティリティの主な機能と機能 ユーティリティは、モバイル端末から開かれた注文を含め、あらゆる方法で開かれた注文を処理します。 「制限」と「停止」の2種類のグリッドで機能します。 グリッド間隔の計算には、固定と動的(ATRインジケーターに基づく)の2つの方法で機能します。 オープンオーダーグリッドの設定を変更できます。 チャート上の各注文グリッドの損益分岐点を表示します。 各注文グリッドの利益率を表示します。 ワンクリックでグリッドから収益性の高い注文を閉じるこ
News filter, equity guard & session control for all your EAs — one tool, full protection Take a Break has evolved from a basic news filter into a comprehensive account protection solution . It pauses your other Expert Advisors during news events or based on custom filters. When trading resumes, it automatically restores your entire chart setup , including all EA settings. Why traders choose Take a Break One news filter for all your EAs — no more relying on individual built-in filters that may o
Poc Breakout Signal: The Ultimate Institutional Order Flow & Price Action System Elevate your trading with Poc Breakout, a comprehensive technical analysis tool designed to bridge the gap between retail trading and institutional market understanding. This all-in-one system combines powerful Buy/Sell signals, advanced Volume Profile analysis, real-time Order Flow (Depth of Market), and critical macroeconomic data to give you a clear, unambiguous edge in the markets. Poc Breakout Signal decodes c
MetaTrader 5 用トレーディングパネル — チャートとキーボードから行うプロフェッショナルなワンクリック取引 アクティブトレーダーのために設計された高機能 Trading Panel。標準の MetaTrader 操作よりも、はるかに速く、直感的に、そして効率的に取引を実行できます。 本パネルは、ポジション管理、未決注文管理、利益コントロール、執行スピードをひとつのプロフェッショナルなワークスペースに集約した実践的なソリューションです。 これは単なる補助ツールではありません。MetaTrader 5 のための本格的な trading cockpit です。チャートから直接操作し、キーボードで素早くコマンドを実行し、自動計算や視覚的なガイドを活用することで、手動トレードをより速く、より明確に、より快適にします。 このパネルを使えば、チャート上からワンクリックで注文を実行でき、標準の MetaTrader コントロールと比べて最大 30 倍速く取引操作を行うことができます。 MT4 バージョン | 完全説明 + DEMO + PDF | 購入方法 | インストール方法 | ログ
Auto Trade Copier is designed to copy trades to multiple MT4, MT5 and cTrader accounts/terminals with 100% accuracy. The provider and receiver accounts must be on the same PC/VPS. With this tool, you can copy trades to receiver accounts on the same PC/VPS. All trading actions will be copied from provider to receiver perfectly. This version can be used on MT5 accounts only. For MT4 accounts, you must use Auto Trade Copier (for MT4). Reference: - For MT4 receiver, please download Trade Receiver Fr
作者のその他のプロダクト
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.
フィルタ:
レビューなし
レビューに返信