RiskManagementEA

  • Utilità
  • Nguyen Huu Chung
    Nguyen Huu Chung
    1. Price Action Breakout
    Price Action Breakout V1 - Master the Fundamentals
    The essential foundation for price action trading. Version 1 delivers clean, straightforward breakout signals without complexity, perfect for traders who want to focus on pure market structure and momentum shifts.
  • Versione: 1.0
  • Attivazioni: 5
# Risk Management EA - User Manual

## 📖 Table of Contents
1. [Overview](#overview)
2. [Installation](#installation)
3. [Features](#features)
4. [Input Parameters](#input-parameters)
5. [User Interface](#user-interface)
6. [How to Use](#how-to-use)
7. [Advanced Features](#advanced-features)
8. [Troubleshooting](#troubleshooting)

---

## 🎯 Overview

**Risk Management EA** is a professional trading tool designed to help traders manage risk, split orders, and automate take profit settings. It provides a user-friendly interface for placing orders with precise risk control.

### Key Benefits:
- ✅ Automatic lot size calculation based on risk percentage
- ✅ Split orders with different take profit levels
- ✅ Auto TP distribution (50% at 1R, remaining at 2R, 4R, 6R...)
- ✅ Break Even functionality
- ✅ Support for Market and Pending orders (Limit/Stop)
- ✅ Visual UI panel with drag & drop

---

## 🔧 Installation

### Step 1: File Structure
Place the files in the correct folders:

```
MQL5/
├── Experts/
│   └── RiskManagementEA-English.ex5        ← Main EA file
└── Include/RiskManagementEA/
    ├── RiskManager-English.mqh              ← Risk management class
    ├── TradeManager-English.mqh             ← Trade management class
    └── UIPanel-English.mqh                  ← UI interface class
```

### Step 2: Compile
1. Open **MetaEditor** (F4 from MT5)
2. Open `RiskManagementEA-English.ex5`
3. Press **F7** or click **Compile** button
4. Check for errors in the **Errors** tab

### Step 3: Attach to Chart
1. Open MT5
2. Drag `RiskManagementEA` from **Navigator****Expert Advisors** to your chart
3. Enable **AutoTrading** (Ctrl+E or click icon)
4. The UI panel will appear on the chart

---

## ⚡ Features

### 1. **Risk Management**
- Set maximum total risk as percentage of account balance
- Define risk per position (% or fixed USD)
- Real-time risk monitoring
- Prevents over-risking

### 2. **Split Orders**
- Split one trade into multiple orders
- **Manual Mode**: Enter different SL for each split
- **Auto Mode**: Same SL for all splits
- Auto distribute TP levels across splits

### 3. **Auto Take Profit**
- Automatically calculate TP based on Risk-Reward ratios
- **For single orders**: Uses first R ratio (e.g., 1R)
- **For split orders**:
  - First half: 1R
  - Second order: 2R
  - Third order: 4R
  - Fourth order: 6R
  - And so on...

### 4. **Entry Price**
- **Entry = 0**: Place Market order immediately
- **Entry > 0**: Place Pending order (Limit/Stop)
  - Buy Limit if entry < current price
  - Buy Stop if entry > current price
  - Sell Limit if entry > current price
  - Sell Stop if entry < current price

### 5. **Break Even**
- Move SL to entry + specified pips
- Only affects orders of current symbol
- Safe confirmation dialog

### 6. **Close All**
- Close all orders of current symbol only
- Does not affect other symbols
- Safe confirmation dialog

---

## ⚙️ Input Parameters

### Risk Management
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `InpMaxRiskPercent` | double | 10.0 | Total maximum risk allowed (%) |

### Risk Per Position
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `InpRiskTypeInput` | int | 0 | 0 = Percent, 1 = Fixed USD |
| `InpRiskValue` | double | 1.0 | Risk value per trade |

**Example:**
- Type = 0, Value = 1.0 → Risk 1% per trade
- Type = 1, Value = 50 → Risk $50 per trade

### Split Orders
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `InpUseSplitOrder` | bool | false | Enable/disable split orders |
| `InpSplitModeInput` | int | 1 | 0 = Manual, 1 = Auto |
| `InpNumSplits` | int | 4 | Number of splits (2-10) |

### Take Profit
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `InpAutoTP` | bool | true | Auto calculate TP |
| `InpTPRatios` | string | "1,2,4,6,8" | R multiples for TP levels |

**How TP Ratios work:**
- `"1,2,4"` = TP at 1R, 2R, 4R
- For split orders, first half gets 1R, then 2R, 4R...

### Break Even
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `InpBEPips` | double | 5.0 | Additional pips when moving to BE |

---

## 🖥️ User Interface

### Panel Layout

```
┌─────────────────────────────┐
│  ≡ RISK MANAGER EA ≡        │ ← Header (drag to move)
├─────────────────────────────┤
│ ACCOUNT INFORMATION         │
│ Balance: $10,000.00         │
│ Equity: $10,150.00          │
│ Current Risk: 2.5% ($250)   │
│ Max Risk: 10.0% ($1000)     │
│ Available Risk: 7.5% ($750) │
├─────────────────────────────┤
│ ORDER INPUT                 │
│ Entry Price (0=Market):     │
│ [0.00000]                   │
│ Stop Loss:                  │
│ [1.08000]                   │
│ Take Profit:                │
│ [1.09000]                   │
│ Suggestions: 1R=1.09, 2R=... │
├─────────────────────────────┤
│ [   CALCULATE LOT SIZE   ]  │
│ [   BUY   ] [   SELL   ]    │
│ [ BE ALL  ] [ CLOSE ALL ]   │
├─────────────────────────────┤
│ Status: Ready...            │
└─────────────────────────────┘
```

### Color Codes
- **Green buttons**: Action buttons (Buy/Sell/Calculate)
- **Gold button**: Break Even (BE ALL)
- **Red button**: Close All orders
- **Green text**: Available risk (positive)
- **Red text**: No available risk (at limit)

---

## 📝 How to Use

### Basic Trading Workflow

#### 1. **Market Order (No Entry)**
```
1. Leave Entry Price = 0
2. Enter Stop Loss (e.g., 1.08000)
3. (Optional) Enter Take Profit or leave 0 for auto TP
4. Click BUY or SELL
```

**Result:**
- Order opens immediately at market price
- If Auto TP enabled: TP calculated automatically
- Lot size calculated based on risk settings

#### 2. **Pending Order (With Entry)**
```
1. Enter Entry Price (e.g., 1.08500)
2. Enter Stop Loss (e.g., 1.08000)
3. (Optional) Enter Take Profit
4. Click BUY or SELL
```

**Result:**
- Pending order placed at Entry price
- Type determined automatically (Limit/Stop)
- Activates when price reaches entry

#### 3. **Split Orders**
```
1. Enable: InpUseSplitOrder = true
2. Set: InpNumSplits = 4
3. Set: InpAutoTP = true
4. Enter Entry (or 0 for market)
5. Enter Stop Loss
6. Click BUY or SELL
```

**Result:**
- 4 orders placed with same SL
- TP distributed automatically:
  - Order 1-2: TP = 1R
  - Order 3: TP = 2R
  - Order 4: TP = 4R

#### 4. **Calculate Lot Size**
```
1. Enter Stop Loss
2. Click "CALCULATE LOT SIZE"
```

**Result:**
- Shows calculated lot size
- Shows SL in points
- Shows current price

#### 5. **Break Even**
```
1. Wait for trade to be in profit
2. Click "BE ALL" button
3. Confirm in dialog box
```

**Result:**
- All orders of current symbol move to BE + 5 pips
- Orders of other symbols unaffected
- Safe from reversal

#### 6. **Close All**
```
1. Click "CLOSE ALL" button
2. Confirm in dialog box
```

**Result:**
- All orders of current symbol closed
- Orders of other symbols remain open
- P&L realized

---

## 🎓 Advanced Features

### 1. **Custom TP Ratios**

Change `InpTPRatios` to customize TP levels:

```
"1,1.5,3" → TP at 1R, 1.5R, 3R
"2,4,6,8" → TP at 2R, 4R, 6R, 8R
```

### 2. **Manual Split Mode**

Set `InpSplitModeInput = 0` for manual control:
- Enter different SL for each split
- System calculates proportional lot sizes
- More flexible for complex strategies

### 3. **Fixed Risk in USD**

Set `InpRiskTypeInput = 1` and `InpRiskValue = 100`:
- Every trade risks exactly $100
- Independent of account balance
- Good for consistent risk management

### 4. **Multiple Symbols**

Run EA on multiple charts simultaneously:
- Each chart manages its own symbol
- Break Even affects only current chart symbol
- Close All affects only current chart symbol
- Total risk tracked across all symbols

### 5. **Drag & Drop UI**

Click and drag the **header** (blue bar) to move panel anywhere on chart.

---

## 🔍 Troubleshooting

### Problem: EA doesn't open orders

**Check:**
1. AutoTrading enabled (Ctrl+E)
2. Stop Loss entered correctly
3. Available risk > 0
4. Account has sufficient margin
5. Symbol is tradable

### Problem: "Maximum risk limit reached"

**Solution:**
- Close some existing positions
- Or increase `InpMaxRiskPercent`
- Or reduce `InpRiskValue`

### Problem: Split orders not working

**Check:**
1. `InpUseSplitOrder = true`
2. `InpNumSplits` between 2-10
3. `InpAutoTP = true` (for auto TP)
4. Check Experts log for errors

### Problem: Auto TP not filling

**Check:**
1. `InpAutoTP = true`
2. `InpTPRatios` has valid values
3. Leave TP input = 0 (or blank)
4. Split orders enabled for distribution

### Problem: Break Even doesn't work

**Possible causes:**
- Orders already at or past BE
- No orders for current symbol
- SL already better than BE level

### Problem: Lot size too small/large

**Adjust:**
- Reduce/increase `InpRiskValue`
- Check SL distance (larger SL = smaller lot)
- Verify account balance

---

## 📊 Example Scenarios

### Scenario 1: Conservative Trader
```
InpMaxRiskPercent = 5.0
InpRiskTypeInput = 0
InpRiskValue = 0.5
InpUseSplitOrder = false
InpAutoTP = true
InpTPRatios = "2"
```
**Result:** Risk 0.5% per trade, TP at 2R (1:2 R:R)

### Scenario 2: Aggressive Scalper
```
InpMaxRiskPercent = 15.0
InpRiskTypeInput = 0
InpRiskValue = 2.0
InpUseSplitOrder = false
InpAutoTP = true
InpTPRatios = "1"
```
**Result:** Risk 2% per trade, quick 1R targets

### Scenario 3: Professional with Scaling
```
InpMaxRiskPercent = 10.0
InpRiskTypeInput = 0
InpRiskValue = 1.0
InpUseSplitOrder = true
InpNumSplits = 4
InpAutoTP = true
InpTPRatios = "1,2,4,6"
```
**Result:**
- 1% total risk split into 4 orders
- 2 orders close at 1R (secure profit)
- 1 order at 2R
- 1 order at 4R (let winners run)

---

## 📞 Support

For questions or issues:
- Telegram: [@CodingforDummies911](https://t.me/CodingforDummies911)
- Check EA logs: Tools → Options → Expert Advisors → Enable logs

---

## ⚠️ Disclaimer

Trading forex and CFDs carries high risk. This EA is a tool to assist with risk management but does not guarantee profits. Use at your own risk. Always test on demo account first.

---

## 📄 Version History

**v1.00** (2025)
- Initial release
- Risk management system
- Split orders with auto TP
- Entry price support (Market/Limit/Stop)
- Break Even functionality
- Close All (symbol-specific)
- Draggable UI panel

---

*Last updated: January 2025*

Prodotti consigliati
EA Pause Manager
David Enrique Barrera Moncayo
4.33 (6)
EA Pause Manager — Your Smart Risk Guard & Scheduler (MT5) What It Does - Stops conflicting trades before they happen (based on active market positions).   - Pauses or resumes your EAs automatically based on:     - A simple “leader” rule: the first EA to trade becomes the leader and blocks the rest.     - A time schedule you set (e.g. no trading in Asian session). - Note : Interlock logic is triggered by executed market orders, not by pending orders (Buy Stop / Sell Stop). Why It Matters - Prot
Scale & Trail Trade Manager (MT5) Your all-in-one solution for   precision trade execution and management . With just two clicks, you can size, place, and manage trades effortlessly—no calculators, no guesswork, no stress. Workflow Click 1:   Set your entry — instantly snaps to the live market price. Move Mouse:   Preview your stop-loss and four profit targets (1R–4R) in real time. Click 2:   Lock it in — the tool sizes your trade to your exact dollar risk (e.g., $3350) and manages it automatica
Blog di MQL5: https://www.mql5.com/en/blogs/post/761446 Versione MT4: https://www.mql5.com/en/market/product/136790 Versione MT5: https://www.mql5.com/en/market/product/136791 Time Wizard è un assistente di trading professionale pensato per i trader che necessitano di velocità, tempismo e controllo dell'esecuzione in un'unica dashboard intuitiva. Questo Expert Advisor è progettato per il trading basato su eventi, l'esecuzione programmata e la gestione semiautomatica rapida degli ordini. Conse
Shortcuts MT5 Hotkeys Scalping
Pablo Filipe Soares De Almeida
5 (2)
https://www.mql5.com/en/blogs/post/768319 Comandi da Tastiera i - Pannello di Controllo EA. E - Assistente di Trading. B - Compra. S - Vendi. 1-2-3 - Compra (lotti personalizzabili) 4-5-6 - Vendi (lotti personalizzabili) L - Buy Limit. M - Sell Limit. U - Buy Stop. N - Sell Stop. Q - Rimuovi Stop Loss. W - Rimuovi Take Profit. C - Chiude tutte le posizioni aperte. X - Chiude una posizione specifica. Z - Annulla tutti gli ordini pendenti. T - Trailing stop. P - Parziale. K - Breakeven. O - Posi
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
Close All Pro MT5 – Fast PnL Control is a powerful trade manager MT5 utility that gives you total control over your trades. With a single click, you can close all MT5 orders, monitor real-time profit and loss, and manage your floating PnL directly from a clean on-chart panel. The tool is lightweight, responsive, and built to help traders save time, reduce emotional stress, and maintain focus. Whether you trade manually or through an EA, this MT5 profit panel provides the visibility and precisio
WASD Order
Rodrigo Lima
25R - WASD Order is a visual risk management EA for MetaTrader 5 that combines gaming-style WASD keyboard controls with interactive chart drawing for precise order placement. Designed for active traders who value speed and accuracy, it lets you visually plan trades by dragging entry and stop-loss lines directly on the chart, while automatically calculating position size based on your risk percentage. The tool displays color-coded profit/loss zones with real-time risk metrics, supports automatic
TradeDock Pro
Alex Michael Murray
TradeDock Pro (MT5) — One-Click Trade Manager Panel TradeDock Pro is a sleek and professional one-click trade panel for MetaTrader 5 designed for fast manual execution and simple trade management. Built for traders who want a clean interface, quick order placement, and essential management tools — without complicated settings or typing. Can be used on any market. KEY FEATURES One-Click BUY / SELL Lot size control on chart (0.01 – 99.99) SL toggle + SL in points TP toggle + TP in points Trailing
FREE
BerelzBridge
Barend Willem Van Den Berg
BerelzBridge Pro Bridge dati da MT5 a JSON per tutti i time frame con informazioni sul conto. Panoramica BerelzBridge Pro è un indicatore MT5 che esporta i dati di mercato in tempo reale in un file JSON su disco. Scrive prezzi bid e ask, spread, volume tick, statistiche giornaliere, informazioni sul conto e barre OHLCV per tutti i 9 time frame. Il file viene aggiornato a un intervallo configurabile con un default di 2 secondi. L'indicatore funziona insieme agli Expert Advisor sullo stesso grafi
This EA help traders close their open positions at a specific MT5 server time before news or before ending of H4 timeframe of the morning New York session to protect their profit or prevent from unexpected loss. The default setting is 19:30 (HH:MM) and you can adjust as require to fit trading strategies. It very user friendly where contain only single input parameter to specify a time that position will be closed.  
️ AutoProtect R13: Your Intelligent Trade Guardian Tired of manual management and emotional exits? AutoProtect R13 is a professional-grade utility designed to automate your risk management. This tool ensures your account stays protected 24/7. WHAT’S NEW IN V1.1 Optimized Execution: Faster processing for high-volatility market conditions. New User Interface: Professional GUI Dialog panel (replacing basic chart comments). Smart Break-Even+: Move Stop Loss to entry plus a small profit buffer
FREE
Clonify PRO MT5
Andrej Hermann
5 (1)
Clonify PRO - Copiatore locale di operazioni per MT5 e MT4            (  Local trade copier for MT4   https://www.mql5.com/ru/market/product/15992   ) Strumento professionale per copiare operazioni tra account MT5 e MT4 (tramite la cartella condivisa "Common"). FUNZIONI: 1. MITTENTE (Sender): Esporta operazioni in tempo reale Invia tutto (senza filtri) Non richiede impostazioni aggiuntive 2. RICEVITORE (Receiver): Copia operazioni. Magic Number: Utilizza l'ID dell'account del mittente (predefini
Video Explanation on YouTube: https://youtu.be/OJXERVs405g Keyboard Scalper Pro – Tool Explanation Keyboard Scalper Pro is a manual scalping tool designed to execute and manage trades entirely via keyboard hotkeys , allowing for fast, precise, and distraction-free trading . The tool does not automate trading decisions . All actions are triggered manually by the trader using predefined keys. Hotkey Functions Explained W – Buy Market Opens a market buy position instantly on the current symbol usi
Boleta de negociação, adiciona automáticamente as ordens Take Profit e Stop Loss quando excutada uma ordem de compra ou venda. Ao apertar as teclas de atalho (A, D, ou TAB), serão inseridas duas linhas de pre-visualização, representando as futuras ordens de take profit (azul) e stop loss (vermelho), as quais irão manter o distanciamento especificado pelo usuário. Ditas ordens só serão adicionadas ao ser executada a ordem inicial. Ao operar a mercado, as ordens pendentes de take profit, e stop lo
Symbol Switcher Pro Symbol Switcher Pro è un pannello di utilità gratuito per MetaTrader 5 che consente di gestire fino a 40 simboli di trading da un'unica interfaccia trascinabile, con visualizzazione in tempo reale del profitto e della perdita per ogni coppia di valute, così da sapere sempre qual è la situazione senza dover uscire dal grafico. Panoramica Gestire più simboli in MetaTrader 5 significa solitamente passare da una finestra del grafico all'altra, perdendo il contesto e sprecando t
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
Tick Volume Chart - uno strumento unico per la creazione di grafici basati sui volumi di tick in MetaTrader 5 . Con Tick Volume Chart puoi costruire grafici in cui ogni candela si forma non in base al tempo, ma in base a un numero prestabilito di tick. Questo ti offre una precisione ideale nell'analisi dell'attività di mercato, irraggiungibile con i grafici temporali standard. Puoi utilizzare qualsiasi indicatore e Expert Advisor con supporto per simboli personalizzati. Lavorare con i grafici ot
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
Boleta Easy Trade
Silvio Garcia Wohl
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
Auto Position Manager is a unique services application of its kind across the entire MQL5 market, setting new standards for applications of this type. The Services app is a compact but powerful tool that significantly impacts the entire system. Its user-friendly interface and start-stop system make it excellent for automating repetitive tasks. Once it's set up, the service can be toggled on or off with a single click. Crucially, the configuration persists even if the platform is turned off and
FREE
Price Action Builder Premium
Florea E. Sorin-Mihai Persoana Fizica Autorizata
The Price Action Builder Premium expert advisor is an extension of the freely available Price Action Builder Basic :     it provides 2 new candlestick patterns besides the pinbar (already available in the basic edition);     in most configurations, backtesting usually shows an average yearly return rate increased by approximately 50%;     the account growth curve is also smoother, due to larger number of trades, almost double (2x) compared to the free version. While aimed primarily at obtaining
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.
MT5 Trades To Telegram
Mohammad Taher Halimi Tabrizi
The Trades To Telegram is a powerful and customizable trading assistant designed to bridge the gap between the MetaTrader 5 platform and the popular messaging app, Telegram. This bot serves as a crucial tool for traders, providing them with timely and accurate trading signals, alerts, and updates directly to their Telegram accounts. Key Features: Real-Time Signals: The bot monitors the MetaTrader 5 platform continuously, detecting trading signals, such as Opening/Closing of  buy/sell orders , a
EasyTradePad for MT5
Sergey Batudayev
5 (5)
EasyTradePad – Pannello di trading per MetaTrader 5 EasyTradePad   è uno strumento per il trading manuale e semi-automatico. Il pannello consente una rapida gestione di ordini e posizioni, nonché calcoli di gestione del rischio con un solo clic. Caratteristiche del pannello: Apri e chiudi le negoziazioni con rischio predefinito (% o valuta di deposito) Imposta SL e TP in punti, percentuali o valori monetari Calcola automaticamente il rapporto rischio/rendimento Sposta lo stop loss al pareggio C
️ UMNi-CMND MT5 Remote Command & Trade Control System UMNi-CMND turns Telegram into a full remote control panel for your MetaTrader terminal. Send commands from your phone to open trades, manage positions, query account status, and receive complete trade telemetry — all without touching the platform. KEY FEATURES Full remote trade execution via Telegram Open, close, and manage positions by command Move SL/TP, set breakeven, partial close Live status, account, and position
Format Charts
Vital H B Engenharia Ltda
5 (1)
If you use several charts open at the same time, you know how boring it is to apply formats to each chart individually. This script can change all open charts using a single command. Parameters: 1 - Choose symbol to put on charts: apply the selected symbol to all charts. If "current", it does not change the symbol; 2 - Choose timeframe or leave empty: apply the selected timeframe to all charts. If "CURRENT", it does not change the timeframe; 3 - Apply template to the charts: If true, apply the t
FREE
Rosy Pro Panel MT5
Theresia Yovitha Herwanda
5 (1)
Download DEMO here  https://www.mql5.com/en/blogs/post/759772 An ultimate panel you've never seen before.  Compact and nice Trade panel with large Total P/L and it's percentage display. Groups for trades summary available: Ticket, Symbol, Type, Category, and Magic. Average price field helps you know your trading average price and direction. Set magic and comment of your trading in a very easy way. Group closing by symbol, type, category or magic - only by one click. Close All button for a quick
Trade Manager JM
Jonathan Ferreira De Magalhaes
Efficient Manual Trading Panel for Professional Traders === TRADING SESSIONS DISPLAY & BAR TIMER INCLUDED === Trade Manager JM is a comprehensive, intuitive utility designed to revolutionize manual order execution and management on MetaTrader 5. Built for speed and precision, this panel consolidates everything a serious manual trader needs into a single, sleek interface. Stop wasting precious seconds calculating lot sizes or manually setting SL/TP levels. Trade Manager JM allows you to focus pur
BreakEven ProSync
Rosen Kanev Kanev
5 (1)
For DEMO - please contact me and I will send you demo version to test the product. BreakEven ProSync – Advanced Trade Management Tool for MetaTrader 5 Overview The  BreakEven ProSync  is a powerful utility designed to enhance trade management in   MetaTrader 5 . It provides   one-click break-even functionality ,   hotkey trading ,   position synchronization , and   visual SL/TP tracking —all in a single, user-friendly tool. Perfect for manual traders who want   faster execution   and   better r
Quick Trade Panel Pro
Nicolas Olivier Menetrey
5 (1)
Pannello di trading one-click con gestione automatica del lotto e del rischio Quick Trade Panel Pro è un pannello di trading intuitivo progettato per i trader che vogliono eseguire ordini rapidamente mantenendo il pieno controllo sul rischio. Funzionalità principali Calcolo automatico della dimensione del lotto basato su una percentuale del margine disponibile Stop Loss configurabile in punti, applicato automaticamente a ogni trade Dimensione del lotto bloccata durante una serie di trade per ga
FREE
Gli utenti di questo prodotto hanno anche acquistato
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (211)
It helps to calculate the risk per trade, the easy installation of a new order, order management with partial closing functions, trailing stop of 7 types and other useful functions. Additional materials and instructions Installation instructions - Application instructions - Trial version of the application for a demo account Line function -   shows on the chart the Opening line, Stop Loss, Take Profit. With this function it is easy to set a new order and see its additional characteristics bef
Forex Trade Manager MT5
InvestSoft
4.98 (659)
Benvenuto a Trade Manager EA, lo strumento definitivo per la gestione del rischio , progettato per rendere il trading più intuitivo, preciso ed efficiente. Non è solo uno strumento per l'esecuzione degli ordini, ma una soluzione completa per la pianificazione delle operazioni, la gestione delle posizioni e il controllo del rischio. Che tu sia un principiante, un trader avanzato o uno scalper che necessita di esecuzioni rapide, Trade Manager EA si adatta alle tue esigenze, offrendo flessibilità s
AI Agent Supervisor is NOT an Expert Advisor. AI Agent Supervisor   is a   multi-agent AI risk & portfolio supervisor   that watches every EA on your account and intervenes in real time.  WANT AN AI PORTFOLIO MANAGER WATCHING YOUR FLEET 24/7?   Run your fleet on the same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating unique data streams. The Supervisor r
Versione Beta Telegram to MT5 Signal Trader è quasi pronto per il rilascio ufficiale in versione alpha. Alcune funzionalità sono ancora in fase di sviluppo e potresti riscontrare piccoli bug. Se riscontri problemi, ti preghiamo di segnalarli, il tuo feedback aiuta a migliorare il software per tutti. Telegram to MT5 Signal Trader è uno strumento potente che copia automaticamente segnali di trading da canali o gruppi Telegram al tuo account MetaTrader 5 . Supporta canali pubblici e privati e cons
TradePanel MT5
Alfiya Fazylova
4.87 (156)
Trade Panel è un assistente commerciale multifunzionale. L'applicazione contiene più di 50 funzioni di trading per il trading manuale e permette di automatizzare la maggior parte delle attività commerciali. Prima dell'acquisto, è possibile testare la versione dimostrativa su un conto demo. Scaricare la versione di prova dell'applicazione per un account dimostrativo: https://www.mql5.com/it/blogs/post/762419 . Istruzioni complete qui . Commercio. Consente di effettuare operazioni di trading con u
Quant AI Agents are independent trading Expert Advisors. Instead of trading using a fixed strategy like other conventional EAs, Quant AI Agents   is a   multi-agent AI trading framework   that turns natural-language strategy prompts into live.  WANT THE SAME RESULTS AS MY LIVE SIGNAL?   Use the exact same brokers I do:   IC MARKETS , IC TRADING   .  Unlike the centralized stock market, Forex has no single, unified price feed.  Every broker sources liquidity from different providers, creating un
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.91 (33)
Copiatore professionale di trade per MetaTrader 5 Un copiatore di trade veloce, professionale e affidabile per MetaTrader . COPYLOT consente di copiare operazioni Forex tra terminali MT4 e MT5 con supporto per conti Hedge e Netting . La versione MT5 di COPYLOT supporta: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting Versione MT4 Descrizione completa + DEMO + PDF Come acquistare Come installare Come ot
AntiOverfit PRO MT5
Enrique Enguix
5 (6)
Prima di comprare un EA, verifica se regge davvero oppure se in backtest è sembrato forte solo per fortuna. La maggior parte dei robot viene venduta con un backtest bello da vedere. Curva in crescita. Buon profit factor. Pochi dubbi. Eppure molti di questi EA crollano non appena il mercato smette di muoversi come in quello storico. Perché? Perché un backtest dimostra una cosa sola: che quella strategia ha funzionato su un percorso di prezzo ben preciso. Non dimostra che reggerà su percorsi diver
FarmedHedge Pair Trading Dashboard
Tanapisit Tepawarapruek
5 (3)
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) MULTI-ASSET SUPPORT Trade any asset available on your broker - Forex: Major, Minor, Exotic pairs - Crypto: BTC, ETH, XRP, SOL, BNB - Stocks: Apple, Tesla, Amazon, Google, etc. - Commodities: Gold, Silver, Oil, Gas - Indices: US30, NAS100, SPX500, DAX40 - Any CFD your broker offers VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https:/
Power Candles Strategy Scanner - Strumento di ricerca configurazioni multi-simbolo con ottimizzazione automatica Power Candles Strategy Scanner utilizza lo stesso motore di auto-ottimizzazione che alimenta l'indicatore Power Candles, applicandolo a tutti i simboli presenti nel tuo Market Watch, uno accanto all'altro. Un unico pannello ti indica quali simboli sono statisticamente negoziabili in questo momento, quale strategia è vincente su ciascuno di essi, la coppia ottimale di Stop Loss / Take
Premium Trade Manager - Gestione dei trade rapida e disciplinata per MetaTrader 5 Premium Trade Manager è per i trader che vogliono tenere il focus sulla decisione mentre il pannello gestisce la routine: dimensionamento, piazzamento, parziali, trailing, news e limiti prop-firm, gestiti con la stessa disciplina su ogni trade. È un pannello rapido sul grafico per MetaTrader 5 che si occupa di tutto il lavoro meccanico in ogni trade. Decidi tu direzione, simbolo e momento; il pannello calcola la di
The News Filter MT5
Leolouiski Gan
4.77 (22)
Questo prodotto filtra tutti gli esperti consulenti e i grafici manuali durante il periodo delle notizie, così non dovrai preoccuparti di improvvisi picchi di prezzo che potrebbero distruggere le tue impostazioni di trading manuali o le negoziazioni effettuate da altri esperti consulenti. Questo prodotto viene fornito anche con un sistema completo di gestione degli ordini che può gestire le tue posizioni aperte e gli ordini in sospeso prima della pubblicazione di qualsiasi notizia. Una volta che
Timeless Charts
Samuel Manoel De Souza
5 (6)
Timeless Charts è un'utilità di trading completa progettata per trader professionisti. Combina tipi di grafici personalizzati come Grafici a Secondi e Renko con analisi avanzata del flusso ordini tramite Footprints , Clusters , Profili di Volume , studi VWAP e strumenti di analisi ancorata per una visione più approfondita del mercato. Il trading e la gestione delle posizioni vengono eseguiti direttamente dal grafico tramite un pannello integrato di gestione delle operazioni , mentre Market Repla
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Telegram To MT5 Receiver
Levi Dane Benjamin
4.31 (16)
Copia i segnali da qualsiasi canale di cui sei membro (compresi quelli privati e ristretti) direttamente sul tuo MT5.  Questo strumento è stato progettato con l'utente in mente offrendo molte funzionalità necessarie per gestire e monitorare gli scambi. Questo prodotto è presentato in un'interfaccia grafica facile da usare e visivamente accattivante. Personalizza le tue impostazioni e inizia ad utilizzare il prodotto in pochi minuti! Guida per l'utente + Demo  | Versione MT4 | Versione Discord
Telegram to mt5 pro
Janet Abu Khalil
3.67 (3)
Telegram to MT5 Pro — Advanced Telegram Signal Copier with Auto-Fix, Multi-TP, Risk Control and Full Trade Management Telegram to MT5 Pro — Copiatore di segnali Telegram professionale Telegram to MT5 Pro è un copiatore di trading ad alte prestazioni che esegue automaticamente i segnali da Telegram direttamente nel tuo account MetaTrader 5, con pieno controllo su rischio, esecuzione e gestione del trading. Il sistema è composto da due componenti: • L’Expert Advisor (EA) che gira all’interno di M
MT5 to Telegram Signal Provider è un'utilità facile da usare e completamente personalizzabile che consente l'invio di segnali specificati a una chat, canale o gruppo Telegram, rendendo il tuo account un fornitore di segnali. A differenza della maggior parte dei prodotti concorrenti, non utilizza importazioni DLL. [ Dimostrativo ] [ Manuale ] [ Versione MT4 ] [ Versione Discord ] [ Canale Telegram ]  New: [ Telegram To MT5 ] Configurazione Una guida utente passo-passo è disponibile. Nessuna cono
Prop Firm Os
Gayathiri Gopalakrishnan
5 (1)
PROP FIRM OS Structured Trading Assistant for MetaTrader 5 PROP FIRM OS is a structured trading assistant designed for MetaTrader 5 users who prefer rule-based market analysis and organized trading workflows. The Expert Advisor combines market analysis tools, scanner functions, dashboard monitoring, alerts, risk-control settings, and trade management features inside one system. PROP FIRM OS is designed to help traders follow selected rules, filters, and monitoring conditions during trading activ
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
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
ManHedger MT5
Peter Mueller
4.83 (6)
THIS EA IS A SEMI-AUTO EA, IT NEEDS USER INPUT. Manual & Test Version Please TEST this product before BUYING  and watch my video about it. The price of the ManHedger will increase to 250$ after 20 copies sold. Contact me for user support or bug reports or if you want the MT4 version! MT4 Version  I do not guarantee any profits or financial success using this EA. With this Expert Advisor, you can: Implement your own Zone Recovery strategy to capitalize on trending markets. Create Grid trading s
SMC Trade Pilot MT5 Assistente di trading semi-automatico per trader Smart Money Concepts. Ricevi segnali su Telegram con screenshot del grafico, poi piazza il trade con un singolo tap. Gestisci le tue posizioni dal telefono, anche lontano dal computer. Il problema che risolve I setup Smart Money non aspettano. Order Blocks e Liquidity Sweeps si formano durante l'apertura di Londra, di New York o nel mezzo della sessione asiatica, spesso quando sei al lavoro, in riunione o lontano dallo schermo.
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
Anchor Trade Manager
Kalinskie Gilliam
5 (2)
Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Click OK. Anchor begins coordinating immediately. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite positions
Telegram to MT5 Coppy
Sergey Batudayev
5 (9)
Da Telegram a MT5:   la soluzione definitiva per la copia del segnale Semplifica il tuo trading con Telegram su MT5, il moderno strumento che copia i segnali di trading direttamente dai canali e dalle chat di Telegram sulla tua piattaforma MetaTrader 5, senza bisogno di DLL. Questa potente soluzione garantisce un'esecuzione precisa dei segnali, ampie opzioni di personalizzazione, fa risparmiare tempo e aumenta la tua efficienza. [ Instructions and DEMO ] Caratteristiche principali Integrazione d
Trade Assistant 38 in 1
Makarii Gubaydullin
4.91 (23)
Strumento multifunzionale: Calcolatore di Lotto, Ordini Grid, Rapporto R/R, Gestore di Trade, Zone di Domanda e Offerta, Price Action e molto altro Versione Demo   |   Manuale Utente L'Assistente di Trading   non funziona nel tester di strategie : puoi scaricare la   Versione Demo QUI  per testare l' utilità . Contattami   per qualsiasi domanda  / idee di miglioramento / in caso di bug riscontrato Se hai bisogno di una versione MT4, è disponibile qui Semplifica, accelera e automatizza il tuo  
Signal Trading View to MT5 Pro
Mirel Daniel Gheonu
4 (1)
Signal TradingView to MT5 Pro Automator Esecuzione professionale istantanea tra TradingView e MetaTrader 5 Automatizza la tua strategia di trading con il ponte di comunicazione più robusto tra gli alert di TradingView e l'esecuzione reale in MT5. Progettato per i trader che richiedono velocità, flessibilità e una gestione del rischio impeccabile, questo Expert Advisor trasforma qualsiasi messaggio di avviso in un preciso ordine a mercato o limite. PUNTI DI FORZA E VANTAGGI Motore di Parsing Univ
Poc Breakout Signal: The Ultimate Institutional Order Flow & Price Action System Elevate your trading with Poc Breakout, a comprehensive technical analysis tool designed to bridge the gap between retail trading and institutional market understanding. This all-in-one system combines powerful Buy/Sell signals, advanced Volume Profile analysis, real-time Order Flow (Depth of Market), and critical macroeconomic data to give you a clear, unambiguous edge in the markets. Poc Breakout Signal decodes c
Trade Manager DaneTrades
Levi Dane Benjamin
4.28 (29)
Trade Manager per aiutarti a entrare e uscire rapidamente dalle operazioni calcolando automaticamente il tuo rischio. Incluse funzionalità che ti aiutano a prevenire l'eccessivo trading, il vendetta trading e il trading emotivo. Le operazioni possono essere gestite automaticamente e i parametri di performance del conto possono essere visualizzati in un grafico. Queste caratteristiche rendono questo pannello ideale per tutti i trader manuali e aiuta a migliorare la piattaforma MetaTrader 5. Suppo
Take a Break MT5
Eric Emmrich
4.75 (24)
News filter, equity guard & session control for all your EAs — one tool, full protection — free demo available Take a Break has evolved from a basic news filter into a comprehensive account protection solution . It pauses your other Expert Advisors during news events or based on custom filters. When trading resumes, it automatically restores your entire chart setup , including all EA settings. New in v10: an integrated AI Trade Assessment evaluates each new trade entry directly on your chart — a
Altri dall’autore
Volume indicator judging level of volume per bar accordingly to Volume Spread Analysis rules. It allows either to set static volume levels or dynamic ones based on ratio comparable to Moving Average. Bars are coloured based on ratio or static levels, visually presenting level of Volume (low, average, high, ultra high). Release Notes - Fixed and optimised calculations of Session Average Volume - added predefined settings for time to calculate Session Average for EU and US markets
FREE
Introducing the Machine Learning Price Target Predictions, a cutting-edge trading tool that leverages kernel regression to provide accurate price targets and enhance your trading strategy. This indicator combines trend-based signals with advanced machine learning techniques, offering predictive insights into potential price movements. Perfect for traders looking to make data-driven decisions with confidence. What is Kernel Regression and How It Works Kernel regression is a non-parametric mach
The   Volume SuperTrend AI   is an advanced technical indicator used to predict trends in price movements by utilizing a combination of traditional SuperTrend calculation and AI techniques, particularly the k-nearest neighbors (KNN) algorithm. The Volume SuperTrend AI is designed to provide traders with insights into potential market trends, using both volume-weighted moving averages (VWMA) and the k-nearest neighbors (KNN) algorithm. By combining these approaches, the indicator aims to offer
Filtro:
Nessuna recensione
Rispondi alla recensione