SignalBridge EA

SignalBridge EA

Convert Compatible Indicator Signals Into Automated Trades

SignalBridge EA is a MetaTrader 4 Expert Advisor designed to connect compatible trading indicators with automated trade execution.

Instead of manually watching the chart and placing an order every time your indicator generates a BUY or SELL signal, SignalBridge EA can detect supported signals and automatically execute and manage the corresponding trade.

The EA supports several common methods used by MT4 indicators to communicate trading signals, including indicator buffers, chart arrows, chart objects, and text-based signals.

SignalBridge EA does not determine whether a third-party indicator's strategy is profitable. It acts as a signal-to-trade execution and trade-management tool.

Main Features

Multiple Signal Detection Methods

SignalBridge EA can work with many common MT4 indicator designs.

Supported methods include:

  • BUY and SELL indicator buffers

  • Single state buffers such as 1 = BUY and -1 = SELL

  • Wingdings arrow objects

  • Standard MT4 BUY/SELL arrows

  • Standard MT4 UP/DOWN arrows

  • Custom arrow codes

  • BUY/SELL chart text

  • LONG/SHORT chart text

  • BULL/BEAR chart text

  • UP/DOWN chart text

  • BUY/SELL keywords contained in chart object names

  • Combined signal detection

Because MT4 indicators can be programmed in many different ways, compatibility with every third-party indicator cannot be guaranteed.

Automated Trade Management

SignalBridge EA includes configurable trade-management features:

Stop Loss

Automatically places a Stop Loss based on the configured pip distance.

Take Profit 1

Sets the first profit target.

Take Profit 2

Provides a second profit target for the remaining position.

Partial Close

When TP1 is reached, the EA can close the configured percentage of the position and leave the remainder running toward TP2.

Breakeven

The remaining position can automatically be protected at breakeven after the configured conditions are reached.

Trailing Stop

The EA can trail the Stop Loss as the market continues moving in the trade's favor.

Magic Number

SignalBridge EA uses a Magic Number to identify and manage its own trades without intentionally managing unrelated EA positions.

Signal Modes

The SignalSource input determines how SignalBridge EA obtains its trading signals.

SIGNAL_INTERNAL_MA

Uses the EA's built-in EMA crossover signal.

This mode allows SignalBridge EA to operate independently without an external indicator.

The internal fast and slow EMA periods can be configured from the inputs.

SIGNAL_FROM_OBJECTS

Use this mode when your indicator creates arrows, labels, text, or other supported signal objects directly on the chart.

SIGNAL_FROM_DUAL_BUFFER

Use this when the indicator has separate buffers for BUY and SELL signals.

For example:

  • Buffer 0 = BUY

  • Buffer 1 = SELL

The buffer numbers can be changed from the EA inputs.

SIGNAL_FROM_STATE_BUFFER

Use this when a single indicator buffer represents both directions.

For example:

  • 1 = BUY

  • -1 = SELL

The expected BUY and SELL values are configurable.

SIGNAL_FROM_ALL

Allows SignalBridge EA to check the supported external signal methods together.

Use this mode carefully to avoid multiple methods representing the same indicator signal.

How to Install SignalBridge EA

Step 1 — Install the EA

Open MetaTrader 4.

Select:

File → Open Data Folder

Then open:

MQL4 → Experts

Place SignalBridge EA in the Experts folder.

Restart MetaTrader 4 or refresh the Expert Advisors section in the Navigator.

Step 2 — Install Your Indicator

If you are using SignalBridge EA with a third-party custom indicator, install that indicator normally.

Open:

File → Open Data Folder → MQL4 → Indicators

Place the indicator in the Indicators folder.

Restart MetaTrader 4 or refresh the Navigator.

Step 3 — Open a Chart

Open the symbol and timeframe you want to trade.

For example:

EURUSD — M15

Attach your signal indicator to the chart first when using chart-object signals.

Then attach SignalBridge EA to the same chart.

Step 4 — Enable Automated Trading

Make sure AutoTrading is enabled in MetaTrader 4.

When attaching SignalBridge EA, open the Common tab and enable:

Allow live trading

The AutoTrading button at the top of MT4 should also be enabled.

Using an Arrow Indicator

If your indicator draws BUY and SELL arrows directly on the chart, select:

SignalSource = SIGNAL_FROM_OBJECTS

The default settings scan supported chart arrows, text objects, and object names.

If your indicator uses special Wingdings arrow codes, enter the appropriate codes in:

ArrowCodeBuy

ArrowCodeSell

Alternative codes can also be configured.

Using an Indicator With BUY/SELL Buffers

If your indicator uses two separate buffers, select:

SignalSource = SIGNAL_FROM_DUAL_BUFFER

Then enter the indicator name.

Example:

IndicatorName = MySignalIndicator

Do not include .ex4 .

Configure:

BufferBuy = 0

BufferSell = 1

These are only examples. You must use the actual buffer numbers used by your indicator.

Using a Single Signal Buffer

For indicators where one buffer contains the trading direction, select:

SignalSource = SIGNAL_FROM_STATE_BUFFER

Example configuration:

StateBuffer = 0

StateBuyValue = 1.0

StateSellValue = -1.0

Change these values if your indicator uses a different convention.

BUY and SELL Keywords

SignalBridge EA can search supported chart text and object names for signal words.

Default BUY-related keywords include:

buy, long, bull, up

Default SELL-related keywords include:

sell, short, bear, down

These keywords can be adjusted to match the terminology used by your indicator.

SignalShift

SignalShift = 1 is recommended.

A value of 1 tells SignalBridge EA to evaluate the last closed candle where applicable.

This can help prevent acting on an unfinished current candle whose signal may still change.

Invert Signals

The InvertSignals option reverses detected signals.

When disabled:

BUY signal → BUY trade
SELL signal → SELL trade

When enabled:

BUY signal → SELL trade
SELL signal → BUY trade

Leave this option disabled unless your strategy specifically requires reversed signals.

Trading Settings

LotSize

Sets the requested trading volume.

Example:

LotSize = 0.10

Always select a position size appropriate for your account and risk tolerance.

StopLoss

Stop Loss distance in pips.

Example:

StopLoss = 30

TakeProfit1

First profit target in pips.

Example:

TakeProfit1 = 50

TakeProfit2

Second profit target in pips.

Example:

TakeProfit2 = 100

PartialClosePercent

Percentage of the position to close at TP1.

Example:

PartialClosePercent = 50

This means the EA attempts to close 50% of the position when TP1 is reached, subject to the broker's minimum lot size and lot-step requirements.

BreakevenAfterTP1

When enabled, SignalBridge EA can protect the remaining position with a breakeven Stop Loss after TP1.

BreakevenOffset

Controls the configured offset from the entry price when breakeven protection is applied.

UseTrailingStop

Enables or disables trailing-stop management.

TrailingStop

Sets the trailing distance.

TrailingStep

Controls the minimum step used when updating the trailing Stop Loss.

SlippagePoints

Sets the permitted order-execution slippage in points.

Example Setup

Suppose you have an indicator that:

  • Places a green upward arrow for BUY

  • Places a red downward arrow for SELL

  • Creates those arrows as chart objects

A typical setup would be:

SignalSource = SIGNAL_FROM_OBJECTS

SignalShift = 1

ScanArrowObjects = true

LotSize = 0.10

TakeProfit1 = 50

TakeProfit2 = 100

StopLoss = 30

PartialClosePercent = 50

BreakevenAfterTP1 = true

UseTrailingStop = true

Once the indicator creates a supported new BUY or SELL signal, SignalBridge EA can detect it and execute the corresponding trade according to your settings.

Important Compatibility Information

SignalBridge EA is designed to support many common MT4 signal indicators, but it cannot guarantee compatibility with every indicator.

Some indicators use proprietary internal calculations without exposing their signals through accessible buffers or chart objects. Others require special parameters when accessed through iCustom() .

If an indicator does not expose its signal in one of the supported formats, additional configuration or modification may be required.

For buffer-based indicators, users should know the indicator's BUY/SELL buffer numbers or signal values.

Important Trading Information

SignalBridge EA is a trade-execution and management tool.

The quality and profitability of trades depend heavily on:

  • The connected indicator

  • Indicator settings

  • Symbol

  • Timeframe

  • Market conditions

  • Spread and execution

  • Stop Loss and Take Profit configuration

  • Risk and lot-size settings

SignalBridge EA does not guarantee profits.

Always test your indicator and SignalBridge EA combination on a demo account and in appropriate testing conditions before using it on a live account.

SignalBridge EA

Connect compatible indicator signals to automated MT4 trade execution and management.


Prodotti consigliati
This panel is a part of the SupDem-Pro trading system and is used to search for the best opportunities for any available instruments. Which can be selected manually in the Market Watch (open it with CTRL + M). Using this trading panel in combination with ShvedSupDem-Pro_Zone allows to analyze multiple currency pairs with a single click. The panel allows to load any instruments from the Market Watch, from 6 major currency pairs up to all instruments (480). The indicator parameters Button Width -
FREE
Risk Commander
Adisorn Soodkanueng
Product Name: Risk Commander: Trade Assistant & Strategy Simulator Risk Commander is more than just a trade panel—it is a complete Manual Trading Ecosystem . It serves two powerful purposes: Live Assistant: Helps you execute trades with speed, precision, and perfect risk management in real-time markets. Training Simulator: Fully compatible with the Strategy Tester (Visual Mode) , allowing you to practice manual trading on historical data without risking a cent. NEW! Built-in Simulator Mode Stop
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with s
Angry bull Option Binary
Fabio Oliveira Magalhaes
1 (1)
Angry Bull Option Binary   This is a Binary Options robot, which contains 7 strategies, you can backtest it to check what the best strategies are Settings Initial Batch Value Dynamic Investment = If activated it will use an automatic lot according to its capital Balance ($) w/ backtest = Starting balance to backtest PorcRiscoInvestment = It will be the value of % for the automatic lot if it is activated Expiration (in minutes) = It will be the expiration time of orders in Binary Options Magic
Auto Fibo Pro m
DMITRII GRIDASOV
Indicatore "Auto FIBO Pro" Crypto_Forex: è un ottimo strumento ausiliario nel trading! - L'indicatore calcola e posiziona automaticamente sul grafico i livelli di Fibo e le linee di tendenza locali (colore rosso). - I livelli di Fibonacci indicano le aree chiave in cui il prezzo può invertirsi. - I livelli più importanti sono 23,6%, 38,2%, 50% e 61,8%. - Puoi usarlo per lo scalping di inversione o per il trading di zone grid. - Ci sono molte opportunità per migliorare il tuo sistema attuale usa
Quick Funding in Prop Trading Firms
Abdeljalil El Kedmiri
4.85 (27)
This EA is designed to pass challenges of prop firms (proprietary trading firm) that allow use of High and Low Frequency trading strategies. A Gift i ncluded in this expert    :   Range Breakout strategy  that identify daily support and resistance levels and initiating both Long and Short trades automaticly at these key points. We use special HFT strategy that detect large movements and employ stop loss to protect your equity. It has build-in equity protector which will stop the EA once the pro
Vizzion
Joel Protusada
Vizzion is a fully automated scalping Expert Advisor that can be run successfully using GBPJPY currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks on
Exp Averager
Vladislav Andruschenko
4.82 (22)
Averager per MetaTrader 4 — sistema professionale di recupero posizioni e gestione di serie di operazioni Un Expert Advisor progettato per i trader che vogliono gestire in modo intelligente posizioni in drawdown, migliorare il prezzo medio di entrata e controllare l’intero paniere di operazioni come una struttura unica e coordinata. Averager non è un semplice strumento di mediazione. È una soluzione pratica per ricostruire posizioni in perdita, riorganizzare il prezzo medio e portare l’intera s
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
ForexcopyLocalMT4
Wei Ming Ding
3 (1)
Istruzioni per l'uso: https://www.mql5.com/zh/blogs/post/754946 Versione MT4: https://www.mql5.com/zh/market/product/88205 Versione MT5: https://www.mql5.com/zh/market/product/88204 -------------------------------------------------- 1. Copia ordini, da 12 account master a 100 account slave. Il numero di account slave può essere personalizzato, da 12 a 100. 2. Supporta da MT4 a MT4, da MT4 a MT5, da MT5 a MT4, da MT5 a MT5. 3. Identificare i suffissi delle varietà di trading su diverse piattafor
The Best One Scalping Trade Panel functional manual trade panel with risk reward, auto SL by candle ( original solution), lot size calculation, one-click trading, scale in and out of trades (partial close),  Works with all symbols not just currency pairs, perfect works on DAX, NASDAQ, GOLD, ...... I earn every day during live stream on ZakopiecFX - join Me Risk by lot Risk by percent SL by points SL by Candle, Renko, RangeBar ( original solution) TP by point TP by Risk/Reward Auto Trailing by P
Daily Candle Predictor è un indicatore che prevede il prezzo di chiusura di una candela. L'indicatore è destinato principalmente all'uso sui grafici D1. Questo indicatore è adatto sia per il trading forex tradizionale che per il trading di opzioni binarie. L'indicatore può essere utilizzato come sistema di trading autonomo o può fungere da aggiunta al sistema di trading esistente. Questo indicatore analizza la candela corrente, calcolando alcuni fattori di forza all'interno del corpo della cande
VR Cub
Vladimir Pastushak
VR Cub è un indicatore per ottenere punti di ingresso di alta qualità. L'indicatore è stato sviluppato per facilitare i calcoli matematici e semplificare la ricerca dei punti di ingresso in una posizione. La strategia di trading per la quale è stato scritto l'indicatore ha dimostrato la sua efficacia per molti anni. La semplicità della strategia di trading è il suo grande vantaggio, che consente anche ai trader alle prime armi di commerciare con successo con essa. VR Cub calcola i punti di apert
CoPilot dashboard MT4
Frederic Jacques Collomb
CoPilot — Dashboard di trading giornaliero Conosci i tuoi numeri. Fai trading con chiarezza. Versione MT5 Cos'è CoPilot? CoPilot è un assistente di trading di livello professionale che visualizza in tempo reale tutte le statistiche di performance giornaliera direttamente sul grafico — con una curva di equity in tempo reale che si aggiorna operazione per operazione. Progettato per i trader attivi che necessitano di visibilità immediata sulla propria sessione senza lasciare il grafico, CoPilot agg
Margin Call Shield – Defend Your Margin on Your Terms Margin Call Shield   is a tool for MetaTrader 4 traders who want to decide for themselves which open positions are closed during margin call situations before the platform does so automatically based on its internal rules. By default, the broker or platform decides which positions to close, often using undisclosed algorithms. Margin Call Shield lets you set this order according to your own strategy. Why Was Margin Call Shield Created? In a  
GGP Trade Copier MT4
Mohammadmahmood Pirayeh
GGP Trade Copier  EA is an automatic trading bot that can help traders automatically replicate the trading strategies and operations from one trading terminal to others by experiencing exceptionally fast trade copying system. Its easy-to-use setup 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. The software supports multiple trading varieties, including Forex, commodities, stocks,
Smartility
Syed Oarasul Islam
This utility is designed to help you with your Manual Trading. It allows different ways of closing trades. It can display total number of BUY and SELL orders individually and also their individual profits. It can enter trades without stopl loss and take profits. However upon selecting UseStopLossTakeProfit from the settings it can use best possible stop loss and take profits based on the market conditions. Upon selecting the CloseOppositeTrades  from the settings it can close opposite trades. Fo
Gold Expert VR
Huynh Van Cong Luan
Gold Expert VR – Your Ultimate Automated Scalping Solution! Gold Expert VR is a fully automated Expert Advisor (EA) meticulously designed for scalping during periods of   low market volatility . This EA integrates self-adaptive market algorithms with reinforcement learning elements to optimize trading decisions while minimizing risks.   Key Features of Gold Expert VR: Advanced Self-Adaptive Algorithms:   Automatically identifies bespoke entry points and utilizes multiple advanced filters f
TradePilot
Hossein Khalil Alishir
TradePilot Expert Advisor (EA) for MetaTrader 4 TradePilot is a professional and user-friendly Expert Advisor (EA) for MetaTrader 4 (MT4) . It simplifies automated trading , risk management , and trade execution using a smart trading panel . Perfect for beginners and experienced traders looking for a reliable trade manager EA with automated lot size calculation . Key Advantages User-Friendly Trading Panel: Customizable panel with buttons and hotkeys. Smart Risk Management: Supports percen
Dark Kakashi PRO EA
Aleksandr Kazmirchuk
Dark Kakashi PRO EA is an advanced version of the Dark Kakashi FREE EA (unfortunately, ratings are being intentionally manipulated, which forced the release of a paid version). All requested features have been implemented. The code has been rewritten, and numerous errors have been fixed, including those related to position closing. This Expert Advisor will continue to be improved in the future. It belongs to the Yarukami Mnukakashi family of advisors designed for Gold (XAUUSD). You can also tra
VN Trade Panel II
Vyacheslav Nekipelov
4 (1)
The new version of the trading panel, which now has the ability to separately close Buy and Sell orders, display targets for all orders on the chart, as well as the ability to use the panel to trade with brokers working on the FIFO rule. Also, the new version adds option buttons for separate management of open orders. It has a convenient visualized interface and intuitive control without a lot of additional tabs to which traders have to be distracted and switch their attention. Thanks to this,
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
Panel "panel_kjutaMultiTerminal" for trading. Opens, modifies, closes and deletes trading and pending orders from the chart using virtual lines, buttons and the active information terminal. Automatically opens an order by indicator levels. Hints in Russian, English or disabled. It has a number of functions for trailing virtual Take Profit lines and limit orders. Displays information on the active information terminal.  Hides and includes virtual lines S/L , T / P, buttons "<>","M","X", as well a
Equity Master Stop v2
Frank William Jr Colbert
Trading tool combining a sophisticated equity stop-loss, dynamic take-profit management (Breakeven & Trailing), and symbol-group-based closing logic. It is a complete risk management and trade supervision tool. Features: All features of `Equity Master Stop v1` (floating profit/loss limits, exit protection, skip hours). Take-Profit Override: Can force a TP on any order to lock in a `MAX_FLOATING_PROFIT`. Step Breakeven: Locks in increasing amounts of profit as a trade moves favorably (e.g., aft
AnyChart MT4
Irek Gilmutdinov
AnyChart is a multifunctional tool allowing you to work with non-standard charts in MetaTrader 4. It includes collector of ticks and generator of charts for trading (hst files) and testing (fxt files). Supported chart types are second, tick and renko ones. Settings Starting Date - start date for chart plotting. Ending Date - end date for chart plotting. Chart Type - chart type: Time - time chart, each bar contains a certain time interval; Tick - volume chart, each bar contains a certain number
TakeProfit Catcher
Mikhail Kontsevoy
It is so very disappointing when the price does not have enough points to achieve Take Profit and makes a reversal. This EA sets virtual levels near the TakeProfit levels. This EA sets virtual levels next to TakeProfit orders. If these levels are reached by price, breakeven or trailing stop is applied for an order. Features This EA does not set new orders. The aim of this EA is to manage stop losses of existing orders that are set by another EA or manually (magic number equals 0). For correct w
Win Sniper Follow
Nirundorn Promphao
1 (1)
I will support only my client. สำหรับลูกค้า Win Sniper Follow  is a fully automated Expert Advisor with no use of martingale. Night scalping strategy. The RSI indicator and an ATR-based filter are used for entries. Real operation monitoring as well as my other products can be found here :  https://www.mql5.com/en/users/winwifi/ General Recommendations The minimum deposit is 100 USD, the recommended timeframe is M15, H1, H4. Use a broker with good execution and with a spread of 2-5 points. A ver
Trendline EA
Carlos Oliveira
4.5 (10)
Trendline EA MT4 Trendline EA MT4 es un Asesor Experto (Expert Advisor) semiautomático para MetaTrader 4 diseñado para ejecutar acciones de trading o generar alertas basadas en líneas de tendencia dibujadas por el usuario. MetaTrader 4 no ofrece de forma nativa la posibilidad de colocar o gestionar operaciones directamente desde líneas de tendencia. Este Asesor Experto amplía el comportamiento estándar de la plataforma al monitorear las líneas de tendencia definidas por el usuario y ejecutar acc
Elevate your trading experience with   Dynamic Trader EA MT4 , a cutting-edge trading robot designed to optimize your investment strategy. This advanced algorithm harnesses the power of four key indicators:   RSI   ( Relative Strength Index ),   Stochastic Oscillator ,   MACD   ( Moving Average Convergence Divergence ) and   ATR   ( Average True Range ) to make informed and precise trading decisions. ATR is used to dynamically set stop-loss and take-profit levels based on market volatility. IMP
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
Gli utenti di questo prodotto hanno anche acquistato
Forex Trade Manager MT4
InvestSoft
4.98 (445)
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
Local Trade Copier EA MT4
Juvenille Emperor Limited
4.96 (111)
Sperimenta una copia di trading eccezionalmente veloce con il Local Trade Copier EA MT4 . Con la sua facile configurazione in 1 minuto, questo copiatore di trading ti consente di copiare i trades tra diversi terminali di MetaTrader sullo stesso computer Windows o su Windows VPS con velocità di copia ultra veloci inferiori a 0.5 secondi. Che tu sia un trader principiante o professionista, Local Trade Copier EA MT4 offre una vasta gamma di opzioni per personalizzarlo alle tue esigenze specifiche.
Trade Assistant MT4
Evgeniy Kravchenko
4.43 (197)
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 characteris
Trade copier MT4
Alfiya Fazylova
4.6 (35)
Trade Copier è un'utilità professionale progettata per copiare e sincronizzare le transazioni tra conti di trading. La copiatura avviene dal conto/terminale del fornitore al conto/terminale del destinatario, che sono installati sullo stesso computer o vps. PROMOZIONE - Se avete già acquistato il "Trade copier MT4", potete ottenere gratuitamente il "Trade copier MT5" (per la copia MT4 > MT5 e MT4 < MT5). Per maggiori informazioni sulle condizioni, vi preghiamo di contattarci tramite messaggi priv
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.69 (65)
Copiatore professionale di operazioni per MetaTrader 4 Un copiatore di operazioni veloce, affidabile e professionale per MetaTrader 4 . COPYLOT consente di copiare operazioni Forex tra i terminali MetaTrader 4 e MetaTrader 5 , offrendo una sincronizzazione flessibile per diversi tipi di conto e modalità operative. La versione COPYLOT MT4 supporta: MetaTrader 4 → MetaTrader 4 MetaTrader 5 Hedge → MetaTrader 4 MetaTrader 5 Netting → MetaTrader 4   Versione MT5 Descrizione completa + DEMO + PDF Com
Unlimited Trade Copier Pro
Vu Trung Kien
4.43 (7)
Unlimited Trade Copier Pro 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 not b
Trade Reverse Copie4
Chukwuemeka Kingsley Anyanwu
5 (1)
Feel free to contact me for any extra features :) [SEE MT5 VERSION  https://www.mql5.com/en/market/product/128846 The Local Reverse Copier is an Expert Advisor designed to synchronize positions between a Master account and a Slave account with a twist: it reverses the trades. When a buy position is opened on the Master account, the EA opens a sell position on the Slave account, and vice versa. This allows for a unique form of trade copying where positions are mirrored in opposite directions bet
The product will copy all telegram signal to MT4   ( 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
TradePanel MT4
Alfiya Fazylova
4.84 (95)
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. Istruzioni per l'applicazione + video tutorial: https://www.mql5.com/it/blogs/post/762331 Versione di prova dell'applicazione per un conto demo: https://www.mql5.com/it/blogs/post/762419 Come installare l'applicazione: https://www.mql5.com/it/blogs/post/762362 Come testare l'applicazione in m
LMBFWatchlist is an interactive tool for Metatrader 4 that lets you create and manage watch lists directly on your Metatrader charts. ‌Functionality includes: ‌Add an unlimited number of watch lists with names of your choice Add different groups of watchlists for different time frames Add comments for symbols that always appear on the chart when that symbol is selected. Easily identify which symbols have comments against them. See watch lists instantly synchronise across all open charts that hav
Zone Trader MT4
Lee Samson
5 (1)
Fai trading automaticamente su zone di supporto e resistenza o di domanda e offerta una volta identificate le aree chiave da cui vuoi fare trading. Questo EA ti consente di disegnare zone di acquisto e vendita con un solo clic e poi posizionarle esattamente dove ti aspetti che il prezzo cambi. L'EA monitora quindi quelle zone e farà trading automaticamente in base all'azione del prezzo che specifichi per le zone. Una volta che il trading iniziale è stato eseguito, l'EA uscirà in profitto nella
Lot Architect MT4
Do Thi Phuong Anh
Lot Architect — Trade Panel & Risk-Based Position Size Calculator for MT4 Lot Architect is a one-click trade panel and risk-based position size calculator for MetaTrader 4. It works out your exact lot size from the risk you choose, shows risk, reward and risk-to-reward (R:R) before you enter, and places Market, Limit or Stop orders in a single click. In short: position sizing, risk management and fast trade execution in one clean panel on your chart. The problem every trader knows Most accounts
Scarica la versione di prova funzionante Copy Cat More (Gatto Copione) — Copiatore di Trade (Trade Copier) MT4 non è solo un semplice copiatore locale di trade; è un framework completo di gestione del rischio e di esecuzione (risk management and execution framework) progettato per le sfide di trading di oggi. Dalle challenge delle prop firm alla gestione di portafogli personali, si adatta a ogni situazione con la sua combinazione di esecuzione robusta, protezione del capitale, configurazione
The News Filter
Leolouiski Gan
5 (25)
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
News Filter EA MT4
Rashed Samir
5 (10)
News Filter EA: Advanced Algo Trading Assistant News Filter EA is an advanced algo trading assistant designed to enhance your trading experience. By using the   News Filter EA , you can integrate a Forex economic news filter into your existing expert advisor, even if you do not have access to its source code. In addition to the news filter, you can also specify   trading days   and   hours   for your expert. The News Filter EA also includes   risk management   and   equity protection   features
Riskless Pyramid
Snapdragon Systems Ltd
5 (1)
Introduction This powerful MT4 trade mangement EA offers a way potentially to aggressively multiply trade profits in a riskfree manner. Once a trade has been entered with a defined stoploss and take profit target then the EA will add three pyramid add-on trades in order to increase the overall level of profit. The user sets the total combined profit target to be gained if everything works out. This can be specified either as a multiple of the original trade profit or as a total dollar amount. Fo
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
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
Trade Signal Pro (MT4) — Telegram Signal Provider (Utility) A lightweight utility that sends trade notifications from your MT4 account to Telegram. It does NOT open/close trades. It only reads positions/deals and sends messages. What it sends Entry signal (BUY/SELL) with Entry, SL, TP, pips + Risk:Reward   Updates when SL/TP is modified (reply/tag to the original signal)   Close notifications: TP hit / SL hit / Breakeven / Manual close   Optional Daily & Weekly performance summary (win
VirtualTradePad PRO SE MT4 — pannello di trading avanzato e workspace grafico per MetaTrader 4 VirtualTradePad PRO SE è un pannello di trading professionale e un ambiente di gestione delle operazioni per MetaTrader 4 . Aiuta i trader ad aprire, gestire, proteggere, chiudere e analizzare le operazioni più rapidamente da un’unica interfaccia basata sul grafico. Il prodotto è stato creato per trader manuali attivi che hanno bisogno di qualcosa di più di un semplice insieme di pulsanti. PRO SE combi
VirtualTradePad mt4 Extra
Vladislav Andruschenko
4.85 (61)
Pannello di trading per il trading in 1 clic.   Lavorare con posizioni e ordini!   Trading dal grafico o dalla tastiera. Utilizzando il nostro pannello di trading, puoi fare trading con un clic dal grafico ed eseguire operazioni di trading 30 volte più velocemente rispetto al controllo MetaTrader standard. Calcoli automatici di parametri e funzioni che semplificano la vita di un trader e lo aiutano a condurre le proprie attività di trading in modo molto più rapido e conveniente. Suggerimenti gra
Trading History MT4
Siarhei Vashchylka
5 (9)
Trading History - A program for trading and money management on the history of quotes in stratagy tester. It can work with pending and immediate orders, and is equipped with trailing stop, breakeven and take profit functions. Very good for training and testing different strategies. Manual (Be sure to read before purchasing) Advantages 1. Allows you to test any trading strategy in the shortest possible time 2. An excellent simulator for trading training. You can gain months of trading experience
Custom Alerts AIO: Monitora tutti i mercati — senza alcuna configurazione Panoramica Custom Alerts AIO è una soluzione di monitoraggio dei mercati pronta all’uso che non richiede alcuna configurazione. Tutti gli indicatori necessari — FX Power, FX Volume, FX Dynamic, FX Levels, IX Power — sono integrati internamente. Non vengono mostrati grafici, rendendolo ideale per generare alert in tempo reale in modo discreto ed efficiente. Supporta tutte le classi di asset offerte dal tuo broker: Forex,
Trade Manager MT4 DaneTrades
Levi Dane Benjamin
4.09 (11)
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 4. Suppo
Il MT4 to Telegram Signal Provider è uno strumento facile da usare e completamente personalizzabile che consente l'invio di segnali a Telegram, trasformando il tuo account in un fornitore di segnali. Il formato dei messaggi è completamente personalizzabile! Tuttavia, per un uso semplice, puoi anche optare per un modello predefinito e abilitare o disabilitare parti specifiche del messaggio. [ Dimostrativo ]  [ Manuale ] [ Versione MT5 ] [ Versione Discord ] [ Canale Telegram ]  New: [ Telegram To
Support and Resistance Dashboard for MT4 is a multi-timeframe and multi-symbol scanner and alert system that finds S/R zones and pivot points for all timeframes and symbols and alerts when price has interaction with them. If you are using support and resistance (or supply and demand) zones in your trading strategy, this dashboard and its alert and filtering system is a big time saver for you. Download demo version   (works on M 1,M5,M30,W1   timeframes) Full description of scanner parameters ->
Ultimate Partial Profit EA
BLAKE STEVEN RODGER
4.67 (3)
This EA Utility delivers a robust solution for managing an unlimited array of open orders, both manual and automated. It enables customizable partial profit levels utilizing metrics such as pips, ratios, ATR (Average True Range), and profit amounts for precise trade management. The utility features an advanced on-screen display, offering clear visualization of all orders and their profit levels to enhance strategic decision-making and control. To evaluate its performance and interface, the EA s
Telegram to MT4 Multi-Channel Copier copia automaticamente i segnali di trading dai tuoi canali Telegram direttamente in MetaTrader 4. Nessun bot, nessuna estensione del browser, nessuna copia manuale. Ricevi un segnale su Telegram e l'EA apre l'operazione sul tuo terminale in pochi secondi. Il prodotto include due componenti: un'applicazione Windows che ascolta i tuoi canali Telegram, e questo Expert Advisor che esegue i segnali sul tuo terminale MT4. È disponibile anche una versione per MT5. G
Il Risk to Reward Ratio Manager è uno strumento visivo di gestione degli ordini e di calcolo delle dimensioni delle posizioni, progettato per supportare un trading disciplinato e una gestione professionale del rischio. Consente ai trader di impostare visivamente i livelli di ingresso, stop-loss e take-profit direttamente sul grafico, calcolando automaticamente la dimensione del lotto e il rapporto rischio/rendimento prima di inviare un ordine. Lo strumento aiuta a standardizzare la preparazione
PZ Trade Pad Pro MT4
PZ TRADING SLU
3.67 (3)
Effortlessly calculate lot sizes and manage trades to save time and avoid costly errors The Trade Pad Pro EA is a tool for the Metatrader Platform that aims to help traders manage their trades more efficiently and effectively. It has a user-friendly visual interface that allows users to easily place and manage an unlimited number of trades, helping to avoid human errors and enhance their trading activity. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] One of the k
RS Trade Copier
Boris Sedov
5 (1)
RS Trade Copier - il local trade copier ultra-veloce con una vera interfaccia grafica. Smetti di inserire i numeri di conto manualmente. Addio alle interminabili liste di oltre 200 parametri nelle impostazioni. Uno strumento affidabile e flessibile per copiare operazioni di trading tra multipli terminali MT4 e MT5. È adatto sia a trader esperti e servizi di segnali, sia a investitori privati. Permette di sincronizzare il trading da uno o più Fornitori a uno o più Clienti con elevata precisione e
Altri dall’autore
TriTrend Optimizer PRO TriTrend Optimizer PRO is a MetaTrader 4 technical analysis indicator designed to combine trend-based BUY/SELL signals with automatic parameter optimization and multi-symbol analysis. Instead of using one fixed configuration for every market, TriTrend Optimizer PRO can analyze historical price data and search a defined range of parameters to identify configurations that performed best under the selected testing criteria. Main Features BUY and SELL signal arrows directly on
TradeGuard Pro MT4 TradeGuard Pro MT4 is a position management utility designed for traders who want their existing MetaTrader 4 positions managed automatically. The utility does not generate trading signals and does not open positions. It manages existing BUY and SELL positions according to the settings selected by the user. Main Features Automatic Stop Loss management Automatic Take Profit management Break-Even protection Break-Even Profit Lock Trailing Stop management Current-symbol or multi-
TradePulse Telegram General Information Product name: TradePulse Telegram Platform: MetaTrader 4 Program type: Expert Advisor Category: Utilities Version: 1.10 Recommended purchase price: $39 Recommended activations: 5 Recommended rental: 1 month: $15 3 months: $25 Unlimited: $39 Upload file: TradePulse_Telegram.ex4 Short Description TradePulse Telegram sends MetaTrader 4 trade and account notifications directly to your Telegram chat using your own Telegram bot. Full Product Description TradePu
Filtro:
Nessuna recensione
Rispondi alla recensione