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.


Produits recommandés
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" Crypto_Forex indicator - est un excellent outil auxiliaire dans le trading ! - L'indicateur calcule et place automatiquement sur le graphique les niveaux de Fibo et les lignes de tendance locales (couleur rouge). - Les niveaux de Fibonacci indiquent les zones clés où le prix peut s'inverser. - Les niveaux les plus importants sont 23,6 %, 38,2 %, 50 % et 61,8 %. - Vous pouvez l'utiliser pour le scalping inversé ou pour le trading en grille de zones. - Il existe également de nombr
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 pour MetaTrader 4 — système professionnel de récupération de positions et de gestion de paniers d’ordres Un Expert Advisor conçu pour les traders qui veulent gérer intelligemment des positions en drawdown, améliorer leur prix moyen d’entrée et piloter toute une série d’ordres comme une seule structure cohérente. Averager ne se limite pas à ouvrir des ordres supplémentaires. Il aide à reconstruire un panier de positions avec une logique claire de récupération, de protection et de sortie
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)
Mode d'emploi : https://www.mql5.com/zh/blogs/post/754946 Version MT4 : https://www.mql5.com/zh/market/product/88205 Version MT5 : https://www.mql5.com/zh/market/product/88204 -------------------------------------------------- 1. Copiez les commandes, de 12 comptes maîtres vers 100 comptes esclaves. Le nombre de comptes esclaves peut être personnalisé, de 12 à 100. 2. Prend en charge MT4 à MT4, MT4 à MT5, MT5 à MT4, MT5 à MT5. 3. Identifiez les suffixes des variétés de trading sur différentes p
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 est un indicateur qui prédit le cours de clôture d'une bougie. L'indicateur est principalement destiné à être utilisé sur les graphiques D1. Cet indicateur convient à la fois au trading forex traditionnel et au trading d'options binaires. L'indicateur peut être utilisé comme un système de trading autonome, ou il peut servir de complément à votre système de trading existant. Cet indicateur analyse la bougie actuelle, calcule certains facteurs de force à l'intérieur du corps
VR Cub
Vladimir Pastushak
VR Cub est un indicateur permettant d'obtenir des points d'entrée de haute qualité. L'indicateur a été développé pour faciliter les calculs mathématiques et simplifier la recherche de points d'entrée dans un poste. La stratégie de trading pour laquelle l'indicateur a été rédigé prouve son efficacité depuis de nombreuses années. La simplicité de la stratégie de trading est son grand avantage, qui permet même aux traders débutants de négocier avec succès avec elle. VR Cub calcule les points d'ouve
CoPilot dashboard MT4
Frederic Jacques Collomb
CoPilot — Tableau de bord de trading journalier Connaissez vos chiffres. Tradez avec clarté. MT5 version Qu'est-ce que CoPilot ? CoPilot est un assistant de trading de niveau professionnel qui affiche en temps réel toutes vos statistiques de performance journalière directement sur le graphique — avec une courbe d'équité live qui se met à jour trade par trade. Conçu pour les traders actifs qui ont besoin d'une visibilité instantanée sur leur session sans quitter le graphique, CoPilot agrège chaqu
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
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 est un Expert Advisor semi-automatisé pour MetaTrader 4 conçu pour exécuter des actions de trading ou envoyer des alertes basées sur des lignes de tendance tracées par l’utilisateur. MetaTrader 4 ne fournit pas nativement de fonctionnalité permettant de placer ou gérer des transactions directement à partir des lignes de tendance. Cet Expert Advisor étend le comportement standard de la plateforme en surveillant les lignes de tendance définies par l’utilisateur et
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+
Les acheteurs de ce produit ont également acheté
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
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
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
VirtualTradePad PRO SE MT4 — panneau de trading avancé et espace graphique pour MetaTrader 4 VirtualTradePad PRO SE est un panneau de trading professionnel et un espace de gestion des trades pour MetaTrader 4 . Il aide les traders à ouvrir, gérer, protéger, fermer et analyser leurs trades plus rapidement depuis une seule interface basée sur le graphique. Le produit a été créé pour les traders manuels actifs qui ont besoin de plus qu’un simple ensemble de boutons. PRO SE combine l’exécution en un
Custom Alerts AIO : Surveillez tous les marchés à la fois — sans aucune configuration Présentation Custom Alerts AIO est une solution de surveillance du marché prête à l’emploi, sans configuration nécessaire. Tous les indicateurs requis — FX Power, FX Volume, FX Dynamic, FX Levels, IX Power — sont directement intégrés. Aucun graphique n’est affiché, ce qui rend cet outil idéal pour la génération d’alertes en temps réel. Il prend en charge toutes les classes d’actifs proposées par votre courtie
Strategy Builder offers an incredible amount of functionality. It combines a trade panel with configurable automation (covert indicators into an EA), real-time statistics (profit & draw down) plus automatic optimization of SL, TP/exit, trading hours, indicator inputs. Multiple indicators can be combined into an single alert/trade signal and can include custom indicators, even if just have ex4 file or purchased from Market. The system is easily configured via a CONFIG button and associated pop-up
Un panneau professionnel pour le trading manuel qui réunit tout le cycle d'une opération dans une seule fenêtre sur le graphique, de l'entrée précise à la protection du compte. Calibrez chaque position au plus près du risque que vous fixez, dessinez votre trade avec des lignes directement sur le graphique grâce au RR Tool, et passez des ordres au marché et en attente, des grilles et de l'OCO. Le panneau prend en charge le suivi de la position : clôture partielle jusqu'à cinq niveaux, six types d
Smart Channel M4
Vahidreza Heidar Gholami
The trend in the market can be predicted using trend lines but the problem is you don’t know where exactly the price is going to touch the trend line where you can put your pending orders on. Smart Channel Expert Advisor makes it possible to put an advanced channel around the price data, which can be configured to handle placing orders, opening and closing positions, managing risk per trade, spread, slippage, and trailing stop-loss and take-profit automatically. Features Money Management (Calcul
Ultimate Trailing Stop EA
BLAKE STEVEN RODGER
4.33 (15)
This EA Utility allows you to manage (with advanced filtering) unlimited open orders (manual or EA) with 16 trailing stop methods: fixed, percent, ATR Exit, Chandelier Exit, Moving Average, Candle High Low Exit, Bollinger Bands, Parabolic, Envelope, Fractal, Ichimoku Kijun-Sen, Alligator, Exit After X Minutes or Bars, RSI and Stochastic. The trailing stop can be either real or virtual, and you can exit fully or with a partial close percent on touch or bar close.  Moreover, you can add (overrid
ManHedger MT4
Peter Mueller
5 (2)
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. Contact me for user support or bug reports, or if you want the MT5 version! MT5 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 strategies, to profit from ranging markets. Place orders easil
The Expert Advisor will help you forward all pop-up alert with screenshot from  MetaTrader 4 to Telegram channel/ group, also forward all notifications to Telegram. Parameters  -  Telegram Bot Token - create bot on Telegram and get token.  -  Telegram Chat ID  - input your Telegram user ID,  group / channel ID  -  Forward Alert - default true, to forward alert.  -  Send message as caption of Screenshot - default false, set true to send message below Screenshot  How to setup and guide  - Telegram
EasyInsight AIO MT4
Alain Verleyen
4 (2)
EASY Insight AIO – La solution tout-en-un pour un trading intelligent et sans effort Présentation Imaginez pouvoir analyser l’ensemble du marché — Forex, Or, Crypto, Indices et même Actions — en quelques secondes, sans aucune analyse manuelle de graphiques, sans installation complexe ni configuration d’indicateurs. EASY Insight AIO est votre outil d’exportation ultime, prêt à l’emploi, pour un trading alimenté par l’IA. Il fournit une vue d’ensemble du marché dans un fichier CSV propre — prêt
RedFox Copier Pro
Rui Manh Tien
4.7 (10)
Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4 platforms. Users not only can follow all instructions from the signa
If you need an advisor on any arrow indicator signals - this utility will definitely help you.  You will be able, with the help of this utility to form an unlimited number of EAs on YOUR signals , with your set of settings, with your copyright and complete source code . You will be able to use the resulting EAs unlimitedly , including adding them to the Market and other resources. Free simple version of the generation script to help you understand how it works - here What does the utility do? 
The product will copy all  Discord  signal   to MT4   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT4. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrader
The FFx Hidden Manager panel will help you to manage easily your orders directly on the chart. Below all features described: TP, SL and TrailingStop are hidden Each order has its own lines on chart Drag & Drop any line to change the TP/SL as per your need Option to move automatically the SL line at breakeven when TP #1 is reached Option to choose the TP/SL type (by pips or price) Option to choose the TrailingStop type (by pips, MA, Fractals, PSAR or ATR) Define which order(s) you want to manage
FFx Risk Calculator panel will help you to calculate very easily your trades size, SL or the risk directly on the chart. All features are described below: Option to select which parameter to calculate: Risk, Stop Loss or Lot Size The panel will show if the lot size is allowed according to the current account free margin Button to maximize/minimize the panel Drag and Drop the panel anywhere on the chart How to use it? Select the parameter you want to be calculated. It will be based on the 2 other
Trade Copier Pro
Vu Trung Kien
4.29 (14)
Trade Copier Pro is a tool to copy trade remotely to 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 be able to receive t
News Trader Pro
Vu Trung Kien
4.38 (16)
News Trader Pro is a unique robot that allows you to trade the news by your predefined strategy. It loads every piece of news from several popular Forex websites. You can choose any news and preset the strategy to trade it, and then News Trader Pro will trade that news by selected strategy automatically when the news comes. News release gives opportunity to have pips since the price usually has big move at that time. Now, with this tool, trading news becomes easier, more flexible and more exciti
FFx Watcher PRO
Eric Venturi-Bloxs
The FFx Watcher PRO is a dashboard displaying on a single chart the current direction of up to 15 standard indicators and up to 9 timeframes. It has 2 different modes: 1. Watcher mode: Multi Indicators User is able to select up to 15 indicators to be displayed User is able to select up to 9 timeframes to be displayed 2. Watcher mode: Multi Pairs User is able to select any number of pairs/symbols User is able to select up to 9 timeframes to be displayed This mode uses one of the standard indicat
NickZ Tool
Nicolas Zouein
This is a must have tool for a serious trader. It saves your precious time spent for opening/closing trades, creating pending trades and modifying your TP/SL in bulk according to either pips or price. If you need to quickly open several pending orders (Buy Stop, Sell Stop) at a certain distance from each other, this script will do all the routine for you! The first time you use this handy tool, you will realize it has already paid for itself. Instructions: Drag and drop this script onto a chart.
The product combines a manual trade panel with the ability to perform actions automatically in a highly configurable way. Actions include capturing indicator values and then based on those values raising alerts, open/close or partially close trades, scale-in, setting up pending orders, adjusting stop loss, take profit and more. On-chart controls can be configured, such as tick boxes and buttons, so can be fully interactive. The EA also handles money management, news events, hidden stop loss, tak
Binary Options Copier Remote is an EA that allows to copy binary options trades between MT4 accounts at different computers. This is an ideal solution for signal provider, who want to share his trade with the others globally on his own rules. Provider can give free bonus license to 10 receivers. That means those 10 receivers can copy from provider by using Binary Options Receiver Free (no cost). From 11th one, receiver have to buy Binary Options Receiver Pro (paid version) in order to copy from
This panel is very simple to use and it is a very ally to manage your positions and orders. Also you can modify your risk, writing in fields directly on Panel. One click on buttons and the operation on market is done! Operations possible: BUY/SELL Break Even Split (close 50% all orders) Close All positions Hedging (opens reverse positions to cover) Close only BUY positions Close only SELL positions Close All pending orders Reverse all positions Please watch the video to verify the very simple u
Slow Pips OCO Trade Panel is an advanced trading panel for placing pending orders. Traders can use this panel to place two pending orders at once. One pending order would be of buy entry type and the other one would be of sell entry type. Both orders will have Stop Loss and Take Profit parameters. Since two pending orders are placed at the same time, the pending order for which the price hits first gets converted into a market order and the other pending order gets deleted (one order cancels the
This indicator changes the timeframe and chart profile for multiple charts. If you dispatched many charts (10~20 or more) in single MetaTrader terminal, it is very boring and difficult work to manage the timeframe and chart profile individually. If the indicators you use in a chart are numerous and the setting values are different from the default one, you might give up adding all the indicators to all charts. The changing of timeframes on multiple charts has the same problem, too. Whenever you
The Price Action Dashboard is an innovative tool to help the trader to control a large number of financial instruments. This tool is designed to automatically suggest signals and price conditions. The Dashboard analyzes all major Time Frame suggesting price action conditions with graphic elements. The Dashboard can suggest you the strength of the trend identifying directional movement, it is an indispensable tool for those who want to open position themselves using market trends identifiers. The
Elliott Wave Counter est un panneau pour le balisage manuel rapide et convivial des vagues d'Elliott. On peut sélectionner une couleur et un niveau de marques. Il existe également des fonctions pour supprimer le dernier balisage et tout le balisage effectué par l'outil. Le balisage se fait en un clic. Cliquez cinq fois - ayez cinq vagues ! Elliott Wave Counter sera un excellent instrument à la fois pour les débutants et les analystes professionnels des vagues d'Elliott. Guide d'installation et d
If you wish to draw Support and Resistance lines, view: daily market opening, classical pivot levels, Fibonacci pivot levels, trend lines, Fibonacci levels, the remaining time to candle closing, and current spread. If you seek to place your orders with the exact lot that meets your desired stop loss risk. If you wish to do all this and more with just one click, then this is the perfect tool to use. This tool will allow you to feel more relaxed when deciding to open orders, as well as predicting
L'outil d'analyse en un clic est un       création d'objet basée sur un raccourci clavier       et outil de copie pour MetaTrader. Il facilite l'utilisation des outils d'analyse dans MetaTrader en un seul clic. Avec notre outil, vous pouvez rapidement dessiner des niveaux de support et de résistance, des niveaux de Fibonacci, des formes, des canaux, des lignes de tendance et tous les autres objets de votre graphique. Cliquez simplement sur le bouton, déplacez la souris et l'outil d'analyse en un
Plus de l'auteur
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
Filtrer:
Aucun avis
Répondre à l'avis