BerelzBridge

  • Utilities
  • Barend Willem Van Den Berg
    Barend Willem Van Den Berg
    "Disciplined trader with a background in education management and assessment. Now fully dedicated to systematic trading during my pension. I leverage my experience in structured evaluation to test and optimize trading strategies. My current focus is on integrating Artificial Intelligence (AI) tools
  • Version: 2.0
  • Updated: 21 February 2026
  • Activations: 5

BerelzBridge Pro

Read also comment sectie above for more.

MT5-to-JSON data bridge for all timeframes with account information.

Overview

BerelzBridge Pro is an MT5 indicator that exports live market data to a JSON file on disk. It writes bid and ask prices, spread, tick volume, daily statistics, account information and OHLCV bars for all 9 timeframes. The file is updated at a configurable interval with a default of 2 seconds.

The indicator runs alongside Expert Advisors on the same chart without conflict. It does not use DLLs, WebRequest or any external dependencies. Multiple instances can be run on different charts to export data for several instruments at the same time.

What It Exports

  • Bid and Ask prices with full digit precision
  • Spread in points
  • Tick volume for the current bar
  • Daily high, low and open
  • OHLCV bars for M1, M5, M15, M30, H1, H4, D1, W1 and MN1
  • Up to 500 bars per timeframe, configurable
  • Account data: balance, equity, margin, free margin, floating profit, leverage and currency
  • Broker data: company name and server name

How It Works

  1. Drag BerelzBridge Pro onto any chart in MetaTrader 5.
  2. The indicator writes a JSON file to the MQL5/Files/ folder at the configured interval.
  3. Read the JSON file from any external application.

Output file: symbol_stream.json (for example xaueur_stream.json).

Location: MQL5/Files/.

Output Format

The exported JSON file contains the following fields:

{ "symbol": "XAUEUR", "updated": "2025-01-15 14:32:07", "version": "pro", "platform": "MetaTrader 5", "bid": 1923.45, "ask": 1923.67, "spread": 22, "tick_volume": 14, "daily_high": 1931.20, "daily_low": 1910.85, "daily_open": 1915.30, "bars_m5": [ {"time": "2025-01-15 14:25:00", "o": 1921.10, "h": 1923.80, "l": 1920.50, "c": 1923.45, "v": 312}, {"time": "2025-01-15 14:30:00", "o": 1923.45, "h": 1924.10, "l": 1922.90, "c": 1923.67, "v": 198} ], "account": { "balance": 10000.00, "equity": 10234.50, "margin": 500.00, "free_margin": 9734.50, "profit": 234.50, "leverage": 100, "currency": "USD" }, "broker": { "name": "Broker Name Ltd", "server": "BrokerName-Live" }, "_end": true }

Bars are ordered oldest to newest. The spread field is in broker points. Each enabled timeframe adds its own bars array: bars_m1, bars_m5, bars_m15, bars_m30, bars_h1, bars_h4, bars_d1, bars_w1, bars_mn1.

The daily_high, daily_low and daily_open fields are present only when InpExportDailyStats is enabled. The daily_open field may be absent on the first export after the indicator is attached, until the daily bar history is available.

The _end field is always the last field in the file. External applications can check for its presence to confirm that the file was fully written and is not truncated.

Use Cases

  • Read live prices and account data from Python, Node.js or any programming language
  • Build custom dashboards that display price, equity and margin information
  • Log price history to a database for research purposes
  • Create alert systems that monitor price levels or spread changes
  • Calculate position sizes based on current balance and risk parameters
  • Monitor margin usage and equity changes in external applications
  • Feed multi-timeframe OHLCV data into pattern analysis applications

Input Parameters

  • InpSymbol - symbol to stream (leave empty for current chart symbol)
  • InpUpdateSeconds - export interval in seconds (default: 2)
  • InpBarsCount - number of bars per timeframe (default: 500)
  • InpExportM1 through InpExportMN1 - enable or disable each timeframe individually
  • InpExportAccount - export account information (default: on)
  • InpExportBroker - export broker information (default: on)
  • InpExportDailyStats - export daily high, low and open (default: on)

Installation

  1. Purchase and download from MQL5 Market.
  2. The indicator appears in Navigator under Indicators and Market.
  3. Drag BerelzBridge Pro onto any chart.
  4. Configure timeframes and data options, then click OK.
  5. The JSON file appears in the MQL5/Files/ folder.

Dashboard Template included

A free open-source dashboard template is available on GitHub. It reads the BerelzBridge JSON output and displays price, account metrics and technical data. Request the repository link in the product comments section.

Code Examples

Read exported data (Python):

import json, time while True: with open("path/to/MQL5/Files/xaueur_stream.json") as f: data = json.load(f) print(f"Bid: {data['bid']} Ask: {data['ask']} Spread: {data['spread']}") print(f"Equity: {data['account']['equity']} Margin: {data['account']['margin']}") time.sleep(2)

Calculate a moving average from OHLCV bars:

import json with open("path/to/MQL5/Files/xaueur_stream.json") as f: data = json.load(f) bars = data["bars_m5"] average = sum(b["c"] for b in bars[-20:]) / 20 print(f"20-bar average close: {average:.2f}")

Calculate position size from account data:

equity = data["account"]["equity"] risk_fraction = 0.02 stop_loss_points = 150 point_value = 1.0 risk_amount = equity * risk_fraction position_size = risk_amount / (stop_loss_points * point_value) print(f"Position size: {position_size:.2f}")

Requirements

  • MetaTrader 5
  • Compatible with any broker and any instrument
  • Runs on Windows, macOS (via Wine) and Linux

Disclaimer

Berelz Capital Engineering is a private project and not a registered company. All products are provided as-is without any guarantee or warranty. Use at your own discretion.

Recommended products
DR Trade and Risk Manager: The Foundational Algorithmic Risk Console for MT5 For the discretionary trader, the greatest adversary is not the market; it is the undisciplined self. You have a solid strategy, but in moments of high pressure, do you follow your rules with perfect consistency? Do you cut losses without hesitation? Do you let winners run without cutting them short out of fear? For most, the answer is no. This gap between strategy and execution is where profits are lost. DR Trade and R
HedgeSafe Trade Assistant A risk-first manual trading panel for MetaTrader 5. HedgeSafe helps you prepare, validate and manage a trade directly on the chart before you press BUY or SELL. HedgeSafe is not a signal service, market predictor, AI bot or automatic strategy. It does not choose trade direction and does not promise profit. You remain in control of every trading decision. Main capabilities Lot calculation from a percentage of account balance or a fixed amount in account currency. Stop Lo
BTC Trading Assistant EA (MT5) Manual trading assistant that helps place and manage trades with automated risk and stop management. Overview BTC Trading Assistant EA is a utility Expert Advisor for MetaTrader 5 intended for manual traders. It provides a chart interface to execute BUY/SELL/CLOSE actions and automates selected trade management functions such as position sizing, initial SL/TP placement, break-even, trailing stop and optional partial profit taking. This EA does not generate trade si
King ElChart Manual Trade Panel
Mohammed Maher Al-sayed Mohammed Ahmed Saleh
King Chart – Manual Trading Panel for MetaTrader 5 Overview King Chart is a simple yet powerful manual trading panel built for traders who want speed, precision, and clarity. It enables quick order execution, clear lot control, and real-time account monitoring  all directly on your MT5 chart. Main Features Multi-Lot Trade Execution 3 Buy and 3 Sell buttons for instant execution Each button is tied to a custom lot size field Designed for flexible scaling in or out of trades Position Management D
Easy Trade Executor is a tool for fast position sizing, trade execution, and trade management in MT5. Place Open Price, Stop Loss, and Take Profit levels directly on the chart, get automatic position size calculations, and open trades with controlled risk in just a few clicks. Why Easy Trade Executor? Easy Trade Executor is designed for traders who want more than just risk calculations — they want to manage trades quickly and efficiently directly from the chart. The tool combines position sizi
Trade Analyzer Panel is a real-time dashboard utility for MetaTrader 5. It brings position monitoring, risk analysis, profit/loss simulation, target planning, break-even visualization and quick-close controls into a single scrollable on-chart panel. Features Position scanner: lists every open position with symbol, direction, lot size, open price and live profit/loss. Account summary: balance, equity, used and free margin, and margin level updated in real time. Break-even visualization: draws a l
Expert TP SL v04
Mikhail Ostashov
Expert TP SL v04 - Professional Trading Assistant with AI Motivation System Advanced manual trading tool with automatic risk management, overtrading protection, and intelligent psychological support for disciplined trading. PRODUCT OVERVIEW Expert TP SL v04 is a comprehensive trading assistant designed for manual traders who want to maintain emotional discipline while automating risk calculations. This isn't just another order placement tool - it's a complete trading psychology system that pr
TradeControl Pro – Advanced Trade Manager for MetaTrader TradeControl Pro is a trade management tool for MetaTrader that enables structured and efficient management of trading positions directly on the chart. The application combines a clearly designed user interface with automated calculations and flexible control options for different trading approaches. The integrated on-chart panel is organized in a tabular layout and divided into three main sections (tabs): Execution , Close , and Info . Th
Apex Signal Stream – Trade Panel Version 1.3.0 | For MetaTrader 5 Overview Apex Trade Panel is a fully on-chart trading panel with two modes: Manual — precise control over every order, from lot sizing and SL/TP logic to trailing methods and batch close filters; and SignalStream auto-trade — the panel polls the Apex Signal Stream server over HTTPS and executes incoming signals behind 10 safety gates, reporting every outcome back. Manual mode works standalone; SignalStream is OFF until enabled wit
Breakevan Utility
Jose Luis Thenier Villa
BreakEvan Utility  Is a simple tool in a panel with this utilities: This utility will draw a Golden Line in the chart applied showing the breakeven price, considering all the positions opened for that specific symbol. Also the information panel shows: Balance Breakeven Price for that chart Force Breakeven (for that symbol) as ON/OFF Force Breakeven Global (takes into account all trades opened) as ON/OFF Total Lots opened for Symbol Total Lots opened Global And two buttons: Force Breakeven: Whe
Auto SLTP Maker MT5
Oleg Remizov
5 (1)
Auto SLTP Maker MT5  is an assistant for all those who forget to set StopLoss and/or TakeProfit in deal parameters, or trade on a very fast market and fail to place them in time. This tool automatically tracks trades without StopLoss and/or TakeProfit and checks what level should be set in accordance with the settings. The tool works both with market and pending orders. The type of orders to work with can be set in the parameters. It can track either trades for the instrument it runs on, or all
Вот профессиональный перевод на английский язык, адаптированный под стандарты MQL5 Market: Trade Panel Pro — Professional Risk Management & Order Execution Terminal for MetaTrader 5 Trade Panel Pro is an advanced, all-in-one utility for MetaTrader 5, designed for active day traders and professionals. It combines precise risk calculation with lightning-fast order execution, helping you protect your capital and manage multi-target trades with ease. Main Advantages and Key Features Automated L
CYGNIX RISK GLADIATOR — Professional Trade Manager & Risk Guardian for MT5 Guard every position. Manage every trade. Sleep at night. Cygnix Risk Gladiator is a professional-grade position management Expert Advisor that watches every open trade on your account and automatically applies institutional-level risk controls in real time. It does not generate signals — it protects, manages, and exits trades opened by you, your strategies, or any other EA. Built for IC Markets and fully compatible w
Total Trade Manager SL BE TP
Izzet Deniz Erpolat
3 (2)
Total trade manager allows you to manage your trade to maximise your profits and minimise your losses. This is an essential for traders that are looking for consistency within their trading.  The features: Partial Stop Loss: This feature allows you to close a partial percentage of your trade once it goes into negative. So if your stop loss is 20 pips, you could close 75% of your trade at 10 pips and let the remainder of the position to continue running. Auto Stop Loss: This means that once you p
TradePilotmt5
Hossein Khalil Alishir
TradePilot Expert Advisor (EA) for MetaTrader 5 TradePilot is a professional and user-friendly Expert Advisor (EA) for MetaTrader 5 (MT5) . It simplifies automated trading , risk management , and trade execution with a smart trading panel . Perfect for beginners and experienced traders looking for a reliable trade manager EA with automated lot size calculation and smart position management. Key Advantages User-Friendly Trading Panel: Customizable panel with buttons and hotkeys for fast ex
Candlestick Pattern Scanner is a multi-timeframe and multi-symbol dashboard and alert system that checks all timeframes and currency pairs for different candlestick patterns that are formed in them. Scanner is integrated   with support and resistance zones so you can check the candlestick patterns in most important areas of the chart to find breakout and reversal patterns in the price chart. Download demo version   (works on M4,M6,M12,H3,H8 timeframes and 20 symbols of Market Watch window) Read
TradePad
Ruslan Khasanov
5 (1)
TradePad is a tool for both manual and algorithmic trading. We present you a simple solution for fast trading operations and control of positions on several trading instruments. Attention, the application does not work in the strategy tester! Trial version of the application for a demo account and a description of all the tools The application interface is adapted for high-resolution monitors, simple and intuitive. For comfortable work, the trader is offered the following set of tools: A hot ke
Trade Manager G2 MT5
Ida Bagus Putu Mahardika
TRADE MANAGER G2 – PRODUCT DESCRIPTION By Ida Bagus Putu Mahardika Trade Manager G2 – All-in-One Trading Panel for Professional Execution & Risk Management Trade Manager G2 is a next-generation trading panel designed to give you full control over order execution, position management, and profit optimization in real time on MetaTrader 5. With a modern card-based user interface and individual TP actions per level, this panel elevates your trading experience to the next level. KEY ADVANTAGES OF
Trading Assistent is a multifunctional trading panel that combines all necessary tools for professional trading. The panel provides complete control over positions, in-depth risk analysis, and fast order execution. MAIN FUNCTIONAL BLOCKS Position Management: - Real-time viewing of all open positions - Sorting by symbol, profit, volume, and type - Visual indication of profitable and losing positions - Bulk closing operations - Breakeven function for profit protection Trading Operations: - I
PnL Manager Pro
Enechojo Victor Ayegba
PNL MANAGER PRO —    Automatic Exit Manager with Smart Risk Control Set your entry, walk away. PNL Manager Pro sets your stop loss and take-profits automatically, locks in profit in stages, moves you to breakeven, and trails the rest — all while keeping your risk inside the limit you set. Try Before You Buy: You can download and test the Pnl MANAGER  free demo version  on a demo acc
User Manual Buy Trading Utility, Get 2 indicators FREE ! After purchase contact me for your " TWO indicators GIFT (Any one you want) ", adding you in group. Trading Utility MT5 The manual trader's cockpit. Size every trade by risk, place it from the chart, and manage it without ever opening the order dialog. Eight tabs, seven trailing engines, and every stop and target draggable with one click. One panel between you and the order window. Risk-sized entries, draggable stops, seven trailing modes
Trade Copilot - Semi-Automatic Risk Management Panel for Gold (XAUUSD) and any instrument Trade Copilot is a semi-automatic trading panel built for manual traders who want an EA's discipline without giving up control of their own entries. You decide the direction and the level - the panel handles risk sizing, stop-loss placement, take-profit management, and trade protection automatically. KEY FEATURES - Risk-based lot sizing - choose Risk %, Risk $, or Fixed Lot; the panel calculates positio
This EA is there to take your trade closing stress away. Quickly close as many trades as you have opened at the click of a button, INCLUDING PENDING ORDERS. This works on the MT5 platform whether it be currencies, Indices, stocks or Deriv synthetic indices. I have saved it under utilities as it is a utility, however, to install this, you have to save the file in you "EA" folder. That is; Go to "File", then "Open Data Folder", "MQL5" and then "Experts". Paste this file there. Restart MT5 and you'
The Ultimate All-In-One Trade Manager & Prop Firm Guardian for MT5. Nexus Pro Trade Manager is the most advanced, all-in-one trading assistant designed for both manual traders and Prop Firm challengers. Featuring a stunning, lag-free UI (Dark/Light mode), it completely transforms your MT5 into a professional trading terminal. Whether you are trading a personal account or trying to pass evaluations for FTMO, FundedNext, or other prop firms, Nexus Pro protects your capital, automates your risk cal
Demo version T Position Size Calculator   doesn't work in the strategy tester. The Strategy Tester does not support the processing of ChartEvent. It does not support most of the panel's functionality. Contact me for any questions or ideas for improvement or in case of a bug found. Control and manage your trading like a professional trader with T Position Size Calculator. T Position Size Calculator – an MT5 Expert Adviser, is a user-friendly custom tools (Dialog Panel and Three Lines, Order Line
DDKiller Pro
Njaratahiry Michael Randrianiaina
Stop Blowing Your Account. Once and For All. DDKiller Pro is the MT5 risk guardian that runs silently on your chart and shuts down trading the moment you hit a limit — whether you're grinding a prop firm challenge or managing your own CFD account. The problem every trader knows: You set your rules. You break them anyway. One revenge trade. One overleveraged position. One session that erases a month of gains. DDKiller Pro removes that decision from your hands entirely. What it does: The second yo
Bneu Execution Scaling System
Marvinson Salavia Caballero
Bneu Execution and Scaling System — Professional Trading Command Center Premium on-chart command center with 5 dashboard tabs. 28-pair opportunity radar scans every 8 seconds. Dual-gate qualification: indicator engine + AI confidence scoring. One-click execution with auto SL/TP and smart lot sizing. Full autopilot mode with 6 built-in safeguards. Multi-account trade copier (publisher or receiver in one EA). Adaptive Money Management protects every position automatically. WHAT IT DOES Attach
Quick Close Panel
Boaz Nyagaka Moses
5 (1)
'Quick Close Panel' is an easy to use interface for managing orders. It has a button for closing all winning trades on the current chart, a button for closing all losing trades and another button for closing   all running trades (Losing and Winning)   on the current chart. It is very responsive and quick to execute operations due to the effective time complexity of the algorithm used in the  program.  Vist this link to download demo:  https://www.mql5.com/en/market/product/62901?source=Site+Mark
SmartLot MT5
Nikita Chernyshov
Free version for demo accounts   | MT4  Version SmartLot   MT5  is an interactive and simple panel for quick lot calculation, placing pending and market orders directly from the chart. It does not work in the Strategy Tester.   To test the utility, download the free version for demo accounts. Instructions and the file are in the header of the description. Features: Graphical Interface:   Interactive Entry, SL, TP lines with color-coded profit and loss zones. Real-time Calculation:   When c
Capital Management EA – Smart Risk Management & Profit Optimization for MT5 Take control of your trading capital with smart, automated strategies — fully optimized for MetaTrader 5 (MT5). Looking to protect your capital and maximize profits through automated money management strategies ? Capital Management EA is the all-in-one Expert Advisor for MetaTrader 5 (MT5) that helps you trade smarter, not harder. Core Features: 5-in-1 Capital Management Strategies – Built-in versatility Gr
Buyers of this product also purchase
Trade Assistant MT5
Evgeniy Kravchenko
4.41 (215)
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 (670)
Trade Manager MT5 is an advanced position size calculator and trade management tool for MetaTrader 5, designed to help traders plan trades faster, control risk more precisely, and manage open positions directly from the chart. It combines order placement, risk based lot calculation, Stop Loss and Take Profit management, Break Even, Trailing Stop, Partial Close, Equity Protection, and external trade management in one panel. Whether you trade forex, indices, metals, commodities, crypto, or future
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.97 (146)
Experience exceptionally fast trade copying with the   Local Trade Copier EA MT5 . With its easy 1-minute setup, this trade copier allows you to copy trades between multiple MetaTrader terminals on the same Windows computer or Windows VPS with lightning-fast copying speeds of under 0.5 seconds. Whether you're a beginner or a professional trader, the   Local Trade Copier EA MT5   offers a wide range of options to customize it to your specific needs. It's the ultimate solution for anyone looking t
TradePanel MT5
Alfiya Fazylova
4.88 (166)
Trade Panel is a multi-functional trading assistant. The app contains over 50 trading functions for manual trading and allows you to automate most trading tasks. Before making a purchase, you can test the demo version on a demo account. Download the trial version of the application for a demonstration account: https://www.mql5.com/en/blogs/post/750865 . Full instructions here . Trade. Allows you to perform trading operations in one click: Open pending orders and positions with automatic risk cal
================================================================================ 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
Beta Release The Telegram to MT5 Signal Trader is nearly at the official alpha release. Some features are still under development and you may encounter minor bugs. If you experience issues, please report them, your feedback helps improve the software for everyone. Telegram to MT5 Signal Trader is a powerful tool that automatically copies trading signals from Telegram channels or groups directly to your MetaTrader 5 account. It supports both public and private Telegram channels, and you can conn
Astro Trade MT5
Indra Maulana
5 (2)
AstroTrade Trading Assistant AstroTrade is a comprehensive multi-functional trading utility developed for the MetaTrader 5 platform. It integrates essential tools for trade execution, risk management, and technical monitoring into a single unified interface. The application is designed to assist traders in managing their daily operations through a visual and structured environment. Visual Trade Execution and Risk Management The application includes a specialized trading panel that assists in c
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:/
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
Professional Trade Copier for MetaTrader 5 Fast, professional, and reliable trade copier for MetaTrader . COPYLOT allows you to copy Forex trades between MT4 and MT5 terminals with support for Hedge and Netting accounts. COPYLOT MT5 version supports: - MT5 Hedge to MT5 Hedge - MT5 Hedge to MT5 Netting - MT5 Netting to MT5 Hedge - MT5 Netting to MT5 Netting - MT4 to MT5 Hedge - MT4 to MT5 Netting MT4 version Full Description +DEMO +PDF How To Buy How To Install How to get Log Files H
Power Candles Strategy Scanner - Self-Optimizing Multi-Symbol Setup Finder Power Candles Strategy Scanner runs the same self-optimizing engine that powers the Power Candles indicator - on every symbol in your Market Watch, side by side. One panel tells you which symbols are statistically tradable right now, which strategy wins on each, the optimal Stop Loss / Take Profit pair, and pings you the moment a fresh signal fires. This tool is part of the Stein Investments ecosystem - 18+ tools plus Max
Telegram to MT5 Multi-Channel Copier automatically copies trading signals from your Telegram channels directly into MetaTrader 5. No bots, no browser extensions, no manual copying. You receive a signal on Telegram and the EA opens the trade on your terminal in a few seconds. The product includes two components: a Windows application that listens to your Telegram channels, and this Expert Advisor that executes the signals on your MT5 terminal. An MT4 version is also available. Setup guide and app
Premium Trade Manager - The Trade Panel With a Coach Built In Premium Trade Manager puts a trading coach inside your chart, with a full execution engine underneath it. Set the trade up the way you always do, then let Max, your AI trading coach, read that exact setup against your live account and give you a straight verdict before you commit: is the stop disciplined, is the risk sane, is a high-impact release minutes away, are you near a prop-firm limit. Below sits the engine that runs everything
Telegram To MT5 Ultra
Mirel Daniel Gheonu
5 (4)
Telegram To MT5 — Signal Copier Turn the trading calls from your Telegram channels into real MT5 orders — automatically, on as many accounts as you like, with risk and rules fully under your control. Telegram To MT5 connects the VIP / signal channels you already follow on Telegram to your MetaTrader 5 terminal. A free companion desktop app reads the messages (even from channels that block bots), and this Expert Advisor executes them on your account — applying your own risk settings, symbol mappi
Trade copier MT5
Alfiya Fazylova
4.57 (51)
Trade Copier is a professional utility designed to copy and synchronize trades between trading accounts. Copying occurs from the account / terminal of the supplier to the account / terminal of the recipient, which are installed on the same computer or VPS . PROMOTION - If you have already purchased the "Trade Copier MT5," you can receive the "Trade Copier MT4" for free (for copying MT4 > MT5 and MT4 < MT5). For more detailed information about the conditions, please contact us via private message
VirtualTradePad PRO SE MT5 — professional trading control center for MetaTrader 5 VirtualTradePad PRO SE is a premium chart-based trading panel and trade-management workspace for MetaTrader 5 . It is designed for traders who want faster execution, clearer position control, structured trade management, visual level planning and a professional workflow directly from the chart. This is not only a BUY / SELL panel. PRO SE combines manual trading, pending orders, position management, partial exits, b
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.
Anchor Trade Manager
Kalinskie Gilliam
5 (7)
Anchor: The EA Manager Your EAs manage their own trades. Anchor manages the account around them. Anchor gives you one place to control your EAs, manage risk and decide when trading is allowed. Any EA, any vendor, any broker or symbol. No source-code changes required. The Problem Most EAs only know what they are doing. They cannot see when another EA is already trading, when several EAs open and are stacking risk or when the account has reached your loss limit. Even using just one EA, it may not
Timeless Charts
Samuel Manoel De Souza
5 (7)
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
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
DaneTrades Trade Manager is a professional trade panel for MetaTrader 5, designed for fast, accurate execution with built‑in risk control. Place market or pending orders directly from the chart while the panel automatically calculates position size from your chosen risk, helping you stay consistent and avoid emotional decision‑making. The Trade Manager is built for manual traders who want structure: clear risk/reward planning, automation for repeatable management, and safeguards that help reduc
Custom Alerts AIO: All-in-One Market Scanner – No Setup Required Overview Custom Alerts AIO is the fastest and easiest way to monitor multiple markets for real-time trading signals—without any setup or extra licenses. It comes with all required Stein Investments indicators already embedded, making it the perfect plug-and-play solution for traders who value simplicity and performance. Just load it to any chart and start receiving alerts across Forex, Metals, Crypto, and Indices. Shares can be a
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
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
Seconds Chart MT5
Boris Sedov
4.61 (18)
Seconds Chart is a unique tool for creating second-based charts in MetaTrader 5 . With Seconds Chart , you can construct charts with timeframes set in seconds, providing unparalleled flexibility and precision in analysis that is unavailable with standard minute or hourly charts. For example, the S15 timeframe indicates a chart with candles lasting 15 seconds. You can use any indicators and Expert Advisors that support custom symbols. Working with them is just as convenient as on standard charts.
EA Auditor
Stephen J Martret
5 (4)
EA Auditor is an independent analysis tool for traders evaluating Expert Advisors and trading signals on MetaTrader 5. It audits backtest reports, reviews posted developer signals, and cross-verifies the two against each other to help traders assess strategies before committing capital. The MQL5 market offers a wide range of Expert Advisors from many developers, with varying approaches, quality, and transparency. EA Auditor provides a consistent, data-driven framework for reviewing them, answer
Trade Command Center
Nguyen Thanh Trieu
5 (2)
Additional materials and instructions Installation instructions - Trial version of the application for a demo account ; Official Information Official channel Seller profile Trade Command Center — Professional Trade Execution & Real-Time Risk Guard Panel Trade Command Center is a high-performance visual trade execution, lot size calculator, and risk management utility for MetaTrader 5. It is engineered specifically for manual traders requiring strict risk enforcement, capital protection, a
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
Quant AI Agents
Ho Tuan Thang
5 (1)
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
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
Trade Panel PRO MT5 Trade Panel PRO MT5 is a manual trading panel for MetaTrader 5 designed to prepare, execute and manage positions directly from the chart, with visual risk control at every step. The tool combines order preparation, automatic position sizing based on risk, interactive Entry, Stop Loss and Take Profit zones, and several trade management functions into a single interface. Version 2.0 updates Version 2.0 introduces several improvements to streamline the execution workflow: Automa
Features   With MT5 to Interactive Brokers(IB) Trader, you can: 1. Load chart data from IB to MT5, and Analyze with all standard or customer Indicators. 2. Place Orders to IB Account Directly in MT5. 3. Make your Own EAs upon IB Securities by only making minus changes of the trading function. Usage 1) Installation Copy the "Mt5ToIBTraderEn.ex4" and sample files to [MT5 Data Folder]->MQL5->Experts.  2)  MT5 Settings Add the IP Address to the MT5 Allowed URLs in 'Tools->Options->Expert Adviso
More from author
BerelzBox Darvas based
Barend Willem Van Den Berg
5 (1)
Overview BerelzBox Darvas is a "adaptive" box indicator [based on Darvas Boxtheory] for MetaTrader 5. It draws a live-updating box on the current candle and displays the previous completed box for reference. The box is divided into color-coded zones that help identify potential entry areas and breakout conditions. The indicator is based on the classic Nicolas Darvas box theory, adapted for modern multi-timeframe use. How It Works The indicator creates one box per candle on the selected timeframe
FREE
BerelzMentor
Barend Willem Van Den Berg
Become a Pro-You Already Know What To Do — So Why Do You Keep Making The Same Mistakes? You have read the books. You know about risk management, patience, discipline. You know you should not revenge trade. You know you should wait for alignment. And yet — your account tells a different story. The gap between what you know and what you actually do is costing you money every week. Berelz Mentor closes that gap. Berelz Mentor is a MetaTrader 5 indicator that reads your own trade history and gives y
Filter:
No reviews
Reply to review