GRInvest Breakeven Manager mt5

4

GRInvest Breakeven Manager is an MT5 trade-management Expert Advisor designed to manage existing open positions after entry. Its purpose is to automate breakeven protection, staged partial closes, trailing stops and position management while still giving the trader full manual control over individual trades.

The EA does not need to open trades itself. It can manage manual trades and trades opened by other Expert Advisors according to the selected symbol, direction and magic-number filters.

The design focuses heavily on one-shot execution, persistent state protection and avoiding duplicate partial closes.

1. Breakeven Management

The EA can automatically move the Stop Loss to breakeven once a position reaches a configurable amount of profit.

Main breakeven settings include:

  • Enable/disable automatic breakeven.

  • Profit points required before BE is triggered.

  • Configurable positive offset beyond the entry price.

  • Separate handling for BUY and SELL positions.

For example:

  • BUY opened at 4000.00

  • BE trigger = +500 points

  • BE offset = +50 points

Once the required profit is reached, the EA can move the SL above the original entry rather than exactly onto it.

For SELL positions the logic is reversed.

The EA will not deliberately move an existing stop backwards to a worse level.

2. Partial Close 1 — PC1

PC1 is the first automated partial-close stage.

It is normally triggered at the same profit threshold used for automatic breakeven.

The trader can configure:

  • Enable/disable PC1.

  • Percentage of the current position to close.

  • PC1 automatic trigger through the breakeven threshold.

Example:

  • Position = 0.10 lots

  • PC1 = 50%

  • EA closes approximately 0.05 lots when PC1 is triggered.

The exact volume is adjusted according to the broker's:

  • minimum lot size;

  • lot step;

  • permitted remaining volume.

The EA attempts to leave a valid tradable remainder rather than accidentally closing the full position.

3. Breakeven and PC1 Are Independent

A critical feature of the current version is that Breakeven and PC1 have separate completion states.

Using the manual SET ALL BE button:

  • moves the selected positions to breakeven;

  • marks BE as applied;

  • does not mark PC1 as completed;

  • does not prevent PC1 from executing later.

If PC1 is still waiting, it remains:

PC1: WAIT

PC1 becomes completed only when:

  • PC1 is actually executed;

  • PC1 reaches a condition where it cannot legitimately partial-close and its one-shot handling is completed;

  • or the trader manually selects SKIP.

Simply moving an SL to breakeven does not imply that PC1 has been taken.

This distinction is maintained across EA reloads and MT5 restarts.

4. Partial Close 2 — PC2

PC2 is a completely separate second partial-close stage.

It has its own:

  • enable/disable option;

  • profit trigger;

  • partial-close percentage;

  • persistent completion state.

Example:

  • PC1 = 50% at +1,000 points

  • PC2 = 50% of the remaining volume at +3,000 points

PC2 can therefore manage the remaining position independently of PC1.

5. Persistent Partial-Close Protection

One of the main safety systems in the EA is persistent one-shot protection.

The EA remembers whether PC1 or PC2 has already been completed for an individual position.

This protects against duplicate partial closes caused by events such as:

  • EA input changes;

  • EA reinitialisation;

  • recompilation;

  • timeframe changes;

  • chart reloads;

  • MT5 terminal restarts;

  • rebuilding the EA's internal position array.

Completion information is stored outside the temporary in-memory position array so the EA does not simply forget that a partial close has already occurred.

The position's persistent identity is used wherever possible rather than relying exclusively on a temporary in-memory state.

The objective is simple:

PC1 should execute once.
PC2 should execute once.

Reloading the EA must not make either stage available for execution again.

6. PC Status — WAIT / DONE / SKIP

Every managed position has an independent status for PC1 and PC2.

Possible states are:

WAIT
The partial has not been taken and remains available.

DONE
The partial has already been completed.

SKIP
The trader manually instructed the EA never to perform that partial close for this position.

Example display:

#26020120 BUY 0.10L +2450 pts PC1: DONE PC2: WAIT

Or:

#26020120 BUY 0.05L +2450 pts
 PC1: SKIP
 PC2: WAIT

These states are position-specific.

7. Manual PC1 / PC2 Controls

Each managed position can display its own manual controls.

Example:

#26020120 BUY 0.10L +2450 pts PC1: WAIT [CLOSE] [SKIP] PC2: WAIT [CLOSE] [SKIP]

CLOSE

Pressing CLOSE manually executes the relevant partial close immediately.

It uses the same configured PC percentage and broker-aware volume calculation as the automatic system.

For example:

  • PC1 percentage = 50%

  • Press PC1 CLOSE

  • EA immediately attempts to close 50% according to the current valid lot size.

Once successful, PC1 becomes:

DONE

SKIP

Pressing SKIP does not close any volume.

Instead, it permanently tells the EA that this PC stage should not be used for that specific position.

Example:

PC1: SKIP

The automatic PC1 trigger will then ignore that position permanently.

PC1 and PC2 have independent CLOSE and SKIP controls.

8. Manual/Automatic Duplicate Protection

The EA protects against the manual and automatic systems attempting to execute the same partial simultaneously.

For example, if the trader presses:

PC2 CLOSE

at almost exactly the same moment price reaches the automatic PC2 trigger, the EA uses an execution lock and persistent state checks to prevent two PC2 closes being deliberately initiated from the two management paths.

9. Trailing Stop

The EA includes an independent automatic trailing-stop system.

Configurable settings include:

  • enable/disable trailing stop;

  • profit required before trailing begins;

  • trailing distance;

  • trailing step;

  • minimum update interval.

The trailing stop is designed to move only in the profitable direction.

For a BUY:

  • SL can move upward as price rises;

  • it is not deliberately trailed back downward.

For a SELL:

  • SL can move downward as price falls;

  • it is not deliberately trailed back upward.

A configurable update interval also prevents unnecessary SL modification requests on every individual tick.

10. BUY and SELL Filters

The trader can independently control which direction the EA manages.

Settings include:

  • Manage BUY positions: ON/OFF

  • Manage SELL positions: ON/OFF

Examples:

BUY only

ManageBuys  = true
ManageSells = false

SELL only

ManageBuys = false ManageSells = true

Both

ManageBuys  = true
ManageSells = true
11. Manual Trades

Manual trades normally have:

Magic Number = 0

The EA can be configured specifically to manage these positions.

This allows the Breakeven Manager to act as a standalone trade manager for manually entered MT5 positions.

12. Single Magic Number Management

The EA can manage positions belonging to one specific Expert Advisor using its magic number.

Example:

MagicNumberToManage = 12345

Only positions matching that magic number are managed when the corresponding filtering mode is being used.

13. Multiple Magic Numbers

The EA also supports a comma-separated list of magic numbers.

Example:

MagicNumbersToManage = 0,2,5

or:

MagicNumbersToManage = 0, 2, 5, 10001, 20002

This allows one instance of the Breakeven Manager to manage positions created by several different EAs as well as manual positions.

14. Manage All Magic Numbers

A dedicated option allows the EA to ignore magic-number restrictions entirely:

ManageAllMagicNumbers = true

When enabled, the EA can manage every magic number on the current chart symbol, including:

  • magic 0 manual trades;

  • fixed-magic EAs;

  • EAs using different magic numbers;

  • EAs dynamically generating magic numbers.

Magic filtering priority is:

Priority 1

ManageAllMagicNumbers = true

Manage every magic number.

Priority 2

If Manage All is disabled and a list is entered:

MagicNumbersToManage = 0,2,5

Manage those numbers.

Priority 3

If no list is entered, use the original:

  • ManualTradesOnly

  • MagicNumberToManage

settings.

15. Symbol Protection

The EA manages positions belonging to the symbol of the chart it is attached to.

For example:

An instance on:

XAUUSD

manages applicable XAUUSD positions.

An instance on:

BTCUSD

manages applicable BTCUSD positions.

Using Manage All Magic Numbers therefore does not mean blindly managing unrelated symbols across the entire terminal.

16. SET ALL BE Button

The chart interface contains a:

SET ALL BE

button.

This immediately attempts to move all qualifying managed positions on the current symbol to the configured breakeven level.

Importantly:

SET ALL BE ONLY SETS BREAKEVEN.

It does not:

  • close PC1;

  • mark PC1 DONE;

  • mark PC1 SKIP;

  • mark PC2 DONE;

  • perform a partial close.

Example:

Before:

PC1: WAIT PC2: WAIT

After pressing SET ALL BE:

PC1: WAIT
PC2: WAIT

The SL has been moved to BE, but the partial-close states remain independent.

17. CLOSE ALL Button

The EA includes a manual:

CLOSE ALL

button.

It applies to positions that match the EA's current symbol and management filters.

A confirmation stage is used to reduce the chance of an accidental single-click close.

18. EA ON/OFF Control

The chart interface includes an EA management toggle:

EA: ON

or:

EA: OFF

This allows automated management to be paused from the chart interface without removing the EA.

19. Information Panel

The EA provides a configurable information panel showing important management settings and position information.

Depending on the selected panel mode, information can include:

  • EA status;

  • BUY/SELL management state;

  • BE trigger;

  • BE offset;

  • PC1 settings;

  • PC2 settings;

  • trailing-stop settings;

  • magic-number filter;

  • News Protection state;

  • managed position tickets;

  • BUY/SELL direction;

  • current lot size;

  • current profit in points;

  • PC1 status;

  • PC2 status;

  • CLOSE/SKIP buttons.

Several panel display modes are available so the trader can choose between a full information display and more compact layouts.

20. Automatic Removal of Closed-Position Controls

When a managed position closes, the EA removes its associated position information and manual partial controls from the chart.

Unused panel labels are hard deleted, rather than simply having their text hidden.

This prevents old:

  • ticket information;

  • PC1/PC2 rows;

  • CLOSE buttons;

  • SKIP buttons;

  • panel labels

from remaining as chart remnants after a position has disappeared.

The EA also performs cleanup during initialisation to remove panel objects left behind by an abnormal reload or previous EA version.

21. News Protection EA Integration

The Breakeven Manager can optionally communicate with the GRInvest Universal News Protection Manager.

The two EAs remain separate programs.

They communicate using shared MT5 Terminal Global Variables.

Default communication prefix:

GRINVEST_NEWS_BLOCK

The News Protection EA acts as the master authority for whether a protected news window is currently active.

22. Behaviour During News Protection

When the linked News Protection EA reports that protection or post-news recovery is active, the Breakeven Manager temporarily stops actions that could interfere with protected positions.

During the protection state, it blocks:

  • automatic PC1;

  • automatic PC2;

  • automatic breakeven SL movement;

  • automatic trailing-stop movement;

  • manual PC1 CLOSE;

  • manual PC2 CLOSE;

  • manual SET ALL BE.

This is particularly important when the News Protection EA temporarily removes SL/TP levels around high-impact news.

Without the handshake, the Breakeven Manager could potentially see the removed SL and attempt to add a new BE or trailing SL while the News EA is intentionally protecting the position.

23. Controls Still Available During News

The trader retains certain manual controls during news protection.

The EA can continue to allow:

  • PC1 SKIP;

  • PC2 SKIP;

  • CLOSE ALL;

  • chart panel/status updates.

SKIP remains available because it does not place a partial-close trade or modify SL/TP.

24. Partial Close Is Not Lost During News

If price reaches a PC trigger while News Protection is active, the partial is not automatically marked as completed.

Example:

PC2 trigger = +3000 points

Price reaches:

+3300 points

during the news protection window.

The EA blocks PC2.

PC2 remains:

PC2: WAIT

When protection finishes, if the position still satisfies the PC2 trigger, the EA can execute PC2 normally.

This prevents News Protection from silently consuming or cancelling a legitimate partial-close stage.

25. News Protection Recovery Handshake

The News Protection EA can maintain the protection signal not only during the scheduled news period but also while post-news restoration is unresolved.

This means the Breakeven Manager does not immediately start changing stops or taking partials while the News EA is still:

  • restoring the original SL;

  • restoring the original TP;

  • processing saved recovery state;

  • resolving a protected position.

A short renewable expiry/heartbeat mechanism is used rather than a permanent boolean lock.

If the News Protection EA stops unexpectedly, the protection signal can eventually expire instead of leaving the Breakeven Manager permanently disabled.

26. Broker-Aware Partial Lot Calculation

Partial-close volume calculations consider the symbol's:

  • SYMBOL_VOLUME_MIN

  • SYMBOL_VOLUME_STEP

  • current position volume

The EA normalises the amount to a broker-valid volume.

It also attempts to ensure a valid remainder is left open after the partial close.

This avoids sending obviously invalid lot sizes such as a volume below the broker's minimum or one that does not respect the lot step.

27. Trade Execution Validation

Partial closes use explicit MT5 trade requests and verify the returned trade result.

The EA can attempt compatible order filling modes where necessary and checks the broker result before considering the close successful.

This helps make the trade-management process more robust across brokers with different execution configurations.

28. Failed Partial Handling

Automatic partials use one-shot protection.

If an automatic PC action reaches a state where repeatedly attempting the same close every tick would be unsafe or undesirable, the EA prevents uncontrolled repeated requests.

Manual CLOSE behaviour is handled separately so the trader can deliberately retry an unsuccessful manual action where appropriate.

29. Persistent State Across Reloads

The EA is designed so important one-shot management information is not dependent only on local variables that disappear when the EA reloads.

Persistent information includes PC completion and skip state.

This is intended to protect against scenarios such as:

PC2 executes ↓ EA inputs changed ↓ EA reloads ↓ Price is still above PC2 trigger

The expected behaviour is:

PC2: DONE

and not another PC2 close.

30. Historical Recovery

The persistent-state system also includes support for recognising certain previous partial-close activity from trade history.

This was introduced to provide safer migration from older versions of the EA that did not originally store persistent PC1/PC2 state.

The priority remains preventing an existing position from receiving an unintended duplicate partial close.

31. Overall Management Sequence

A typical position can therefore be managed like this:

POSITION OPENS │ ▼ PC1 / BE threshold reached │ ├── PC1 closes configured % │ └── SL moves to BE + offset │ ▼ PC2 threshold reached │ └── PC2 closes configured % of remaining volume │ ▼ Trailing trigger reached │ └── SL trails price according to distance/step │ ▼ Remaining position continues toward TP / SL / manual close

Any individual PC stage can instead be manually:

[CLOSE]

or:

[SKIP]

32. Example Position Display
-- BREAKEVEN MANAGER 2.58 --

STATUS: RUNNING
NEWS PROTECTION: CLEAR

BUYS: ON   SELLS: ON

BE After:   75000 pts
BE Offset:   1000 pts

PC1 at BE: 33% of lot
PC2 at 150000 pts: 50% of lot

Trail Trigger: 300000 pts
Trail Dist:     200000 pts
Trail Step:      50000 pts

Magic: ALL

#244076844 BUY 0.01L +42300 pts
 PC1: WAIT       [CLOSE] [SKIP]
 PC2: WAIT       [CLOSE] [SKIP]
33. Main Design Goals

The GRInvest Breakeven Manager is designed around five principles:

Automated protection

Move positions to breakeven and progressively protect profitable trades.

Flexible position reduction

Use two independent partial-close stages.

Manual control

Allow the trader to manually CLOSE or SKIP each PC stage per position.

Persistent safety

Do not repeat partial closes simply because MT5, the chart or the EA was reloaded.

EA compatibility

Manage manual trades or positions created by other Expert Advisors using single, multiple or unrestricted magic-number filtering.

Core Feature Summary

Breakeven

  • Automatic BE trigger

  • Adjustable BE offset

  • Manual SET ALL BE

  • BE independent from PC1

Partial Close

  • PC1 at BE threshold

  • Independent PC2 threshold

  • Individual percentages

  • Persistent one-shot protection

  • Broker-aware volume calculation

  • Manual CLOSE per PC

  • Manual SKIP per PC

  • WAIT / DONE / SKIP status

  • Manual/automatic duplicate protection

Trailing Stop

  • Adjustable trigger

  • Distance

  • Step

  • Update interval

Position Selection

  • BUY only

  • SELL only

  • BUY + SELL

  • Manual trades

  • Single magic number

  • Multiple comma-separated magic numbers

  • Manage all magic numbers

Chart Controls

  • EA ON/OFF

  • SET ALL BE

  • CLOSE ALL with confirmation

  • Per-position PC1 CLOSE/SKIP

  • Per-position PC2 CLOSE/SKIP

  • Multiple panel modes

Reliability

  • Persistent PC state

  • Historical recovery support

  • Hard removal of stale chart labels/buttons

  • Position-specific state

  • Trade-result validation

  • Protection against repeated partial execution

News Protection Integration

  • Shared MT5 handshake

  • Pauses BE/PC/trailing during protection

  • Pauses manual PC CLOSE and SET ALL BE

  • Leaves SKIP and CLOSE ALL available

  • Does not consume PC triggers during news

  • Resumes automatically after recovery

The EA is intended to act as a dedicated MT5 position-management layer: entries can come from the trader or another EA, while the Breakeven Manager handles protection, partial exits and ongoing position management according to a consistent set of rules.

レビュー 1
Marcelo De Oliveira Saraiva
137
Marcelo De Oliveira Saraiva 2025.01.19 16:06 
 

é excelente, se tivesse um mini painel para colocar os parametros sem necessitar entrar nas propriedades seria melhor ainda, o trailling stop eu não entendi e deveria ter opção de desligar... eu uso outro expert a unica parte ruim é que os 2 não funcionam juntos um exclui o outro (o outro é um painel de trade)

おすすめのプロダクト
One Click Trading – Auto TP SL Developer TraderLinkz Version 1.00 Category Utility What it does Adds missing TP and SL to your manual trades and pending orders Sets them once per ticket Lets you move TP and SL afterward Works on hedging and netting accounts Scans on every tick and reacts on trade events Why you want it You place faster entries You get consistent risk and exit targets You reduce fat finger errors You keep full manual control Quick start Attach the EA to any chart Keep TP and SL e
FREE
When executing an order, whether through the Metatrader ticket on a computer or the Metatrader app on a mobile device, either manual or pending, Easy Trade will automatically set the take profit and stop loss levels, as well as a limit order with its respective take profit and stop loss levels. It follows the trading strategy for market open (US30, US100, US500), but it can be applied to any market asset.
FREE
MAFX Trading Manager
Mark Anthony Noblefranca Nazarrea
5 (1)
MAFX Trading Manager MetaTrader 5 用 プロフェッショナル手動トレード管理パネル 製品概要 MAFX Trading Manager は、MetaTrader 5 用に設計された プロフェッショナルな手動トレード管理パネルです。 高速な注文執行と必要なトレード管理機能を、 コンパクトで使いやすいインターフェースで提供します。 本製品は、自動売買やシグナルに頼らず、 より高いコントロール性、スピード、一貫性を求める 手動トレーダー向けに設計されています。 主な特長 MT5の注文画面を開かずにワンクリックでBuy / Sell Stop Loss と Take Profit の統合管理 部分決済およびブレイクイーブン機能 チャートを妨げないコンパクトなパネル 軽量で安定したパフォーマンス スキャルピング、デイトレード、裁量取引に最適 XAUUSD(ゴールド)および BTC 向けに最適化された初期設定 継続的なメンテナンスとアップデート 主な機能 成行 Buy / Sell 実行 ロットサイズ調整 Stop Loss / Take Profit 管理 オフセッ
FREE
Prop Edge Heartbeat
Nuno Madeira Amaro Pire Costa
EA to prevent inactivity violations on prop firms. This EA will scout for your most recent trade and if it is older than the number of days defined, will enter a micro lot position size 0.01 on the pair defined. It is recommended to use a tight spread pair like EURUSD. This EA will not act as long as you have at least one trade in the last X days (defined on config). This EA will not place other trades or modify existing position.
FREE
Core function Intelligent transaction management one-click opening and closing operation, which supports user-defined lots to set multiple closing modes: all closing, closing by direction and closing by profit and loss status. Professional risk control, real-time risk monitoring and spread control to avoid high-cost trading environment. Visual control panel has an intuitive graphical interface, and all functions can be operated with one button to display position information, profit and loss sta
FREE
GDS RiskLab TradeDesk Free Manual Trading Desk and Risk-Control Utility for MetaTrader 5 GDS RiskLab TradeDesk is a free chart-based utility for traders who want a cleaner manual trading workspace in MetaTrader 5. It is designed as a simple execution-support and risk-control panel. The goal is to keep the trading process more organized: review the chart, plan the trade, keep risk visible and execute manually with more structure. This tool does not generate buy or sell signals. It does not predic
FREE
Risk Manager – Account Protection Tool Risk Manager is an Expert Advisor for MetaTrader 5 designed to protect your trading account by applying automatic risk management rules. This tool does not open trades . It continuously monitors your account and enforces predefined limits to help prevent excessive losses and maintain disciplined trading. Risk Manager works in the background and can manage positions opened by manual trading or other Expert Advisors. It is particularly useful for: • Manual tr
FREE
FREE FREE FREE Trade Assistant MT5 – Professional Trading & Risk Management Panel Trade Assistant MT5 is an advanced trading panel designed to help traders execute orders faster, safer, and more professionally . It simplifies manual trading by combining smart order management , precise risk control , and one-click execution , making it ideal for both beginners and advanced traders. This tool does not trade automatically . Instead, it empowers you with full control while applying professional-gra
FREE
WAP TP Stealth EA – Intelligent Basket Management for Precision Exits WAP TP Stealth EA is a specialized trade management expert advisor designed for traders who rely on basket strategies, recovery systems, and multi-position workflows. Instead of closing trades individually, the EA dynamically calculates the Weighted Average Price (WAP) of all open positions and executes a coordinated closure once your defined profit target is reached. This approach enables efficient drawdown management, smooth
FREE
Very often there are situations when you need to quickly close all open positions or close only under a certain condition... The Positions Close script closes open positions according to the selected settings. You can choose to close All positions , only Buy, only Sell You can also choose by which symbols to close positions: by all symbols or only by the current one, on the chart of which the script was thrown There is a filter for closing profitable or unprofitable positions, as well as bo
FREE
Lot by Risk MT5
Sergey Vasilev
4.88 (16)
Lot by Risk tradingパネルは、手動取引用に設計されています。 これは、注文を送信するための代替手段です。 パネルの最初の特徴は、管理線を使用した注文の便利な配置です。 第二の特徴は、ストップロスラインの存在下で与えられたリスクのための取引量の計算です。 制御線はホットキーを使用して設定されます: 利益を取る-デフォルトではTキー; 価格-デフォルトではPキー; ストップロス-デフォルトでは、Sキー; 取引パネルの設定で自分でキーを設定できます。 操作のアルゴリズム: 1)-レベルを希望の場所に配置します(すべてのレベルを配置する必要はありません); 2)-リスクを指定します(オプション); 3)-緑の送信注文ボタンをクリックします; 4)-注文が行われるのを待っているか、エラーメッセージ付きのアラートが表示されます; 5)-マジックでExpert Advisorにリンクされている現在のシンボルのすべての注文を閉じる場合は、注文を閉じるボタンをクリックします。 注文を送信ボタンを何度も押すべきではありません。 一度で十分です。 注文後、ボタンは「
FREE
Скрипт для быстрого закрытия рыночных и отложенных ордеров. Этот зацикленный скрипт гарантированно закроет все выбранные ордера. Он будет работать, пока не закроет все выбранные позиции и удалится когда сделает свою работу. Если у Вас много открытых позиций этот скрипт поможет вам. Интуитивно понятный интерфейс 1) Просто бросьте его на график. 2) Выберите ордера, которые надо закрыть. По умолчанию выбраны все! 3) нажмите кнопку "Close". Если вы забыли включить Авто торговлю, будет выдано сообщен
FREE
Chart Link
David Gitau Gakunga
4.83 (12)
Chart Link  allows you to control multiple charts from one chart or multiple charts from multiple charts. Features 1. Synchronised Scrolling :     Scrolling the master chart also scrolls all linked sub charts to the same position.     Sub charts inherit offset and auto-scroll settings from the master chart. 2. Synchronised Timeframe :     Switching the master chart timeframe also switches all linked sub charts. 3. Synchronised   Symbol   :     Switching the master chart symbol also switches all
FREE
Market & Pending Risk Manager EA Operation Manual Market & Pending Risk Manager is a professional MT5 trading panel EA that integrates multiple functions such as market order trading, pending order trading, risk management, and trailing stop loss, providing traders with a comprehensive trading solution. Core Advantages Intelligent Dual-Mode Trading Market Order Mode: One-click buy/sell for fast execution Pending Order Mode: Precise entry to wait for the optimal timing Seamless Switching
FREE
Overview FiT Panel Pro is a professional-grade trade management panel designed for MetaTrader 5 traders who demand speed, precision, and full control over their trades. Built with a modern dark-theme UI, it combines one-click execution with advanced risk management, visual SL/TP drag lines, automatic Fibonacci-based levels, and comprehensive order management — all in a single, compact panel. Whether you are a scalper, day trader, or swing trader, FiT Panel Pro gives you the edge you need to exec
FREE
EA Utility Tool: Risk Consistency Manager The Risk Consistency Manager EA is a simple yet powerful tool that automates risk management across multiple open positions. It dynamically adjusts stop-loss levels to distribute a predefined total risk value (e.g., $10,000) evenly among all active trades. Key Features: Dynamic Risk Distribution: Automatically allocates an equal share of risk to each position (e.g. with total risk capital of $10,000, its will be distribute each trade with $3,333.33 risk
FREE
The free trade manager — simple but effective. Quickly open positions with preset take profit and stop loss levels. Set everything to breakeven or close all trades with one click. Get plenty of information on your chart about your account, trades, and profit/loss. It speaks for itself — that’s how simple this manager is to use. Check out our other EAs and our Telegram for more information! By traders, for traders!
FREE
This utility automates Take Profit (TP) and Stop Loss (SL) levels for your trades, calculated in Pips . It ensures consistent risk management for all your positions. Crucial Note for Manual Traders: If you intend to use this utility on trades opened manually (without an Expert Advisor), you must change the 'Magic Number' setting to 0 (zero) . This allows the utility to correctly identify and manage your manual orders.
FREE
Automatic Trade Protection EA For MT5 Overview Trade Equity Guardian is a lightweight, always-on Expert Advisor that continuously monitors all open positions on your account and automatically closes any trade that breaches your predefined risk thresholds. It acts as a safety net — protecting your account from oversized positions, runaway losses, or locking in profits when targets are hit. Attach it to any chart and let it run in the background. It works alongside your other EAs and manual trades
FREE
目的: マーケットウォッチ の全シンボルを、現在の時間軸(TF)で default.tpl テンプレートを使用して自動的に開き、現在アクティブなチャート以外をすべて閉じます。手動操作不要で複数銘柄の分析に最適! 特徴: 自動化: 数十のチャートを1クリックで開く。 安全性: 不要なチャートを閉じ、現在のチャートを維持。 柔軟性: カスタム default.tpl テンプレートを使用(事前に設定が必要!)。 現在の時間軸: アクティブなチャートのTFと同じ時間軸で開く。 インストール: OpenAllSymbolsSafe.mq5 をMetaTrader 5の MQL5/Scripts フォルダにコピー。 ターミナルを再起動するか、スクリプトリストを更新(右クリック→ 更新 )。 ️ 重要: default.tpl が MQL5/Profiles/Template/ にあることを確認。 現在のチャート以外はすべて閉じるため、作業に支障がないか確認。 現在のTFがサポートされていない場合、最寄りのTFで開く。
FREE
Overview The Dynamic Candle Timer is a lightweight and efficient utility designed for MetaTrader 5. Unlike traditional candle timers that remain static in the corner of the chart, this indicator dynamically attaches to the current Bid price line. This allows traders to monitor the remaining candle time directly at the point of action, enhancing focus during fast-paced market movements. It is highly suitable for day traders and scalpers operating on XAUUSD, Forex, Crypto, or Indices. Key Feature
FREE
Are you an MT5 trader who needs rapid, reliable risk management? ​Introducing this essential utility – a powerful, free Expert Advisor designed to instantly close all open positions on your MetaTrader 5 account with a single, dedicated action. This tool is a must-have for emergency market exits or quick, decisive profit-taking. ​ Why is this a FREE tool? ​I am a professional MQL developer actively focused on delivering   5-star solutions   and   securing custom MQL5 Freelance Jobs . This free ut
FREE
NS Financas Automatic Clear All Chart Indicators Script Automatically remove all indicators from your chart offered for free by NS Financas! Don't waste any more time deleting the indicators one by one. With this script it is possible in one click to remove all indicators from the screen to adjust your new strategy while still using the settings of your graph, in addition to the possibility of configuring keyboard shortcuts for quick access to the script. Take the opportunity to visit our cha
FREE
Collective TP SL Manager is a MetaTrader 5 utility that manages a combined take-profit and stop-loss across many open positions on one symbol. Instead of setting TP/SL per order, it watches the net profit or loss of all (or filtered) positions and closes the basket when your target is reached. Features Basket-level targets: one collective take-profit and one collective stop-loss for the whole group of positions. Net P/L monitoring: continuously sums the profit/loss of all selected positions in
FREE
FOX CUSTOMER BENEFITS Verified customers with qualifying MQL5 Market purchases may be eligible for complimentary FOX commercial Expert Advisors. Learn more about the FOX Customer Benefits Program: https://www.mql5.com/en/blogs/post/774575 ACCOUNT NUCLEAR One account. One control panel. Full manual authority when you need it. Account Nuclear is a free MetaTrader 5 utility built for traders who manage multiple positions, pending orders, manual trades or several Expert Advisors on the same account
FREE
Bundle Risk Manager Pro EA "Risk Manager Pro EA is an all-in-one trading utility that combines advanced risk management tools, ensuring full control over your trading account while protecting your capital and complying with trading regulations. By bundling Limit Positions , Concurrent Risk Capital , and the newly added Limit Profit , this EA is the ultimate solution for disciplined trading and achieving evaluation goals. Key Features: 1. Limit Positions : Enforces a maximum number of open posi
FREE
Displays Stop Loss, Take Profit, and real-time profit/loss of open trades in a single panel. User-friendly, movable, and multilingual support for easier risk management. risk management, stop loss, take profit, profit loss, portfolio analysis, MT5 indicator, trading panel, multilingual support General Description This indicator displays the Stop Loss, Take Profit, and real-time profit/loss values of your open trades in a single panel on the MetaTrader 5 platform. The panel features a user-frien
FREE
Smart SLTP ATR Trade Manager A trade management utility for MetaTrader 5 that automatically assigns Stop Loss and Take Profit levels to open positions, and trails Stop Loss as price moves in the trader's favor. Compatible with manual trades, Expert Advisors, and copy trading signals simultaneously. Overview The utility monitors all open positions on the chart and assigns SL/TP levels immediately upon trade entry, based on one of four configurable calculation modes. An optional step-based traili
FREE
Main Features: Trading Panel: Quick on-chart buttons for Buy, Sell, Close Profit, and Close All. Risk Management: Built-in Auto Lot calculation based on your specified risk percentage. Visual Tools: Automatically draws Supply/Demand zones and Fibonacci levels on the current chart. Market Data: Displays real-time ATR (Volatility) and RSI values directly on the panel. Optional Auto Mode: A basic automated trading function using EMA crossover and ATR volatility filter. Parameters to Note: RiskPerce
FREE
Calculating the volume of orders every time you create an order is an extremely important thing in risk management Let this tool simplify your work! ----------------------------------------------------- How to use? Attach the indicator to the chart and set its parameters:  Risk size in %  or money and Risk Reward Ratio. Click on the ON button and locate the horizontal line to your would-be StopLoss level. Options: Click on the Pending/Instant button to locate the horizontal line  to your would-b
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (216)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Visual Trade Execution and Risk Management The application includes a specialized trading panel that assists in c
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
Local Trade Copier EA MT5 による、驚くほど高速な取引コピーを体験してください。1分で簡単にセットアップできるこの取引コピー機は、同じWindowsコンピュータまたはWindows VPS上の複数のMetaTrader端末間で取引をコピーすることができ、0.5秒未満の高速コピースピードを実現します。 初心者であろうとプロのトレーダーであろうと、 Local Trade Copier EA MT5 には、あなたの特定のニーズに合わせてカスタマイズするための幅広いオプションが用意されています。これは、利益の可能性を高めたい人にとって究極のソリューションです。 今すぐ試してみて、これが市場で最も速くて簡単なトレードコピー機である理由を理解してください。 ヒント: デモアカウントで Local Trade Copier EA MT5 デモバージョンをダウンロードして試すことができます: ここ ダウンロードした無料のデモ ファイルを MT5 >> ファイル >> データ フォルダを開く >> MQL5 >> Experts フォルダに貼り付けて、ターミナルを再起動しま
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
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 チャンネルを含む、購読しているあらゆるチャンネル、グループ、トピックを読み取ることができます。シグナルを検出すると、それを解析し
HINN MAGIC ENTRY – the ultimate tool for entry and position management! SIMPLE. FASTEST. INTUITIVE. MAX AUTOMATED. 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, a
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
「Grid Manual」は、注文のグリッドを操作するための取引パネルです。 ユーティリティはユニバーサルで、柔軟な設定と直感的なインターフェイスを備えています。 それは、損失を平均化する方向だけでなく、利益を増やす方向でも注文のグリッドで機能します。 トレーダーは注文のグリッドを作成して維持する必要はありません。 すべてが「Grid Manual」によって行われます。 注文を開くだけで十分であり、「Grid Manual」は注文のグリッドを自動的に作成し、非常に閉じるまでそれに付随します。 完全な説明とデモバージョン ここ。 ユーティリティの主な機能と機能 ユーティリティは、モバイル端末から開かれた注文を含め、あらゆる方法で開かれた注文を処理します。 「制限」と「停止」の2種類のグリッドで機能します。 グリッド間隔の計算には、固定と動的(ATRインジケーターに基づく)の2つの方法で機能します。 オープンオーダーグリッドの設定を変更できます。 チャート上の各注文グリッドの損益分岐点を表示します。 各注文グリッドの利益率を表示します。 ワンクリックでグリッドから収益性の高い注文を閉じるこ
Trade copier MT5
Alfiya Fazylova
4.58 (52)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
Telegram To MT5 — シグナルコピア Telegram チャンネルのトレードコールを、実際の MT5 注文に変換します — 自動で、好きなだけの口座に対応し、リスクとルールは完全にあなたの管理下に置けます。 Telegram To MT5 は、あなたが Telegram で既にフォローしている VIP / シグナルチャンネルを MetaTrader 5 端末に接続します。無料の付属デスクトップアプリがメッセージを読み取り(ボットを禁止しているチャンネルでも可能)、この EA があなたの口座でそれらを執行します — あなた自身のリスク設定、シンボルマッピング、テイクプロフィット処理、セッションおよびニュースフィルターを適用します。 これはシグナルコピアであり、ブラックボックス戦略ではありません。どのチャンネルを信頼するか、各トレードのロットと管理方法をあなたが決めます。 ステップバイステップの設定と付属アプリのインストールガイド 仕組み [あなたの Telegram チャンネル] -> [付属デスクトップアプリ] -> [MT5 + この EA] -> 注文 付属デスクトッ
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
MetaTrader 5 用のプロフェッショナル取引コピー機 MetaTrader 向けの高速・高性能・信頼性の高い 取引コピー機 です。 COPYLOT は、MT4 と MT5 のターミナル間で Forex 取引をコピーでき、 Hedge 口座と Netting 口座の両方に対応しています。 COPYLOT MT5 版の対応構成: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 版 完全な説明 + DEMO + PDF 購入方法 インストール方法 ログファイルの取得方法 テストと最適化の方法 Expforex のすべての製品 MT4 ターミナルへのコピーも可能です(MT4 → MT4、MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT は、2台、3台、さらには10台のターミナル間で同時に動作できる、プロフェッ
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
Trade Copier Ultimate
Janitha Sandaruwan Amaradasa Wickramasingha Arachchilage
5 (4)
Trade Copier Ultimate - Telegram to MT5 Signal Copier Trade Copier Ultimate automatically copies Telegram trading signals into MetaTrader 5. The EA can read signal messages, detect the symbol, order type, entry price, Stop Loss, Take Profit levels and selected update commands, then execute or manage the trade in MT5 using your lot and risk settings. It is more than a basic Telegram to MT5 copier. TCU also supports Bot API and user-account Bridge workflows, Discord signal routing, local MT5 to MT
Timeless Charts
Samuel Manoel De Souza
5 (8)
Timeless Charts is an all-in-one trading utility for professional traders. It combines custom chart types such as Seconds Charts and Renko with advanced order flow analysis using Footprints , Clusters , Volume Profiles , VWAP studies, and anchored analysis tools for deeper market insight. Trading and position management are handled directly from the chart through an integrated trade management panel , while Market Replay and Virtual Accounts provide environments for practicing trading skills and
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 * Before purchasing, please feel free to send me a message if you have any questions about the product or setup. ** After purchase,  Contact me via private message to receive t
Anchor: The EA Manager Your EAs manage their own trades. Anchor manages the account around them. Anchor gives you one place to control your EAs, manage risk and decide when trading is allowed. Any EA, any vendor, any broker or symbol. No source-code changes required. The Problem Most EAs only know what they are doing. They cannot see when another EA is already trading, when several EAs open and are stacking risk or when the account has reached your loss limit. Even using just one EA, it may not
Global Investing FX Terminal は、MetaTrader 5 向けのオールインワン FX ダッシュボードです——中央銀行政策金利、CFTC COT ポジション、キャリーランキング、経済サプライズ、オプションスキュー、リテールセンチメント、相関まで、合計 13 のアナリティクスパネルを、ちらつきのない単一キャンバス上に表示し、単一の EA から 10 秒ごとに更新します。外部ソフトウェア不要です。 プロの FX 分析には、通常は別々のプラットフォームに分散しているデータへの同時アクセスが欠かせません。レートデリバティブ、政府統計ポータル、ブローカーのスワップ仕様、オプションデスク——このEAはそれらすべてを、実際に売買判断を下すトレーディングターミナルの単一画面に集約します。 ダッシュボードの表示内容 マーケットオーバービュー FX ペアテーブル — G10 全 28 ペアに加え、ブローカーの Market Watch に NOK/SEK クロスが存在する場合はそれも含めた最大 36 ペアのリアルタイム Bid/Ask。各行にはスプレッド、日次・週次変化、pip
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
Trading Chaos Expert
Gennadiy Stanilevych
5 (11)
This software has no equals in the world and represents a universal trade "console" covering trading signals, automated market entry, setting of Stop Loss and Take Profit, as well as Trailing Profit for multiple trades at the same time in a single open window. Intuitive control of the Expert Advisor in "three clicks" ensures a comprehensive use of all its functions on different computers, including tablets PCs. Interacting with additional signal indicators that mark the chart to give a real mark
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
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 (コピーキャット・モア) MT5 トレードコピー (Trade Copier) は、ローカルのトレードコピーであり、今日のトレード課題のために設計された完全なリスク管理・執行フレームワークです。プロップファーム (prop firm) のチャレンジから個人のポートフォリオ管理まで、堅牢な執行、資金保護、柔軟な設定、高度なトレード処理の組み合わせによって、あらゆる状況に適応します。 このコピーは、マスター (Master、送信側) とスレーブ (Slave、受信側) の両モードで動作し、成行注文・指値注文、トレードの変更、部分決済、両建て決済 (Close By) 操作をリアルタイムで同期します。デモ口座と実口座、トレード用ログインと投資家ログインの両方に対応し、永続的トレードメモリ (Persistent Trade Memory) システムにより、EA・端末・VPS が再起動しても復旧を保証します。一意の ID により複数のマスターとスレーブを同時に管理でき、ブローカー間の差異は接頭辞/接尾辞の調整やカスタムシンボルマッピングに
VirtualTradePad PRO SE MT5 — MetaTrader 5向けプロフェッショナル取引コントロールセンター VirtualTradePad PRO SE は、 MetaTrader 5 向けのプレミアムなチャートベースの取引パネルであり、トレード管理ワークスペースです。より速い執行、明確なポジション管理、構造化されたトレード管理、視覚的なレベル計画、そしてチャート上で完結するプロフェッショナルなワークフローを求めるトレーダー向けに設計されています。 これは単なる BUY / SELL パネルではありません。PRO SE は、手動取引、予約注文、ポジション管理、部分決済、バスケット損益管理、平均化レベル、ATMルール、シグナル監視、リアルタイム市場情報、ストラテジーテスター (Strategy Tester) ワークフロー、VPS向け運用を、1つの連携されたインターフェースに統合します。 MT4版 | 完全な説明とスクリーンショット | 購入方法 | インストール方法 | ログファイルの取得方法 | テストと最適化の方法 | Expforex のすべての製品 PRO
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
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
作者のその他のプロダクト
Elevate your trading with this Breakeven and Trailing Stop Manager, an Expert Advisor (EA) built for MetaTrader 4 to streamline risk management by automating breakeven and trailing stop strategies. This EA helps secure profits and minimize losses without requiring constant manual intervention, giving you more time to focus on market analysis and strategy. ### Key Features: - **Automatic Breakeven Adjustment:**     Automatically move the Stop Loss to the breakeven level once your position reac
FREE
Universal News Protection Manager (UNPM) UNPM is an MT5 news-protection and trade-management EA designed especially for traders who need to respect prop-firm restricted news trading windows. Its main purpose is simple: Protect open trades from being accidentally closed by TP or SL during a restricted high-impact news window. This is particularly useful with prop firms that allow positions to remain open during major news, but do not allow trades to be opened or closed within a set number of minu
フィルタ:
Marcelo De Oliveira Saraiva
137
Marcelo De Oliveira Saraiva 2025.01.19 16:06 
 

é excelente, se tivesse um mini painel para colocar os parametros sem necessitar entrar nas propriedades seria melhor ainda, o trailling stop eu não entendi e deveria ter opção de desligar... eu uso outro expert a unica parte ruim é que os 2 não funcionam juntos um exclui o outro (o outro é um painel de trade)

Greig Cameron Rennie
664
開発者からの返信 Greig Cameron Rennie 2025.01.29 16:57
Thank you for the review. Set trailing stop to 0 to turn off.
If this doesn't work for you mail me and I'll update with a separate setting to toggle off/on Edit Have updated with a setting to toggle trails on/off Also settings to control trail trigger, step an distance from current price
レビューに返信