Trading Email Alert MT4

1. Overview
Trading Email Alert monitors the trading account and automatically sends an email whenever a buy or sell
position is opened and/or closed on the symbol (instrument) it is attached to. The email subject line is fully
configurable, along with several filters that determine which events trigger a notification.
Key features:
• Separate email subject line for trade opening and trade closing.
• Filter to notify only openings, only closings, or both.
• Filter to notify only buy trades, only sell trades, or both.
• Optional filtering by chart symbol and by Magic Number (EA/robot identifier).
• On closing, the email includes profit/loss, swap, commission and net result.
• Option to include account details (balance, equity, broker) in the email body.
Important: pending orders (Buy Stop, Sell Stop, Buy Limit, Sell Limit) do not trigger an email when they are
created. The opening email is only sent once the pending order is triggered and becomes an actual open buy or
sell position.
2. Prerequisite: Configuring Email in the Terminal
Before using the EA, you must enable and configure email sending directly in the MetaTrader 4 (MQL4)
terminal:
•1. From the top menu, go to Tools ® Options.
•2. Open the Email tab.
•3. Check the Enable box.
•4. Fill in your email account's SMTP server details (server, login, password, port) — for example, for Gmail:
smtp.gmail.com:465, using an app password rather than your regular account password.
•5. Fill in the From (sender email) and To (recipient email) fields.
•6. Click Test to confirm that a test email is delivered correctly.
•7. Click OK to save.
In addition, when attaching the EA to a chart, you must check the "Allow Email" option in the Common tab of the
Expert Advisor's properties window. Without this permission, the email command is blocked even if the EA is
running normally.
Email sending (the SendMail function) does not work inside the Strategy Tester — it only works on a live or demo
account, with the terminal open and connected to the internet.
3. Installation and Compilation (MetaTrader 4 (MQL4))
•1. Copy the Trading email alert.mq4 file to the MQL4/Experts/ folder of your MetaTrader 4 installation.
•2. Open the MetaEditor (press F4 in MT4).
•3. Open the .mq4 file inside the MetaEditor.
•4. Press F7 to compile and generate the .ex4 file. Check the "Errors" tab to make sure there were no
failures.
•5. In MT4, open the Navigator (Ctrl+N), locate the EA under "Expert Advisors" and drag it onto the desired
chart.
•6. Adjust the settings under the "Inputs" tab and check "Allow Email" under the "Common" tab.
4. Settings Reference Table
Setting Default Description
InpEmailSubjectOpen "New Trade
Opened"
Email subject line sent when a position is OPENED.
InpEmailSubjectClose "Trade
Closed"
Email subject line sent when a position is CLOSED.
InpIncludeAccount true If enabled, adds account details to the email body: account
number, broker, balance and equity.
InpNotifyOnOpen true Controls whether the EA sends an email when a position is
OPENED.
InpNotifyOnClose true Controls whether the EA sends an email when a position is
CLOSED (includes profit/loss, swap and commission).
InpNotifyOnBuy true Controls whether BUY trades trigger a notification.
InpNotifyOnSell true Controls whether SELL trades trigger a notification.
InpOnlyThisSymbol false If enabled, only notifies trades on the same symbol as the
chart the EA is attached to.
InpOnlyThisEA false If enabled, only notifies trades carrying the Magic Number
set below (useful to ignore manual trades or trades from
other EAs).
InpMagicNumber 0 Magic Number used as a filter when InpOnlyThisEA = true.
InpNotifyExistingOnStart false MT4-exclusive setting. If enabled, the EA also sends an
opening email for orders that were already open before the
EA was attached to the chart. If disabled (default), those
pre-existing orders are silently registered without triggering
an email.
5. How Trade Events Are Detected
Unlike MT5, classic MQL4 has no native trade-transaction event. Because of this, the MT4 version checks
the list of open orders on every tick and compares it against the previous check: a new ticket is treated as an
opening; a ticket that was previously in the list and is no longer among the open orders is treated as a closing
(the final details are then retrieved from the account history).
Partial closes of an order are a special case in MT4: the original ticket remains open with the remaining lot size,
while the closed portion appears separately in the history. The EA handles this safely, but if you use partial closes
frequently and want a dedicated email for that case, the code can be adapted further.
6. How the Open/Close and Buy/Sell Filters Work
The EA combines two independent filter groups that work together (a logical AND). A trade only triggers an
email if it passes both groups at the same time:
Filter group What it controls
Notify on OPEN / Notify on CLOSE Controls WHEN the email should be sent: at the start of the
trade, at the end, both, or neither.
Notify BUY / Notify SELL Controls the DIRECTION of the trade that should trigger an
email: buys only, sells only, or both.
For example, if you set Notify on OPEN = true, Notify on CLOSE = false, Notify BUY = true and Notify
SELL = false, you will only receive an email when a BUY trade is opened — no sell trade triggers an email,
and no closing triggers an email, regardless of direction.
7. Ready-to-Use Configuration Scenarios
Get an email only when buying and selling (ignore closings)
You want to be notified as soon as a position is opened, whether buy or sell, but you don't want an email when it is
closed.
• Notify on OPEN = true
• Notify on CLOSE = false
• Notify BUY = true
• Notify SELL = true
Get an email only with the final result of each trade
You only want to know the outcome (profit/loss) of each trade, without being notified at entry time.
• Notify on OPEN = false
• Notify on CLOSE = true
• Notify BUY = true
• Notify SELL = true
Track sell trades only, from start to finish
You mostly trade short and want to follow the full life cycle of those trades only, ignoring buy trades entirely.
• Notify on OPEN = true
• Notify on CLOSE = true
• Notify BUY = false
• Notify SELL = true
Track the full life cycle of every trade (default)
Get an email on every opening and every closing, for both buy and sell trades.
• Notify on OPEN = true
• Notify on CLOSE = true
• Notify BUY = true
• Notify SELL = true
Temporarily disable all emails without removing the EA from the chart
Useful during testing, adjustments or maintenance, without having to delete the EA.
• Notify on OPEN = false
• Notify on CLOSE = false
8. Frequently Asked Questions
Q: Does the EA send an email when I simply place a pending order (Buy Stop, Sell Stop, Buy Limit,
Sell Limit)?
A: No. The email is only sent once the pending order is triggered and becomes an actual open position in the market.
Q: Why isn't the email arriving?
A: Check, in this order: (1) whether email sending is enabled and tested under Tools ® Options ® Email; (2) whether
"Allow Email" is checked in the EA's properties; (3) the "Experts" or "Journal" tab of the terminal, where the EA logs an
error message if sending fails; (4) the recipient's spam folder.
Q: Does the EA work inside the Strategy Tester?
A: No. Email sending (SendMail) is not supported inside the tester — it only works on a live or demo account with the
terminal running.
Q: Can I use the Magic Number filter to ignore manual trades?
A: Yes. Manual trades normally have Magic Number equal to 0. Enable "Notify only this EA's trades" and set your
automated strategy's Magic Number so that only its trades trigger emails.
Q: Do the MT4 and MT5 versions have the exact same settings?
A: Almost all of them are identical. The MT4 version has one extra setting not present in MT5: InpNotifyExistingOnStart,
which controls whether orders that were already open before the EA was attached to the chart should trigger a retroactive
opening email.
おすすめのプロダクト
MTF Lines PRO for MT4
Renato Fiche Junior
3.67 (3)
This indicator was developed to support multiple timeframe analysis. In the indicator settings, the user can set the color, width, and style of the horizontal lines for each timeframe. This way, when the horizontal lines are inserted into the chart, they will be plotted with the timeframe settings. MTF Lines also allows visibility control of another objets like rectangles, trend lines and texts. This is a product developed by Renato Fiche Junior and available to all MetaTrader 4 and 5 users!
FREE
Reverse copier is a tool that will open opposite buy/sell orders from your master account. It will help you with low profit EA's that lose consistenly and turn it to wins. Feel free to ask for new functions/features and I will add it. Now it's a simple MT5 to MT4 bridge with straightforward logic of one position open/close.  How to install: https://www.mql5.com/en/market/product/141604
FREE
Presentation The URL html and xml to csv is designed to get contents from URLs with html or xml content, and to download it to an output format as a txt or as a csv file. It enables to get the whole web sites page, starting with the http protocol, in a document for a further use and in additional with downloading directly on the MetaTrader applications and on the desktop. It is a good advantage for taking the most data from events and economic calendars, and also publications related to the inst
FREE
SMC Visual Indicator – Trade Like Smart Money Most traders spend hours trying to identify market structure, liquidity zones, Fair Value Gaps, and potential reversals. By the time they finish their analysis, the market has already moved. SMC Visual Indicator v6 does the hard work for you. Built around advanced Smart Money Concepts (SMC) and ICT methodologies, this indicator automatically identifies the key areas where institutional traders leave their footprints. Imagine opening your chart and in
Scalper RS - ​​ は、価格チャート上で最も可能性の高い反転ポイントを識別するように設計された取引および分析インジケーターです。 価格構造化を実行するインジケーター アルゴリズムにより、さまざまな取引商品と時間枠での価格反転の組み合わせを決定できます。 可変パラメータ「 Structuring 」を使用すると、希望する取引チャートと時間枠に最適な設定を選択できます。 当初、このインジケーターは M1 - M5 - M15 の時間枠でシグナルを受信するために作成されましたが、必要なパラメータを選択することで、H1 - H4 - D1 の時間枠で長期トレンドを識別するように構成できます。 スキャルピングや短期取引に適しています。 信号矢印は、再描画なしでも、再描画ありでも動作できます (切り替え可能なパラメータ)。 すべてのシグナルはローソク足の終値に表示されます。 通知にはいくつかの種類があります。 インジケーターシグナルはトレンドの方向にも、それに逆らう方向にも使用できます。 このインジケーターは、独立したシステムとして使用することも、既存のトレンド取引システムへの追加
Presentation The URL html and xml to csv is designed to get contents from URLs with html or xml content, and to download it to an output format as a txt or as a csv file. It enables to get the whole web sites page, starting with the http protocol, in a document for a further use and in additional with downloading directly on the MetaTrader applications and on the desktop. It is a good advantage for taking the most data from events and economic calendars, and also publications related to the inst
このユーティリティを使用すると、戦略テスターで戦略を手動でテストできます。視覚化チャート上でワンクリック取引。 このユーティリティの最新バージョンは、トレーダーが取引戦略を手動でテストするための高度な機能を提供します。ストラテジー テスターを使用すると、シミュレートされた環境で取引戦略の有効性を評価できるようになります。この機能を使用すると、取引テクニックのパフォーマンスを分析し、それらを改良して取引スキルを向上させることができます。 さらに、ストラテジー テスターは、視覚化チャート上でワンクリック取引で取引を実行する便利で効率的な方法を提供します。この機能により、異なる画面を切り替えることなく、希望の価格レベルで取引を迅速に開始および終了することができます。 ストラテジー テスターで利用できる完全な機能を使用すると、取引戦略をシミュレーションして洗練し、結果を分析して、取引スキルを効果的かつ効率的に最適化できます。 MT5 のバージョン 完全な説明 +DEMO +PDF 購入する方法 インストールする方法     ログファイルの取得方法     テストと最適化の方法     E
FREE
The indicator shows the potential trend direction by cyclical-wave dependence. Thus, all the rays of the intersection will be optimal rays, in the direction of which the price is expected to move, taking into account the indicator period. Rays can be used as a direction for potential market movement. But we must not forget that the approach must be comprehensive, the indicator signals require additional information to enter the market.
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
FREE
Close at time is a very useful EA to close specific positions at specific time. It also provides additional condition to setup. Close specific positions at time. Close specific positions which currently profits. Close specific long positions only. Close specific short positions only. Close specific pending orders. It is useful to support your trading strategies. Parameters description magic : Target magic number to close. close_time_hr: Hour to close. (MetaTrader 4 terminal time) close_time_min
FREE
The Free  Pin Bar MT4  indicator  identifies Pin Bars  It will even give you sound or email alerts if want them. If you download it and like it please leave a review! It would be wonderful Pin Bars are purely based on price action as reflected by the candle formations created by Forex price movements. input Parameters are maximum allowed body/length ratio for the Nose bar. Nose body should be position in top (bottom for bearish pattern) part of the Nose bar.  tells the indicator that the Left Ey
FREE
Price Ray MT4
Keni Chetankumar Gajanan -
4 (2)
Price Ray indicator is a utility that will improve the way you trade. Primarily, it shows the Bid, Ask or Last price as a line ray which beams till the current candle, last visible chart candle or extended to all candle bars. The enhanced features in this indicator provide information in an area where you focus most, right next to the current candle. You can select text to be shown above or below the Price ray. The indicator is fully customizable, allowing it to fit any strategy requirements. Th
FREE
TradePulseMonitor for MetaTrader 4 & 5 Overview: TradePulseMonitor   is a comprehensive, real-time dashboard indicator designed for MetaTrader 4 and MetaTrader 5. It provides traders with an at-a-glance overview of their account's financial health, risk exposure, position metrics, and historical performance. By consolidating critical data into a single, customizable on-chart dashboard, it eliminates the need to constantly check the Terminal window, allowing for faster and more informed trading
FREE
SIRR Scalper for PipFinite is a robot that has been designed to work with the PipFinite Trend PRO Indicator. It is a dynamic EA that is very active with trades and capital management. The EA can trade the popular symbols EURUSD, GBPUSD, USDCHF, USDJPY, USDCAD, AUDUSD, EURGBP, EURCHF, EURJPY, AUDNZD, AUDCAD, EURNZD. Check our   Blogs   where we share news and set files When you buy my robot, you are welcome to drop me a message to discuss the best setup in combination with the set files 2 purchas
PZ Trade Pad EA
PZ TRADING SLU
4.29 (31)
This simple visual expert advisor allows you to trade easily from the chart. It handles risk management for you and can perform several useful tasks with your existing trades, saving time and making risk-management for each individual trade easier.  [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products   |  Get Help ] Trade easily from the chart Trade with precise risk management, hassle free Trade pending order with drag and drop price selection Set SL and TP levels with
FREE
The indicator is an inter-week hourly filter. When executing trading operations, the indicator allows considering time features of each trading session. Permissive and restrictive filter intervals are set in string form. The used format is [first day]-[last day]:[first hour]-[last hour]. See the screenshots for examples. Parameters: Good Time for trade - intervals when trading is allowed. Bad Time for trade - intervals when trading is forbidden. time filter shift (hours) - hourly shift. percenta
Trade Copier Local MT4 is a fast local trade copier for copying trades between multiple MT4 and MT5 accounts. One EA works in both Master and Slave modes. Simply select the required Copier Mode and use the same product on your MetaTrader terminals. Copy trades between: • MT5 → MT5 • MT5 → MT4 • MT4 → MT5 • MT4 → MT4 Perfect for: • Trading multiple accounts at once • Linking multiple trading accounts • Personal account mirroring • Signal providers • Account managers • Prop trading setups #
Shogun RX
Thamini De Oliveira Feitosa Puntel
10 COPIES AT $ 99 ! After that, the price will be raised to $ 150 . After years of painstaking research and development, we are offering the opportunity for you to have this incredible tool in your automated trading portfolio. SHOGUN RX is a strategy that has a very advanced secret trading algorithm. It is a safe EA that trades using pending orders with a defined Stop Loss, Take Profit and 2 smart Trailing capabilities. LIVE ACCOUNT ---> CLICK HERE Pair: USDJPY TimeFrame: H4. Minimum deposit
Simple indicator that supports decision makers. You will have the candles directions for different timeframes on your screen. That will allowed you to be one more scenario to analyze before you open your orders. In case you would like to have more details, just let me know.. so we can add it to the chart. Multicurrency that in inform you the directions for multi-timeframes!
LordChannel is an indicator for META TRADER 4 for all forex pairs and financial market metals. The indicator is used to make detections of high/low channels, implementing a technical analysis on possible breakouts and making correct order entries. LordChannel sends signals such as buy and sell in the graphical analysis, it is important to emphasize that the importance of these signals are safe in TIME FRAMES M30, H1, H4. The indicator was created for using bullish/downtrend channels to compl
ピボットポイントフィボRSJは、フィボナッチレートを使用してその日のサポートラインとレジスタンスラインを追跡するインジケーターです。 この壮大な指標は、フィボナッチレートを使用してピボットポイントを通じて最大7レベルのサポートとレジスタンスを作成します。 価格がこのサポートとレジスタンスの各レベルを尊重する方法は素晴らしいです。そこでは、オペレーションの可能な入口/出口ポイントを認識することができます。 特徴 最大7レベルのサポートと7レベルの抵抗 レベルの色を個別に設定します 入力 ピボットタイプ ピボットフィボRSJ1 =フィボ比1の計算 ピボットフィボRSJ2 =フィボ比2の計算 ピボットフィボRSJ3 =フィボ比3の計算 ピボットフィボクラシック=クラシックピボット計算 最小ピボットレベル ピボット3レベル ピボット4レベル ピボット5レベル ピボット6レベル ピボット7レベル それでも質問がある場合は、ダイレクトメッセージで私に連絡してください: https://www.mql5.com/ja/users/robsjunqueira/
FREE
Smart Equity Protector (PropFirm Edition) Smart Equity Protector (PropFirm Edition) is a professional account equity protection and risk-management utility for MetaTrader 4. This Expert Advisor is designed to protect trading accounts from excessive losses by monitoring account equity in real time and automatically closing trades when predefined risk limits are reached. ️ This product does NOT open trades and does NOT generate trading signals . It works as a safety and protection system for manu
FREE
Quantum Falcon Signal Free is a smart visual trading indicator for MetaTrader 4 designed for Forex and Gold traders. The indicator combines: • Trend analysis • RSI momentum confirmation • MACD momentum filtering • ATR volatility filtering • Higher timeframe confirmation • Smart exit signal detection Main Features: • Smart Buy and Sell signals • Exit Buy / Exit Sell alerts • Real-time dashboard on chart • Professional candle arrows • Multi-timeframe trend confirmation • ATR market volatility filt
FREE
Telegram Sender Osw MT4
William Oswaldo Mayorga Urduy
ユーザーマニュアル: Telegram Sender Osw Telegram Sender Oswは、MetaTraderからTelegramへの取引シグナルの送信を自動化するために設計されたエキスパートアシスタント(EA)です。シグナルプロバイダーやアカウント管理に最適で、重要なデータ(価格、ストップロス、テイクプロフィット、取引量)を瞬時にプロフェッショナルに送信します。 1. パラメータ設定 一般設定と接続 EAの有効化:システムを起動(true)または一時停止(false)します。 ボットトークン:@BotFatherから取得した英数字コード。 チャットID:送信先のチャンネル、グループ、またはプライベートチャットの識別子。 送信サブグループ/スレッドID:Telegramグループで「トピック」機能を使用している場合にのみ、これらのオプションを有効にしてください。 送信ロジック(送信タイプ) 自動:新しいポジションまたはコマンドを検出するとすぐに送信します。 ボタン:チャート上で「Telegramを送信」ボタンが手動で押された場合にのみ送信します。 カスタマイ
Wild Baboon Zone Recovery - 無料版 Wild Baboon Zone Recovery は、構造化されたゾーンリカバリーとバスケット管理手法をテストするために設計された無料の MetaTrader 4 エキスパートアドバイザーです。この EA は、完全な商用版を検討する前に、ストラテジーテスターまたはデモ口座でリカバリー型の取引ロジックを評価したいトレーダー向けです。 主な機能 バスケットベースの取引管理のためのゾーンリカバリーロジックを実装 買いと売りの両方のリカバリーサイクルに対応 リカバリー距離、ロットサイズ、間隔パラメータを設定可能 ユーザー定義の入力に基づくバスケット目標管理 上位時間足のトレンド方向と連動する EMA ベースのエントリーシグナル 市場状態を確認するための ADX と Choppiness Index フィルター リスク管理のためのセッションフィルターと金曜日保護オプション バスケット状態、ゾーンレベル、口座データ、サイクル情報を表示するビジュアルダッシュボード 主要な Forex ペアに対応し、XAUUSD は調整された間隔設定で
FREE
R Factor EA
Raphael Minato
4.7 (40)
R FACTOR Multi Strategy Expert Advisor with Proprietary Dynamic Portfolio Management System After 4 years of development and more than    3    years  of real positive results , R Factor is available for MQL5 community! It has always been important for us that the strategies performed positively for the creator before it could be shared.     Skin In The Game  is essential to demonstrate the belief in the strategy and also to provide a continuous improvement of it. Anyone who has been in this m
Swap Detector
Dustin Ricardo Pierenz
The Swap Detector is an essential MQL4 utility that displays the swap costs of any instrument when applied to a chart. It helps traders make informed decisions by visually indicating the swap value in customizable colors— green for positive (good) and red for negative (bad) by default. This tool ensures transparency in overnight holding costs, enabling better trade planning and risk management
FREE
The indicator shows which trading pairs, strategies, robots and signals that you use are profitable and which are not. The statistic of trades and balance graph are displayed in the account currency and pips - to switch simply click on the graph. button "$"(top left) - minimize/expand and move the indicator panel button ">"(bottom right) - stretching and resetting to the original size Statistic of trades 1 line - account balance, current profit and lot of open trades; 2 line - the number of all
This product (later referred to as "script") is intended for qualitative analysis of raw data and statistics when choosing trading signals for subscription. The script also performs calculations regarding compatibility of quotes data between signal provider's trading server and subscriber's trading server. Possible discrepancies in values of quotes are determined through retroactive analysis of transactions carried out by the signal provider. If said compatibility percentage is less than 90%, th
Эксперт  MACD_LevelTrader создан для торговле валютной пары XAUUSD. Данная версия это наработки того, что можно извлечь  из  индикатора MACD и Moving Average.   Важно перед тестированием изменить настройку с 1000 на 5000                       Offset in points UP from SMA200 for sell            5000                       Offset in points DOWN from SMA200 for buy        5000   Тайм фрейм  М5. Два варианта логики, П араметр  true=вход по уровню  MACD + SMA200, false=вход по MACD  Тестируйте на демо
FREE
このプロダクトを購入した人は以下も購入しています
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
Trade Indicator Assistant is a powerful MT4 utility designed to turn indicators into automated trading systems. Its main feature is the ability to automatically detect an indicator’s   BUY and SELL signal buffers , without requiring you to know the buffer numbers, search through indicator settings, or modify the indicator source code. Bonus Indicator: After purchasing Trade Indicator Assistant, contact me to receive Trade Signal Pro completely free as a bonus indicator. [Download Demo Version]
Telegram to MT4 Multi-Channel Copier   は、Telegram チャンネルのトレードシグナルを MetaTrader 4 へ自動コピーします。ボット不要、ブラウザ拡張不要、手動コピー不要。Telegram にシグナルが届くと、EA が数秒であなたのターミナルに注文を出します。 さらに、チャンネルをコピーする前に、内蔵バックテスターでそのチャンネルがあなたの口座でどう動いたかを確認できます。 製品は 2 つのコンポーネントで構成されます:Telegram チャンネルを監視する Windows アプリと、MT4 ターミナルでシグナルを執行する本 EA です。MT5 版もあります   こちら . セットアップガイドとアプリのダウンロード:   https://www.mql5.com/en/blogs/post/768988 現在の価格は今後値上げされます。 仕組み アプリはあなた自身の Telegram アカウントで接続するため、フォローしているすべてのチャンネル、グループ、トピック、ボット(プライベートや VIP を含む)を見ることができます。シグナル
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.69 (65)
MetaTrader 4向け 高機能トレードコピーソフト MetaTrader 4 用の、高速・安定・高機能なトレードコピーソフトです。 COPYLOT は、 MetaTrader 4 と MetaTrader 5 間でFX取引をコピーでき、さまざまな口座タイプや運用スタイルに合わせて柔軟に同期できます。 COPYLOT MT4版の対応コピー方式: MetaTrader 4 → MetaTrader 4 MetaTrader 5 Hedge → MetaTrader 4 MetaTrader 5 Netting → MetaTrader 4   MT5版 詳細説明 + DEMO + PDF 購入方法 インストール方法 ログファイルの取得方法 テストと最適化の方法 Expforexの全製品 MetaTrader 5版 を使えば、 MetaTrader 5 → MetaTrader 5 および MetaTrader 4 → MetaTrader 5 のコピーにも対応します: COPYLOT CLIENT for MT5 COPYLOT は、2台、3台、さらには10台規模のターミナル環境でも
Local Trade Copier EA MT4
Juvenille Emperor Limited
4.96 (112)
Local Trade Copier EA MT4 は、同一の Windows PC または Windows VPS 上で稼働する複数の MetaTrader 4 口座間で、取引をコピーおよび管理するための高速で柔軟なトレードコピーツールです。 ローカルでの取引同期に加え、Receiver 側でロットサイズ、リスク管理、取引フィルター、シンボルマッピング、取引管理、口座保護を個別に設定できます。 Transmitter と Receiver のターミナルは約 1分 で設定でき、同一ブローカーまたは異なるブローカーの口座間で、手動取引や EA による取引をコピーできます。適切な条件下では、ローカルの MetaTrader ターミナル間で取引情報を 0.5秒未満 で同期できます。実際の約定速度は、ブローカーのレイテンシー、ネットワーク状況、PC/VPS の性能、ターミナルの負荷によって異なります。 ご購入前に無料デモをお試しください Local Trade Copier EA MT4 の完全機能版無料デモ を、MT4 デモ口座で 1回につき4時間 テストできます。 Local Trad
Trade Assistant MT4
Evgeniy Kravchenko
4.43 (197)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順 - アプリケーションの手順 - デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通貨」、「 % 残
TelegramからMT4へ: 究極のシグナルコピーソリューション Telegram to MT4 は、DLLを必要とせず、TelegramのチャンネルやチャットからMetaTrader 4プラットフォームに取引シグナルを直接コピーできる最先端のユーティリティです。この堅牢なソリューションは、比類のない精度とカスタマイズオプションにより、シグナルのシームレスな実行を保証し、時間を節約し、効率性を向上させます。 [ Instructions and DEMO ] 主な特徴 直接的なTelegram API統合 電話番号とセキュアコードで認証します。 ユーザーフレンドリーな EXE ブリッジを使用して、チャット ID を簡単に取得および管理します。 複数のチャネル/チャットを追加、削除、更新して、同時に信号をコピーします。 高度なフィルターによる信号解析 カスタム例外語 (例: 「レポート」、「概要」) を含む不要な信号をスキップします。 柔軟な SL および TP 形式 (価格、ピップ、ポイント) をサポートします。 シグナルが価格ではなくポイントを指定する場合、エントリ ポイントを自動
MT4 to Telegram Signal Provider は使いやすく、完全にカスタマイズ可能なツールで、Telegramに信号を送信し、あなたのアカウントを信号提供者に変えることができます。 メッセージのフォーマットは 完全にカスタマイズ可能です! しかし、簡単な使用のために、あらかじめ定義されたテンプレートを選択し、メッセージの特定の部分を有効または無効にすることもできます。 [ デモ ]   [ マニュアル ] [ MT5バージョン ] [ Discordバージョン ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。開発者が必要なものをすべて提供します。 主要機能 購読者に送信される注文の詳細をカスタマイズする機能 例えばブロンズ、シルバー、ゴールドなど、階層型のサブスクリプションモデルを作成できます。ゴールドサブスクリプションでは、すべての信号が得られますなど。 ID、シンボル、またはコメントによる注文のフ
Trade copier MT4
Alfiya Fazylova
4.61 (36)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT4」をご購入の方は、「Trade copier MT5」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT4> MT4、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
Take a Break pauses your Expert Advisors when trading is a bad idea: before news, after a daily loss, outside your trading hours, or when a rule you wrote yourself says so. When the pause is over, your EAs simply continue. Account protection for all your EAs in one tool: news filter, drawdown and equity protection, time filter and custom rules. One EA on one chart protects the whole account, the free indicator gives every chart its own rules on top. Free demo | What is new in 26.09 | Support Ass
VirtualTradePad mt4 Extra
Vladislav Andruschenko
4.85 (61)
ワンクリックで取引できるトレーディングパネル。ポジションと注文の操作!チャートまたはキーボードから取引。 手動取引用の取引パネル。チャート(チャートウィンドウ)またはキーボードから取引できます。開閉、リバース、ロックポジションと注文を処理する МetaТrader4のメインオーダーのトレーディングコントロールパネル:売買、売却、売却、売却、売却、閉じる、削除、修正、トレーリングストップ、ストップロス、takeproft 新しいプレミアム版が利用可能です: VirtualTradePad PRO SE   で取引ワークフローを強化できます。 MetaTrader 5   と   MetaTrader 4   に対応した次世代のプロ向け取引パネルです。 MT5のバージョン 完全な説明 +DEMO +PDF 購入する方法 インストールする方法    ログファイルの取得方法    テストと最適化の方法    Expforex のすべての製品 シンボルウィンドウからの取引とキーボードからの取引! あなたはMetaTrader 4ターミナル - バーチャルコントロールパネルVirtualTr
Partial Closure EA MT4
Juvenille Emperor Limited
5 (3)
Partial Closure EA MT4 は、口座内のあらゆる取引を部分的に決済できます。ロットサイズの選択した割合やチケット番号で手動決済することも、TP/SLレベルの指定された割合で自動決済することも可能で、最大10のテイクプロフィットと10のストップロスレベルで初期ロットサイズの一部を決済します。特定のマジックナンバー、コメント、または銘柄を指定または除外することで、アカウント内のすべてまたは選択した取引を管理できます。。 ヒント:Partial Closure EA MT4 の無料デモバージョンをダウンロードして、デモアカウントで試してみてください: こちら ダウンロードした無料のデモ ファイルを MT4 >> ファイル >> データ フォルダを開く >> MQL4 >> Experts フォルダに貼り付けて、ターミナルを再起動します。  無料のデモ版は、デモ アカウントでのみ、一度に 4 時間完全に機能します。 試用期間をリセットするには、MT4 >> ツール >> グローバル変数 >> Control + A >> 削除に移動します。 この操作は重要ではないデモ口座
Close If Profit or Loss with Trailing for MetaTrader 4 — 総利益または総損失で自動決済 MetaTrader 4 用の実用的な取引管理ツールです。設定した総利益または総損失に到達すると、選択されたポジションを自動的に決済できます。 Expert Advisor は保有中の取引を監視し、含み損益を計算し、Trailing Profit を使用して、手動操作より素早くポジション管理を行うことができます。 MetaTrader 4 は現在でも、裁量トレーダー、スキャルピング、グリッド取引、EA 運用で広く使用されています。しかし、MT4 には複数ポジションを「合計結果」で簡単に自動決済する標準機能がありません。このユーティリティは、その不足している管理機能を追加します。 Close If Profit or Loss with Trailing は、裁量取引、他の Expert Advisors、グリッドシステム、ナンピン、リカバリー戦略、複数シンボルの取引と組み合わせて使用できます。ルールを設定すれば、EA が結果を監視し、条件に到
Smart Copy Local MT4
Kyra Nickaline Watson-gordon
5 (7)
Smart Copy is an Easy-to-Use EA that supports Multi Copying Metatrader4 and Metatrader5 and Local/Remote Copying. (Remote Version is coming soon) Free version is available on Smart Copy Local Free MT4 Specifications :     Real Time, Multi Terminal - Multi Account - MT4/MT5 trade copying     Copy from netting to hedge and hedge to netting is supported.     Fast and instant copy     All settings are input visually.     Easy modifying symbol names, prefix, suffix     Enable/Disable copying s
Want automatically to put the pending order, take profit and stop loss? This EA will do it on your behalf! The Fibo Heart EA strategy will place limit order after the ‘check point’ breakout. The position will be triggered when the price make a successful retest. If not, the pending order will automatically deleted after price hit certain level. You also have option to enable market order (instant execution) and custom take profit in the inputs setting. This EA must be attached with Fibo Heart In
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
無料トライアル版ダウンロード Copy Cat More (コピーキャット・モア) MT4 トレードコピー (Trade Copier) は単なるローカルのトレードコピーではありません。今日のトレード課題のために設計された 完全なリスク管理・執行フレームワーク (risk management and execution framework) です。プロップファーム (prop firm) のチャレンジから個人のポートフォリオ管理まで、堅牢な執行、資金保護、柔軟な設定、高度なトレード処理の組み合わせによって、あらゆる状況に適応します。 このコピーは   マスター (Master、送信側) と スレーブ (Slave、受信側)   の両モードで動作し、成行注文・指値注文、トレードの変更、部分決済、そして両建て決済 (Close By) 操作をリアルタイムで同期します。デモ口座と実口座、トレード用ログインと投資家ログインの両方に対応し、永続的トレードメモリ (Persistent Trade Memory) システムにより、EA・端末・VPS が再起動しても復旧を保証します。一意の
TradePanel MT4
Alfiya Fazylova
4.84 (95)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 アプリの説明書+ビデオガイド: https://www.mql5.com/en/blogs/post/772452 デモ口座用アプリの試用版: https://www.mql5.com/en/blogs/post/750865 アプリのインストール方法: https://www.mql5.com/en/blogs/post/756239 アプリをビジュアルモードでテストする方法: https://www.mql5.com/en/blogs/post/770277 VPSのMetaTraderにアプリをインストールする方法: https://www.mql5.com/en/blogs/post/770190 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグルー
King Trade Copier MT4
Mohammed Maher Al-sayed Mohammed Ahmed Saleh
5 (1)
King Trade Copier は、同じコンピューターまたは VPS 上で動作する MetaTrader ターミナル同士を接続します。ある口座で建てた取引が、ほかの口座にも現れます。このファイルは両方の役割を備えているため、同じダウンロードでも、Mode に設定した値によって送信側にも受信側にもなります。 各チャートでは、パネルがこのターミナルが送信中か受信中かを表示し、相手側の口座名を示し、応答した受信側の数を数え、最後のシグナルからの経過時間を表示します。コピーされなかった注文は、消えてしまうのではなく、その理由がパネルに残ります。 コピーされる内容 成行注文、新規と決済 指値・逆指値注文:発注、変更、削除 Stop Loss と Take Profit、最初の値とその後のすべての変更 部分決済と追加ボリューム 変更は一つずつ個別に追跡されるため、建値に移動してからトレールされるストップも、注文が建っている間は同じように受信側の口座に届きます。 速度と無人運用 送信側では、スケジュールに基づく定期的な確認は行いません。注文が変わった瞬間に更新が書き込まれ、受信側は 1 ミリ秒
MetaTrader 4 用の通貨強弱インジケーター この 通貨強弱インジケーター は最大 28 の主要通貨ペアを読み取り、USD、EUR、GBP、JPY、CHF、CAD、AUD、NZD の 8 通貨それぞれについて 1 つの数値を出します。どの通貨が主導しているかを調べるためにチャートを次々と開く必要はなく、MetaTrader 4 のチャート上の 1 つのパネルを見るだけで、買われている通貨と売られている通貨が分かります。 パネルに表示される内容 8 通貨それぞれの強弱バーとパーセンテージ(強い順) マルチタイムフレーム マトリクス:通貨ごとに 3 つの時間足を横並びで表示し、M15、H1、H4 が一致しているかをエントリー前に確認できます 各行の強弱履歴。20 から 60 まで上げてきた通貨と、90 から 60 まで下げてきた通貨は同じではありません ベストペア :強弱差が最も大きい組み合わせを並べ替えて表示。クリックするとそのペアのチャートが開きます 避けるペア :2 つの通貨が同じ方向に動くと取引の余地がありません。隠さず一覧に出します ワンクリックで開く 28 ペアパネル。
This is a program in the form of an EA that attaches to a chart in MetaTrader 4. Then, by using API from Bittrex, Binance websites, it downloads the history of altcoins. By selecting a pair name, the EA automatically downloads all time frames history (Daily,H12,H4,H2,H1,M30,M15,M5,M3,M1) so there is no need to attach multiple EAs to different charts. You can select one pair from Bittrex and 4 pairs from Binance exchange with one running EA and create up to 15 timeframes for 5 different pairs. Th
コピー機->便利で高速なインターフェースインタラクション、ユーザーはすぐに使用できます     ->>>> WindowsコンピュータまたはVPS Windowsでの使用を推奨 特徴: 多様でパーソナライズされたコピー取引設定:1. 異なるシグナルソースに異なるロットモードを設定できます。2. フォワードコピー取引とリバースコピー取引に異なるシグナルソースを設定できます。3. シグナルはコメントで設定できます。4. 契約ロットに応じてロットを調整するかどうか 多様でパーソナライズされたコピー注文設定2:1.品種ごとに異なるロットモードを設定できます2.順方向コピー注文と逆方向コピー注文に異なる品種を設定できます3.コメントでシグナルを設定できます4.契約ロットに応じてロットを調整するかどうか コメントフィルタリング、MAGICフィルタリング、シグナルロットフィルタリング、ローカル製品フィルタリング 勤務時間設定 逆同期SLAVE終了 注文バインド機能: 任意の注文を設定されたシグナルソース注文にバインドできます (テーブルをダブルクリックして編集します) アカウントリスク管理 基本
News Filter EA: Advanced Algo Trading Assistant News Filter EA is an advanced algo trading assistant designed to enhance your trading experience. By using the   News Filter EA , you can integrate a Forex economic news filter into your existing expert advisor, even if you do not have access to its source code. In addition to the news filter, you can also specify   trading days   and   hours   for your expert. The News Filter EA also includes   risk management   and   equity protection   features
Prop Guardian Risk Manager MT4 – Drawdown, Risk & Hedge Protection for Prop Firm and Managed Accounts Prop Guardian Risk Manager is a professional risk-control utility for MetaTrader 4, designed for prop firm traders, money managers and anyone who wants strict account-level risk protection. It does not generate trading signals, strategy entries or trading decisions. Instead, it runs in the background, monitors your account risk and can automatically block new exposure, close managed trades or ac
EA Local Trade Copier Pro MT4:究極のDLL不要トレードコピアー 安全でない外部DLLを必要としたり、ターミナルをクラッシュさせたり、「Master」と「Client」の別々のファイルで混乱させるような複雑なトレードコピアーにうんざりしていませんか? EA Local Trade Copier Pro MT4で次世代のトレードコピーを体験してください。最大限の安定性、電光石火の実行速度、そして究極のシンプルさを追求して設計されたこのユーティリティを使用すると、同一のWindows PCまたはVPS上の複数のMetaTraderターミナル間でシームレスにトレードをコピーできます。 複数のプロップファーム(プロップ口座)の管理、シグナルの共有、投資家資金の管理など、いかなる用途でも、EA Local Trade Copier Proは遅延のない完璧な同期を提供します。 LOCAL TRADE COPIER PROの利点(問題解決) 市場に出回っているほとんどのコピアーとは異なり、EA Local Trade Copier Proは100%ネイティブのMQL5コー
高速。正確。革新的。テクノロジー駆動。画期的なX2 Copy MT4で、瞬時のトレードコピーを体験してください。わずか10秒の簡単セットアップで、一台のコンピューターまたはWindows VPS上のMetaTrader端末間でトレードをかつてない速度で同期する強力なツールを手に入れられます。 複数の口座を管理している場合、シグナルに従っている場合、または戦略を拡大している場合でも、X2 Copy MT4は比類のない精度と制御でワークフローに適応します。最もテクノロジー駆動なトレードコピーソリューションで、より速く、より確実に作業できます。無料トライアル版をお試しいただき、お使いのシステムでその速度を体感してください。 *重要:MT5端末での作業には、別途 X2 Copy MT5 バージョンが必要です X2 Copy MT4/5 の設定と機能の説明 | X2 Copy トライアル版のインストール方法 特徴 高速コピー — 0.1秒未満でのトレード転送 すべてのコピータイプをユニバーサルサポート: MT4>MT4, MT4>MT5, MT5>MT4, MT5>MT5 直感的なインターフェー
コピー機->便利で高速なインターフェースインタラクション、ユーザーはすぐに使用できます     ->>>> WindowsコンピュータまたはVPS Windowsでの使用を推奨 基本機能: コピートレードの通常のインタラクション速度は0.5秒未満です。 シグナルソースを自動的に検出し、シグナルソースアカウントのリストを表示します シンボルを自動的に一致させます。異なるプラットフォームでよく使用される取引シンボルの95%(異なるサフィックスなどの特別なケース)が自動的に一致し、基本的に手動設定は必要なく、シンボルマッピングテーブルをダブルクリックして対応するシンボルを変更できます。(マッピングテーブルにはクイック検索シンボル機能があります) 4つのロット計算モード(1. 乗数 2. 固定ロット 3. 適応リスク 4. シグナル 適応リスク ) 特別ロットモード: ストップロス資本リスクに基づいてロットサイズを計算できます (ストップロスが小さすぎる場合や、計算されたロットサイズが大きすぎる場合がありますので、注意して使用してください) 複数のプラットフォーム、複数の信号源(マスター)、複
これは、トレンドラインPROインジケーターの自動パラメータオプティマイザです 簡単かつ迅速に、あなたのお気に入りのトレンドラインプロインジケーターに最適なパラメータを選択します。 最適化には数秒しかかかりません。 オプティマイザでは、振幅、TP1-TP3、StopLoss、および選択した履歴セクション(日)の時間フィルタとHTFフィルタの値など、各ペアと期間に最適なパラメータを見つ 異なる時間枠を最適化するには、異なる範囲の履歴が必要です: M5-M15計算範囲パラメータ(日)=60(三ヶ月)を設定します。 M30-H1計算範囲パラメータ(日)=120(6ヶ月)を設定します。 H4パラメータの計算範囲(日数)を設定する=240(1年) D1-W1パラメータ計算範囲(日)=720(三年)を設定します。 MN1パラメータ計算範囲(日)=1200(五年)を設定します。 最適化後、パラメータはmql4>Files>T R E N D Lineoptimizedsettingsフォルダ内の既製のセットファイルに自動的に保存されます オプティマイザユーティリティの使用方法: 最適化
Trade Dashboard simplifies how you open, manage, and control your trades, with built-in lot size calculation. It allows you to execute trades, manage risk, and control positions directly on the chart, with tools such as partial close, breakeven, and trailing stop. Designed to reduce manual work and help you stay focused on your trading decisions. A demo version is available for testing. Detailed explanations of features are provided within the MQL5 platform. Installation instructions are include
Risk manager Risk manager - it will simplify the tracking of drawdown and will notify you (alert) when the specified risk is reached, and close/lock orders when the critical DD risk level is reached. If the specified drawdown is exceeded, you can choose two options for actions: All orders will be closed that mean loss will be fixed on depo. The terminal also closes. Instead of fixing the loss on depo, the opposite order will be opened - orders locking will occure. Not a single order will be c
作者のその他のプロダクト
1. Overview Trading Email Alert monitors the trading account and automatically sends an email whenever a buy or sell position is opened and/or closed on the symbol (instrument) it is attached to. The email subject line is fully configurable, along with several filters that determine which events trigger a notification. Key features: • Separate email subject line for trade opening and trade closing. • Filter to notify only openings, only closings, or both. • Filter to notify only buy trades, onl
フィルタ:
レビューなし
レビューに返信