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)

추천 제품
Renko Maker
Aleksandr Slavskii
5 (1)
Это DEMO версия Renko Maker PRO  к сожалению правила маркета не позволили указать это в названии. Почему то проверка маркета запрещает в названии слово DEMO. Демо версия строит ренко бары только на основе EURUSD из 1000 последних минутных баров. Revolution Renko Maker PRO — Инновационный Конструктор Ренко Графиков для MetaTrader 5   Создавайте идеальные ренко-бары с сохранением тиковых данных и реальных объемов — теперь с полной поддержкой индикаторов, советников и тестера стратегий!  
FREE
This indicator creates a Renko-based custom symbol in MetaTrader 5. Renko charts are built using price movement only, not time, making them useful for analyzing trends and filtering noise. Features Customizable brick size in points. Option to calculate brick size using ATR (adaptive). Ability to show or hide wicks. Creates and updates a custom Renko chart symbol. Automatically opens the chart window (optional). Maintains a limited bar history for performance. Inputs BrickSizePoints – brick size
FREE
Backstop enforces the two rules that end funded accounts. A daily loss limit and a maximum loss limit, applied to everything on the account — every Expert Advisor, every symbol, and every trade you place by hand. Attach it to any one chart and it governs the whole terminal. It does not trade. It has no strategy, no signals and no opinion about the market. It is a governor. What it does Daily loss limit — measured from balance at the reset, equity at the reset, or a fixed account size. Firms diff
FREE
GDS Renko Matrix - Free Multi-Scale Renko Overview Indicator for MetaTrader 5 GDS Renko Matrix is a free multi-scale Renko overview indicator for MetaTrader 5. It helps traders monitor Renko structure, direction and chart context in a compact matrix-style view. The purpose of this tool is to provide a faster visual overview of Renko behavior without turning the chart into a signal system. It does not predict the market and does not generate buy or sell signals. Renko EDGE EA Golden Delta | Alg
FREE
Be Line
Nattapon Chuekamhod
BE Line — Real-Time Breakeven Indicator for MT5   (Free, No License Required) Automatically calculates and draws a   Breakeven (BE) horizontal line   based on all open positions for the current symbol. Net Long (Buy bias)   → Line draws at   Bid . When Bid crosses above the line, you're in profit. Net Short (Sell bias)   → Line draws at   Ask . When Ask crosses below the line, you're in profit. Accounts for   Swap and Commission   automatically. Includes an info panel showing: BE Price, Position
FREE
Presentation The URL html and xml to csv is designed to get contents from URLs with html or xml content, and to download it to an output format as a txt or as a csv file. It enables to get the whole web sites page, starting with the http protocol, in a document for a further use and in additional with downloading directly on the MetaTrader applications and on the desktop. It is a good advantage for taking the most data from events and economic calendars, and also publications related to the inst
FREE
BoletaMiniPanel
PATRICK ANTONIO MORELO A.
5 (4)
Simple panel with  Stop loss (Loss), Stop gain (Gain) , Trailing stop (TS) and Breakeven (BE-P). Lot is the number of contracts to be traded. Gain is the number, in points, that the stop gain will be positioned. If you don't want to put stop gain, just put 0 (zero) in place and when you open the order it won't have this stop. Loss is the number, in points, that the stop loss will be placed. If you don't want to put stop loss, just put 0 (zero) in place and when you open the order it won't ha
FREE
이 프로그램은 트레이더와 투자자를 위해 설계된 간단한 차트 플레이어로, 과거 시장 데이터를 재생하여 시장의 흐름과 가격 움직임을 더 잘 이해할 수 있도록 도와줍니다.   이 플레이어를 사용하면 다양한 전략을 검증하고,   시장 상황에 맞춘 트레이딩 연습도 효율적으로 수행할 수 있습니다.   캔들을 한 개씩 진행하며   시장 흐름을 순서대로 확인할 수 있습니다.   재생 중 언제든지 일시 정지하고   다시 재개할 수 있습니다.   마음에 드셨다면 "Chart Auto Flow Focus Edition"도 고려해 보세요:  https://www.mql5.com/ko/market/product/154905 고속 이동을 통한 차트 검색, 저속 이동을 통한 시뮬레이션, 그리고 여러 차트에서 MTF 동일 시간 동기화가 가능하여 MTF 분석이 훨씬 수월해집니다. [특징]   과거에서 미래 방향으로 자동 재생   일정 간격으로 1봉씩 진행   재생 중 일시 정지 가능   [재생 사양]  
FREE
Dynamic Candle Timer
Channaphat Yamuangmorn
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
This utility EA will display simple renko, hence the name essential renko. The renko will be shown in a new tab and using custom symbol. Please do note (especially for those who new to Renko), that Renko does not follow timeline as it will follow price movement. That's why it has a lot of potential where you can attach any EA that you want and use any custom indicator in this new custom symbol for renko. Always use M1 timeframe. Most of the time you don't need to change anything. But if you d
FREE
Manual position management. Missing SL. Price moves against you. No protection. Trade Manager Lite automates Stop Loss, Take Profit, Trailing Stop, and Break-Even for your open positions. Attach to one chart. Configure your default SL/TP distance. Let it manage your positions automatically. What's Included (FREE Version) Auto SL/TP: Applies missing Stop Loss and Take Profit to positions based on your configured distance in points Trailing Stop: Adjusts SL dynamically as price moves in your favor
FREE
Click Trading
Jawad Tauheed
5 (2)
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
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
ADAPTIVE CLOSER Manage many open positions as one book, from the chart Type: Utility (position manager) Symbols: Any Account: Hedging and Netting Opens trades: Only when you press a button 1. The problem this addresses One position is easy to manage. Six are not. Once several tickets are open — entered by hand, by different Expert Advisors, from a phone — the thing you actually care about is the combined result, and MetaTrader gives you no way to act on it. You end up closing tickets one at a t
FREE
Signalator Trade Summary Panel MT5는 계정, 포지션, 심볼 및 리스크 상태를 차트에서 직접 명확하게 확인할 수 있는 무료 로컬 MetaTrader 5 유틸리티입니다. Signalator Trading and Analysis Ecosystem의 일부로, 계정 모니터링, 시장 분석, 심볼 스캔, 알림 및 트레이더 워크플로우 개선을 위한 실용적인 MetaTrader 도구 모음입니다. 이 패널은 계정 및 포지션 모니터링에 통합 Symbol Inspector와 거래 전 Lot Size / Risk Calculator를 결합합니다. 여러 터미널 탭을 전환하지 않고 Floating P/L, 익스포저, SL/TP 커버리지, 브로커 심볼 사양 및 계획된 거래 리스크를 확인할 수 있습니다. 시장 스캔, 추세 방향 확인 및 multi-timeframe 알림에는 관련 Signalator 제품도 사용할 수 있습니다: MT4 Summary Panel  -  Multi TF Symb
FREE
Quick Trade Manager (QTM) 는 MT5 차트에서 빠르고 직관적인 거래를 지원하는 강력한 도구로, 사용자 지정(합성) 심볼도 완벽히 지원합니다. QTM은 원클릭 트레이딩을 더욱 편리하게 만들어주며, 차트에서 직접 빠르게 거래할 수 있는 기능을 확장합니다. 설정된 위험 비율에 따라 포지션 크기를 자동으로 계산할 수 있습니다. 또한 모든 사용자 정의(합성) 심볼을 완벽하게 지원합니다. 예를 들어, QTM을 초(秒) 차트는 물론, 렌코 차트 또는 기타 사용자 정의 차트 유형에서도 트레이딩에 활용할 수 있습니다. 이것도 유용할 수 있습니다 RS Trade Copier - 완전한 그래픽 인터페이스를 갖춘 초고속 로컬 거래 복사기입니다. 설정은 약 1분, 계좌 번호를 수동으로 입력할 필요가 없습니다. MT5와 MT4 간의 모든 조합으로 복사를 지원합니다. QTM 주요 기능 빠른 거래 패널 QTM을 실행하면 Buy/Sell 시장가 주문을 빠르게 열 수 있는 편리한 거래 패널이
FREE
Tick Chart Monitor with countdown tick volume and easy to change tick size without going back to main chart. This work with Tick Chart Generator , which are available for download from the MQL5 Market: Tick chart generator:   https://www.mql5.com/en/market/product/79763 NOTE: Custom symbols on MT5 are not directly tradable. This is by Metatrader5 design. If you want to place trades directly on the custom symbol generated by this product, you will either need a trade panel that offers this functi
FREE
목적: 마켓 워치 의 모든 심볼을 현재 시간 간격(TF)에 맞춰 default.tpl 템플릿으로 자동으로 열고, 현재 활성 차트를 제외한 모든 차트를 닫습니다. 수동 작업 없이 여러 종목을 빠르게 분석하기에 이상적입니다! 주요 기능: 자동화: 클릭 한 번으로 수십 개 차트를 열 수 있습니다. 안전성: 불필요한 차트를 닫고 현재 차트를 유지합니다. 유연성: 사용자 정의 default.tpl 템플릿 사용(사전 설정 필요!). 현재 시간 간격: 스크립트 실행 시 활성 차트의 TF와 동일하게 차트가 열립니다. 설치 방법: OpenAllSymbolsSafe.mq5 파일을 MetaTrader 5 터미널의 MQL5/Scripts 폴더에 복사합니다. 터미널을 재시작하거나 스크립트 목록을 새로 고칩니다(마우스 오른쪽 버튼 → 새로 고침 ). ️ 주의사항: default.tpl 이 MQL5/Profiles/Template/ 폴더에 있는지 확인하세요. 현재 차트를 제외
FREE
Signalator Lot Size Evaluator MT5 는 수동 트레이더가 주문을 실행하기 전에 예상 포지션 크기를 계산할 수 있도록 설계된 무료 로컬 MetaTrader 5 유틸리티입니다. 선택한 심볼, BUY 또는 SELL 방향, 예정 진입 가격, Stop Loss, 선택적 Take Profit 및 리스크 비율을 사용하여 거래를 계획할 수 있습니다. 계산기는 현재 계좌 정보와 브로커가 제공하는 심볼 사양을 함께 사용하여 권장 랏 크기와 주요 리스크 값을 계산합니다. 사용 절차는 간단합니다: 거래 설정 정의 → 계좌 리스크 수준 선택 → 권장 랏 크기와 브로커 조건 확인 → 설정이 적절한 경우 수동으로 거래를 실행합니다. Signalator Lot Size Evaluator MT5 는 Signalator Trading and Analysis Ecosystem 의 일부입니다. 이는 거래 준비, 심볼 및 브로커 분석, 계좌 모니터링, 포지션 관리 및 일상적인 트레이딩 작업 흐름
FREE
ChartPan
Leandro Rodrigo Giron
Hey Trader! Boring with the Meta chart? Do you want to move it as you do in Profit? Your problems are over! Now available   Chart Panoramic   or   ChartPan   for closer friends, a utility that allows you to move the chart to better visualize the most relevant points for your trade. Recommend you to add a keyboard shortcut for quick access (Ctrl + Q - for example), because you will need to run   ChartPan   after symbol changing to "release" the chart again. To add a hotkey: after downloading
FREE
FiT Panel Pro
Thonglak Janyakorn
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
Total Closed Trades – MT5 Indicator The Total Closed Trades indicator for MetaTrader 5 provides a quick, visual overview of your trading performance by displaying a simple and intuitive 3-value breakdown : Total Trades – The total number of closed trades. Winning Trades – Number of profitable trades. Losing Trades – Number of losing trades. Instead of digging through reports, traders can instantly monitor their historical performance with a compact and elegant pie chart-style widget. Key
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
제품 개요 차트 위의 모든 포지션에 대해 익절(TP) 및 손절(SL)을 일괄 설정할 수 있는 툴입니다. 개별 포지션을 수동으로 설정하는 번거로움을 없애고 신속한 리스크 관리를 지원합니다. 더욱 실전적인 일괄 관리와 자동 청산을 위해 "One Click Pro SL TP Batch Auto Close"를 사용해 보세요. https://www.mql5.com/ko/market/product/186278 조작 순서 1. 수치 입력: "ALL POSITIONS TP/SL" 영역 내에 있는 각 에디트 박스에 원하는 가격을 입력합니다. 2. 실행: "SET" 버튼을 클릭하면 모든 포지션에 일괄 적용됩니다. * 한쪽만 설정하려면 다른 한쪽은 빈칸으로 두고 실행하십시오. * 브로커의 스탑 레벨 제한 등으로 인해 실패한 티켓은 알람으로 알림이 전송됩니다. 버튼 기능 SET: 입력한 TP/SL 값을 모든 포지션에 일괄 적용합니다. [ < ]: 현재 시장 가격(Bid/Ask)을 에디
FREE
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. This expert adviser OrderBook History Playback allows you to playback the market book events on the history using files, created by OrderBook Recorder . The exper
FREE
TradePanelAssistant
Jonald Pagatpat Baydal
# Trade Assistant Manager Stop calculating lot sizes by hand. Trade Assistant Manager is an on-chart panel that turns your risk settings and chart lines into a precise, ready-to-fire order — automatically. ## Key Features **Automatic Lot Sizing** Set your risk as a percentage of account balance or a fixed dollar amount. The panel reads the distance between your Entry and Stop Loss lines and instantly calculates the exact lot size for that risk — accounting for your broker's commission per lo
FREE
Prop Firm Navigator EA
Marin Stoyanov
3.33 (3)
FREE Prop Firm Navigator EA - Advanced Trend-Following & Protection Developed by the EA Trading Academy team using Expert Advisor Studio , this free trading robot combines powerful trend-following indicators with a robust set of account protection features to secure your trading capital. You can find a detailed documentation about the properties and inputs on our  knowledge base . Key Strategy Features: Uses Bulls Power and Awesome Oscillator indicators for precise entry signals Sophisticat
FREE
Position Selective Close MT5
Francisco Manuel Vicente Berardo
The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
FREE
DS Candle Range Theory
Darkstone Capital LTD
DS Candle Range Theory V1.0 Multi-Timeframe Candle Range Analysis Indicator for MetaTrader 5 Overview DS Candle Range Theory V1.0 is a MetaTrader 5 indicator designed to analyse and display candle range behaviour directly on the trading chart. The indicator provides traders with a structured view of candle characteristics including range size, candle body, wick behaviour, expansion, compression, and directional movement. By displaying candle range information across selected timeframes, traders
FREE
Account Info EA It is a tool that presents on the graph all the positions of the account, and specific information concerning the positions, but also the account. It enables the user to have an image of his account at a glance. Use like any expert advisor. You can't attach it in the same chart with other expert advisor. It does not have the ability to open or manage positions. You can attach it on any chart and any timeframe.
FREE
이 제품의 구매자들이 또한 구매함
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (215)
거래당 위험 계산, 라인을 사용한 손쉬운 신규 주문, 부분 청산 기능을 통한 주문 관리, 7가지 유형의 트레일링 스탑 및 기타 유용한 기능을 제공합니다. 추가 자료 및 지침 설치 지침   -   애플리케이션 지침   -   데모 계정용 애플리케이션 평가판 라인 기능       - 차트에 개시선, 손절매, 차익실현을 표시합니다. 이 기능을 사용하면 새로운 주문을 쉽게 하고 개봉 전에 추가 특성을 볼 수 있습니다. 위기 관리       -       위험 계산 기능은 설정된 위험과 손절매 주문의 크기를 고려하여 새 주문의 볼륨을 계산합니다. 이를 통해 손절매 크기를 설정하고 동시에 설정된 위험을 존중할 수 있습니다. 로트 계산 버튼 - 위험 계산을 활성화/비활성화합니다. 필요한 위험 값은 위험 필드에 0에서 100 사이의 백분율 또는 예금 통화로 설정됩니다. 설정 탭에서 위험 계산 옵션을 선택합니다. $ 통화, % 잔액, % 지분, % 자유 마진, % 사용자 정의, % AB 이전
Trade Manager EA에 오신 것을 환영합니다. 이 도구는 거래를 보다 직관적이고 정확하며 효율적으로 만들기 위해 설계된 궁극적인 리스크 관리 도구 입니다. 단순한 주문 실행 도구가 아닌, 원활한 거래 계획, 포지션 관리 및 리스크 제어를 위한 종합 솔루션입니다. 초보자부터 고급 트레이더, 빠른 실행이 필요한 스캘퍼에 이르기까지 Trade Manager EA는 외환, 지수, 상품, 암호화폐 등 다양한 시장에서 유연성을 제공합니다. Trade Manager EA를 사용하면 복잡한 계산은 이제 과거의 일이 됩니다. 시장을 분석하고 진입, 손절 및 익절 수준을 차트의 수평선으로 표시한 후 리스크를 설정하면, Trade Manager가 이상적인 포지션 크기를 즉시 계산하고 SL 및 TP 값을 실시간으로 표시합니다. 모든 거래가 간편하게 관리됩니다. 주요 기능: 포지션 크기 계산기 : 정의된 리스크에 따라 거래 크기를 즉시 결정합니다. 간단한 거래 계획 : 진입, 손절, 익절을 위한
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.94 (148)
Local Trade Copier EA MT5는 동일한 Windows 컴퓨터 또는 Windows VPS에서 여러 MetaTrader 5 계정 간에 거래를 복사하고 관리할 수 있는 빠르고 유연한 거래 복사기입니다. 로컬 거래 동기화 기능과 함께 Receiver 측에서 로트 크기, 리스크 관리, 거래 필터링, 심볼 매핑, 거래 관리 및 계정 보호를 독립적으로 설정할 수 있습니다. Transmitter와 Receiver 터미널을 약 1분 안에 설정하고, 동일한 브로커 또는 서로 다른 브로커의 계정 간에 수동 거래 또는 EA 거래를 복사할 수 있습니다. 적절한 조건에서는 로컬 MetaTrader 터미널 간의 거래 정보가 0.5초 이내 에 동기화될 수 있습니다. 실제 체결 속도는 브로커 지연 시간, 네트워크 상태, 컴퓨터/VPS 성능 및 터미널 부하에 따라 달라집니다. 구매 전에 무료 데모를 사용해 보세요 MT5 데모 계정에서 Local Trade Copier EA MT5의 모든 기능을
================================================================================ 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
TradePanel MT5
Alfiya Fazylova
4.88 (167)
Trade Panel은 다기능 거래 도우미입니다. 이 애플리케이션에는 50개 이상의 수동 거래 기능이 포함되어 있으며 대부분의 거래 작업을 자동화할 수 있습니다. 앱 사용 설명서 + 동영상 설명: https://www.mql5.com/en/blogs/post/772292 데모 계정용 앱 체험판: https://www.mql5.com/en/blogs/post/750865 앱 설치 방법: https://www.mql5.com/en/blogs/post/756239 시각 모드에서 앱 테스트 방법: https://www.mql5.com/en/blogs/post/770277 VPS MetaTrader에 앱 설치 방법: https://www.mql5.com/en/blogs/post/770190 거래. 한 번의 클릭으로 거래를 수행할 수 있습니다: 리스크 자동 계산과 함께 예약 주문 및 포지션 열기. 한 번의 클릭으로 여러 주문 및 포지션 열기. 주문 그리드 열기. 예약 주문 및 포지션을 그룹별로
Telegram to MT5 Multi-Channel Copier   는 Telegram 채널의 트레이딩 시그널을 MetaTrader 5로 자동 복사합니다. 봇도, 브라우저 확장도, 수동 복사도 필요 없습니다. Telegram에 시그널이 도착하면 EA가 몇 초 안에 터미널에서 주문을 실행합니다. 그리고 채널을 복사하기 전에, 내장 백테스터가 그 채널이 내 계좌에서 어떤 결과를 냈을지 보여줍니다. 제품은 두 가지 구성 요소로 이루어집니다: Telegram 채널을 수신하는 Windows 애플리케이션과, MT5 터미널에서 시그널을 실행하는 본 EA입니다. MT4 버전도 제공됩니다   여기 . 설정 가이드와 앱 다운로드:   https://www.mql5.com/en/blogs/post/768988 현재 가격은 향후 인상될 예정입니다. 작동 방식 Windows 앱은 봇이 아닌 본인의 API 자격 증명으로 Telegram에 연결됩니다. 따라서 비공개·VIP 채널을 포함해 구독 중인 모든 채널
베타 출시 Telegram to MT5 Signal Trader 는 곧 공식 알파 버전을 출시할 예정입니다. 일부 기능은 아직 개발 중이며, 작은 버그가 발생할 수 있습니다. 문제가 있으면 꼭 보고해 주세요. 여러분의 피드백은 소프트웨어 개선에 도움이 됩니다. Telegram to MT5 Signal Trader 는 Telegram 채널 또는 그룹의 거래 신호를 자동으로 MetaTrader 5 계정으로 복사하는 강력한 도구입니다. 공개 및 비공개 채널을 모두 지원하며, 여러 신호 제공자를 여러 MT5 계정에 연결할 수 있습니다. 소프트웨어는 빠르고 안정적으로 동작하며, 복사된 거래를 완벽히 제어할 수 있습니다. 인터페이스는 깔끔하며 대시보드와 차트가 시각적으로 구성되어 있고, 직관적인 네비게이션이 가능합니다. 여러 Signal Account를 관리하고, 공급자별 설정을 세밀하게 조정하며, 모든 동작을 실시간으로 모니터링할 수 있습니다. 필수 조건 MQL의 제한으로 인해 EA는 Te
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 IMPORTANT NOTICE: FarmedHedge is a MANUAL-FOCUSED TRADING UTILITY ,not a fully automated EA. Results shown on this Signal include manual trades and overall strategic management.
Strategy Ledger Pro
Abdullah Uygar Tuna
5 (2)
Strategy Ledger Pro 는 MetaTrader 5용 읽기 전용 계좌 분석 패널입니다. 계좌 결과를 Expert Advisor, 전략, 종목, 매직 넘버별로 분리해 보여줍니다. 모든 기능을 설명하는 상세 매뉴얼 . MetaTrader는 계좌 전체에 대해 하나의 잔고만 보여줍니다. 여러 EA가 함께 거래하면 그 잔고로는 각각의 기여를 알 수 없습니다. Strategy Ledger Pro는 계좌 내역을 읽고, 청산된 포지션을 재구성하고, 전략에 배정한 뒤 결과를 하나의 패널로 보여줍니다. 이 제품은 주문을 넣거나 수정하거나 청산하지 않습니다. 거래 전략을 포함하지 않고, 지표를 만들지 않으며, 차트 가격을 읽지 않습니다. 주요 기능 EA, 개별 전략, 종목 또는 매직 넘버별 결과. 사전 설정 기간과 사용자 지정 날짜 범위. 실현 및 미실현 결과, 오픈 노출, 거래 통계, 핍, 드로다운, 자산 곡선. 수수료, 스왑, 비용 부담률, 진입·청산 슬리피지 추정치와 합계. 고정 규
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (5)
Telegram To MT5 — 시그널 카피어 텔레그램 채널의 트레이딩 콜을 실제 MT5 주문으로 바꿔 드립니다 — 자동으로, 원하는 만큼의 계좌에서, 리스크와 규칙을 완전히 당신의 통제 아래 둡니다. Telegram To MT5는 이미 텔레그램에서 팔로우하고 있는 VIP / 시그널 채널을 당신의 MetaTrader 5 터미널에 연결합니다. 무료 동반 데스크톱 앱이 메시지를 읽고(봇을 차단하는 채널에서도 가능), 이 EA가 당신의 계좌에서 이를 실행합니다 — 당신만의 리스크 설정, 심볼 매핑, 익절(TP) 처리, 세션 및 뉴스 필터를 적용합니다. 이것은 블랙박스 전략이 아니라 시그널 카피어입니다. 어떤 채널을 신뢰할지, 각 거래의 수량과 관리 방식을 당신이 결정합니다. 단계별 설정 및 동반 앱 설치 가이드 작동 방식 [당신의 텔레그램 채널] -> [동반 데스크톱 앱] -> [MT5 + 이 EA] -> 주문 동반 데스크톱 앱(무료, 포함)은 당신의 텔레그램 계정으로 로그인하여 선택한
Astro Trade MT5
Indra Maulana
5 (7)
25% discount on the release of the tool: only for the next 3 buyers Send a message to receive a demo version. 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. Vi
Premium Trade Manager - 코치가 내장된 트레이딩 패널 Premium Trade Manager 는 차트 안에 트레이딩 코치를 심어놓은 도구입니다. 주문을 확정하기 전에, AI 트레이딩 코치 Max가 설정된 거래를 직접 읽고 명확한 판단을 내려줍니다. 스톱이 규율 있는 접근 방식에 맞는지, 리스크 크기가 합리적인지, 고영향 뉴스 이벤트가 몇 분 후에 있는지, 프롭 펌 한도에 근접했는지. 그 아래에는 완전한 실행 엔진이 있습니다. 원클릭 리스크 기반 진입, 차트에서 드래그로 세우고 거래가 진행되는 동안에도 계속 움직일 수 있는 플랜, 최대 4단계 분할 익절, 7가지 트레일링 방식, 실시간 프롭 펌 컴플라이언스, 뉴스 가드, 그리고 자체 비용을 평가하는 스프레드까지. 결정은 당신이 내립니다. Max가 두 번째 시선으로 확인합니다. 패널이 그 이후의 모든 것을 처리합니다. 구매 전에 직접 체험해 보세요. 브라우저에서 라이브 패널을 직접 클릭해볼 수 있습니다. 구매 전에 실제
EA Overfitter
Stephen J Martret
5 (1)
That backtest looks great. But will it still be making money tomorrow, next week, next month? EA Overfitter re-runs your EA on 100 price histories it has never seen. One score tells you if the edge is real. A backtest tells you what an EA did on one price history — the one that happened to occur. What you cannot tell from it is how much of that result was the strategy and how much was the particular path. EA Overfitter answers that. It builds up to 100 synthetic price histories your EA has n
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
MetaTrader 5용 전문 트레이드 복사기 MetaTrader 용 빠르고 전문적이며 신뢰할 수 있는 트레이드 복사기 입니다. COPYLOT 은 MT4와 MT5 터미널 간의 Forex 거래 복사를 지원하며, Hedge 및 Netting 계좌를 모두 지원합니다. COPYLOT MT5 버전 지원 구성: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 버전 전체 설명 + DEMO + PDF 구매 방법 설치 방법 로그 파일 확인 방법 테스트 및 최적화 방법 Expforex의 모든 제품 MT4 터미널로도 거래를 복사할 수 있습니다(MT4 → MT4, MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT은 2개, 3개, 심지어 10개의 터미널과 동시에 작동할
HINN MagicEntry Extra
ALGOFLOW OÜ
4.74 (19)
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
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading op
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
"Grid Manual"은 주문 그리드 작업을 위한 거래 패널입니다. 이 유틸리티는 보편적이며 유연한 설정과 직관적인 인터페이스를 제공합니다. 그것은 손실을 평균화하는 방향뿐만 아니라 이익을 증가시키는 방향으로 주문 그리드와 함께 작동합니다. 거래자는 주문 그리드를 만들고 유지할 필요가 없으며 유틸리티에서 수행합니다. 거래자가 주문을 시작하는 것으로 충분하며 "Grid Manual"는 자동으로 그를 위한 주문 그리드를 생성하고 거래가 마감될 때까지 그와 동행할 것입니다. 전체 설명 및 데모 버전 여기 . 유틸리티의 주요 기능: 모바일 터미널을 포함하여 어떤 방식으로든 열린 주문과 함께 작동합니다. "제한" 및 "중지"의 두 가지 유형의 그리드와 함께 작동합니다. 고정 및 동적(ATR 표시기 기반)의 두 가지 유형의 그리드 간격 계산과 함께 작동합니다. 오픈 오더 그리드의 설정을 변경할 수 있습니다. 차트에서 각 주문 그리드의 손익분기점 수준을 표시합니다. 각 주문 그리드에 대한 이익
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart - MetaTrader 5에서 초 단위 차트를 생성하는 독특한 도구입니다. Seconds Chart 를 사용하면 초 단위로 설정된 타임프레임으로 차트를 작성할 수 있어, 표준 분 또는 시간 단위 차트에서는 불가능한 유연성과 정밀한 분석이 가능합니다. 예를 들어, S15 타임프레임은 15초 동안의 캔들로 구성된 차트를 의미합니다. 사용자 정의 심볼을 지원하는 모든 인디케이터와 전문가 어드바이저를 사용할 수 있습니다. 이를 사용하는 것은 표준 차트에서 거래하는 것만큼 편리합니다. 표준 도구와 달리, Seconds Chart 는 초고속 타임프레임에서도 높은 정확도와 지연 없이 작업할 수 있도록 지원합니다. 무료 데모: Seconds Chart v2.29 Demo.ex5 무료 데모를 다운로드하고 직접 확인하십시오: 완전한 기능 - 모든 기능 사용 가능 24시간 테스트 - 정확성과 편리성을 평가하기에 충분한 시간 데모 계정만 - 대부분의 브로커에서 쉽게 개설 가능
The product will copy all telegram signal to MT5 ( which you are member) , also it can work as remote copier.  Easy to set up, copy order instant, can work with almost signal formats, image signal,  s upport to translate other language to English Work with all type of channel or group, even channel have "Restrict Saving Content", work with  multi channel, multi MT5 Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. Support to backtest signal. How to s
Signal TradingView to MT5 Pro Automator TradingView와 MetaTrader 5 간의 즉각적인 전문 실행 TradingView 알림과 MT5의 실제 실행을 연결하는 가장 강력한 커뮤니케이션 브리지로 거래 전략을 자동화하세요. 속도, 유연성 및 완벽한 위험 관리를 요구하는 트레이더를 위해 설계된 이 Expert Advisor는 모든 알림 메시지를 정확한 시장가 또는 지정가 주문으로 변환합니다. 강점 및 이점 범용 파싱 엔진(독점 기술): 모든 알림 형식에서 데이터를 자동으로 인식하고 추출할 수 있는 고급 기술입니다. 단일하고 엄격한 형식에 얽매일 필요가 없습니다. 시스템은 심볼, 액션, 가격, SL 및 TP를 자동으로 이해합니다. 실시간 실행: 지연 시간을 최소화하도록 최적화된 1초 미만의 초고속 폴링 기술. 신호 수신 후 몇 밀리초 내에 주문 실행이 이루어집니다. 기관 수준의 위험 관리: 다음 기준에 따른 자동적이고 정확한 로트(Lot) 크기 계
Trade Dashboard MT5
Fatemeh Ameri
4.95 (132)
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
FUTURES ORDERFLOW FOOTPRINT CHART Professional OrderFlow EA for MetaTrader 5 Version 1.01| Professional tool for real traders | Institutional-Grade Visualization STRATEGY TESTER USERS - PLEASE SELECT EVERY 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 ROL
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.
Trade Copier Ultimate
Janitha Sandaruwan Amaradasa Wickramasingha Arachchilage
5 (5)
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
MT5 to Telegram Signal Provider 는 사용하기 쉽고 완전히 커스터마이즈 가능한 유틸리티로, 특정 신호를 Telegram의 채팅, 채널 또는 그룹으로 전송하고, 귀하의 계정을 신호 제공자 로 만듭니다. 경쟁 제품과 달리 DLL 임포트를 사용하지 않습니다. [ 데모 ] [ 매뉴얼 ] [ MT4 버전 ] [ 디스코드 버전 ] [ 텔레그램 채널 ]  New: [ Telegram To MT5 ] 설정 단계별 사용자 가이드 가 제공됩니다. 텔레그램 API에 대한 지식은 필요하지 않습니다; 개발자가 제공하는 모든 것이 필요합니다. 주요 특징 구독자에게 보낸 주문 상세 정보를 커스터마이즈할 수 있습니다. 예를 들어, 브론즈, 실버, 골드와 같은 계층 구독 모델을 만들 수 있습니다. 골드 구독에서는 모든 신호를 받습니다. id, 심볼, 또는 코멘트로 주문을 필터링할 수 있습니다. 주문이 실행된 차트의 스크린샷이 포함됩니다 보낸 스크린샷에 닫힌 주문을 그려 추가 검증을 합니다
Trade Indicator Assistant   is a powerful MT5 utility designed to turn indicators into automated trading systems. Its main feature is the ability to automatically detect an indicator’s   BUY and SELL signal buffers , without requiring you to know the buffer numbers, search through indicator settings, or modify the indicator source code. Bonus Indicator:   After purchasing Trade Indicator Assistant, contact me to receive   Trade Signal Pro   completely free as a bonus indicator. [Download Demo V
MetaTrader 5용 트레이딩 패널 — 차트와 키보드에서 실행하는 프로페셔널 원클릭 트레이딩 활동적인 트레이더를 위해 설계된 고급 Trading Panel로, MetaTrader 기본 인터페이스보다 훨씬 빠르고 직관적으로 포지션과 주문을 열고, 관리하고, 종료할 수 있습니다. 이 패널은 포지션 관리, 대기 주문 제어, 총수익 관리, 체결 속도를 하나의 전문적인 작업 공간에 통합하고 싶은 트레이더를 위한 솔루션입니다. 이것은 단순한 보조 유틸리티가 아닙니다. MetaTrader 5를 위한 진정한 trading cockpit입니다. 차트에서 직접 거래하고, 키보드로 빠르게 명령을 실행하며, 자동 계산과 시각적 가이드를 통해 수동 트레이딩을 더 빠르고, 더 명확하고, 더 편리하게 만들어 줍니다.  이 패널을 사용하면 차트에서 단 한 번의 클릭으로 거래를 실행할 수 있으며, 표준 MetaTrader 컨트롤보다 최대 30배 빠르게 거래 작업을 수행할 수 있습니다. 새로운 프리미엄 버전
Trade copier MT5
Alfiya Fazylova
4.6 (55)
Trade Copier는 거래 계정 간의 거래를 복사하고 동기화하도록 설계된 전문 유틸리티입니다. 복사는 공급자의 계정/단말기에서 동일한 컴퓨터 또는 vps에 설치된 수신자의 계정/단말기로 발생합니다. 프로모션 - 이미 "Trade copier MT5"를 구매하셨다면, "Trade copier MT4"를 무료로 받으실 수 있습니다 (MT4 → MT5 및 MT4 ← MT5 복사용). 조건에 대한 자세한 정보를 원하시면, 개인 메시지를 통해 저희에게 문의해 주시기 바랍니다! 구매하기 전에 데모 계정에서 데모 버전을 테스트할 수 있습니다. 데모 버전 여기 . 전체 지침 여기 . 주요 기능 및 이점: 복사기는 "МТ5> МТ5", "МТ4> МТ5", "МТ5> МТ4" 복사를 지원합니다. 복사기는 데모 계정 > 실 계정, 실 계정 > 데모 계정, 데모 계정 > 데모 계정 및 실제 계정 > 실 계정 복사를 지원합니다. 복사기는 읽기 전용 암호가 적용된 투자자 계정에서 복사를 지원합니다. 하
구매 후 저에게 메시지를 보내주시면 전체 매뉴얼 키트 + AI 기능을 테스트할 수 있는 3일간의 OpenAI API 체험 + 추가 보너스 선물을 제공해 드립니다 현재 가격은 8월 재출시 업데이트를 위한 기간 한정 할인 가격입니다 — 가격이 인상되기 전에 지금 에디션을 확보하세요. 다음 가격: $340 이것은 시장에서 지금까지 사용해 보았거나 본 어떤 트레이딩 패널과도 완전히 다릅니다. 현재 리테일 시장에서 이용할 수 있는 가장 혁신적인 AI 기반 트레이딩 패널 중 하나입니다. AI를 차트에 직접 연결한다고 상상해 보세요   — AI 추천, 계좌 감사, AI 트레이딩 신호 수신 및 클릭 한 번으로 실행. Telegram을 통해 스마트폰에서   전체 트레이딩 계좌를 관리한다고 상상해 보세요   — AI와 채팅하고, 즉각적인 알림을 받고, 거래를 관리하며 어디서든 계좌를 보호할 수 있습니다. 여러   EA를 실행하면서   각 EA의 성과를 개별적으로 모니터링하고, 거래를 관리하거나 특정
제작자의 제품 더 보기
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
677
개발자의 답변 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
리뷰 답변