MT5 to Telegram Informer

MT5 to Telegram Signal Provider
Real-Time Trade Notifications for MetaTrader 5
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
OVERVIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
MT5 to Telegram Signal Provider is a utility Expert Advisor for MetaTrader 5 that automatically sends trade notifications to one or more Telegram chats or channels. Every trade event on the account is captured and delivered as a formatted message in real time.

The EA runs on any chart and monitors the entire account. It does not place, modify, or close any orders. Its sole function is to observe trade events and report them instantly to Telegram.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
CORE FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Real-Time Trade Notifications
Detects and reports all trade events: market orders opened and closed, partial closes, close by, SL/TP modifications, pending orders placed, filled, and cancelled — delivered to Telegram the moment each event occurs.

Multi-Channel Support
Notifications can be sent to up to three Telegram chats or channels simultaneously. Ideal for distributing signals to multiple subscriber groups.

Rich Message Content
Each notification contains all relevant trade data: symbol, direction, lot size, entry price, stop loss, take profit, ticket number, comment, and time. Close messages additionally include pip result, gross profit (pure price movement), and net profit including all commissions and swap from both the opening and closing deal. Partial close messages show the closed volume alongside the remaining open volume.

Modify Cooldown Timer
SL/TP modification events are buffered per position. Only one message is sent per configurable interval (default 60 seconds), regardless of how many changes arrive during that period. Ideal for trailing stops that fire on every tick. Set Ev_ModifyDelay to 0 for instant delivery.

HTML-Formatted Messages
Messages use HTML formatting with bold field labels for clear readability. A separator line appears at the top and bottom of each message. Optional account info line shows account number and balance.

Chart Screenshot Delivery
Optionally captures and sends a screenshot of the chart with each trade open, close, or pending fill notification. Falls back automatically from sendPhoto to sendDocument for maximum compatibility with Telegram groups and channels.

Daily Summary Report
Sends an automated daily performance summary at a configurable time. Includes total trades, winners and losers, win rate, net P&L (including all commissions and swap from both opening and closing deals), and current account balance.

Symbol and Magic Number Filters
Restrict monitoring to specific symbols or a specific magic number. Run multiple instances on different charts to route different instruments to separate Telegram channels.

Connection Monitoring
The Telegram connection is verified every five minutes. A status label on the chart reflects the current connection state at all times. Start and stop messages are sent automatically when the EA is attached or removed.

UTF-8 Encoding
All message text is fully encoded in UTF-8 before transmission, ensuring correct rendering of all characters, symbols, and emojis in Telegram. Handles any EA comment content without HTTP errors.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
REPORTED EVENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Market order opened (buy or sell)
Market order fully closed — includes gross and net result in account currency
Market order partially closed — shows closed volume and remaining open volume
Close by — position closed against an opposite position
Stop Loss or Take Profit modified on any open position
Pending order placed (buy/sell limit, buy/sell stop, buy/sell stop limit)
Pending order triggered and filled
Pending order cancelled
Daily summary report (optional, at configurable hour)
EA started / stopped (with reason)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
INPUT PARAMETERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

TELEGRAM CONFIGURATION

TG_BotToken         (empty)   Bot token obtained from @BotFather. Required.
TG_ChatID1          (empty)   Primary Telegram chat or channel ID. Required.
TG_ChatID2          (empty)   Second chat ID. Optional.
TG_ChatID3          (empty)   Third chat ID. Optional.

MESSAGE EVENTS

Ev_OnOpen           true     Send notification when a market order is opened.
Ev_OnClose          true     Send notification when a position is fully closed, partially closed, or closed by.
Ev_OnModify         true     Send notification when SL or TP is modified.
Ev_ModifyDelay      60        Cooldown in seconds between modify notifications per position. All SL/TP changes during this interval are buffered; only the latest values are sent when the timer expires. Set to 0 for instant delivery. Prevents message floods from trailing stops.
Ev_OnPendingSet     true     Send notification when a pending order is placed.
Ev_OnPendingFill    true     Send notification when a pending order is filled.
Ev_OnPendingCancel  true     Send notification when a pending order is cancelled.
Ev_DailyReport      false    Send automated daily summary at the configured hour.
Ev_ReportHour       20       Hour of day (0–23) at which the daily report is sent.

FILTERS

F_AllowedSymbols    (empty)   Comma-separated symbols to monitor. Empty = all symbols. Example: XAUUSD,EURUSD
F_BlockedSymbols    (empty)   Comma-separated symbols to ignore.
F_MagicNumber       -1        Report trades with this magic number only. -1 = all trades.
F_Comment           (empty)   Report trades whose comment contains this text only. Empty = all.

MESSAGE FORMAT

Fmt_ProviderName    MY SIGNALS  Name shown at the top of every notification.
Fmt_ShowAccount     true       Append account number and currency to each message. Balance is always shown when this option is enabled.
Fmt_ShowEquity      false      Also show current equity alongside the balance. Only used when Fmt_ShowAccount is enabled.
Fmt_ShowPips        true       Include pip result in trade close messages.
Fmt_UseEmojis       true       Use colored circle indicators for trade direction. False = plain text labels (BUY / SELL).

CHART SCREENSHOT

Sc_Send              false     Capture and send a chart screenshot with each trade notification.
Sc_DeleteAfterSend   true       Delete the screenshot file after successful upload.
Sc_Width             800       Screenshot width in pixels.
Sc_Height            500       Screenshot height in pixels.
Sc_Caption          (empty)   Optional caption text. Empty = provider name and symbol.

CONNECTION

Conn_Timeout        10000     Maximum wait time in milliseconds for a Telegram API response.
Conn_ShowStatus     true       Display a connection status label on the chart.
Conn_StartMsg       true       Send a startup message when the EA initialises. Includes account, broker, balance, and chart.
Conn_StopMsg        true       Send a stop message when the EA is removed or the terminal closes. Includes stop reason.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
INSTALLATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

1. Copy the compiled .ex5 file to the MetaTrader 5 Experts folder:
   [MT5 data folder] / MQL5 / Experts /

2. Restart MetaTrader 5 or press F5 to refresh the Navigator.

3. In MT5, open Tools > Options > Expert Advisors. Enable "Allow WebRequests for listed URL"
   and add the following URL: https://api.telegram.org/

4. Create a Telegram bot via @BotFather and copy the bot token.

5. Drag the EA onto any chart. Enter your Bot Token in TG_BotToken and your Chat ID in TG_ChatID1.

6. Enable "Allow automated trading" in the EA properties and click OK.
   A green status label appears on the chart and a startup message is sent to Telegram.

FIRST STEPS

1. Open Telegram and start a conversation with @BotFather. Use /newbot to create a new bot and copy the token.

2. For a private chat: retrieve your Chat ID from @userinfobot.
   For a channel: add the bot as administrator and use the channel username (e.g. @mysignals) as Chat ID.

3. Enter the bot token and Chat ID in the EA input parameters and attach it to any chart.

4. Verify the green connection label appears on the chart and check Telegram for the startup message.

5. Configure which events to report and which symbols or magic numbers to filter via the input parameters.

IMPORTANT NOTES

- AutoTrading must be active in MetaTrader 5 (toolbar button or Ctrl+E).
- WebRequests must be allowed for https://api.telegram.org/ in MT5 Options > Expert Advisors.
- The EA monitors all positions on the account, not only those on the chart it is attached to.
- Multiple instances can run simultaneously on different charts to route symbols to separate channels.
- The EA does not trade. It has no effect on open positions, pending orders, or account funds.

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
COMPATIBILITY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Platform      MetaTrader 5 (Build 3000+)
Language      MQL5
Instruments   All — Forex, Metals (XAU/XAG), Indices, Crypto, Energy, CFDs
Timeframes    All timeframes
Account Type  Demo and Live (Hedge and Netting accounts)
AutoTrading   Must be enabled in terminal and EA properties

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

MORE TOOLS FROM fi.con INVESTMENT GROUP

We offer a complete MT5 toolkit built by traders. If you trade actively and want more automation, reporting, and control, these tools extend your MT5 setup significantly: 

    🏆  Enhanced Telegram Position Tracker MT5 — the most complete Telegram reporting solution for MT5. Every trade open, close, SL/TP change, and partial close delivered in real time. Live streaming messages update P/L every 30 seconds. Dual-posting to channel + group topics. 15-button interactive follower menu. Crash detection, HFT burst protection, zero missed closures. Automatic daily, weekly, and monthly P&L reports. If you share your trades with a Telegram audience, this is the EA. 

    📊  Telegram Trading Reporter MT5 — automated performance reports delivered to Telegram on schedule: daily EOD summary, weekly stats, monthly overview. Analyses your full trade history and sends structured reports with P&L, win rate, profit factor, best/worst trade — all without you having to open MT5. 

    🛠️  Chart Order Trade Manager MT5 — professional on-chart trade management panel for active traders. Visual SL/TP placement, automatic lot size calculation from risk %, one-click breakeven, trailing stop, partial close. Designed for traders who manage positions manually while running EAs in parallel. 

    🚫  Position Closure Management MT5 — automatically resolves hedged position pairs and locks in the net result at exactly the right moment. Essential for grid and martingale strategies, prop firm challenge rules that prohibit hedging, and any setup where open buy/sell pairs need controlled resolution. 



MT5 to Telegram Signal Provider v2.52 | fi.con Investment Group | MQL5 Marketplace
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
おすすめのプロダクト
Follow The Line MT5
Oliver Gideon Amofa Appiah
4.6 (35)
This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL. (you can change the colors). It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more powerful and reliable signals. Get them here: https://www.m
FREE
IMPORTANT NOTE: This is a professional Trade Management Utility and on-chart assistant. It is NOT an automated trading robot. It does not open trades on its own. The UltraFast Trade Manager MT5 is the ultimate execution and risk-management suite designed to give you absolute control over your manual and algorithmic trades. When managing multiple positions, calculating complex net break-even points, or constantly monitoring the economic calendar, hesitation can lead to costly mistakes. This utili
FREE
概要 このインジケーターは、クラシックな ドンチャンチャネル を強化したバージョンで、実践的なトレード機能を追加しています。 標準の3本線(上限、下限、中央線)に加え、 ブレイクアウト を検出し、チャート上に矢印で視覚的に表示します。また、チャートを見やすくするために、 現在のトレンド方向と逆側のラインのみを表示 します。 インジケーターの機能: 視覚的シグナル :ブレイクアウト時にカラフルな矢印を表示 自動通知 :ポップアップ、プッシュ通知、Eメール RSIフィルター :市場の相対的な強弱に基づいてシグナルを検証 カスタマイズ可能 :色、ラインの太さ、矢印コード、RSI閾値など 動作原理 ドンチャンチャネルは次のように計算します: 上限線 :直近N本のクローズ済みローソク足の最高値 下限線 :直近N本のクローズ済みローソク足の最安値 中央線 :最高値と最安値の平均値 上方ブレイクアウト は終値が上限線を超えたときに発生し、 下方ブレイクアウト は終値が下限線を下回ったときに発生します。 インジケーターは以下を行います: 3本のドンチャンラインを描画 方向転換後の最初のブレイクアウト
FREE
CosmiCLab SMC FIBO CosmiCLab SMC FIBO is a professional trading indicator designed for traders who use Smart Money Concepts (SMC), market structure analysis and Fibonacci retracement levels. The indicator automatically detects market swings and builds Fibonacci levels based on the latest impulse movement. It also identifies market structure changes such as BOS (Break of Structure) and CHOCH (Change of Character), helping traders understand the current market direction. CosmiCLab SMC FIBO also pr
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
この情報インジケーターは、アカウントの現在の状況を常に把握したい人にとって役立ちます。 VERSION MT 4 -   More useful indicators このインジケーターには、ポイント、パーセンテージ、通貨での利益、現在のペアのスプレッド、現在の時間枠でバーが閉じるまでの時間などのデータが表示されます。 チャート上に情報線を配置するには、いくつかのオプションがあります。 価格の右側 (価格の後ろにあります)。 コメントとして (グラフの左上隅に); 画面の選択した隅。 情報区切り記号を選択することもできます。 | / \ # このインジケーターは使いやすく、非常に有益です。設定で不要な情報項目を無効にすることも可能です。 設定 外観の種類     - 情報行の表示タイプ。次の 3 つのオプションがあります。 価格に従ってください     - 価格に従う。 コメントとして     - コメントとして; 画面の選択した隅に     - 画面の選択した隅にあります。 添付用グラフコーナー     - 表示タイプを選択した場合 画面の選択されたコーナーでは、この項目を使用して
FREE
Risk Calculator EA – Utility for Precise Trade Sizing If you find this tool useful consider to  Buy me a coffee!   The Ultimate Risk Calculator is a lightweight in-chart Expert Advisor (EA) designed to help you easily and quickly calculate position size and set stop-loss / take-profit levels with full control over risk management directly on the chart. What it does? It turns manual risk decisions into fast, visual, and accurate calculations. You draw or adjust the Entry, Stop-Loss and Take-P
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
DF Fib Trader Pro DF Fib Trader Proは、MetaTrader 5向けに設計された自動取引システムです。 フィボナッチベースの価格水準とトレンドおよびストラクチャー分析を組み合わせ、エントリーポイントとエグジットポイントを決定します。このEAはロングポジションとショートポジションの両方をサポートし、リスク管理パラメータも組み込まれています。 主な機能: • フィボナッチ・リトレースメントとエクステンション・ロジックを用いて、エントリーポイント、SLポイント、TPポイントをプロットします。 • ロットサイズと損切り/利益確定レベルを設定可能 • エントリーポイントは1つまたは2つから選択可能 • 市場状況に応じて、固定または動的な損切り/利益確定をサポート • 複数の時間枠と通貨ペアに対応 • 最大スプレッド、スリッページ、取引頻度の制御オプションを搭載 • 自動取引管理:損益分岐点、トレーリングストップ、部分決済オプション • 希望に応じて成行注文もサポート入力項目の概要: • リスク管理:ロットサイズ、取引ごとのリスク、最大取引回数 • エントリー
FREE
MACD Enhanced
Nikita Berdnikov
5 (3)
Introducing the MACD  Enhanced – an advanced MACD (Moving Average Convergence Divergence) indicator that provides traders with extended capabilities for trend and momentum analysis in financial markets. The indicator uses the difference between the fast and slow exponential moving averages to determine momentum, direction, and strength of the trend, creating clear visual signals for potential entry and exit points. Attention! To achieve the best results, it is recommended to adapt the indicator
FREE
Girassol Sunflower MT5 Indicator
Saullo De Oliveira Pacheco
3.86 (7)
This is the famous Sunflower indicator for Metatrader5. This indicator marks possible tops and bottoms on price charts. The indicator identifies tops and bottoms in the asset's price history, keep in mind that the current sunflower of the last candle repaints, as it is not possible to identify a top until the market reverses and it is also not possible to identify a bottom without the market stop falling and start rising. If you are looking for a professional programmer for Metatrader5, please
FREE
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
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
Statistical Arbitrage Spread Generator for Cointegration [MT5] What is Pair Trading? Pair trading is a market-neutral strategy that looks to exploit the relative price movement between two correlated assets — instead of betting on the direction of the market. The idea? When two assets that usually move together diverge beyond a statistically significant threshold, one is likely mispriced. You sell the expensive one, buy the cheap one , and profit when they converge again. It’s a statistica
FREE
Trading Performance Analyzer is a MetaTrader 5 utility designed to help traders review trading activity and manage positions from a single interface. The tool combines performance statistics, trade history visualization and position management features inside a customizable on-chart panel. It can be used for monitoring trading results, analyzing behavior patterns and executing trades with predefined risk parameters. Features Performance Analytics The dashboard provides a set of metrics that hel
FREE
Indicator and Expert Adviser  EA Available in the comments section of this product. Download with Indicator must have indicator installed for EA to work. Mt5 indicator alerts for bollinger band and envelope extremes occurring at the same time. Buy signal alerts occur when A bullish candle has formed below both the lower bollinger band and the lower envelope  Bar must open and close below both these indicators. Sell signal occur when A bear bar is formed above the upper bollinger band and upper
FREE
VM Auto SLTP Basic - Intelligent Trade Management for Scalpers Enhance your scalping strategy to a higher level. VM Auto SLTP Basic automatically manages Stop Loss and Take Profit for orders that are opened manually or by other Expert Advisors. This tool does not open trades on its own, allowing you to maintain full control while enjoying precise risk management. Key Features: SL/TP based on ATR or fixed price Automatic SL move to Breakeven Risk management as a percentage of account balance Supp
FREE
STAMINA HUD – Advanced Market & Trend Dashboard (MT5) STAMINA HUD   is a professional   market information panel   designed for traders who want   clarity, speed, and control   directly on the chart. It provides a   clean heads-up display (HUD)   with essential market data and   multi-timeframe trend direction , without cluttering the chart or generating trading signals. What STAMINA HUD Shows   Current Price   Spread (in real pips)   Today High–Low range (pips)   Average D
FREE
Candle Countdown — MT5用 正確なローソク足カウントダウン Candle Countdown は、 現在のローソク足が閉じるまでの残り時間 をチャート上に表示するシンプルで正確なツールです。 エントリーがローソク足のクローズに依存する場合、数秒の違いが重要になります。 このインジケーターは正確な時間を表示し、焦らずに判断できるようサポートします。 ローソク足のクローズ時間を正確に把握するためのインジケーターです。 表示内容: ローソク足が閉じるまでの残り時間 サーバー現在時刻 スプレッド ストップレベル(Stop Level) タイマーはティックに依存せず、プラットフォームの内部タイマーによって更新されるため、市場の動きが少ない場合でも安定した表示を維持します。 これにより、低ボラティリティの環境でも滑らかで安定したカウントダウンを実現します。 情報は背景付きのブロック内に表示されるため、どのチャートカラーでも見やすく、分析の妨げになりません。 ローソク足のクローズが近づくと、タイマーの色が変化し、視覚的に状況を把握しやすくなります。 MT4版はこちら: Cand
FREE
High Low Open Close
Alexandre Borela
4.98 (44)
このプロジェクトが好きなら、5つ星レビューを残してください。 このインジケータは、指定されたためのオープン、ハイ、ロー、クローズ価格を描画します 特定のタイムゾーンの期間と調整が可能です。 これらは、多くの機関や専門家によって見られた重要なレベルです トレーダーは、彼らがより多くのかもしれない場所を知るために有用であり、 アクティブ。 利用可能な期間は次のとおりです。 前の日。 前週。 前の月。 前の四半期。 前年。 または: 現在の日。 現在の週。 現在の月。 現在の四半期。 現年。
FREE
Account Monitor Pro — Your Ultimate Trade Statistics Hub Account Monitor Pro is a professional information dashboard designed for traders who combine Expert Advisors (EAs) and manual trading. The indicator separates statistics in real-time based on your Magic Number, allowing you to clearly see who is driving the profit: the algorithm or yourself. Key Features: Split Monitoring: Instant separation of "Robot" positions (by Magic Number) and "Manual" trades. Multi-language Support: 11 languages in
FREE
BlueBoat – Prime Cycle is a technical indicator for MetaTrader 5 that visualizes market cycles based on the Fimathe cycle model (Marcelo Ferreira) . It identifies and displays historic and live cycle structures such as CA, C1, C2, C3, etc., helping traders understand the rhythm and timing of price movement across multiple sessions. This tool is ideal for manual analysis or as a supporting signal in discretionary strategies. Key Features Historical Cycle Analysis – Backtest and visualize as many
This Tradepanel is an Utility for Traders Who want ot use Basic MoneyManagement for Calculation of Lotsize  I have created the basic edition only to give an Overview with Limited Functionality Full Features are available with  Auto TradePanel  Pro. (This is Only Because it can not be Tested in Strategy Tester ).  Complete Description is available at  "Auto TradePanel Pro".  in This Version Basic Functionality ( Calculation of Lotsize ) open /close Positions is working in the same way as in Pro
FREE
Price Magnet — Price Density and Attraction Levels Indicator Price Magnet is a professional analytical tool designed to identify key support and resistance levels based on statistical Price Density. The indicator analyzes a specified historical period and detects price levels where the market spent the most time. These zones act as “magnets,” attracting price action or forming a structural base for potential reversals. Unlike traditional Volume Profile tools, Price Magnet focuses on price-time d
Description : Rainbow MT5 is a technical indicator based on Moving Average with period 34 and very easy to use. When price crosses above MA and MA changes color to green, then this is a signal to buy. When price crosses below MA and MA changes color to red, then this is a signal to sell. The Expert advisor ( Rainbow EA MT5 ) based on Rainbow MT5 indicator is now available here . MT4 version is available here .
FREE
Donchian Channel DC is the indicator of Donchian Channels, that plots maximum and minimum values of a specific period, besides mean value line. It´s possible to configure simple period for analysis and the indicator will plot all three values. You can trade with this indicator as trend or reversal, according to each strategy. Do not let to test others indicators as soon as others expert advisors.
Important Lines
Terence Gronowski
4.88 (24)
This indicator displays Pivot-Lines, preday high and low, preday close and the minimum and maximum of the previous hour. You just have to put this single indicator to the chart to have all these important lines, no need to setup many single indicators. Why certain lines are important Preday high and low : These are watched by traders who trade in a daily chart. Very often, if price climbs over or falls under a preday low/high there is an acceleration in buying/selling. It is a breakout out of a
FREE
This indicator is a zero-lag indicator and displays  strength of trend change . True Trend  Oscillator Pro works best in combination with True Trend Moving Average Pro that displays exact trend as is. Oscillator value is exact price change in given direction of the trend. True Trend Moving Average Pro: https://www.mql5.com/en/market/product/103586 If you set PERIOD input parameter to 1 this indicator becomes a sharpshooter for binary options. Developers can use True Trend Oscillator in Exper
FREE
One Click Trading – Auto TP SL Developer TraderLinkz Version 1.00 Category Utility What it does Adds missing TP and SL to your manual trades and pending orders Sets them once per ticket Lets you move TP and SL afterward Works on hedging and netting accounts Scans on every tick and reacts on trade events Why you want it You place faster entries You get consistent risk and exit targets You reduce fat finger errors You keep full manual control Quick start Attach the EA to any chart Keep TP and SL e
FREE
Position Selective Close MT5
Francisco Manuel Vicente Berardo
The Position Selective Close is a multi-symbol multi-timeframe script used to close simultaneously various positions.  General Description   The Position Selective Close   possesses   three operation modes (Intersection,   Union   and All) that control the way   as   four position features (symbol, magic number,   type   and profit) are used. The modes, available through the Selection Mode input parameter, relate to the features, available through the “Select by Feature” and “Feature” input pa
FREE
このプロダクトを購入した人は以下も購入しています
Trade Assistant MT5
Evgeniy Kravchenko
4.42 (207)
取引 ごとのリスクの 計算、新規注文 の 簡単 な 設置、部分的 な 決済機能 を 持 つ 注文管理、 7 種類 のトレーリングストップなど 、便利 な 機能 を 備 えています 。 追加の資料と説明書 インストール手順   -   アプリケーションの手順   -   デモアカウント用アプリケーションの試用版 ライン機能 チャート上にオープニングライン、ストップロス、テイクプロフィットを表示します。この機能により、新規注文を簡単に設定することができ、注文を出す前にその特徴を確認することができます。   リスク計算 リスク計算機能は、設定されたリスクとストップロス注文のサイズを考慮して、新規注文のボリュームを計算します。ストップロスの大きさを自由に設定できると同時に、設定したリスクを守ることができます。 Lot calc ボタン - リスク 計算 を 有効 / 無効 にします 。 Risk フィールドでは 、必要 なリスクの 値 を 0 から 100 までのパーセンテージまたは 預金通貨 で 設定 します 。 設定」 タブで 、 リスク 計算 の 種類 を 選択 します :「 $ 通
Trade Manager EAへようこそ。これは、取引をより直感的、正確、そして効率的にするために設計された究極の リスク管理ツール です。これは単なるオーダー実行ツールではなく、包括的な取引計画、ポジション管理、リスク管理のためのソリューションです。初心者から上級者、迅速な実行を必要とするスキャルパーまで、Trade Manager EAはあらゆるニーズに対応し、為替、指数、商品、暗号通貨などさまざまな市場で柔軟に対応します。 Trade Manager EAを使用すると、複雑な計算が過去のものになります。市場を分析し、エントリーポイント、ストップロス、テイクプロフィットのレベルをチャート上のラインでマークし、リスクを設定するだけで、Trade Managerが最適なポジションサイズを即座に計算し、SLとTPをピップ、ポイント、口座通貨でリアルタイムに表示します。すべての取引が簡単かつ効果的に管理されます。 主な機能: ポジションサイズ計算機 :定義されたリスクに基づいて取引サイズを瞬時に決定します。 簡単な取引計画 :エントリー、ストップロス、テイクプロフィットを設定するためのド
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 Contact me via private message to receive the User Manual and Setup Video. * Thai Lauguage Support Available Farmed Hedge Yield Farming - Professional Pair Trading Dashboard (Manual - Hybrid - Semi/Automated EA) VERSION 3 - WILD HARVEST UPDATE Trading A
Footprint Chart Pro — Professional OrderFlow EA for MetaTrader 5 Version 6.34 | Professional tool for real traders | Institutional-Grade Visualization DEMO USERS - PLEASE SELECT EVERY TICK / REAL TICK WHEN TESTING AND YOU HAVE DOWNLOADED HISTORICAL DATA. IF YOU SEE A WAITING SCREEN AND IT IS NOT DOWNLOADING, IT MEANS YOU HAVE LOW HISTORICAL DATA. TRY 1 MIN AND 5 MIN FIRST ON 1 DAY DATA. ONE DAY DATA SHOULD BE THE NEWEST AND MOST CURRENT DATE. PLEASE WAIT UNTIL THE MARKET HAS ROLLED OVER PERIOD.
Copy Cat More Trade Copier MT5 (コピーキャット MT5) は、今日の取引課題に対応して設計されたローカルトレードコピーシステムと完全なリスク管理・実行フレームワークです。プロップファームのチャレンジから個人ポートフォリオ管理まで、堅牢な実行、資本保護、柔軟な設定、高度な取引処理の組み合わせで、あらゆる状況に適応します。 コピーシステムはマスター(送信側)とスレーブ(受信側)の両方のモードで動作し、成行注文と指値注文、取引修正、部分決済、両建て決済操作のリアルタイム同期を行います。デモ口座とライブ口座、取引ログインまたは投資家ログインの両方に対応し、EA、ターミナル、またはVPSが再起動してもパーシスタント取引メモリシステムを通じて復旧を保証します。複数のマスターとスレーブをユニークIDで同時に管理でき、ブローカー間の違いはプレフィックス/サフィックス調整またはカスタムシンボルマッピングを通じて自動的に処理されます。 マニュアル/設定  | Copy Cat More MT4 | チャンネル  特別機能: 設定が簡単 — わずか30秒で完了(ビデオをご覧
Trade Manager は、リスクを自動的に計算しながら、取引を迅速に開始および終了するのに役立ちます。 過剰取引、復讐取引、感情的な取引を防止する機能が含まれています。 取引は自動的に管理され、アカウントのパフォーマンス指標はグラフで視覚化できます。 これらの機能により、このパネルはすべてのマニュアル トレーダーにとって理想的なものとなり、MetaTrader 5 プラットフォームの強化に役立ちます。多言語サポート。 MT4バージョン  |  ユーザーガイド + デモ Trade Manager はストラテジー テスターでは機能しません。 デモについてはユーザーガイドをご覧ください。 危機管理 % または $ に基づくリスクの自動調整 固定ロットサイズを使用するか、ボリュームとピップに基づいた自動ロットサイズ計算を使用するオプション RR、Pips、または価格を使用した損益分岐点ストップロス設定トレーリングストップロス設定 目標に達したときにすべての取引を自動的に終了するための 1 日あたりの最大損失 (%)。 過度のドローダウンからアカウントを保護し、オーバートレードを防ぎます
AntiOverfit PRO:バックテストの不都合な真実 そのEAを買う前に、少し立ち止まってください。 年利250%をうたうシステムを見つけたところです。バックテストは完璧に見えます。販売者の価格は399ドル、あるいは1,999ドルかもしれません。表面上は、すべてが理にかなって見えます。 しかし問題があります。そのバックテストは、あなたが思っていることを証明してはいません。 過去データだけでは、ほとんど何も証明できません。確認できるのは、そのロジックが ある1つの 特定の市場シーケンスで機能したということだけです。価格が別の経路をたどった瞬間に、ロボットは崩れ始めます。 そして高額なEAの多くは、まさにそこで失敗します。 AntiOverfit PROがすること AntiOverfit PROは、システムを売る前にほとんど誰も見せないものを提供します。お金を使う 前に 、その堅牢性を確認する方法です。 数学者である必要はありませんし、難しく考える必要もありません。流れはとてもシンプルです。 MT5のチャートにAntiOverfitを配置します。 AntiOverfitが現実的な
Ultimate Extractor - Professional Trading Analytics for MT5 *****this is the local HTML version of Ultimate Extractor. For the online version please reach out to me directly****** Ultimate Extractor transforms your MetaTrader 5 trading history into actionable insights with comprehensive analytics, interactive charts, and real-time performance tracking. What It Does Automatically analyzes your MT5 trading history across all Expert Advisors and generates detailed HTML reports with interactive vi
The core idea: using the user interface, you configure the parameters the chart must meet before entering a position (or positions), choose which entry models to use, and set the rules for when trading and planning should end. Lazy Trader  handles the rest: it  takes over all the routine chart watching and execution! full description  :: 3 key videos [1] ->  [2]   ->  [3] What can it do? - Understands Larry Williams market structure - Understands swing market structure by Michael Huddleston
Crystal Trade Manager – Advanced MT5 Risk and Trade Control Utility Overview Crystal Trade Manager (CTM) is a professional MetaTrader 5 utility designed for risk management, trade automation, and instant execution control. It provides traders with an integrated system for protecting equity, managing daily drawdowns, controlling lot sizes, and applying automation features such as automatic SL/TP, break-even, and trailing stop. The tool is suitable for manual traders, prop-firm challenge particip
あなたがメンバーである任意のチャネルから(プライベートおよび制限されたものを含む)シグナルを直接あなたのMT5にコピーします。  このツールは、トレードを管理し監視するために必要な多くの機能を提供しながら、ユーザーを考慮して設計されています。 この製品は使いやすく、視覚的に魅力的なグラフィカルインターフェースで提供されています。設定をカスタマイズして、数分で製品を使用を開始できます! ユーザーガイド + デモ  | MT4版 | Discord版 デモを試してみたい場合は、ユーザーガイドにアクセスしてください。 Telegram To MT5 受信機は、ストラテジーテスターで動作しません! Telegram To MT5の特徴 複数のチャネルから一度にシグナルをコピー プライベートおよび制限されたチャネルからシグナルをコピー BotトークンまたはChat IDは必要ありません   (必要に応じて使用することができます) リスク%または固定ロットを使用して取引 特定のシンボルを除外 すべてのシグナルをコピーするか、コピーするシグナルをカスタマイズするかを選択 すべてのシグナルを認
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
EA AUDITOR - VERIFY EA'S BEFORE YOU BUY The Only Independent EA & Signal Verification Tool for MetaTrader 5 MAKE SMARTER EA PURCHASES. EVERY TIME. The MQL5 market is home to some genuinely outstanding Expert Advisors built by talented developers — strategies that can transform your trading. But it can also include EAs with history readers coded in to produce fake backtest results, curve-fitted strategies, manipulated signals, and EAs falsely marketed as "AI-powered" or "machine learning" when th
Local Trade Copier EA は、MAMまたはPAMMアカウントを必要とせずに、外部ソースからのトレードシグナルを実行する必要がある、または同時に複数のアカウントを管理する必要がある個々のトレーダーまたはアカウントマネージャー向けのソリューションです。最大8つのマスターアカウントから無制限のスレーブアカウントにコピーします [ インストールガイド | アップデートガイド | トラブルシューティング | FAQ | すべての製品 ] 100%セルフホスト インストールと使用が簡単 インストーラー、構成ファイル、サーバー、メモリパイプ、DLLは使用されていません EAを永久に使用するための1000回のアクティベーション ローカル実行、ネットワーク遅延なし それはあなたがこれまでに必要とするすべての機能を実装します: 最大8つのマスターアカウントと無制限のスレーブアカウント すべてのブローカーおよびDD / NDD / ECN / STP実行で動作します 異なる口座通貨の口座で動作します ライブアカウントとデモアカウントの間で区別なく機能します マスターアカウントとスレーブア
YuClusters
Yury Kulikov
4.93 (43)
Attention: You can view the program operation in the free version  YuClusters DEMO .  YuClusters is a professional market analysis system. The trader has unique opportunities to analyze the flow of orders, trade volumes, price movements using various charts, profiles, indicators, and graphical objects. YuClusters operates on data based on Time&Sales or ticks information, depending on what is available in the quotes of a financial instrument. YuClusters allows you to build graphs by combining da
EmoGuardian
Samuel Bandi Roccatello
5 (6)
EmoGuardianを使用して取引口座に高度なリスク制限を課すことで、過剰取引、FOMO、強迫的な行動を回避します。 ポジションにストップロス を自動的に追加 し、 EA の損失を管理し 、 EA を自動的にロード / アンロードします。   ポジションごと、取引ごと、時間範囲ごと、日ごとに リスクを制限します。 リスク管理オプションは、トレーダーが口座を吹き飛ばすような強迫的な行動に特化して開発されました。 注意 : これはユーティリティであるため、ストラテジーテスターでは動作しません。EmoGuardianはネッティング口座では機能しません (ほとんどの取引口座はヘッジ口座です) 完全マニュアル+デモ版 ユニークな機能: 口座残高のパーセンテージまたはピップでポジションにストップロスを自動的に追加します リスク限度に達したらEAを強制終了し、翌日自動的にリロードします   VPSサーバー上で動作する EAを管理する ための緊急信号を作成する 日次制限 口座通貨で最小/最大エクイティレベルを設定します 1日あたりの最大損失/最大利益を通貨価値またはパーセンテージで設定します 一日の
Custom Alerts:複数市場を監視し、重要なチャンスを見逃さない 概要 Custom Alerts は、複数の銘柄にまたがるトレードチャンスを一元的に監視したいトレーダーのためのダイナミックなソリューションです。FX Power、FX Volume、FX Dynamic、FX Levels、IX Power などの主要ツールと連携し、複数のチャートを切り替える手間なく、重要な市場変動を自動で通知します。ブローカーが提供するすべての資産クラスに対応しており、シンボルを入力する必要はありません。設定で資産クラスを選択するだけで、すぐにアラートを構成できます。 1. Custom Alerts がトレーダーにとって非常に有益な理由 オールインワンの市場監視 • Custom Alerts は、為替、金属、暗号資産、指数、株式(ブローカーが対応している場合)からのシグナルを収集・統合します。 • 複数のチャートを切り替える必要がなくなり、明確で一元化された通知が得られます。 戦略に合わせたアラート構成 • ボリューム急増、通貨強弱の閾値、極端な価格変動など、目的に応じたアラート
ManHedger MT5
Peter Mueller
4.83 (6)
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. The price of the ManHedger will increase to 250$ after 20 copies sold. Contact me for user support or bug reports or if you want the MT4 version! MT4 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 s
EASY Insight AIO – スマートで手間いらずな取引のオールインワンソリューション 概要 数秒で市場全体——FX、ゴールド、暗号資産、指数、さらには株式まで——を、手作業のチャート確認や複雑なセットアップ・インジケーター導入なしにスキャンできたらどうでしょうか? EASY Insight AIO はAIトレードのための究極のプラグ&プレイ型エクスポートツールです。市場全体のスナップショットを、クリーンなCSVファイルで一括出力。ChatGPT、Claude、Gemini、Perplexityなど、さまざまなAIプラットフォームで即座に解析できます。 ウィンドウの切り替えやグラフのごちゃごちゃしたオーバーレイはもう不要。自動エクスポートされる純粋で構造化されたインサイトだけで、無駄なチャート監視に悩まされず、スマートなデータ主導の判断に集中できます。 なぜEASY Insight AIOなのか? 本当のオールインワン • セットアップ不要、インジケーターのインストール不要、チャートへのオーバーレイ不要。インストールして起動し、エクスポートするだけです。 マルチアセット対
Trader Evolution
Siarhei Vashchylka
5 (7)
" Trader Evolution " - A utility designed for traders who use wave and technical analysis in their work. One tab of the utility is capable of money management and opening orders, and the other can help in making Elliott wave and technical analysis. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Trading in a few clicks. Immediate and pending orders are available in the panel 2. Money management. The program automatically selects the appropriate lot size 3. Simplifies
MT5-StreamDeck offers the possibility to use a certain number of pre-programmed Hot-keys with a clearly defined role. So by the push of a button you can open a trade with a pre-defined lot size, stoploss and take profit. Close all your trades, close the ones in profit, or in loss, set Break-even or set a trailing stop. All this with a Hot key button. See the feature list for all the actions that can take place at the push of a button. Ideal for Quick Scalping or day trading with set risk managem
Trend Cue is a basket-management utility for MetaTrader 5 hedging accounts. You open the first trade. You choose the direction, the timing, and the lot size. Trend Cue then manages the basket that forms around that decision — setting take-profit levels based on real market volatility, optionally building a grid of additional entries, tracking your average price, and protecting your account with drawdown limits that act on the entire basket rather than on individual positions. It works on any ins
Copy trades locally between MetaTrader terminals with a simple interface and professional risk controls. Use it to mirror trades across accounts, brokers, and platforms in any MT4/MT5 combination. Designed for reliability : supports trade updates such as breakeven, trailing stop, partial closes, and more. User Guide + Demo | MT4 Version Important notes Local Trade Copier MT5 does not work in the Strategy Tester. For a demo, please use the User Guide + Demo link above. To copy to MT4, you will n
Crypto Charting for MT5 – MetaTrader 5 向け暗号資産チャートツール 概要 Crypto Charting for MT5 は、WebSocket を介して暗号資産の OHLC チャートデータをリアルタイムで提供します。複数の取引所に対応し、MT5 上で履歴データの自動更新が可能です。 機能 WebSocket によるリアルタイムデータ 自動履歴データ更新 接続障害時のスケジュール更新 全ての MT5 時間足に対応 OHLCV データ構成 ストラテジーテスターに対応 自動再接続機能付き 対応取引所 Binance、Bybit、OKX、KuCoin、MEXC、Gate.io、Bitget、XT.com 補足情報 ティックデータおよび板情報には、別製品の Crypto Ticks をご覧ください。 注意事項 DLL を使用していません。VPS に適しています。 Strategy Tester では WebRequest 機能は動作しません。 デモをご希望の場合は、MQL5 のプライベートメッセージでご連絡ください。 Full Documentati
Trade Manager DashPlus
Henry Lyubomir Wallace
5 (13)
DashPlus は、MetaTrader 5プラットフォーム上での取引効率と効果を向上させるために設計された高度なトレード管理ツールです。リスク計算、注文管理、高度なグリッドシステム、チャートベースのツール、パフォーマンス分析など、包括的な機能を提供します。 主な機能 1. リカバリーグリッド 逆境の市場環境下で取引を管理するための平均化および柔軟なグリッドシステムを実装します。 取引回復のための戦略的なエントリーおよびエグジットポイントを可能にします。 2. スタックグリッド 強い市場の動きの中でポジションを追加することで、有利な取引での潜在的なリターンを最大化するように設計されています。 トレンド市場で利益を得られるよう、勝ち取引を拡大します。 3. 損益(P&L)ライン チャート上に直接、潜在的な利益と損失のシナリオを視覚的に表示します。 設定を調整し、P&Lラインをドラッグして、実行前にさまざまな取引結果を評価します。 4. バスケットモード 同じシンボルでの複数ポジションの管理を簡素化し、それらを単一の集約ポジションにまとめます。 平均価格に基づいて、ストップロスやテイクプ
Comprehensive on chart trade panel with the unique ability to be controllable from mobile as well. Plus has a library of downloadable configuration, e.g. exit rules, extra panel buttons, pending order setup and more. Please see our product video. Works with all symbols not just currency pairs. Features On chart panel plus controllable from free app for Windows, iPhone and Android Built-in script engine with library of downloadable configuration, e.g. add 'Close All Trades in Profit' button, exit
Pulsar Terminal は、 Astralys LLC の商標である Pulsar Technologies の製品です。 Pulsar TerminalはMetaTrader 5用のユーティリティアドオンです。 Expert Advisor を介してMetaTrader 5アカウントに接続される コンパニオンアプリケーション 内の実行ツールと組み合わされた ビジュアルインターフェース です。標準的なMT5パネルよりも高度なビジュアルインターフェースとワークフローを提供し、ツールの機能を最大化するためにコンパニオンアプリケーションを使用しています。Pulsar Terminalはスタンドアロンアプリケーションではなく、動作にはMetaTrader 5が必要です。EAはPulsar Terminalコンパニオンアプリケーションと localhost経由のみ で通信します。コンパニオンアプリケーションのインストーラーは、インストールガイド(MQL5ブログ記事)を通じて購入者に提供されます。 インターフェースでは注文の実行、リスク管理、取引統計の閲覧、そしてMetaTrader
The product will copy all  Discord  signal   to MT5   ( 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 MT5. 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
AlgoRadar
Stephen J Martret
5 (3)
ALGORADAR - REAL-TIME TRADE ANALYTICS The Most Powerful On-Chart Performance Analyzer for MetaTrader 5 ONE CHART. EVERY EA. EVERY ACCOUNT. MT4 & MT5 COMBINED. The ONLY analyzer that displays all your EAs across multiple accounts, brokers, and VPS -- including both MT4 AND MT5 -- on a single live MT5 chart. Your complete trading empire, visible at a glance.
Prop Guardian Risk Manager MT5 – Daily and Overall Drawdown Protection for Prop Firm Traders Prop Guardian Risk Manager is a professional risk-control utility for MetaTrader 5, created for traders who operate under prop firm rules. It does not open trades and does not implement any trading strategy. Instead, it runs in the background, monitors your account risk and can automatically block trading or close exposure when your own limits are reached. Use it as a safety layer on top of your manual t
作者のその他のプロダクト
Trading Reporter Dashboard MT5
Juergen Marcus Wolfgang Rosswinkel
Trading Reporter — Visual Performance Dashboard for MT5 A complete account performance dashboard rendered directly on your MT5 chart — no browser, no external tool, no subscription. Attach it once, resize it to fit your screen, and every key metric updates automatically on each new bar — configurable via InpRefreshBars. Free. No limitations. No trial period. Full source transparency.
FREE
Enhanced Telegram Position Tracker — Real-Time Trade Monitoring & Reporting for MT5 The most complete Telegram reporting solution for MetaTrader 5. Every trade, every update, every alert — delivered instantly to your Telegram channel, group, and forum topics. No missed closures, no duplicates, no spam.
Chart Order Trade Manager MT5
Juergen Marcus Wolfgang Rosswinkel
Enhanced Trade Manager Professional Order & Position Management Panel for MetaTrader 5 OVERVIEW Trade Manager is a professional order and position management panel for MetaTrader 5. It significantly simplifies manual order entry, automatically calculates lot size, Stop Loss and Take Profit based on the configured risk budget, and displays all relevant parameters clear
Telegram Trading Reporter MT5
Juergen Marcus Wolfgang Rosswinkel
Telegram Trading Reporter Automated Performance Reports & Chart Delivery for MetaTrader 5 OVERVIEW The Telegram Trading Reporter is a pure analysis and reporting Expert Advisor for MetaTrader 5. It does not open, close, or modify any positions. Instead, it analyzes your account's trading history, generates structured performance reports, and delivers them automatical
Position Closure Management MT5
Juergen Marcus Wolfgang Rosswinkel
NOHEDGE Automated Hedge Manager & Risk Controller for MetaTrader 5 OVERVIEW Running grid, martingale, or manual hedging strategies means you constantly carry open buy/sell pairs that need to be resolved at exactly the right moment — before the spread widens at rollover, before a news spike blows your account, or exactly at your daily profit target. Doing that manuall
フィルタ:
レビューなし
レビューに返信