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.


Produtos recomendados
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     Este é um robô Binary Options, que contém 7 estratégias, você podetestá-lo para verificar quais são as melhores estratégias Configurações Valor inicial do lote Investimento Dinâmico = Se ativado, utilizará um lote automático de acordo com seu capital Saldo ($) c/ backtest - Saldo inicial para backtest PorcRiscoInvestment = Será o valor de % para o lote automático se for ativado Expiração (em minutos) = Será o tempo de vencimento das ordens em Opções Binárias Magi
O indicador Crypto_Forex "Auto FIBO Pro" é uma ótima ferramenta auxiliar na negociação! - O indicador calcula e coloca automaticamente no gráfico os níveis de Fibonacci e as linhas de tendência locais (cor vermelha). - Os níveis de Fibonacci indicam áreas-chave onde o preço pode reverter. - Os níveis mais importantes são 23,6%, 38,2%, 50% e 61,8%. - Pode utilizá-lo para scalping de reversão ou para negociação de grelha de zona. - Existem muitas oportunidades para melhorar o seu sistema atual ut
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 para MetaTrader 4 — sistema profissional de recuperação de operações e gestão de séries de posições Um Expert Advisor profissional criado para traders que precisam de uma forma controlada de fazer média em posições em drawdown, reorganizar sua cesta de operações e administrar a saída com muito mais precisão. O Averager foi desenvolvido para abrir operações adicionais quando o mercado se move contra uma posição existente, ajudando a melhorar o preço médio de entrada e a construir uma es
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)
Instruções de uso: https://www.mql5.com/zh/blogs/post/754946 Versão MT4: https://www.mql5.com/zh/market/product/88205 Versão MT5: https://www.mql5.com/zh/market/product/88204 -------------------------------------------------- 1. Copiar pedidos, de 12 contas master para 100 contas slave. O número de contas slave pode ser personalizado, de 12 a 100. 2. Suporte MT4 a MT4, MT4 a MT5, MT5 a MT4, MT5 a MT5. 3. Identifique os sufixos de variedades de negociação em diferentes plataformas, como EURUSD,
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 é um indicador que prevê o preço de fechamento de uma vela. O indicador destina-se principalmente ao uso em gráficos D1. Este indicador é adequado tanto para negociação forex tradicional quanto para negociação de opções binárias. O indicador pode ser usado como um sistema de negociação autônomo ou pode atuar como um complemento ao seu sistema de negociação existente. Este indicador analisa a vela atual, calculando certos fatores de força dentro do próprio corpo da vela, be
VR Cub
Vladimir Pastushak
VR Cub é um indicador para obter pontos de entrada de alta qualidade. O indicador foi desenvolvido para facilitar cálculos matemáticos e simplificar a busca por pontos de entrada em uma posição. A estratégia de negociação para a qual o indicador foi escrito tem provado a sua eficácia há muitos anos. A simplicidade da estratégia de negociação é a sua grande vantagem, o que permite que até mesmo os comerciantes novatos negociem com sucesso com ela. VR Cub calcula os pontos de abertura de posição e
CoPilot dashboard MT4
Frederic Jacques Collomb
CoPilot — Painel de trading diário Conheça os seus números. Opere com clareza. Versão MT5 O que é o CoPilot? O CoPilot é um assistente de trading de nível profissional que exibe em tempo real todas as estatísticas de desempenho diário diretamente no gráfico — com uma curva de equidade ao vivo que se atualiza operação por operação. Desenvolvido para traders ativos que precisam de visibilidade instantânea da sua sessão sem sair do gráfico, o CoPilot agrega cada operação fechada do dia em todos os
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 é um Expert Advisor (EA) semiautomático para MetaTrader 4 concebido para executar ações de trading ou gerar alertas com base em linhas de tendência desenhadas pelo utilizador. O MetaTrader 4 não oferece nativamente a possibilidade de abrir ou gerir ordens diretamente a partir de linhas de tendência. Este Expert Advisor estende o comportamento padrão da plataforma ao monitorizar linhas de tendência definidas pelo utilizador e executar ações predefinidas quando o
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+
Os compradores deste produto também adquirem
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 — painel de trading avançado e ambiente de gráfico para MetaTrader 4 VirtualTradePad PRO SE é um painel de trading profissional e um ambiente de gerenciamento de operações para MetaTrader 4 . Ele ajuda traders a abrir, gerenciar, proteger, fechar e analisar operações com mais rapidez a partir de uma única interface baseada no gráfico. O produto foi criado para traders manuais ativos que precisam de mais do que um simples conjunto de botões. O PRO SE combina execução em
Custom Alerts AIO: Monitoramento inteligente de múltiplos mercados – pronto para uso, sem configuração Visão geral Custom Alerts AIO é uma ferramenta avançada de varredura de mercado que funciona imediatamente após a instalação — sem necessidade de configurar indicadores adicionais. Inclui internamente todos os principais indicadores da Stein Investments (FX Power, FX Volume, FX Dynamic, FX Levels e IX Power), permitindo que você monitore facilmente todas as principais classes de ativos: Forex
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
Um painel profissional para operação manual que reúne todo o ciclo do trade em uma única janela no gráfico, da entrada precisa à proteção da conta. Calcule o volume exato de cada posição para o risco definido, monte a operação traçando linhas no gráfico com o RR Tool e envie ordens a mercado e pendentes, grids e OCO. O painel assume o acompanhamento da posição: fechamento parcial em até cinco níveis, seis tipos de trailing stop, breakeven e Virtual SL/TP. Limites diários, semanais e mensais prot
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 – A solução tudo-em-um para trading inteligente e sem esforço Visão geral Imagine analisar todo o mercado — Forex, Ouro, Cripto, Índices e até Ações — em segundos, sem precisar examinar gráficos manualmente, instalar indicadores ou lidar com configurações complicadas. EASY Insight AIO é sua ferramenta definitiva de exportação para trading com IA, pronta para usar. Ela oferece um panorama completo do mercado em um único arquivo CSV limpo — pronto para análise imediata no ChatGP
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
O painel FFx Hidden Manager vai ajudar facilitando o gerenciamento de suas ordens diretamente no gráfico. Abaixo a descrição de todos os recursos: TP, SL e Trailing Stop ficam ocultos Cada ordem tem a sua própria linha no gráfico Arrasta e solta (Drag & Drop) qualquer linha para alterar o TP/SL, conforme sua necessidade Opção para mover automaticamente a linha SL no empate (breakeven) quando TP # 1 for atingido Opção para escolher o tipo de TP/SL (por pips ou preço) Opção para escolher o tipo de
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 é uma ferramenta poderosa para copiar remotamente comércio entre multi-contas em diferentes locais mais internet. Esta é uma solução ideal para provedor de sinais, que querem compartilhar seu comércio com os outros no mundo todo em suas próprias regras. Um provedor pode copiar comércios de multi-receptores e um receptor pode obter comércio de multi-fornecedores também. Provedor e receptor pode gerenciar sua lista de parceiros com potência sistema de gestão de banco de dados buil
News Trader Pro
Vu Trung Kien
4.38 (16)
News Trader Pro é um robô único que permite a negociação com notícias pela sua estratégia pré-definida. Ele carrega pedaços de notícias de vários sites populares de Forex. Você pode escolher qualquer notícia e programar a estratégia para negociar, então o News Trader Pro vai operar com essa notícia através de uma estratégia selecionada automaticamente quando a notícia for publicada. As notícias dão a oportunidade de ter pips desde que o preço tenha um grande movimento com a publicação. Agora, co
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 é um painel para marcação manual rápida e fácil de usar das ondas Elliott. Pode-se selecionar uma cor e um nível de marcas. Também existem funções para remover a última marcação e toda a marcação feita pela ferramenta. A marcação é feita com um clique. Clique cinco vezes - tenha cinco ondas! O Elliott Wave Counter será um ótimo instrumento tanto para iniciantes quanto para analistas profissionais de ondas Elliott. Guia de instalação e entradas do Elliott Wave Counter se você
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
A ferramenta de análise de um clique é uma       criação de objeto baseada em atalho de teclado       e ferramenta de cópia para MetaTrader. Facilita o uso de ferramentas de análise no MetaTrader com apenas um clique. Com nossa ferramenta, você pode desenhar rapidamente níveis de suporte e resistência, níveis de Fibonacci, formas, canais, linhas de tendência e todos os outros objetos em seu gráfico. Basta clicar no botão, mover o mouse e a ferramenta One Click Analysis fará o resto para você. Is
Mais do autor
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:
Sem comentários
Responder ao comentário