Telegram Signal Subscriber MT5

OVERVIEW

Transform your MT5 trading account into an automated signal execution station! This Expert Advisor automatically receives and executes trading signals from Telegram channels in real-time, enabling seamless copy trading operations from master accounts.

SYSTEM NOTICE: This EA receives and executes trading signals FROM Telegram channels. To broadcast signals TO Telegram, you need the companion EA: "Telegram Signal Broadcaster MT5" (sold separately). 

KEY FEATURES:

  • Automated signal reception from Telegram channels
  • Supports all order types (market, pending, limit, stop)
  • Advanced signal filtering and validation
  • Symbol transformation and mapping capabilities
  • Multiple lot size calculation methods
  • Position and order modification tracking
  • Comprehensive risk management controls
  • Real-time signal processing and execution

INPUT PARAMETERS

TELEGRAM BOT CONFIGURATION

  • BotToken: Your Telegram bot authentication token (from @BotFather)
  • ChannelUsername: Source channel username (without @ symbol)
  • ChannelChatId: Alternative channel identification (for private channels)
  • ConnectionCheckInterval: Bot connection verification frequency (seconds)
  • MessageCheckInterval: Signal checking frequency (milliseconds)

TRADING CONTROL

  • AutoTrade: Enable/disable automatic trade execution
  • MagicNumber: Magic number for trade identification
  • ShowOutput: Display debug information and status updates

SIGNAL FILTERING

  • CheckPriceDistance: Skip trades if current price too far from signal
  • MaxPriceDistancePoints: Maximum allowed price distance in points
  • CheckTimeDelay: Skip trades if signal is too old
  • MaxTimeDelaySeconds: Maximum allowed time delay in seconds

SYMBOL MANAGEMENT

  • SymbolMapping: Transform symbols (FROM:TO pairs, comma-separated)
  • SymbolPrefix: Prefix to add to MT5 symbol names
  • SymbolSuffix: Suffix to add to MT5 symbol names
  • SymbolsToTrade: Allowed symbols filter (comma-separated, empty = all)

LOT SIZE CONTROL

  • FixedLot: Fixed lot size (0 = use signal calculation)
  • LotMultiplier: Multiply signal lot sizes by this factor

TIME MANAGEMENT

  • EnableTimeFilter: Enable time-based trading restrictions
  • StartTime: Trading start time (HH:MM format)
  • EndTime: Trading end time (HH:MM format)

ADVANCED OPTIONS

  • ClosePositionIfPendingConverted: Close position if pending order converted on delete signal

SETUP INSTRUCTIONS

STEP 1: CREATE SEPARATE TELEGRAM BOT FOR SLAVE

  1. Open Telegram and search for @BotFather
  2. Send /newbot command
  3. Follow instructions to name your bot (different from master bot)
  4. Copy the bot token (e.g., 987654321:XYZabcDEFghiJKLmnoPQRstu )
  5. IMPORTANT: Each slave EA MUST use a separate bot token

STEP 2: ADD SLAVE BOT TO SIGNAL CHANNEL

  1. Add your new slave bot to the signal channel as administrator
  2. Give bot "Read Messages" permission (not "Post Messages")
  3. Note the channel username or Chat ID

STEP 3: ENABLE WEBREQUEST IN MT5

  1. Open MT5 → Tools → Options → Expert Advisors
  2. Check "Allow WebRequest for listed URL:"
  3. Add: https://api.telegram.org
  4. Click OK and restart MT5

STEP 4: INSTALL THE EA

  1. Copy Telegram Signal Subscriber MT5.ex5 to MQL5/Experts/ folder
  2. Restart MT5 or press Ctrl+R to refresh
  3. EA should appear in Navigator → Expert Advisors

STEP 5: CONFIGURE THE EA

  1. Attach Telegram Signal Subscriber MT5 to any chart
  2. Enable "Allow live trading" in EA settings
  3. Enter your slave bot token and channel information
  4. Configure trading parameters and filters
  5. Set symbol mappings if needed (e.g., GOLD:XAUUSD)
  6. Click OK

STEP 6: VERIFY OPERATION

  1. Check MT5 Experts tab for connection messages
  2. Verify bot connects to Telegram successfully
  3. Monitor signal reception in chart comment
  4. Test with a signal from master EA

SAMPLE SIGNAL PROCESSING

Input JSON Signal:

{ "action": "open", "symbol": "EURUSD", "trade_type": "buy", "open_price": 1.0850, "stop_loss": 1.0800, "take_profit": 1.0900, "balance_per_lot": 10000, "trade_id": "TG_20241001_001", "time_gmt": "2024-10-01 10:30:45" }

EA Processing Result:

  • ✅ Signal received and validated
  • ✅ Symbol mapping applied (if configured)
  • ✅ Lot size calculated based on balance
  • ✅ Price distance validated
  • ✅ Time delay checked
  • ✅ Trade executed successfully

SYMBOL TRANSFORMATION

The EA applies symbol transformations in this order:

  1. Mapping: Transform symbol names (e.g., GOLD → XAUUSD)
  2. Prefix: Add broker prefix (e.g., → EURUSD becomes Prefix.EURUSD)
  3. Suffix: Add broker suffix (e.g., EURUSD → EURUSD.pro)

Example Configuration:

  • SymbolMapping: "GOLD:XAUUSD,US30:US30Cash"
  • SymbolPrefix: "FX."
  • SymbolSuffix: ".raw"

Result: GOLD signal becomes FX.XAUUSD.raw in MT5

LOT SIZE CALCULATION

Priority Order:

  1. FixedLot: If > 0, uses this value (ignores all other calculations)
  2. Direct Lot: If signal contains lot_size and balance_per_lot = 0
  3. Dynamic Calculation: Current balance ÷ balance_per_lot from signal
  4. LotMultiplier: Applied to final calculated lot size

Example:

  • Master balance: $50,000, lot size: 1.0
  • balance_per_lot transmitted: 25,000
  • Slave balance: $10,000
  • Calculated lot: $10,000 ÷ 25,000 = 0.4 lots
  • With LotMultiplier 0.5: Final lot = 0.4 × 0.5 = 0.2 lots

SIGNAL FILTERING

Price Distance Filter:

  • Prevents execution if market price moved too far from signal price
  • Useful for delayed signals or high-volatility periods
  • Example: MaxPriceDistancePoints = 50 means skip if price moved >50 points

Time Delay Filter:

  • Prevents execution of old signals
  • Compares signal timestamp with current time
  • Example: MaxTimeDelaySeconds = 300 means skip signals older than 5 minutes

Symbol Filter:

  • Restricts trading to specific symbols only
  • Leave empty to allow all symbols
  • Example: SymbolsToTrade = "EURUSD,GBPUSD,USDJPY"

Time Filter:

  • Restricts new trade opening to specific hours
  • Does not affect closing or modifications
  • Supports overnight periods (e.g., 22:00 to 06:00)

TROUBLESHOOTING

EA NOT CONNECTING TO TELEGRAM:

  • Verify slave bot token is correct and different from master
  • Check WebRequest URL is added: https://api.telegram.org
  • Ensure internet connection is stable
  • Try restarting MT5

NO SIGNALS RECEIVED:

  • Verify slave bot is added to signal channel
  • Check bot has "Read Messages" permission
  • Confirm channel username/ID is correct
  • Ensure master EA is broadcasting signals

TRADES NOT EXECUTING:

  • Check AutoTrade parameter is enabled
  • Verify algorithmic trading is enabled in MT5
  • Check signal filtering parameters
  • Review symbol mapping configuration

SYMBOL NOT FOUND ERRORS:

  • Configure symbol mapping in SymbolMapping parameter
  • Check SymbolPrefix and SymbolSuffix settings
  • Verify symbol exists in your broker's symbol list
  • Try symbol transformation test

LOT SIZE ERRORS:

  • Check FixedLot setting if using fixed lots
  • Verify LotMultiplier is appropriate for your account
  • Ensure calculated lot size meets symbol requirements
  • Check minimum and maximum lot limits

SIGNAL FILTERING ISSUES:

  • Review MaxPriceDistancePoints setting
  • Check MaxTimeDelaySeconds for time-sensitive signals
  • Verify SymbolsToTrade filter configuration
  • Check EnableTimeFilter and trading hours

For technical support and questions:

Contact: https://www.mql5.com/en/users/salmansoltaniyan

Common Issues Solutions:

  • Connection timeouts: Increase ConnectionCheckInterval to 60+ seconds
  • Rate limiting: Increase MessageCheckInterval to 500+ milliseconds
  • Missing signals: Check if master EA is broadcasting correctly
  • Permission errors: Ensure slave bot has read access to signal channel
  • Symbol errors: Configure proper symbol mapping for your broker
  • Lot size issues: Use FixedLot for consistent position sizing

IMPORTANT NOTES

Bot Token Requirements:

  • Each slave EA MUST use a separate, unique bot token
  • Multiple slaves CANNOT share the same bot token
  • Create separate bots via @BotFather for each slave EA
  • This prevents message conflicts and ensures reliable operation

Channel Access:

  • Slave bots need "Read Messages" permission (not "Post Messages")
  • Master bot needs "Post Messages" permission
  • Private channels require Chat ID instead of username

Trading Permissions:

  • Enable "Allow live trading" in EA settings
  • Ensure algorithmic trading is enabled in MT5 Tools → Options
  • Check that your broker allows automated trading

Remember: This Telegram Signal Subscriber MT5 receives signals FROM Telegram channels. To broadcast signals TO Telegram channels, you need:

Telegram Signal Broadcaster MT5: https://www.mql5.com/en/market/product/151449

Complete automated copy trading requires BOTH EAs:

  • Telegram Signal Broadcaster MT5 (separate purchase) - Sends signals
  • Telegram Signal Subscriber MT5 (this product) - Receives and executes signals
Prodotti consigliati
Quant Signal Indicator Panel The Indicator Panel displays the internal state of the system in real time. It allows the user to monitor how signals are generated, filtered, and validated before execution. Important Notice Before using the system, make sure to correctly configure the input symbols according to your broker specifications. The default symbol names in the inputs are examples only You must replace them with the exact symbol names used by your broker Symbols must also be added and visi
GDS RiskLab TradeDesk Renko Pro - Professional Manual Trading Panel for Renko Traders in MetaTrader 5 GDS RiskLab TradeDesk Renko Pro is a professional manual trading panel for MetaTrader 5, designed for traders who use Renko charts and want a more controlled workflow for execution, position awareness and risk discipline. This is not an automated trading strategy and not a signal system. The trader remains fully responsible for market analysis, risk decisions and execution. TradeDesk Renko Pro i
Risk Manager Optimum
Freedom Uzochukwu Nnadi
5 (1)
RiskManagerOptimum for MetaTrader 5 – Your Ultimate Trading Safety Net! RiskManagerOptimum is the most advanced and professional trade and account risk management Expert Advisor for MetaTrader 5. It does not open trades. It monitors and manages existing positions in real time to control risk, drawdown, and exposure across all symbols. The EA is designed for manual traders, algorithmic traders, and portfolio traders who require strict and automated risk control across Forex, metals, crypto, indi
CopyTrader Pro FAST MT5 — FREE Real-Time Trade Copier | MT4 ↔ MT5 Cross-Platform | 20ms Latency CopyTrader Pro FAST is a professional trade copier Expert Advisor that copies trades between MetaTrader terminals in real time using a high-speed file-based communication system. No VPS, no network setup, no DLL — just attach and copy. FREE VERSION : Copies up to 1 trade at a time. Upgrade to Full version for unlimited copying. Key Features 20ms refresh rate — independent of tick arrival, uses
FREE
Discord Signal & Performance Forwarder for MT5 Send your trades directly from MetaTrader 5 to your Discord server – modern, fully automated, and highly structured! Perfect for your trading community or personal journaling. Key Features: Complete Signal Transmission: Automatically sends all Buy and Sell orders, including symbol, lot size, entry price, Stop Loss (SL), and Take Profit (TP). Live Trade Updates: Instant notifications when a trade is moved to Break-Even (BE) or closed. Transparent Pro
Tiger Lite
Dang Cong Duong
Tiger Lite recreate the history of entry and exit orders. The goal is that you can grasp their strategy how to play. CSV format support for WEB, MT4 and MT5 platforms. The sequence of steps is described in the photo. Note: Please choose the existing date and symbol on the CSV file. For MT4/5, export historical data and copy the records to excel, save it with the extension CSV. For MT4/MT5/WEB, save the name with format mt4.csv/mt5.csv/web.csv If you get the history from another source and your
FREE
NovaSpread Guard
Dariia Sinielnik
Защитите счёт от проскальзывания и ложных входов Многие стратегии показывают убыток не из-за плохой логики, а из-за входа в неподходящее время: на открытии/закрытии сессий, при аномальном спреде или в условиях низкой ликвидности. NovaSpread Guard — это интеллектуальный фильтр рыночных условий для MetaTrader 5, который автоматически блокирует торговлю, когда параметры рынка выходят за безопасные границы. ️ Ключевые возможности Мониторинг спреда в реальном времени — блокирует вход, если тек
Welcome to Smart Algo Trade Panel Manager MT5 - the ultimate   risk management tool designed to make trading more effective based on user needs.  It is a comprehensive solution for seamless trade planning, position management, and enhanced control over risk. It does not matter weather you a beginner or an advanced trader, or a scalper needing rapid executions, SmartAlgo Trade Panel  adapts to your needs offering flexibility across all markets of your choice. You can put SL, Lot and TP of choice
Ocult Day
Cesar Afif rezende Oaquim
EA OcultDay: Grid Trading + Carry Trade - Automated Profits24⁄7  Professional Expert Advisor that combines intelligent Grid Trading with Carry Trade to generate consistent returns in trending markets  EA OcultDay: Automated Grid Trading + Carry Trade. Flexible analysis, professional risk management, automatic profit protection. Start on demo today!  TRANSFORM YOUR TRADING WITH PROFESSIONAL AUTOMATION  Tired of being glued to the screen monitoring the market? Tired of missing profit opport
Guardian Yield Keeper
Ngoc Huu Nghia Tong
Guardian Yield Keeper is a utility Expert Advisor for traders who want real-time exit management and profit protection for open positions on the current symbol. This EA does not open new trades and does not generate entry signals. Its job is simple: monitor existing positions and close them when your profit or risk conditions are met . It is especially suitable for traders using DCA, Grid, Martingale, or basket trading systems and looking for a dedicated management layer that is more flexible th
Gold Somnia
Murad Nagiev
Gold Somnia — Expert Advisor Automatico per XAUUSD Gold Somnia è un robot di trading completamente automatico, progettato specificamente per negoziare oro (XAU/USD) su MetaTrader 5. Basato su una solida strategia di breakout/momentum, identifica punti di ingresso ad alta probabilità applicando una rigorosa gestione del rischio. Caratteristiche principali: - Logica automatica di ingresso e uscita adattata alla volatilità dell'oro - Dimensione del lotto dinamica: percentuale di rischio o lotto
Overview : The Advanced News Trading Panel is a versatile tool designed for traders who rely on news-based trading strategies. This Expert Advisor (EA) provides an intuitive graphical interface that allows users to quickly set up pending orders and manage risk with ease. With the ability to automatically place Buy/Sell Stop orders based on your pre-set stop order distance from the bid/ask price, stop-loss and take-profit levels, the EA allows for precision trading during high-volatility news eve
Pending Order Grid EA MT5
Francisco Manuel Vicente Berardo
The Pending Order Grid is a multi-symbol multi-timeframe Expert Advisor that enables multi-strategy implementation based on pending order grids.  General Description   The Pending Order Grid allows the performing of a user-defined strategy through the creation of pending order grids. The Expert Advisor places pending orders of a given type (Buy Limit, Sell Limit, Buy Stop, or Sell Stop) at equidistant price levels to form each grid. The user might set up different grids to exist simultaneously
GoldGrid MT5
Musera Isaac
No Grid /No Martingale/ No Dca /No rocovery GoldGrid EA — Smart Gold Trading Built for Structure, Discipline, and Precision GoldGrid EA is a fully automated MT5 Expert Advisor designed specifically for XAUUSD trading. It is built for traders who want a structured gold trading system that can analyze market movement, identify high-probability conditions, and manage trades automatically with consistency and discipline. GoldGrid is not just another ordinary grid robot. It is a smart gold trading e
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
PROMOZIONE DI LANCIO: Saranno disponibili solo un numero molto limitato di copie al prezzo attuale! Prezzo finale: 999$ NOVITÀ (da 349$) --> RICEVI 1 EA GRATIS (per 2 numeri di account commerciali). Offerta Combo Definitiva     ->     clicca qui UNISCITI AL GRUPPO PUBBLICO:   Clicca qui   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO Benvenuti al BITCOIN REAPER!   Dopo l'enorme successo del Gold Reaper, ho deciso che era giunto il momento di applicare gli stessi principi vincenti al mercato Bit
Nexus HFT Pro
Daniel Ivan Stadelmann
Nexus HFT PRO Nexus HFT PRO is an Expert Advisor for MetaTrader 5 designed to identify short-term trading opportunities by analyzing real-time price action and market dynamics. The system incorporates flexible management that allows it to adapt to different financial instruments and risk profiles. Multi-pair XAUUSD recommended Key Features Automatic trade opening. Configurable risk management. Support for fixed and automatic lot sizes. Spread control. Advanced Stop Loss and Take Profit mana
Capital protector MT5  is an Expert Advisor who works based on the profit and loss of your account. Its functions include: Closing of all orders when a certain profit or loss is reached. Remove any other Expert Advisor installed on a secondary chart when a certain profit or loss is reached. Send a notification to the mobile when a certain loss or profit is reached.  To configure the Expert Advisor you will only have to program the loss limit that you are willing to lose or the profit limit that
Presentazione di CobWeb Ultimate Pro: il consulente esperto più avanzato e completo per il trading decennale Descrizione: CobWeb Ultimate Pro è il culmine di oltre 10 anni di sviluppo di consulenti esperti e una vasta esperienza di trading. Questo EA all'avanguardia combina più di 10 strategie, ognuna meticolosamente progettata e ottimizzata. Con una serie di sofisticate tecniche di trading e metodologie di analisi, CobWeb Ultimate Pro offre ai trader un vantaggio senza precedenti nel dinamico
Binance History Loader
Andrey Khatimlianskii
This script is designed to download a long history of cryptocurrency quotes from the Binance exchange. You will find it perfectly suitable if you want once to download the history of cryptocurrencies for charts analyzing, collecting statistics or testing trading robots in the MetaTrader 5 strategy tester, or if you need to update the history not very frequently (for example, once a day or once a week). After running the script, you will have fully featured (but not automatically updated) cryptoc
RSI Grid MT5
Joseph Anthony Aya-ay Yutig
OTTIENI ALTRI EA GRATIS!!! OTTIENI ALTRI EA GRATIS!!! OTTIENI ALTRI EA GRATIS!!! OTTIENI ALTRI EA GRATIS!!! OTTIENI ALTRI EA GRATIS!!! RSI Grid si basa sulle condizioni di ipercomprato e ipervenduto RSI e apre una griglia quando il trade è dalla parte perdente del mercato. L'RSI fornisce ai trader tecnici segnali sullo slancio dei prezzi rialzista e ribassista, ed è spesso tracciato sotto il grafico del prezzo di un asset. Un asset è generalmente considerato ipercomprato quando l'RSI è superio
Gold Sniper AI Pro
Salahaldeen Abedalqader Mah'd Alshaer
Gold Sniper AI – روبوت تداول الأموال الذكية Gold Sniper AI هو مستشار خبير متقدم مصمم خصيصًا لتداول XAUUSD (الذهب) باستخدام مفاهيم المال الذكي وتحليل حركة السعر. يقوم نظام التداول الآلي بتحليل عوامل السوق المتعددة قبل تنفيذ الصفقات للعثور على فرص ذات احتمالية عالية في سوق الذهب. ⸻ منطق الاستراتيجية يجمع برنامج Gold Sniper AI بين العديد من مفاهيم التداول الاحترافية، بما في ذلك: • الكشف عن اتجاهات السوق الأوروبية • تحليل هيكل السوق • عمليات مسح السيولة • كتل الطلبات • فجوات القيمة العادلة (F
Cari Trader, Vi saluto. Sono   Smart Sentinel . Non sono un indovino, né un avventuriero. Sono   l'architetto dell'ordine   per il vostro capitale in mercati caotici,   l'incarnazione definitiva   della vostra disciplina di trading. In un mondo che vi insegna ad "attaccare", io aderisco a una filosofia diversa:   Il vero cuore della redditività a lungo termine non è catturare ogni fluttuazione, ma evitare permanentemente quell'unico, devastante drawdown. Pertanto, non sono un semplice "strumento
Envelopes RSI Zone Scalper MT5 EA Unleash your trading edge with the Envelopes RSI Zone Scalper MT5 EA , an Expert Advisor for MetaTrader 5, engineered to thrive in any market—forex, commodities, stocks, or indices. This dynamic EA combines the precision of Envelopes and RSI indicators with a zone-based scalping strategy, offering traders a versatile tool to capitalize on price movements across diverse instruments. Whether you’re scalping quick profits or navigating trending markets, this EA del
FREE
ApexAlgo EA
Leonit Ajvazi
Symbol XAUUSD, AUDUSD Timeframe H1 Timeframe Retail Support YES Minimum Deposit  1000 USD (or equivalent amount in another currency) Compatible with all brokers YES (supports every account currency) Works without preset YES ApexAlgo EA is a professionally developed Expert Advisor for MT5, specifically designed for trading XAUUSD on the 1-hour timeframe. The algorithm combines modern trend-following mechanisms with precise breakout and retest strategies to efficiently identify and execute high-
FREE
Bolic Eagle EA
Almaquio Ferreira De Souza Junior
Bolic Eagle EA - Advanced Parabolic SAR-Driven Trading Algorithm Overview Bolic Eagle EA is a sophisticated algorithmic trading solution designed for traders seeking a highly adaptable and automated system rooted in the Parabolic SAR indicator. This Expert Advisor (EA) is crafted to identify and capitalize on market reversals by utilizing the precision of the Parabolic SAR, enhanced with optional trend confirmation tools, advanced risk management protocols, and unique features such as email no
Exp5 The xCustomEA for MT5
Vladislav Andruschenko
4.27 (11)
The xCustomEA per MetaTrader 5 — Expert Advisor universale per indicatori personalizzati Trasforma praticamente qualsiasi indicatore personalizzato in una strategia di trading automatizzata. The xCustomEA per MetaTrader 5 è un Expert Advisor universale progettato per leggere i segnali dei tuoi indicatori personalizzati ed eseguire operazioni in base alla logica che definisci. È sufficiente indicare il nome dell’indicatore, i buffer di segnale e i parametri principali, e l’EA utilizzerà queste in
Razgon X
Mikhail Atarskii
Razgon XAUUSD EA is a high-performance automated trading robot specifically designed for trading XAUUSD (Gold). The advisor uses a multi-level signal filtering system, including ALMA, trend filter based on EMA and MACD, allowing only high-quality trading decisions. Supports trading on multiple currency pairs and includes a built-in control panel with a transparent glass interface. Key Features ALMA indicator entry filter (fast and slow) Trend filter using three EMA (96) and EMA 200 MACD filter
Metrics Pro for Discord - MT5 Metrics Pro for Discord is a reporting utility for MetaTrader 5 that automatically sends your account performance data to a Discord server via a Webhook. It is designed for signal providers, prop firm traders, and community managers who want to share structured trading results without manual effort. The utility runs in the background on a chart and posts formatted reports at a scheduled server time. Reports include account-level data as well as a breakdown per strat
EN DESARROLLO, TESTING PERIOD. PRISM KellyEngine aplica disciplina de riesgo profesional directamente en tu flujo MT5. Te ayuda a: definir lotaje de forma consistente, limitar sobrecarga de riesgo, proteger cuenta en escenarios de volatilidad. Ideal para traders que quieren dejar atras el lotaje por intuicion. Parametros principales  Riesgo base por operacion (%) Limite maximo de lotaje Umbral de confianza Multiplicadores de seguridad Incluye Motor de sizing adaptable Controles de limites de ri
Gli utenti di questo prodotto hanno anche acquistato
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (214)
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 (668)
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
TradePanel MT5
Alfiya Fazylova
4.88 (162)
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
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
Trade Manager DaneTrades
Levi Dane Benjamin
4.23 (30)
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
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
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:/
================================================================================ 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
Anchor Trade Manager
Kalinskie Gilliam
5 (6)
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, including daily loss protection built for prop firm rules. 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 prop firms. Built for discipline. The Problem Running multiple EAs on the same acc
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.
Premium Trade Manager - Il pannello di trading con un coach integrato Premium Trade Manager porta un coach di trading direttamente nel tuo grafico, con un motore di esecuzione completo al di sotto. Imposta il trade come fai sempre, poi lascia che Max, il tuo coach di trading IA, legga esattamente quel setup rispetto al tuo conto live e ti dia un verdetto chiaro prima che tu confermi: lo stop rispetta un approccio disciplinato, il rischio è ragionevole, c'è un evento ad alto impatto tra pochi min
Unlimited Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTrader accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will n
Welcome to ENTRY IN THE ZONE WITH SMC MULTI TIMEFRAME Entry In The Zone with  SMC Multi Timeframe  is a professional trading indicator built on Smart Money Concepts (SMC), combining market structure analysis with a No Repaint BUY / SELL signal system in a single indicator. It helps traders understand market structure more clearly, identify key price zones, and focus on higher-quality trading opportunities. By combining Multi-Timeframe Analysis, Points of Interest (POIs), and real-time signals, t
HINN Lazy Trader
ALGOFLOW OÜ
5 (1)
LIMITED SUMMER SALE -40% ! ONLY $470 insead of $790!  Maximum real discount! ONLY UNTIL 08/22 The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understand
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
VirtualTradePad PRO SE MT5 — centro di controllo professionale per il trading su MetaTrader 5 VirtualTradePad PRO SE è un pannello di trading premium basato sul grafico e un ambiente di gestione delle operazioni per MetaTrader 5 . È progettato per i trader che desiderano esecuzione più rapida, controllo più chiaro delle posizioni, gestione strutturata delle operazioni, pianificazione visiva dei livelli e un workflow professionale direttamente dal grafico. Non è soltanto un semplice pannello BUY
EasyInsight AIO MT5
Alain Verleyen
4.92 (12)
EASY Insight AIO – La soluzione all-in-one per un trading intelligente e senza sforzo Panoramica Immagina di poter analizzare l’intero mercato — Forex, Oro, Cripto, Indici e persino Azioni — in pochi secondi, senza dover controllare manualmente i grafici, installare indicatori o affrontare configurazioni complicate. EASY Insight AIO è il tuo strumento definitivo di esportazione per il trading alimentato dall’IA, pronto all’uso. Offre una panoramica completa del mercato in un unico file CSV pul
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
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
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
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
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
Grid Manual è un pannello di trading per lavorare con una griglia di ordini. L'utilità è universale, ha impostazioni flessibili e un'interfaccia intuitiva. Funziona con una griglia di ordini non solo nella direzione delle perdite, ma anche nella direzione dell'aumento dei profitti. Il trader non ha bisogno di creare e mantenere una griglia di ordini, lo farà l'utilità. È sufficiente aprire un ordine e il manuale di Grid creerà automaticamente una griglia di ordini per esso e lo accompagnerà fino
TradeMirror è uno strumento locale di copia degli ordini progettato per le piattaforme MT4/MT5, con supporto alla sincronizzazione delle operazioni in tempo reale. Tutorial Clicca sul link Tutorial di Trademirror per visualizzare altri tutorial. Vantaggi del Prodotto In linea con gli elevati standard di sicurezza, stabilità e privacy per i software finanziari, abbiamo ottimizzato tre aspetti fondamentali: Interfaccia grafica intuitiva per un utilizzo semplificato Protezione rafforzata della priv
Trade Copier Pro MT5
Vu Trung Kien
3.67 (3)
Trade Copier Pro MT5 is a tool to copy trade remotely to multiple MT4, MT5 and cTradfer accounts at different computers/locations over internet. This is an ideal solution for you if you are a signal provider and want to copy your trades to other receivers globally on your own rules. One provider can copy trades to multiple receivers and one receiver can get trade from multiple providers as well. The provider can even set the subscription expiry for each receiver, so that receiver will not be abl
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
Telegram to MT5 Coppy
Sergey Batudayev
5 (10)
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
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
The News Filter MT5
Leolouiski Gan
4.78 (23)
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
My Chart Generator
Trade The Volume Waves Single Member P.C.
What if your chart adapted to the market instead of the clock?   THE PROBLEM IT SOLVES   Instead of trying to find the best indicator that fits your timeframe chart, build a chart and find the most appropriate indicator.   My Chart Generator is a MetaTrader 5 background service that builds  live, fully historical three types of custom charts :1. Range/Volume Balanced chart, 2.  Range/Volume Absorption chart and 3. Constant Volume chart from any symbol — Forex pairs, crypto, indices, commodities,
AI Agents Supervisor
Ho Tuan Thang
5 (1)
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
Altri dall’autore
Product Overview The Simple Telegram Copy Trader is a FREE unified Expert Advisor that combines both Master and Slave functionality in a single EA with easy mode switching. This simplified version focuses on OPEN TRADES ONLY , making it perfect for basic copy trading setups without the complexity of advanced features. Get professional-grade copy trading with complete lifecycle management: Telegram Signal Broadcaster MT5 (Master)   Telegram Signal Subscriber MT5 (Slave) Key Features Unified Des
FREE
Create a new custom symbol based on average of Multiple arbitrary symbols (for MT5) An Expert Advisor (EA) used to create custom symbol by averaging multiple input symbols (e.g. EURUSD and GBPUSD)  and provide real-time updates. This is an MT4 "offline" chart equivalent which is very simple to use. You can attach any MT5 compatible indicator or template to  this new symbol and perform your technical analysis. You can back-test any EA on this new custom symbol in strategy tester. for example y
It's a trading dashboard appears on strategy tester, allows you to backtest your own strategies, testing them on multiple symbols and timeframes. It is equipped with useful features such as risk management, trailing stops, breakeven points, and more, enabling you to evaluate and refine your strategies effectively. Trading panels are typically designed to facilitate real-time trading and may not function properly on a strategy tester. However, this particular trading panel is specifically designe
A powerful trend-following tool that uses ATR-based volatility to identify market trends across multiple timeframes . This enhanced version allows you to overlay the SuperTrend of a higher timeframe directly on your current chart, helping you align your trades with the dominant trend. How It Works The indicator calculates dynamic support and resistance levels using Average True Range (ATR) : Upper Band = Source Price + (Multiplier × ATR) Lower Band = Source Price - (Multiplier × ATR) In an uptre
1. Method Overview Random Trader EA is an automated trading system for MetaTrader 5 that initiates trades with a randomly chosen buy or sell direction. Despite the random entry, the EA incorporates robust risk management, dynamic position sizing, and sophisticated exit strategies. This unique approach serves as a valuable tool for research, portfolio diversification, and as a foundational template for developing and evaluating risk management techniques within algorithmic trading. 2. Key Featur
OVERVIEW Transform your MT5 trading account into a professional signal broadcasting station! This Expert Advisor automatically publishes your trading activity to Telegram channels in real-time, enabling seamless copy trading operations.  SYSTEM NOTICE: This EA broadcasts trading signals TO Telegram channels. To receive and execute signals FROM Telegram, you need the companion EA: " Telegram Signal Subscriber MT5 " (sold separately). KEY FEATURES: Real-time trade broadcasting to Telegram Support
CVD (Cumulative Volume Delta) for MT5 CVD (Cumulative Volume Delta) for MT5 Simple, fast CVD for volume and order flow trading. It tracks net buying vs selling pressure and plots CVD as candles. The Data Window also shows tick count per candle. What it does Accumulates volume delta from ticks or a chosen timeframe Optional reset: No Reset, Current Chart Period, or a specific timeframe Works on any symbol and timeframe How it’s calculated Tick-based: each incoming tick is labeled as buyer- or sel
Filtro:
Nessuna recensione
Rispondi alla recensione