RiskManagementEA

  • ユーティリティ
  • 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.
  • バージョン: 1.0
  • アクティベーション: 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*

おすすめのプロダクト
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
MQL5ブログ: https://www.mql5.com/en/blogs/post/761446 MT4版: https://www.mql5.com/en/market/product/136790 MT5版: https://www.mql5.com/en/market/product/136791 Time Wizardは、スピード、タイミング、そして執行コントロールを一つの洗練されたダッシュボードで実現したいトレーダーのために開発された、プロフェッショナルなトレーディングアシスタントです。 このエキスパートアドバイザーは、イベントベースのトレーディング、スケジュール執行、そして高速な半自動注文管理のために設計されています。注文を事前に準備し、正確な執行時間を設定し、複数の指値注文を発注し、ストップロスとテイクプロフィットでリスクを管理し、チャート上のコンパクトなインターフェースからすべてを監視できます。 経済イベント、セッション開始、ブレイクアウト、あるいは独自のカスタムスケジュールなど、どのようなタイミングで取引を行う場合でも、Time Wizardは構造と規律に
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
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
EA Monitor Dashboard
Geraldo Fabiano D Assuncao Braga
EA Monitor Dashboard MetaTrader 5 用モニタリングユーティリティパネル EA Monitor Dashboard は、MetaTrader 5 用に開発されたユーティリティインジケーターで、チャート上に運用情報を表示します。 パネルには以下の情報が表示されます: スプレッド監視 アクティブ時間足 ローソク足カウントダウンタイマー Magic Number 監視 オープンポジション状態 取引結果情報 パネルは更新された情報をチャート上に表示し、異なる位置に配置できます。 機能 スプレッド表示 ローソク足タイマー 時間足表示 Magic Number 監視 複数 Magic Number 対応 ポジション状態表示 日次・週次・月次・総合結果表示 色の調整 パネル位置調整 異なる銘柄と時間足に対応 複数 Magic Number 監視 このインジケーターは複数の Magic Number を同時に監視できます。 Magic Number はカンマ区切りで入力設定に追加できます。 例: 102,2656,256,252 表示情報 スプレッド 選択された表示モード
FREE
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 口座情報を含む、全時間足に対応したMT5からJSONへのデータブリッジ。 概要 BerelzBridge Proは、ライブ市場データをディスク上のJSONファイルにエクスポートするMT5インジケーターです。bid/ask価格、スプレッド、ティック出来高、日足統計、口座情報、および全9つの時間足のOHLCVバーを書き出します。ファイルは設定可能な間隔(デフォルトは2秒)で更新されます。 このインジケーターは、同じチャート上のエキスパートアドバイザーと競合することなく共存できます。DLL、WebRequest、その他の外部依存関係は使用しません。異なるチャートで複数のインスタンスを実行し、複数の銘柄のデータを同時にエクスポートできます。 エクスポートされるデータ 完全な桁精度でのBid/Ask価格 ポイント単位のスプレッド 現在のバーのティック出来高 日足の高値、安値、始値 M1、M5、M15、M30、H1、H4、D1、W1、MN1のOHLCVバー 時間足あたり最大500本のバー(設定可能) 口座データ:残高、有効証拠金、証拠金、有効証拠金残高、評価損益
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 - Local Trade Copier for MT5 and MT4            (  Local trade copier for MT4   https://www.mql5.com/ru/market/product/15992   ) Professional tool for copying trades between MT5 and MT4 accounts (via the shared "Common" folder). FEATURES: 1. SENDER: Exports trades in real-time Sends everything (no filters) Requires no additional settings 2. RECEIVER: Copies trades. Magic Number: Uses the sender's account ID (default) or a custom number. Lot Modes: Analogous: Exactly the same volume
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は、MetaTrader 5用の無料ユーティリティパネルです。ドラッグ&ドロップ可能なインターフェースで最大40個の取引シンボルを操作でき、各通貨ペアの損益をリアルタイムで表示するため、チャートから離れることなく常に現在の状況を把握できます。 概要 MetaTrader 5で複数のシンボルを管理する場合、通常はチャートウィンドウを切り替えたり、状況を把握できなかったり、時間を無駄にしたりします。Symbol Switcherは、チャート上に表示されるコンパクトでカスタマイズ可能なボタンパネルでこの問題を解決します。ワンクリックでアクティブなシンボルを切り替えることができ、各通貨ペアの損益をリアルタイムで表示します。パネルは必要な場所に正確に配置でき、見た目も思い通りにカスタマイズできます。 無料です。一切の制約はありません。 主な機能 最大40個のシンボル FXペア、貴金属、指数、その他の金融商品など、最大40個のシンボルを1つのパネルに追加できます。すべてのシンボルはユーザーが定義できるため、あらゆ
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 は、 MetaTrader 5 上でティックボリュームに基づいたチャートを作成するためのユニークなツールです。 Tick Volume Chart を使用すると、時間ではなく、指定したティック数ごとにローソク足が形成されるチャートを構築できます。これにより、標準的な時間足チャートでは得られない、市場活動の極めて正確な分析が可能になります。カスタムシンボルに対応したインジケーターやEA(自動売買プログラム)であれば、すべてご利用いただけます。作成したチャートは、標準チャートと同様に快適に操作できます。 標準ツールとは異なり、 Tick Volume Chart は時間間隔ではなく、実際の取引強度に基づいて市場を分析することを可能にします。 Tick Volume Chart の利点 各バーに 固定ティックボリューム を設定したチャートを作成可能。 内蔵ティックデータベースにより、履歴データの 高速な読み込み を実現。 リアルタイムデータが、 通常のチャートと同期し、遅延なく 更新されます。 複数の ティックボリュームチャートを同時に作成 することが可能
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
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 – MetaTrader 5用取引パネル EasyTradePadは 、手動および半自動取引のためのツールです。パネルでは、注文とポジションを迅速に管理できるほか、リスク管理の計算もワンクリックで行えます。 パネルの機能: 事前に定義されたリスク(%または預金通貨)で取引を開始および終了します SLとTPをポイント、パーセンテージ、または金額で設定します リスクと報酬の比率を自動計算 損切りを損益分岐点に移動する 部分的なポジションのクローズ トレーリングストップ(ポイントまたはローソク足の影による) ポジションの平均化とピラミッディング アクティブな取引のパラメータを変更する [   デモ ] [   説明 ] 追加機能: ピラミッド化 価格がテイクプロフィットに近づくにつれて、段階的に取引を追加します。新規取引ごとのリスクを軽減できます。追加する取引数は簡単に設定できます。 平均化 チャート上のカスタムレベルで追加注文を出すことができます。ポジションは平均エントリー価格で決済されます。 損益分岐点移転 価格が指定された利益幅に達した後、ストップロ
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
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)
自動ロット・リスク管理付きワンクリック取引パネル Quick Trade Panel Pro は、リスクを完全にコントロールしながら素早く注文を執行したいトレーダーのために設計された直感的な取引パネルです。 主な機能 利用可能証拠金の割合に基づいてロットサイズを自動計算 ポイント単位で設定可能なストップロス、各取引に自動適用 一連の取引中はロットサイズをロックし、一貫したポジションサイズを確保 スマートヘッジシステム ヘッジモードで既存取引と反対方向のポジションを開くことが可能 独立したヘッジ割合(50%、100%、200%以上) 方向ごとの取引制限で精密なコントロール 自動利益保護 Auto Secure :一定の利益に達するとストップロスを損益分岐点に移動 Trailing Stop :価格を追従して利益を保護しながら、勝ちトレードを伸ばす 両システムを併用して最適な保護が可能 モダンでシンプル、プロフェッショナルなインターフェース リアルタイム表示:最大ロット、最終ロット、ヘッジロット 制限に達するとBUY/SELLボタンが自動的に無効化 シンボルとマジックナンバーごとに
FREE
THIS PRODUCT CAN NOT BE TEST IN STRATEGY TESTER. PLEASE TRY DEMO VERSION: https://www.mql5.com/en/market/product/58096 RISK AND TRADE MANAGER RISK AND TRADE MANAGER   is an advanced trading panel designed for manual trading.   Utility helps to manage trades effectively and efficiently with a single click. MAIN FEATURES Convert and display Stop Loss (SL)   Pips into % and amount to view the clear picture of the trades if SL hits. Fund allocation for individual trade in % and in amount. Get alert
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (211)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
Quant AI Agents is NOT AN Expert Advisor. 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 unique data streams. Other brokers can only achieve trading performance equivalent to 60
TradePanel MT5
Alfiya Fazylova
4.87 (155)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 購入前に、デモアカウントでアプリのデモ版をテストすることができます。デモアカウント用のアプリの試用版をダウンロードするには、次のリンクをご利用ください: https://www.mql5.com/en/blogs/post/750865 。 完全な手順 こちら 。 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグループごとに閉じる。 ポジションの方向を反転(Buyを閉じてSellを開く、またはSellを閉じてBuyを開く)。 ポジションをブロックする(不足している量のポジションを開くことでBuyとSellのポジション量を等しくする)。 すべてのポジションを部分的にワンクリックで閉じる。 すべてのポジションの利食い(Take Profit)および損切り(Sto
ベータリリース Telegram to MT5 Signal Trader はまもなく正式なアルファ版をリリースします。いくつかの機能はまだ開発中で、小さな不具合に遭遇する可能性があります。問題が発生した場合はぜひご報告ください。皆さまのフィードバックがソフトウェア改善に役立ちます。 Telegram to MT5 Signal Trader は、 Telegram のチャンネルやグループからの取引シグナルを自動的に MetaTrader 5 にコピーする強力なツールです。 パブリックおよびプライベートの両方のチャネルに対応し、複数のシグナル提供元を複数のMT5口座に接続可能です。ソフトウェアは高速で安定し、すべての取引を細かく制御できます。 インターフェースは直感的で、ダッシュボードとチャートは見やすく設計されており、リアルタイムで動作状況をモニターできます。 必要環境 MQL の制限により、EA は Telegram と通信するためのデスクトップアプリが必要です。 インストーラーは公式の インストールガイド にあります。 主な機能 マルチプロバイダー: 複数の Telegram
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 - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
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
Premium Trade Manager - MetaTrader 5 向け迅速・規律ある取引管理ツール Premium Trade Manager は、決断に集中しながらパネルがルーティンを担ってくれることを求めるトレーダーのためのツールです。サイジング、発注、分割決済、トレール、ニュース対応、プロップファームの制限管理を、すべての取引で同じ規律ある方法で実行します。 MetaTrader 5 用の高速チャート内パネルで、毎回の取引における機械的な作業を一手に引き受けます。方向・銘柄・タイミングはあなたが決める。パネルはリスクに基づいてポジションサイズを計算し、ストップとターゲットを設定した状態で注文を出し、分割決済でスケールアウトし、残りをトレールします。ファンデッドトレーダーにはさらに一歩踏み込んだ機能があります。主要 9 社のプロップファームの実際のルールを内蔵し、各制限まで今どれだけの余裕があるかをリアルタイムで表示し、ハードリミットを超える注文をブロックします。 購入前に実際に触れて試せます。 インタラクティブなウォークスルーでは、ブラウザ上でライブパネルをそのまま操作で
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.91 (33)
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台のターミナル間で同時に動作できる、プロフェッ
EA を買う前に、本当に耐えられるのか、それともバックテストでたまたま良く見えただけなのかを確認してください。 ほとんどのロボットは、見栄えのするバックテストと一緒に売られています。 右肩上がりのカーブ。 良い Profit Factor。 ほとんど疑いのない見た目。 それでも、その多くの EA は、市場がその履歴どおりに動かなくなった瞬間に崩れ始めます。 なぜでしょうか。 それは、バックテストが証明するのは一つだけだからです。 その戦略が、ある特定の価格の流れでは機能したということです。 別の流れでも通用することは証明しません。 頑健であることも証明しません。 もちろん、その EA があなたのお金に値することも証明しません。 なぜなら、あなたが EA を買うのは過去のきれいなカーブを眺めるためではないからです。 変化する市場で使うために買うのです。 AntiOverfit PRO がすること AntiOverfit PRO は、MetaTrader 5 の Expert Advisor が本当にしっかりしているのか、それとも特定の過去データにたまたまうまくはまっているだけなのかを確
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. !!!!!it is not compatible with Cloud!!!! For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
MetaTrader 5 用トレーディングパネル — チャートとキーボードから行うプロフェッショナルなワンクリック取引 アクティブトレーダーのために設計された高機能 Trading Panel。標準の MetaTrader 操作よりも、はるかに速く、直感的に、そして効率的に取引を実行できます。 本パネルは、ポジション管理、未決注文管理、利益コントロール、執行スピードをひとつのプロフェッショナルなワークスペースに集約した実践的なソリューションです。 これは単なる補助ツールではありません。MetaTrader 5 のための本格的な trading cockpit です。チャートから直接操作し、キーボードで素早くコマンドを実行し、自動計算や視覚的なガイドを活用することで、手動トレードをより速く、より明確に、より快適にします。 このパネルを使えば、チャート上からワンクリックで注文を実行でき、標準の MetaTrader コントロールと比べて最大 30 倍速く取引操作を行うことができます。 MT4 バージョン | 完全説明 + DEMO + PDF | 購入方法 | インストール方法 | ログ
Custom Alerts AIO:マルチマーケット監視を一括で実現 — 設定不要ですぐに使えるインテリジェントツール 概要 Custom Alerts AIO は、追加のインジケーター設定が不要で、インストール後すぐに利用できる高機能マーケットスキャナーです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power を内部にすべて統合し、主要なすべての資産クラス(為替、金属、指数、暗号資産)を一括監視できます。MetaTrader の仕様により、株式は個別のシンボルとして追加可能ですが、一般的には利用頻度は低めです。 1. なぜ Custom Alerts AIO を選ぶべきか 追加ライセンス不要 • 必要なすべての Stein Investments インジケーターが内蔵されており、すぐに使用可能です。 • チャートに表示されるグラフィックは省略されており、アラート生成に特化した構成です。 市場を広範囲にカバー • 為替、金属、暗号資産、株価指数に対応(株式は手動追加可能)。 • シンボル名を入力する必要はなく、プロパティで資産クラス
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
Timeless Charts
Samuel Manoel De Souza
5 (5)
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
この製品は、ニュースタイム中にすべてのエキスパートアドバイザーと手動チャートをフィルタリングするため、急激な価格変動によるマニュアルトレードのセットアップの破壊や他のエキスパートアドバイザーによって入力された取引について心配する必要はありません。この製品には、ニュースのリリース前にオープンポジションとペンディングオーダーを処理できる完全な注文管理システムも付属しています。 The News Filter  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
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.
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
AlgoRadar
Stephen J Martret
5 (4)
AlgoRadar is an on-chart analytics dashboard for MT5 that aggregates Expert Advisor performance across multiple accounts, brokers, and platforms, including both MT4 and MT5 data, into a single live view on your MT5 chart. All analysis runs from the chart interface, with no external applications or manual report processing required. EA Analysis and Ranking For traders running multiple Expert Advisors, AlgoRadar provides a consolidated view of each EA's performance across accounts. Active EAs a
Anchor: The EA Manager Run your full EA portfolio without conflicts, without stacked risk, and without watching every chart yourself. Anchor coordinates up to 64 Expert Advisors on a single account so only one trades at a time. Attach Anchor to any chart. Type your EA names and magic numbers in one line. Anchor handles the rest. Built for portfolios. Built for discipline. Built for prop firms. The Problem Running multiple EAs on the same account creates risk. Two gold EAs can open opposite posit
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
TelegramからMT5へ: 究極のシグナルコピーソリューション Telegram to MT5 を使えば、取引がシンプルになります。DLL を必要とせず、Telegram のチャンネルやチャットから MetaTrader 5 プラットフォームに取引シグナルを直接コピーできる最新ツールです。この強力なソリューションは、正確なシグナル実行、豊富なカスタマイズオプション、時間の節約、そして効率性の向上を実現します。 [ Instructions and DEMO ] 主な特徴 直接的なTelegram API統合 電話番号とセキュアコードで認証します。 ユーザーフレンドリーな EXE ブリッジを通じてチャット ID を簡単に管理できます。 複数のチャネル/チャットを追加、削除、更新して、同時に信号をコピーします。 高度なフィルターによる信号解析 例外的な単語 (例: 「レポート」、「結果」) を含む不要な信号をスキップします。 柔軟な SL および TP 形式 (価格、ピップ、ポイント) をサポートします。 価格ではなくポイントを指定するシグナルのエントリ ポイントを自動的に計算します。
DrawDown Limiter
Haidar Lionel Haj Ali
5 (20)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
One button. One trade. MT5 Trading Deck is a hotkey trading panel for MetaTrader 5 that turns the platform into a keyboard-driven execution cockpit. Stop loss, take profit and lot size are pre-calculated for every key; the moment you press, a market order is live on the broker. A complete technical user manual is attached in the product Comments section. It documents every input parameter, the full hotkey map, the recommended Stream Deck XL layout, and the advanced workflows for Pre-Limit orders
Auto Trade Copier is designed to copy trades to multiple MT4, MT5 and cTrader accounts/terminals with 100% accuracy. The provider and receiver accounts must be on the same PC/VPS. With this tool, you can copy trades to receiver accounts on the same PC/VPS. All trading actions will be copied from provider to receiver perfectly. This version can be used on MT5 accounts only. For MT4 accounts, you must use Auto Trade Copier (for MT4). Reference: - For MT4 receiver, please download Trade Receiver Fr
SMC Trade Pilot MT5 Smart Money Conceptsトレーダー向けの半自動トレーディングアシスタント。チャートのスクリーンショット付きシグナルをTelegramで受け取り、ワンタップでトレードを発注。パソコンから離れていても、スマートフォンからポジションを管理できます。 解決する課題 Smart Moneyのセットアップはあなたを待ってくれません。Order BlocksやLiquidity Sweepsは、ロンドンオープン、ニューヨークオープン、またはアジアセッション中に形成されることが多く、あなたが仕事中、会議中、画面から離れているときに発生します。チャートを確認したときには、セットアップはすでに過ぎ去っています。 SMC Trade Pilotはあなたのスマートフォンをリアルタイムのトレーディングコックピットに変えます。アシスタントはSMCシグナルを求めて24時間チャートをスキャンします。セットアップが形成されると、完全なトレードチケットをTelegramチャットに送信します: チャートスクリーンショット、方向、エントリー価格、推奨ストップロス、推奨テ
Overview AlphaForge Range Chart is a professional non-trading range-bar charting utility for MetaTrader 5. It generates live Range charts as MT5 custom symbols, helping traders analyze price movement through fixed-range bars instead of standard time-based candles. Unlike visual-only overlays, the generated Range chart behaves like a real MT5 custom-symbol chart. This means you can open it as a normal chart, apply templates, draw analysis objects, and add indicators directly to the Range chart fo
作者のその他のプロダクト
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
フィルタ:
レビューなし
レビューに返信