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
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 インジケーターは、取引の補助ツールとして最適です。 - インジケーターは、フィボナッチ レベルとローカル トレンド ライン (赤色) を自動的に計算してチャート上に配置します。 - フィボナッチ レベルは、価格が反転する可能性のある重要な領域を示します。 - 最も重要なレベルは、23.6%、38.2%、50%、61.8% です。 - リバーサル スキャルピングやゾーン グリッド取引に使用できます。 - Auto FIBO Pro インジケーターを使用して、現在のシステムを改善する機会も多数あります。 - Info Spread Swap Display があり、接続されている外国為替ペアの現在のスプレッドとスワップを表示します。 - ディスプレイには、アカウントの残高、エクイティ、マージンも表示されます。 - Info Spread Swap Display は、チャートのどのコーナーにも配置できます。 高品質のトレーディングロボットとインジケーターをご覧になるにはここをクリックしてください! これは、この MQL5 ウェブサイ
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 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 は独立した自動売買ロボットではありません。自動で新しいエントリーシグナルを探すのではなく、すでに保有しているポジションを監視し、平均化・追加エントリー・共通トレーリングストップによって、ポジション全体の管理精度を高めることを目的としています。 手動取引を行うトレーダー、自分自身のシグナルを使うトレーダー、あるいは他の売買ロジックと組み合わせて運用したいトレーダーに適した設計です。単発のポジションではなく、複数ポジションをひとつのシリーズとして扱いたい方に特に有効です。 MT5 のバージョン | 完全な説明 + DEMO + PDF
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
使用説明: 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. すべての取引をコピーすることも、買い、売り、決済命令のみをコピーすることもできます 6. ストッププロフィットとス
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チャートでの使用を目的としていますが. この指標は、従来の外国為替取引とバイナリオプション取引の両方に適しています。 インジケーターは、スタンドアロンのトレーディングシステムとして使用することも、既存のトレーディングシステムへの追加として機能させることもできます。 このインジケーターは、現在のキャンドルを分析し、キャンドル自体の内部の特定の強度係数と、前のキャンドルのパラメーターを計算します。 したがって、この指標は、市場の動きのさらなる方向性と現在のキャンドルの終値を予測します。 この方法のおかげで、この指標は、短期の日中取引だけでなく、中期および長期の取引にも適しています。 インジケーターを使用すると、市場の状況の分析中にインジケーターが生成する潜在的な信号の数を設定できます。 インジケーターの設定には、このための特別なパラメーターがあります。 また、インジケーターは、チャート上のメッセージの形式で、電子メールで、およびPUSH通知の形式で、新しい信号について通知することができます。 購入後は必ず私に書いて
VR Cub
Vladimir Pastushak
VR Cub は、質の高いエントリーポイントを獲得するためのインジケーターです。このインジケーターは、数学的計算を容易にし、ポジションへのエントリーポイントの検索を簡素化するために開発されました。このインジケーターが作成されたトレーディング戦略は、長年にわたってその有効性が証明されてきました。取引戦略のシンプルさはその大きな利点であり、初心者のトレーダーでもうまく取引することができます。 VR Cub はポジション開始ポイントとテイクプロフィットとストップロスのターゲットレベルを計算し、効率と使いやすさを大幅に向上させます。取引の簡単なルールを理解するには、以下の戦略を使用した取引のスクリーンショットを見てください。 設定、設定ファイル、デモ版、説明書、問題解決方法は、以下から入手できます。 [ブログ] レビューを読んだり書いたりすることができます。 [リンク] のバージョン [MetaTrader 5] エントリーポイントの計算ルール ポジションをオープンする エントリーポイントを計算するには、VR Cub ツールを最後の高値から最後の安値までストレッチする必要があります。 最初
CoPilot — デイリートレーディングダッシュボード 数字を把握し、明確にトレードする。 MT5バージョン CoPilotとは? CoPilotは プロフェッショナルグレード のトレーディングアシスタントで、毎日のパフォーマンス統計を リアルタイム でチャートに直接表示します—— ライブエクイティカーブ はトレードごとに更新されます。チャートを離れずにセッションを即座に把握したいアクティブトレーダー向けに設計されており、CoPilotは すべてのシンボルのその日のクローズド取引 を集計し、シンプルでカラーコード化されたインタラクティブパネルに表示します。 ターミナルの履歴タブに切り替える必要はもうありません。手計算も不要です。CoPilotはあなたの 副操縦士 として常に監視し、常に計算し、常に目の前に表示します。 リアルタイム統計パネル CoPilotは3つのセクションに整理された完全な日次パフォーマンス指標を表示します: アクティビティ — 本日の総取引数、クローズド取引、オープンポジション、勝敗数、 勝率 (%) 、ブレークイーブン取引。勝率の色は動的に変化:50%超で緑、5
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  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,
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 – 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 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
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 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には、トレンドラインから直接取引を発注したり管理したりするネイティブ機能はありません。本EAは、ユーザーが定義したトレンドラインを監視し、価格がそれらと相互作用した際に事前に定義されたアクションを実行することで、標準的なプラットフォーム機能を拡張します。 本EAは取引戦略を定義したり適用したりしません。すべての取引ロジックと意思決定は完全にユーザーの管理下にあります。 追加資料 ユーザーガイドおよびドキュメント MT5版 機能概要 トレンドラインに基づく取引実行 価格がトレンドラインにタッチ、ブレイク、またはプルバックした際に買いまたは売りを実行 各トレンドラインごとにストップロス、テイクプロフィット、取引数量を設定 ローソク足の終値またはトレンドラインからの価格距離に基づいてアクションをトリガー 監視と
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 向けのプロフェッショナルな取引パネルであり、トレード管理ワークスペースです。1つのチャートベースのインターフェースから、取引の開始、管理、保護、決済、分析をより速く行えるようにします。 この製品は、単なるボタンセット以上の機能を必要とするアクティブな手動トレーダー向けに作られています。PRO SE は、ワンクリック執行、予約注文、ポジション管理、部分決済、バスケット損益ロジック、平均化レベル、ATMルール、シグナル監視、市場情報、ストラテジーテスターのワークフロー、VPS向け準備を、1つの構造化されたワークスペースに統合します。 MT5版 | 完全な説明とスクリーンショット | 購入方法 | インストール方法 | ログファイルの取得方法 | テストと最適化の方法 | Expforex のすべての製品 通常の手動取引に対する利点 多くのウィンドウではなく1つのワークスペース — 取引執
Custom Alerts AIO:マルチマーケット監視を一括で実現 — 設定不要ですぐに使えるインテリジェントツール 概要 Custom Alerts AIO は、追加のインジケーター設定が不要で、インストール後すぐに利用できる高機能マーケットスキャナーです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power を内部にすべて統合し、主要なすべての資産クラス(為替、金属、指数、暗号資産)を一括監視できます。MetaTrader の仕様により、株式は個別のシンボルとして追加可能ですが、一般的には利用頻度は低めです。 1. なぜ Custom Alerts AIO を選ぶべきか 追加ライセンス不要 • 必要なすべての Stein Investments インジケーターが内蔵されており、すぐに使用可能です。 • チャートに表示されるグラフィックは省略されており、アラート生成に特化した構成です。 市場を広範囲にカバー • 為替、金属、暗号資産、株価指数に対応(株式は手動追加可能)。 • シンボル名を入力する必要はなく、プロパティで資産クラス
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 でチャートに線を引きながらトレードを組み立て、成行注文・待機注文・Grid・OCO を発注できます。ポジションの管理はパネルが引き受けます。最大5段階の分割決済、6種類のトレーリングストップ、建値、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
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
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
EASY Insight AIO – スマートで手間いらずな取引のオールインワンソリューション 概要 数秒で市場全体——FX、ゴールド、暗号資産、指数、さらには株式まで——を、手作業のチャート確認や複雑なセットアップ・インジケーター導入なしにスキャンできたらどうでしょうか? EASY Insight AIO はAIトレードのための究極のプラグ&プレイ型エクスポートツールです。市場全体のスナップショットを、クリーンなCSVファイルで一括出力。ChatGPT、Claude、Gemini、Perplexityなど、さまざまなAIプラットフォームで即座に解析できます。 ウィンドウの切り替えやグラフのごちゃごちゃしたオーバーレイはもう不要。自動エクスポートされる純粋で構造化されたインサイトだけで、無駄なチャート監視に悩まされず、スマートなデータ主導の判断に集中できます。 なぜEASY Insight AIOなのか? 本当のオールインワン • セットアップ不要、インジケーターのインストール不要、チャートへのオーバーレイ不要。インストールして起動し、エクスポートするだけです。 マルチアセット対
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 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 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
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
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
エリオット波動カウンターは、エリオット波動を迅速かつユーザーフレンドリーに手動でマークアップするためのパネルです。マークの色とレベルを選択できます。最後のマークアップとツールによって作成されたマークアップ全体を削除する機能もあります。マークアップはワンクリックで作成されます。 5 回クリック - 5 つの波があります。エリオット波動カウンターは、エリオット波動の初心者にもプロのアナリストにも最適なツールです。 エリオット波動カウンターのインストールと入力ガイド 取得したい場合     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 の分析ツールを簡単に使用できます。私たちのツールを使用すると、サポートとレジスタンスのレベル、フィボナッチ レベル、形状、チャネル、トレンド ライン、およびチャート上の他のすべてのオブジェクトをすばやく描画できます。ボタンをクリックしてマウスを動かすだけで、ワンクリック分析ツールが残りの作業を行います。これにより時間が節約され、チャート分析がより効率的になり、分析に基づいて情報に基づいた取引決定を下すことに集中できるようになります。 ワンクリック分析ツールには、オブジェクトの作成に加えて、     あるチャートから別のチャートにオブジェクトを簡単にコピーできる オブジェクトコピー機 ( チャート 同期)   。これは、複数のチャートを開いていて、それらの間でオブジェクトを複製する必要がある場合に特に役立ちます。 ワンクリック分析ツールを使用すると、     すべてのシンボルに 1 つのチャートを使用する   メ
作者のその他のプロダクト
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
フィルタ:
レビューなし
レビューに返信