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.


推荐产品
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
Project Infinity
Sergey Yarmish
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
“Auto FIBO Pro” Crypto_Forex 指标 - 是交易中的绝佳辅助工具! - 指标自动计算并放置在图表斐波那契水平和局部趋势线(红色)上。 - 斐波那契水平指示价格可能反转的关键区域。 - 最重要的水平是 23.6%、38.2%、50% 和 61.8%。 - 您可以将其用于反转剥头皮或区域网格交易。 - 还有很多机会可以使用 Auto FIBO Pro 指标来改进您当前的系统。 - 它具有信息价差掉期显示 - 它显示所连接的外汇对的当前价差和掉期。 - 显示屏还显示账户余额、净值和保证金。 - 可以将信息价差掉期显示定位在图表的任何角落 . 点击这里查看高质量的交易机器人和指标! 这是仅在此 MQL5 网站上提供的原创产品。 ...............................................
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)
MetaTrader 4 用 Averager —— 专业的持仓均价管理与交易篮子恢复系统 这是一款为回撤中的持仓而打造的专业 Expert Advisor,核心任务不是寻找入场点,而是通过均价管理、追加开仓和整组仓位控制,帮助交易者更从容地处理亏损仓位与价格回撤。 Averager 并不是一个独立的自动交易系统,它不会像完整策略那样自动寻找市场信号并主动交易。它的价值在于:当你已经有持仓之后,它可以按照你的设定,对整组交易进行更聪明、更系统化的管理。 如果你希望在 MetaTrader 4 中获得一套更成熟的交易恢复逻辑,让仓位管理不再只是简单补单,而是围绕平均价格、统一止盈和整组追踪进行完整控制,那么这款产品正是为此而设计。 MT5版本 | 详细描述 + DEMO + PDF | 如何购买 | 如何安装 | 如何获取日志文件 | 如何测试和优化 | Expforex 的所有产品 为什么选择 Averager 针对回撤仓位进行均价管理 支持 顺势追加开仓 与 逆势均价开仓 整组仓位统一追踪止损 自动重算平均价格与整组共同退出点 支持灵活控制距离、手数增长和最大仓位数量 非常适合配合
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)
使用说明: https://www.mql5.com/zh/blogs/post/754946 MT4版本: https://www.mql5.com/zh/market/product/88205 MT5 版本: https://www.mql5.com/zh/market/product/88204 ---------------------------------------------- 1.复制订单,从12个主帐号到100个从帐号.从帐号数量可以自定,从12个到100个。 2.支持MT4到MT4, MT4到MT5, MT5到MT4,MT5 到MT5. 3.识别不同平台的交易品种后缀,如EURUSD,EURUSDm,EURUSDk. 4.自定义货币匹配,如XAUUSD=GOLD. 5.可复制所有交易,或只复制BUY,SELL,CLOSE指令 6.可选择是否复制止盈止损 7.可反向复制,如主帐号是BUY,从帐户就是SELL,反之也是。当主帐号平仓时,从帐户不管是同向复制还是反向复制,都会同时平仓 8.发生意外如从帐号关闭时,主帐号有平仓信号而从帐号没有及时复制,当从帐号再次启
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
这是一个预测蜡烛收盘价的指标。 该指标主要用于 D1 图表。 该指标适用于传统外汇交易和二元期权交易。 该指标可以用作独立的交易系统,也可以作为您现有交易系统的补充。 该指标分析当前蜡烛,计算蜡烛本身内部的某些强度因素,以及前一根蜡烛的参数。 因此,该指标预测市场走势的进一步方向和当前蜡烛的收盘价。 由于这种方法,该指标既适用于短期盘中交易,也适用于中长期交易。 该指标允许您设置指标在分析市场情况期间将产生的潜在信号的数量。 在指标设置中有一个特殊的参数。 此外,该指标可以通过图表上的消息、电子邮件以及推送通知的形式通知新信号。感谢您的关注!交易愉快! 购买后一定要写信给我! 我会给你我的交易指标的建议! 还可以获得奖金!
VR Cub
Vladimir Pastushak
VR Cub 这是获得高质量切入点的指标。该指标的开发是为了促进数学计算并简化对仓位入场点的搜索。多年来,该指标所针对的交易策略已被证明其有效性。交易策略的简单性是其巨大的优势,即使是新手交易者也能成功进行交易。 VR Cub 计算开仓点以及获利和止损目标水平,这显着提高了效率和易用性。查看使用以下策略进行交易的屏幕截图,了解简单的交易规则。 设置、设置文件、演示版本、说明、问题解决,可以从以下位置获取 [博客] 您可以在以下位置阅读或撰写评论 [关联] 版本为 [MetaTrader 5] 计算入场点的规则 开仓 要计算入场点,您需要将 VR Cub 工具从最后一个高点拉伸到最后一个低点。 如果第一个点在时间上早于第二个点,交易者等待柱线收于中线上方。 如果第一个点在时间上晚于第二个点,交易者等待柱线收于中线下方。 根据上述条件,严格在 柱线收盘 后建仓。 换句话说,如果我们在小时图上进行交易,那么从最高点到最低点的时间距离必须超过24小时,最高点和最低点之间的点数必须大于或等于平均价格变动每天。 维持和改变市场地位 可以有多个未平仓头寸;每个头寸都可以单独修改。 VR Cub
CoPilot dashboard MT4
Frederic Jacques Collomb
CoPilot — 每日交易仪表板 掌握你的数据。清晰地交易。 MT5 版本 什么是 CoPilot? CoPilot 是一款 专业级 交易助手,可将您每日的交易绩效统计数据 实时 显示在图表上——配备 实时权益曲线 ,逐笔更新。专为需要在不离开图表的情况下即时了解交易状态的活跃交易者而设计,CoPilot 汇总 当日所有交易品种的每笔已平仓交易 ,并以简洁、色码化的交互面板呈现。 无需再切换到终端历史选项卡,无需手动计算。CoPilot 就像您的 副驾驶 ——时刻守候,持续计算,始终在您眼前。 实时统计面板 CoPilot 显示完整的每日绩效指标,分为三个部分: 活动 — 今日总交易数、已平仓交易、持仓数量、盈利/亏损笔数、 胜率 (%) 及保本交易。胜率颜色动态调整:高于 50% 显示绿色,低于 50% 显示红色。 盈亏 — 净盈亏 、 盈利因子 、每笔平均盈利和平均亏损、 平均风险回报比 、当日最佳交易和最差交易。每个数值根据其含义以绿色或红色显示。 时间与点数 — 平均持仓时间、最短和最长持仓时间、所有交易品种累计 总点数 ,以及 最大连续盈利/亏损次数 。 所有统计数据均基于
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 是一款适用于 MetaTrader 4 的半自动化智能交易系统(Expert Advisor),旨在根据用户绘制的趋势线执行交易操作或发送提醒。 MetaTrader 4 本身并未提供直接基于趋势线进行下单或管理交易的原生功能。该智能交易系统通过监控用户定义的趋势线,并在价格与其发生交互时执行预设动作,从而扩展了平台的标准功能。 该智能交易系统不会定义或应用任何交易策略。所有交易逻辑和决策完全由用户掌控。 补充资料 用户手册与文档 MT5 版本 功能概览 基于趋势线的交易执行 当价格触及、突破或回撤趋势线时执行买入或卖出操作 为每条趋势线配置止损、止盈和交易手数 基于K线收盘价或与趋势线的价格距离触发动作 监控与提醒 在趋势线触及、突破、回撤或假突破时生成提醒 支持弹窗、电子邮件、推送通知和声音提醒 可选:当价格到达退出趋势线时自动平仓 用户主导分析 智能交易系统不会绘制、修改或重新定位趋势线 所有图表分析保持不变,并完全由用户控制 基本使用方法 将智能交易系统附加到图表 使用标准 MetaTrader 工具绘制趋势线
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+
该产品的买家也购买
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 — MetaTrader 4 高级交易面板和图表工作区 VirtualTradePad PRO SE 是一款适用于 MetaTrader 4 的专业交易面板和交易管理工作区。它帮助交易者通过一个基于图表的界面,更快速地开仓、管理、保护、平仓和分析交易。 该产品专为需要的不只是简单按钮集合的活跃手动交易者而创建。PRO SE 将一键执行、挂单、持仓控制、部分平仓、篮子利润/亏损逻辑、加仓均价层级、ATM 规则、信号监控、市场信息、策略测试器流程和面向 VPS 的准备整合到一个结构化工作区中。 MT5 版本 | 完整说明和截图 | 如何购买 | 如何安装 | 如何获取日志文件 | 如何测试与优化 | Expforex 的所有产品 为什么交易者会选择这套面板 图表一键交易 ,并支持键盘快速操作 快速完成开仓、平仓、修改、反转、锁仓与部分平仓 深度控制仓位、挂单、总利润与风控逻辑 自动参数计算,减少手动输入与重复劳动 相对于普通手动交易的优势 一个工作区替代多个窗口 — 交易执行、持仓控制、风险信息和管理工具都保留在图表上。 更快处理交易
Custom Alerts AIO:多市场智能监控,一键启动,无需设置 概述 Custom Alerts AIO 是一款“开箱即用”的高级市场扫描工具,无需额外安装任何其他指标或进行复杂设置。它内置了 Stein Investments 的所有核心指标(FX Power、FX Volume、FX Dynamic、FX Levels 和 IX Power),可帮助您轻松监控所有主要资产类别,如外汇、黄金、指数和加密货币。如果您的经纪商支持股票,您也可以手动添加个股进行监控。 1. 为什么选择 Custom Alerts AIO? 无需额外购买任何指标 • 所有关键指标均已内置,开箱即用。 • 专注于实时预警,不包含任何图形元素,性能高效,界面简洁。 全面覆盖所有主要市场 • 支持监控外汇、金属、加密货币和指数市场。 • 无需手动输入任何交易品种,只需在设置中勾选资产类别即可启用。 • 股票并不属于默认类别,如有需要可手动通过参数输入添加。 高效、专业、便捷 • 无需图表模板和手动加载,适合自动化或远程交易环境。 • 非常适合 VPS 上长期运行,或作为后台市场预警工具使用。 2
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
一款面向手动交易的专业面板,把完整的交易流程都收进图表上的一个窗口,从精准入场到账户防护。按设定的风险精确计算手数,借助 RR Tool 直接在图表上用线条搭建交易,开立市价单和挂单、网格与 OCO。持仓的后续管理交给面板打理:最多五级分批平仓、六种跟踪止损、保本以及 Virtual SL/TP。日、周、月三档限额守护本金,一旦被突破即自动触发。 使用指南与免费 Live 演示 免费的 Live 演示版可在此获取 ( Free Live Demo )。 产品的使用指南见此 ( User Manual )。 NT Trade Manager 把交易者的整套工作流程收进图表上一块紧凑的面板,无需在终端各窗口之间反复切换,也不必在每次入场前埋头计算。它为坚持手动、独立判断的交易者而打造:主观交易者、剥头皮和波段交易者,外汇、金属、指数、大宗商品乃至加密货币等任何品种都适用。决策由你拍板,执行的琐碎操作、风控纪律和持仓跟踪则交给面板。没有你的指令,什么都不会发生:这是一件实战工具,而不是全自动交易程序,也不是信号服务。 功能概览 每笔交易的手数都严格按设定的风险算出:可取账户余额的百分比
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 – 全能智能交易一站式解决方案 概述 想象一下,您可以在几秒钟内扫描整个市场——外汇、黄金、加密货币、指数,甚至股票——无需手动筛选图表、繁琐安装或配置指标。 EASY Insight AIO 是您专为 AI 交易打造的即装即用数据导出工具。它将整个市场快照一次性输出为简洁的 CSV 文件,直接支持 ChatGPT、Claude、Gemini、Perplexity 等各类 AI 平台的即时分析。 无需窗口切换,无需图表叠加,也没有任何杂乱。只需纯净、结构化的数据自动导出,让您专注于基于数据的高效决策,无需再盯盘耗时。 为什么选择 EASY Insight AIO? 真正的一体化 • 无需设置,无需安装指标,无图表叠加。只需安装、运行并导出——就是这么简单。 多资产全覆盖 • 扫描分析外汇、金属、加密货币、指数、股票——您的券商所能提供的一切市场。 AI 专属数据导出 • 高度结构化、针对 AI 优化的 CSV 文件,直接适配主流智能工具和平台。 完整导出内容: • 三个可选周期的货币强度分析 • 净多头头寸变化体现市场情绪 • 成交量变化、
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
面板 FFx 隐藏管理 轻松帮助您在图表上直接管理您的订单。下面描述所有特征: 止盈, 止损和尾随停止均隐藏 每笔交易在图表上都有自己的指示线 可按您的需要拖拽任何线来改变止盈/止损 当止盈 #1 到达,自动将止损位移到盈亏平衡位置的选项 选择止盈/止损类型的选项 (通过点数或价格) 选择尾随停止类型的选项 (通过点数, MA, 分形, PSAR 或 ATR) 定义哪些订单您希望在当前图表上进行管理 (所有订单或特定单号) 最大化 / 最小化面板按钮 在图表上将面板拖拽到任意位置 显示交易信息的选项 如何使用它? (参看以下截图) 选择您希望管理的订单 (所有或特定的) 设置您的目标, 止损和尾随停止 … 之后点击 “放置”。它们都独立工作,这样您就只需设置一次。 如果您希望删除一个止盈, 止损或尾随停止, 选择正确的订单 … 然后点击 “删除” 当您选择设置 “所有当前符号”, 则 “当前设置”显示在面板里。这些设置将自动用于所有新开订单。若要重置/删除这些设置, 点击 “重置所有”。 如果 “显示交易信息”被选中, 一个新的小表格显示在面板之下, 包括每笔订单及其当前的目标和尾随停
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 是一个强大的工具,多账户之间进行远程复制的贸易超过互联网不同的位置。这是一个信号提供商的理想解决方案,谁想要与全球范围内对自己规则的人分享他的贸易。一个供应商的交易可以复制到多接收器和一个接收器可以得到贸易额从多供应商也是如此。 供应商和接收器可与供电内置的数据库管理系统来管理他的合作伙伴名单。 这个工具允许全局配置模式(copy过来互联网)和本地模式(在同一台PC/服务器内复制)之间进行选择。 要求: MetaTrader4的4.00版构建670或以上。 参考: 如果你只需要在本地复制与更低的价格,你可以检查Auto Trade Copier在: https://www.mql5.com/en/market/product/4676 以下是亮点功能:     在一个工具提供商或接收器之间转换角色。     一个供应商的交易可以复制到多接收器和一个接收器可以从多个供应商收到交易。     供应/接收器可通过供电数据库管理系统,而无需额外的工具管理自己的接收器/供应商名单(添加,删除,编辑,启用/禁用)。     全球模式(copy过来互联网)和本
News Trader Pro
Vu Trung Kien
4.38 (16)
新闻操盘手专业版 是一个独特的机器人,让您使用您预先定义的策略进行消息交易。它从几个流行的外汇网站加载的每条消息的片断。您可以选择任何消息和预设的策略进行交易,之后新闻操盘手专业版根据选定的策略,在新闻来临时自动进行交易。 新闻发布给出了赚点数的机会,因为在那个时刻,价格通常有大动作。现在,利用这款工具,新闻交易变得比以往任何时候更容易,更灵活,更令人兴奋。不要等待,不要错失,不要再迷惑了。每周只需针对重要新闻设置一次,这个工具将完全按照您的计划进行精准交易。 演示版: 由于这不是一个自动交易机器人 (它是半自动), 您需要下载单独的演示版本: https://www.mql5.com/zh/market/product/5931 参考: 如果您只需要加载新闻 (无需交易), 您可以购买新闻加载机专业版: https://www.mql5.com/zh/market/product/5463 功能 包括所有 新闻加载机专业版 的功能 (查看详情)。 针对每条新闻构建您自己的策略,具有非常灵活的参数。 支持五种高级策略,带有大量控制参数 (止损, 止盈, 尾随, 网格间隔, 手数缩放,
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 是一个面板,用于快速和用户友好地手动标记 Elliott 波浪。可以选择一种颜色和一个级别的标记。还有用于删除最后一个标记和工具制作的整个标记的功能。一键制作标记。点击五次 - 有五波!艾略特波浪计数器对于艾略特波浪的初学者和专业分析师来说都是一个很好的工具。 艾略特波浪计数器安装和输入指南 如果你想得到   关于 EA 添加 URL (   http://autofxhub.com   ) MT5 终端的 通知 (见截图)。 MT4版本 https://www.mql5.com/en/market/product/14016 MT5版本 https://www.mql5.com/en/market/product/15081 一般输入: 波形类型按钮: 此按钮允许用户选择他们想要在图表上突出显示的波形类型。可用的选项包括推动波、调整波和其他自定义波模式。 波级按钮: 这个按钮   允许用户选择他们想要在图表上突出显示的波形级别。可用的选项包括初级、中级和次级波级别。 波浪颜色: 这个   按钮   允许用户选择他们想要在图表上突出显示的波浪图
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
一键式分析工具是   基于键盘快捷键的对象创建   和 MetaTrader 的复制工具。只需单击一下,即可轻松使用 MetaTrader 中的分析工具。使用我们的工具,您可以在图表上快速绘制支撑和阻力位、斐波那契位、形状、通道、趋势线和所有其他对象。只需单击按钮,移动鼠标,一键式分析工具将为您完成剩下的工作。这可以节省您的时间并使您的图表分析更有效率,让您可以专注于根据您的分析做出明智的交易决策。 除了对象创建之外,一键式分析工具还包括   对象复制器 (   c   hart sync)   ,允许您轻松地将对象从一个图表复制到另一个图表。如果您打开了多个图表并且需要在它们之间复制对象,这会特别有用。 一键式分析工具允许您   对所有符号使用一个图表   在元交易者中。这意味着您可以在同一窗口中查看不同的图表,而无需在多个图表之间切换。当您切换到不同的符号时,一键式分析工具会自动从其他符号中隐藏对象,并在您返回第一个符号时再次显示它们。这可以帮助您节省时间并提高交易效率,让您可以轻松地在同一窗口上比较和分析不同的图表。 一键分析   安装和输入指南 如果您想获得有关 EA 添加 U
作者的更多信息
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
筛选:
无评论
回复评论