Trading Email Alert

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 5 (MQL5)
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 5 (MQL5))
•1. Copy the Trading email alert.mq5 file to the MQL5/Experts/ folder of your MetaTrader 5 installation (in
MT5, right-click "Expert Advisors" in the Navigator ® "Open Folder" to locate the correct directory).
•2. Open the MetaEditor (press F4 in MT5, or Tools ® MetaQuotes Language Editor).
•3. Open the .mq5 file inside the MetaEditor.
•4. Press F7 (or click "Compile") to generate the .ex5 file. Check the "Errors" tab to confirm it shows "0
error(s), 0 warning(s)".
•5. Back in MT5, open the Navigator (Ctrl+N), locate the EA under "Expert Advisors" and drag it onto the
chart of the desired symbol.
•6. In the properties window, 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.
5. How Trade Events Are Detected
The MT5 version uses the native OnTradeTransaction event, which is fired by the terminal itself on every
account activity. The EA identifies whether the transaction is an entry (DEAL_ENTRY_IN, opening) or an exit
(DEAL_ENTRY_OUT / DEAL_ENTRY_OUT_BY, closing) and builds the corresponding email.
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, InpNotifyExistingOnStart, which is not
available in MT5 since MT5 can reliably distinguish new transactions from pre-existing ones without needing this extra
option.
Manual generated for the Trading email alert.mq5 file (MetaTrader 5 (MQL5)).
おすすめのプロダクト
MTF Lines PRO
Renato Fiche Junior
3 (2)
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
Volume profile CVD Frato
Francisco Felipe Alves Da Silva Rocha
5 (2)
Frato Volume Profile Pro v7.5 Frato Academy開発 このインジケーターは、MetaTrader 5用の価格ボリュームプロファイルを表示します。設定可能な期間における価格レベルごとの取引量の分布を計算し、その結果をメインチャートに直接表示します。 特徴: カラーグラデーションによるボリュームプロファイル このインジケーターは、価格帯を複数のレベルに分割し、各レベルに対応するボリュームを割り当てます。各レベルの色は、ボリュームに応じて連続的なグラデーションで変化します。ボリュームの少ないレベルは寒色系(濃い青)、ボリュームの多いレベルは暖色系(黄色)で表示されます。最もボリュームの多いレベルは、ポイント・オブ・コントロール(POC)と呼ばれ、視覚的に強調表示されます。 参照線:POC、VAH、VAL このインジケーターは、以下の3本の水平線を自動的にプロットします。 - POC(ポイント・オブ・コントロール):最高出来高レベル - VAH(バリューエリア高値):バリューエリアの上限 - VAL(バリューエリア安値):バリューエリアの下限
FREE
Overtrading Stopper MT5 1. 概要 Overtrading Stopper MT5 は、裁量トレードにおける取引ルールの実行を支援するMetaTrader 5用ユーティリティEAです。 「今日は何回まで取引するか」「何連敗したら止めるか」「負けた後、何分休むか」「短時間に連続でエントリーしない」といった、自分で決めたルールをあらかじめ設定できます。 設定した上限や条件に達すると、EAはチャート上に保護状態の理由を表示し、必要に応じて新規ポジションの決済や保留注文の削除を行います。 このツールは売買シグナルを出すEAではありません。トレード判断そのものは行わず、ユーザーが事前に決めたリスク管理・取引規律のルールを運用しやすくするためのツールです。 2. このようなトレーダーに向いています Overtrading Stopper MT5 は、次のような課題を持つ裁量トレーダー向けです。 取引回数の上限を決めても、相場を見ているうちに回数が増えてしまう 損失後にすぐ取り返そうとして、連続エントリーしてしまう 連敗した日は一度休止したいが、感情的な判断で取引を続けてしま
FREE
SMC Visual indicator
Gabriel Balbino De Oliveira
SMC Visual Indicator v6 – 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
BLZ Candle TImer
Moustapha Boulouz
4.48 (21)
BLZキャンドルタイマー:トレーディングの未来を解き放つ BLZ Candle Timerは、現在のバーが終了し、新しいバーが出現するまでの残り時間を表示する高度なバータイマー・カウントダウンで、最先端のトレーディングの世界に足を踏み入れましょう。 このインジケーターは、チャート上の最後のバーの残り時間を表示し、市場のリズムを先取りします。新しいバーの到着をタイムリーに通知することで、あなたの取引戦略にダイナミックなエッジを加えます。 汎用性が鍵です: - M1タイムフレーム*の速いペースから*MNタイムフレーム*の広大なビューまで、あらゆるタイムフレームでシームレスに動作します。 - カスタマイズ可能なパラメーターで取引体験を調整し、お好みに応じて*色*、*文字サイズ*、*可視性*で遊ぶことができます。 *これは単なるツールではなく、スキャルパーや日中トレーダーのニーズに応える、すべての取引スタイル*のための多目的なコンパニオンです。電光石火の高速計算で、*BLZ Candle Timer*は市場の鼓動と同期し続け、ビートを決して逃しません。 そして最大の特徴は?BLZ
FREE
FiveStarFX Gold Reversal Edge Professional automated trading solution designed for structured execution and controlled risk management in the Gold market. Built for traders who value discipline, precision, and consistency. Key Features Fully automated trading One trade at a time (controlled exposure) Fixed Stop Loss and Take Profit Smart Break-Even protection Profit lock with buffer Step-based trailing management Spread protection system Works on any broker Trade Management The E
FREE
This indicator is especially for the binary trading. Time frame is 1 minutes and exp time 5 or 3 minutes only. You must be use martingale 3 step. So you must put lots size is 10 % at most. You should use Mt2 trading platform to connect with my indicator to get more signal without human working. This indicator wining rate is over 80% but you may get 100% of profit by using martingale 3 step. You should use MT2 Trading Platform to connect meta trader platform and binary platform . You can get mt2
FREE
Scan a fixed list of assets (Ibovespa) in the chosen timeframe (TimeFrame). For each pair and for various periods. Calculate a regression model between the two assets (and, if desired, using the bova11 index as a normalizer). Generate the spread of this relationship, its mean, standard deviation, speculative deviation, and betas (B1 and B2). Apply an ADF test without exclusion (cointegration/stationarity). Calculate the Z-score of the current exclusion (how many standard deviations are away from
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
XCalper CandleTimer
Aecio de Feo Flora Neto
4.64 (14)
This auxiliary indicator displays time left before closing on the current timeframe with continuous update . It also shows the last trade price and variation from a previous day close in percentage and points. This indicator is pretty handy for daytraders and scalpers who want to precisely monitor closing and opening of candles. Indicator parameters Show in shifted end - Default: False. Display time and values on screen. If True, Displays only time to close aside last candle. Distance from the
FREE
Descrição Este Expert Advisor (EA) implementa uma estratégia baseada na divergência de preços entre o mini dólar (WDO$N) e o dólar cheio (DOL$N). Ele monitora, segundos antes da abertura do mercado ou ao longo do dia (conforme o modo escolhido), possíveis discrepâncias entre esses dois ativos e efetua ordens no mini dólar, apostando na convergência futura. Principais Recursos Divergência Mínima Configurável: A estratégia utiliza um parâmetro de divergência mínima de 10 pontos, ajustável de acor
FREE
THE       MAC Trade Panel       It is an advanced trading utility designed for manual traders (scalpers and day traders) seeking speed, precision, and professional risk management in MetaTrader 4. Forget about time-consuming lot calculations: define your risk and let the dashboard do all the heavy lifting. Fully interactive, resizable, and with a modern design, it allows you to trade directly from the chart with order previews, manage multiple partial exits, and automatically protect your capita
RandomChoice
Aleksei Lesnikov
5 (1)
Expert capable of generating profit by opening positions randomly. Shows good results in long-term trading – on timeframes from H12. Features Fully automatic mode is available. Positions are opened randomly. Martingale is applied – if the previous position closed with a loss, the current one is opened with a volume that compensates for that loss. Parameters Mode – Expert's operating mode: Automatic – automated (recommended); Manual – manual. In automatic mode, the Expert does not require any p
FREE
Crypto_Forex MT5用インジケーター「 WPR with 2 Moving Averages 」(リペイント機能なし) - WPR自体はスキャルピングに最適なオシレーターの1つです。 - 「WPR and 2 Moving Averages」インジケーターを使用すると、WPRオシレーターの高速移動平均線と低速移動平均線を確認できます。 - このインジケーターを使用すると、価格調整を早期に把握できます。 - このインジケーターはパラメータで簡単に設定でき、どの時間枠でも使用できます。 - 買いと売りのエントリー条件は画像で確認できます。 - WPR MA クロスの PC およびモバイル アラート付き。 買いシグナルの条件例: (1) - 高速MAが低速MAを下向きにクロスし、WPR値が-50を下回っている場合:買いトレードを開きます。 (2) - WPR値が-20を超える買われすぎゾーンに入ったら:買いトレードを終了します。 売りシグナルの条件例: (1) - 高速MAが低速MAを下向きにクロスし、WPR値が-50を超えている場合:売りトレードを開きます。 (2) WP
A ticker that shows the average bitcoin price of the selected currency and keeps updating it at regular intervals. PRO version updates more often and displays details about the price change! Make sure you have added the API address http://metakod.com/mk/api in the list of allowed URLs on tab Tools → Options → Expert Advisors. All of the supported currencies and the API address are listed in the screenshots below. Inputs Logging level - Controls the amount of details written to the log (default:
FREE
High Low Open Close
Alexandre Borela
4.98 (45)
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
FREE
Price Ray
Keni Chetankumar Gajanan -
5 (7)
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
Donchian Channel is an indicator created by Richard Donchian. It is formed by taking the highest high and the lowest low of the last specified period in candles. The area between high and low is the channel for the chosen period. Its configuration is simple. It is possible to have the average between the upper and lower lines, plus you have alerts when price hits one side. If you have any questions or find any bugs, please contact me. Enjoy!
FREE
Launch price: 30 USD - price will increase after the first purchases, so early buyers lock in this rate. Reversal Magnet Lines plots the closing price of each of the last N trading days (configurable from 15 to 180 days) as horizontal lines directly on the chart. These prior-day close levels frequently act as short-term support and resistance, where price either reverses or breaks through with momentum. Based on an analysis of 52 trading days on JPN225, price interacted with these levels in mo
OB FVG Trade Copier: Unified Master & Slave EA Version: 2.00 Type: Trade Copier / Risk Management Utility Compatibility: MetaTrader 4 & MetaTrader 5 (Cross-compatible codebase) Overview The OB FVG Trade Copier is a professional-grade, unified trade copying system designed to mirror trades between Master and Slave accounts seamlessly. Built with a unified architecture, a single EA file serves as both the sender (Master) and receiver (Slave) simply by toggling the EA Mode in the settings. It uti
FREE
EMarket AI
Sant Clear Ali Costa
The wait is over, the AI for Traders has arrived! The Elite Market AI is an Expert Advisor powered by one of the most advanced generative AI models available today. It processes the price and indicator data displayed on the screen, providing traders with valuable insights into the current market situation. This analysis can be crucial for making informed buy or sell decisions, assisting in trading strategy, and enhancing the accuracy of operations. Configurations Country Code Description: Def
RBM EA Deluxe
Renato Brendim Medici
An XAUUSD-focused robot that only enters when several market conditions line up at once: trend, volume, price structure and session. It shows you exactly what it’s analyzing on the chart, and why it decided to trade or wait. Most gold robots you’ll find out there run on something simple: a moving average cross, or a channel breakout, and that’s it. The problem is gold doesn’t trade that way. It sweeps liquidity, traps early entries, and usually only moves for real after shaking everyone out fir
Summary of the Advanced Account Monitoring for MT5 The Advanced Account Monitoring for MT5 is a powerful tool designed for advanced account monitoring, offering traders detailed insights into their trading performance. This indicator provides a comprehensive dashboard to track drawdowns, profits, and trading volumes across different timeframes. Below is an overview of its key functions: Account and Robot Monitoring The indicator allows users to monitor either the entire account or a specific Ex
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 de
FREE
Ping-Monitor — Never Miss a Tick Again! Do you run EAs and worry about silent chart freezes or data feed stalls ?  This utility is your ultimate watchdog, alerting you the moment your charts stop receiving updates. Ping-Monitor is designed to detect when a chart freezes or the data feed stalls, even if MT5 still shows that the connection is active. It works by tracking the time of the last incoming tick. Every time the chart receives a new price update, the EA records the timestamp. Then, on a
Want to AUTOMATE this strategy? We have released the fully automated Expert Advisor based on this logic. Check out Range Vector Fibo Logic EA here:  https://www.mql5.com/en/market/product/158065 UPGRADE AVAILABLE: Tired of manual trading? I just released the Automated MTF Version with Mobile Alerts and Auto-Targets. Get the Pro Version here: https://www.mql5.com/en/market/product/159350 Range Vector Fibo Logic (Indicator) One Candle Strategy Stop waking up at 3 AM to draw lines manually. Range
FREE
QM FlowVision X1 Visual Multi-Factor Trading Indicator with Historical Probability, Market Flow, Momentum, Divergence and Multi-Timeframe Context QM FlowVision X1 is a visual decision-support indicator for MetaTrader 5 designed to transform multiple market conditions into a simple and readable trading state. Instead of displaying isolated oscillators without interpretation, FlowVision combines momentum, money flow, RSI, Stochastic RSI, divergence and higher-timeframe context into a unified 0–100
FREE
Trade Copier Local MT5 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 #
MAGIC PROTECTOR — Advanced Equity Protection EA Magic Protector   is a utility built for traders who want better control over daily, weekly, or monthly risk exposure. The EA continuously monitors trading performance based on your selected protection period and helps prevent further losses or overtrading once your defined limits are reached. It can work with either the entire account or only trades belonging to a specific Magic Number, making it suitable for traders running multiple Expert Ad
FREE
SessionSync   is a smart and elegant timing tool for MetaTrader 5, created to keep traders fully synchronized with the market. It shows the remaining time of the current candle in real time and displays the main trading clocks, including server time, local time, New York, and London. With a clean floating panel and an intuitive layout, SessionSync helps you track candle expiration and market sessions quickly and efficiently, without overloading your chart. Whether you trade price action, intrada
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.43 (216)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
Local Trade Copier EA MT5
Juvenille Emperor Limited
4.94 (149)
Local Trade Copier EA MT5 は、同一の Windows PC または Windows VPS 上で稼働する複数の MetaTrader 5 口座間で、取引をコピーおよび管理するための高速で柔軟なトレードコピーツールです。 ローカルでの取引同期に加え、Receiver 側でロットサイズ、リスク管理、取引フィルター、シンボルマッピング、取引管理、口座保護を個別に設定できます。 Transmitter と Receiver のターミナルは約 1分 で設定でき、同一ブローカーまたは異なるブローカーの口座間で、手動取引や EA による取引をコピーできます。適切な条件下では、ローカルの MetaTrader ターミナル間で取引情報を 0.5秒未満 で同期できます。実際の約定速度は、ブローカーのレイテンシー、ネットワーク状況、PC/VPS の性能、ターミナルの負荷によって異なります。 ご購入前に無料デモをお試しください Local Trade Copier EA MT5 の完全機能版無料デモ を、MT5 デモ口座で 1回につき4時間 テストできます。 Local Trad
日本語に対応しました。 Strategy Ledger Pro は、MetaTrader 5 用の読み取り専用の口座分析パネルです。口座の成績をエキスパートアドバイザー(EA)、戦略、銘柄、マジックナンバーごとに分け、それぞれが実際にどれだけ貢献しているかを明らかにします。 パネルは 11 言語に対応しています:English、Français、Deutsch、Español、Italiano、Português、Русский、Türkçe、中文、日本語、한국어。 デモをダウンロードする前に。 Market では、有料製品のデモはストラテジーテスター内でのみ実行されます。このパネルはご自身の口座の取引を分析しますが、ストラテジーテスターには読み取る口座履歴がないため、デモは空のパネルで起動し、その旨を表示します。これはデモの仕組みによるもので、製品の制限ではありません。 この説明内の動画では、実口座でのパネルの動作をご覧いただけます。 すべての機能を解説した詳しい マニュアル (英語)と、情報交換やお知らせのための AureusAI Trading Suite グループをご用意し
================================================================================ POC BREAKOUT - V20.72. Full Professional Grade Toolkit ================================================================================ POC Breakout is a full MetaTrader 5 trading dashboard for discretionary traders who want breakout signals, Point of Control (POC) context, volume profiles, order flow, market structure, news, alerts, and advanced trade planning in one professional workspace. Attached directly to you
Telegram to MT5 Multi-Channel Copier   は、Telegram チャンネルのトレードシグナルを MetaTrader 5 へ自動コピーします。ボット不要、ブラウザ拡張不要、手動コピー不要。Telegram にシグナルが届くと、EA が数秒であなたのターミナルに注文を出します。 さらに、チャンネルをコピーする前に、内蔵バックテスターでそのチャンネルがあなたの口座でどう動いたかを確認できます。 製品は 2 つのコンポーネントで構成されます:Telegram チャンネルを監視する Windows アプリと、MT5 ターミナルでシグナルを執行する本 EA です。MT4 版もあります   こちら . セットアップガイドとアプリのダウンロード:   https://www.mql5.com/en/blogs/post/768988 現在の価格は今後値上げされます。 仕組み アプリはあなた自身の Telegram アカウントで接続するため、フォローしているすべてのチャンネル、グループ、トピック、ボット(プライベートや VIP を含む)を見ることができます。シグナル
TradePanel MT5
Alfiya Fazylova
4.88 (169)
Trade Panelは多機能なトレーディングアシスタントです。アプリには手動取引用の50以上のトレーディング機能が搭載されており、ほとんどの取引作業を自動化することができます。 アプリの説明書+ビデオガイド: https://www.mql5.com/en/blogs/post/772292 デモ口座用アプリの試用版: 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 取引。 ワンクリックで取引操作を行うことができます: リスクを自動計算して指値注文やポジションを開く。 複数の注文やポジションをワンクリックで開く。 注文のグリッドを開く。 保留中の注文やポジションをグルー
自分の取引ルールで Telegram のシグナルをコピー Telegram to MT5 Signal Trader は、Telegram の公開・非公開チャンネルやグループから、テキスト形式の取引シグナルを MetaTrader 5 へ自動でコピーします。1つのデスクトップアプリで複数の配信者と MT5 口座を管理し、 配信者ごとにリスクと取引設定を個別に指定 できます。 シグナルのコピーに Telegram ボットや API 設定は必要ありません。 電話番号または QR コードでご自身の Telegram アカウントにログインし、すでに参加しているチャンネルやグループを選ぶだけです。ボットの作成や、Telegram API トークン、API ID、API hash の入力は不要です。 ポジションサイズを選び、複数の利確水準に分けて決済し、建値へのストップ移動やトレーリングストップを自動化できます。配信者のシグナルを受け取りながら、実際の取引方法は自分で管理できます。 本製品は、この MT5 エキスパートアドバイザ(EA)と、必須の Windows 連携アプリで構成されます。 インス
Farmed Hedge Yield Farming | All Markets (Manual - Hybrid - Semi/Automated EA) VERIFIED TRADING RESULTS - Farmed Hedge Yield Axi Copy:  https://www.mql5.com/en/signals/2356376 - Farmed Hedge Yield Exn Copy:   https://www.mql5.com/en/signals/2356404 - Farmed Hedge Yield V Copy:  https://www.mql5.com/en/signals/2357156 IMPORTANT NOTICE: FarmedHedge is a MANUAL-FOCUSED TRADING UTILITY ,not a fully automated EA. Results shown on this Signal include manual trades and overall strategic management.
Power Candles Strategy Scanner - 自動最適化型マルチシンボル設定ファインダー パワーキャンドル・ストラテジー・スキャナーは 、パワーキャンドル・インジケーターを駆動するのと全く同じ自己最適化エンジンを、マーケットウォッチに登録されているすべての銘柄に対して並行して実行します。1つのパネルで、現在統計的に取引可能な銘柄、各銘柄で勝率の高い戦略、最適なストップロス/テイクプロフィットの組み合わせが表示され、新たなシグナルが発生した瞬間に通知が届きます。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨を受け取り、  https://stein.investments でコミュニティに参加しましょう 市場動向を網羅。銘柄ごとに3,000件以上の自動最適化。2種類のアラート。ワンクリックでチャートを切り替えて即座にアクション。 なぜこれが必要なのか 多くのマルチ銘柄スキャナーは、 価格の動き (ボラティリティ、変動率、銘柄ごとのRSI)を表示するだけです。それ
Exp COPYLOT CLIENT for MT5
Vladislav Andruschenko
3.97 (35)
MetaTrader 5 用のプロフェッショナル取引コピー機 MetaTrader 向けの高速・高性能・信頼性の高い 取引コピー機 です。 COPYLOT は、MT4 と MT5 のターミナル間で Forex 取引をコピーでき、 Hedge 口座と Netting 口座の両方に対応しています。 COPYLOT MT5 版の対応構成: - MT5 Hedge → MT5 Hedge - MT5 Hedge → MT5 Netting - MT5 Netting → MT5 Hedge - MT5 Netting → MT5 Netting - MT4 → MT5 Hedge - MT4 → MT5 Netting MT4 版 完全な説明 + DEMO + PDF 購入方法 インストール方法 ログファイルの取得方法 テストと最適化の方法 Expforex のすべての製品 MT4 ターミナルへのコピーも可能です(MT4 → MT4、MT5 → MT4): COPYLOT CLIENT for MT4 COPYLOT は、2台、3台、さらには10台のターミナル間で同時に動作できる、プロフェッ
Signal TradingView to MT5 Pro Automator TradingViewとMetaTrader 5間の即時プロフェッショナル実行 TradingViewのシグナル(アラート)とMT5での実際の約定を繋ぐ、最も強固なコミュニケーションブリッジで、取引戦略を自動化します。スピード、柔軟性、そして完璧なリスク管理を求めるトレーダー向けに設計されたこのExpert Advisorは、あらゆるアラートメッセージを正確な成行または指値注文に変換します。 強みと利点 ユニバーサルパーシングエンジン(独自技術): あらゆるアラート形式からデータを自動的に認識し、抽出できる高度なテクノロジー。単一の固定フォーマットに制限されることはありません。システムはシンボル(銘柄)、アクション、価格、SL(ストップロス)、TP(テイクプロフィット)を自動的に理解します。 リアルタイム実行: レイテンシ(遅延)を最小限に抑えるよう最適化された、1秒未満の超高速ポーリング技術。シグナルを受信してから数ミリ秒以内に注文が実行されます。 機関投資家レベルのリスク管理: 以下に基づく自動かつ正確
Premium Trade Manager - コーチ内蔵型トレードパネル Premium Trade Manager は、AIトレーディングコーチをあなたのチャートの中に置き、その下に完全な執行エンジンを備えたツールです。いつも通りにトレードをセットアップし、あなた専任のAIトレーディングコーチ Max にそのセットアップをそのまま読み取らせて、発注前に率直な見解を伝えてもらいましょう。ストップの幅が規律あるアプローチに合っているか、リスクサイズは適切か、高影響のニュースイベントが数分後に迫っていないか、プロップファームの制限に近づいていないか。その下には、クリックの後をすべて処理するエンジンが備わっています。ワンクリックのリスクサイズ計算による発注、チャート上でドラッグして組み立て、発注後も動かせるプラン、最大4段階の分割利確、7種類のトレール方式、リアルタイムのプロップファームコンプライアンス、ニュースガード、そしてコストを自ら採点するスプレッド機能。判断はあなたが下す。Max がもう一度確認する。後のことはすべてパネルが担う。 購入前に実際に触れて試せます。 ブラウザ上でライブ
HINN MAGIC ENTRY – the ultimate tool for entry and position management! SIMPLE. FASTEST. INTUITIVE. MAX AUTOMATED. Place orders by selecting a level directly on the chart! full description   ::  demo-version  :: 60-sec-video-description Key features: - Market, limit, and pending orders - Automatic lot size calculation - Automatic spread and commission accounting - Unlimited partitial take-profits  - Breakeven and trailing stop-loss and take-profit  functions - Invalidation leves - Intuitive, a
MT5 to Telegram Signal Provider は、Telegramのチャット、チャンネル、またはグループに 指定された シグナルを送信することができる、完全にカスタマイズ可能な簡単なユーティリティです。これにより、あなたのアカウントは シグナルプロバイダー になります。 競合する製品とは異なり、DLLのインポートは使用していません。 [ デモ ] [ マニュアル ] [ MT4版 ] [ Discord版 ] [ Telegramチャンネル ]  New: [ Telegram To MT5 ] セットアップ ステップバイステップの ユーザーガイド が利用可能です。 Telegram APIの知識は必要ありません。必要な全ては開発者から提供されます。 主な特長 購読者に送信する注文の詳細をカスタマイズする機能 例えば、Bronze、Silver、Goldといった階層型のサブスクリプションモデルを作成できます。Goldサブスクリプションでは、すべてのシグナルが提供されます。 id、シンボル、またはコメントによって注文をフィルターできます 注文が実行されたチャート
One button. One trade. MT5 Trading Deck is a hotkey trading panel for MetaTrader 5 that turns the platform into a keyboard-driven execution cockpit. Stop loss, take profit and lot size are pre-calculated for every key; the moment you press, a market order is live on the broker. A complete technical user manual is attached in the product Comments section. It documents every input parameter, the full hotkey map, the recommended Stream Deck XL layout, and the advanced workflows for Pre-Limit orders
購入後にメッセージをお送りください。完全版マニュアルキット + AI機能をテストできる3日間のOpenAI APIトライアル + 追加ボーナスギフトをお受け取りいただけます 現在の価格は、8月のリローンチアップデートに伴う期間限定割引価格です — 値上げ前に今すぐエディションを確保してください。 次回価格:$340 これは、あなたが市場で試したことのある、または見たことのあるどのトレーディングパネルともまったく異なります。現在、リテール市場で利用できる最も革新的なAI搭載トレーディングパネルの一つです。 AIをチャートに直接接続することを想像してください   — AIによる推奨、口座監査、AIトレードシグナルの受信、そしてワンクリックでの実行。 Telegramを通じてスマートフォンから   取引口座全体を管理することを想像してください   — AIとのチャット、即時アラートの受信、取引の管理、どこからでも口座を保護できます。   複数のEA   を稼働させ、それぞれのEAのパフォーマンスを個別に監視し、その取引を管理したり、特定のポジションをスマートフォンから直接決済したりできるこ
Grid Manual MT5
Alfiya Fazylova
4.73 (22)
「Grid Manual」は、注文のグリッドを操作するための取引パネルです。 ユーティリティはユニバーサルで、柔軟な設定と直感的なインターフェイスを備えています。 それは、損失を平均化する方向だけでなく、利益を増やす方向でも注文のグリッドで機能します。 トレーダーは注文のグリッドを作成して維持する必要はありません。 すべてが「Grid Manual」によって行われます。 注文を開くだけで十分であり、「Grid Manual」は注文のグリッドを自動的に作成し、非常に閉じるまでそれに付随します。 完全な説明とデモバージョン ここ。 ユーティリティの主な機能と機能 ユーティリティは、モバイル端末から開かれた注文を含め、あらゆる方法で開かれた注文を処理します。 「制限」と「停止」の2種類のグリッドで機能します。 グリッド間隔の計算には、固定と動的(ATRインジケーターに基づく)の2つの方法で機能します。 オープンオーダーグリッドの設定を変更できます。 チャート上の各注文グリッドの損益分岐点を表示します。 各注文グリッドの利益率を表示します。 ワンクリックでグリッドから収益性の高い注文を閉じるこ
Trade copier MT5
Alfiya Fazylova
4.61 (56)
Trade Copierは、取引口座間の取引をコピーして同期するように設計された専門的なユーティリティです。 コピーは、同じコンピューターまたはvps にインストールされている、サプライヤーのアカウント/端末から受信者のアカウント/端末に行われます。 キャンペーン - すでに「Trade copier MT5」をご購入の方は、「Trade copier MT4」を無料で入手できます(MT4 → MT5 および MT4 ← MT5 のコピー用)。詳細な条件については、どうぞ個別メッセージでお問い合わせください。 購入する前に、デモ アカウントでデモ バージョンをテストできます。 デモ版 こちら 。 詳細な説明は こちら 。 主な機能と利点: MT5ネッティングアカウントを含む、MT5> MT5、MT4> MT5、MT5> MT4のコピーをサポートします。 高いコピー速度(0.5秒未満)。 ベンダーモードと受信者モードは同じ製品内に実装されています。 チャートから直接リアルタイムでコピーを制御できる、簡単で直感的なインターフェイス。 接続が切断されたり、端末が再起動されたりしても、設定と位
EA Overfitter
Stephen J Martret
5 (1)
That backtest looks great. But will it still be making money tomorrow, next week, next month? EA Overfitter re-runs your EA on 100 price histories it has never seen. One score tells you if the edge is real. A backtest tells you what an EA did on one price history — the one that happened to occur. What you cannot tell from it is how much of that result was the strategy and how much was the particular path. EA Overfitter answers that. It builds up to 100 synthetic price histories your EA has n
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
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
Telegram To MT5 — シグナルコピア Telegram チャンネルのトレードコールを、実際の MT5 注文に変換します — 自動で、好きなだけの口座に対応し、リスクとルールは完全にあなたの管理下に置けます。 Telegram To MT5 は、あなたが Telegram で既にフォローしている VIP / シグナルチャンネルを MetaTrader 5 端末に接続します。無料の付属デスクトップアプリがメッセージを読み取り(ボットを禁止しているチャンネルでも可能)、この EA があなたの口座でそれらを執行します — あなた自身のリスク設定、シンボルマッピング、テイクプロフィット処理、セッションおよびニュースフィルターを適用します。 これはシグナルコピアであり、ブラックボックス戦略ではありません。どのチャンネルを信頼するか、各トレードのロットと管理方法をあなたが決めます。 ステップバイステップの設定と付属アプリのインストールガイド 仕組み [あなたの Telegram チャンネル] -> [付属デスクトップアプリ] -> [MT5 + この EA] -> 注文 付属デスクトッ
EA Slipstream
Stephen J Martret
5 (1)
Your backtest filled every order at the price it asked for. Your account does not. EA Slipstream measures what execution costs your EA, using your own fills, slippages and spreads to show you the true performance of your EA. A backtest prices every trade at the level the EA named. In live trading a pending order fills at whatever price is available when it triggers, a stop closes wherever the market is when it is hit, and the spread at that moment is whatever the account was quoting. The differ
MT5 用 Dynamic Fibonacci Grid Dashboard の最新バージョンを紹介します。 数多くの新機能を搭載したこの新しいダッシュボードは、トレード体験を一新し、市場や価格アクションをまったく新しい視点から見ることができます。複数のタイムフレームと複数のシンボルを同時に分析することで、新たな可能性を発見できます。手動トレードやポジション管理のための使いやすいインターフェース、そしてあらかじめ設定された自動売買戦略を適用するための拡張機能を備えています。さらに、DFGはストラテジーテスター内でトレーディングシミュレーターとして完全に機能し、過去データを使用してさまざまな市場環境を再現できます。ビジュアルモードで手動トレードを練習したり、高速モードで自動売買戦略をテストしたりすることが可能です。 主な特徴 • Dynamic Fibonacci Bands の概念に基づく、複数タイムフレームおよび複数シンボルの高度なテクニカル分析。 リアルタイム市場監視ダッシュボードにより、これまでにない効率性を体験できます。M1、M5、M15、H1 のチャートから得られる複雑な
Basket EA MT5
Juvenille Emperor Limited
5 (7)
Basket EA MT5 は、強力な利益収穫ツールであり、包括的な口座保護システムがシンプルで使いやすい形で統合されたソリューションです。その主な目的は、すべてのポジションを個別管理ではなく“バスケットレベル”で一括管理することで、口座全体の損益を完全にコントロールすることにあります。EAは、テイクプロフィット、ストップロス、ブレイクイーブン、トレーリングストップといったバスケットレベルの機能を備えており、これらを口座残高の%/口座通貨の固定額/管理対象取引の平均ポイントといった形で設定できます。この柔軟性により、トレーダーは個々のリスクと利益戦略を自分に合わせてカスタマイズできます。さらに、 Basket EA MT5 は、Magic Number、通貨ペア、コメントなどに基づいて特定の取引を管理対象から除外または含めるフィルタリング機能を提供し、望む取引だけを管理できるようにします。 追加の保護機能として、高度な口座セーフガード機能を搭載しています。指定したエクイティのテイクプロフィット・ストップロス水準、または最高残高からの最大ドローダウンに達した場合、EAはすべてのオープンポ
この製品は、ニュースタイム中にすべてのエキスパートアドバイザーと手動チャートをフィルタリングするため、急激な価格変動によるマニュアルトレードのセットアップの破壊や他のエキスパートアドバイザーによって入力された取引について心配する必要はありません。この製品には、ニュースのリリース前にオープンポジションとペンディングオーダーを処理できる完全な注文管理システムも付属しています。 The News Filter  を購入すると、将来のエキスパートアドバイザーのためにビルトインのニュースフィルターに頼る必要はなく、今後はすべてのエキスパートアドバイザーをここからフィルタリングできます。 ニュース選択 ニュースソースは、Forex Factoryの経済カレンダーから取得されます。 USD、EUR、GBP、JPY、AUD、CAD、CHF、NZD、CNYなど、任意の通貨数に基づいて選択できます。 Non-Farm(NFP)、FOMC、CPIなどのキーワード識別に基づいて選択することもできます。 影響レベルによってフィルタリングするニュースを選択することができ、低、中、高の影響範囲から選択できます。
The product will copy all telegram signal to MT5 ( 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 s
Your EAs cannot see each other, but Anchor can. Anchor gives you one place to coordinate your EAs, manage risk, and decide when trading is allowed. It works alongside the trading bots you already use without any changes to them. The Problem One EA opens a trade. Then another starts trading. The next thing you know, you wake up to multiple grids built across your account. Each EA may be doing exactly what it was designed to do, but together they can place far more risk on your account than you in
作者のその他のプロダクト
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
フィルタ:
レビューなし
レビューに返信