• Visão global
  • Comentários
  • Discussão
  • O que há de novo

Easy mt4 to telegram

Jarfac Mt4ToTelegram

Introduction

Jarfac Mt4ToTelegram  is an MT4 system designed to facilitate real-time communication between the MetaTrader 4 platform and Telegram.  This script allows traders to receive customizable instant notifications based on different trade types, ensuring optimal responsiveness without having to constantly monitor the trading platform.

main Features

  • Real-time notifications  : Receive notifications directly on Telegram as soon as an action occurs on MT4.
  • Emoji support  : Notifications can include emoji for better viewing.
  • Configuration settings  : Customize your Telegram messages based on various trading actions (buy, sell, close in profit/loss, etc.).
  • HTML messages and links  : Embed links directly into your notifications.
  • Test button  : A button is provided to test the functionality of the script directly from MT4.
  • Automatic calculation of pips  : The script is able to calculate the difference in pips depending on the currency pair and the type of order.
  • Support for multiple currencies  : The script supports a wide variety of currencies and displays the corresponding flag for each pair.
  • Daily report message : It is possible to customize it and add trade details with {TRADES_DETAILS}, {TRADESD}{PROFITMONEYD},  {PROFIT%D} and manage the sending time.

Instructions d'installation

  1. Make sure you have a Telegram bot and know the token and chatId. 
  2. You must authorize WebRequest and add the URL  https://api.telegram.org  in "Tools" → "Options" → "Expert Consultant".
  3. Configure external parameters with your own values, such as your bot's token, chatId, custom messages, etc.
  4. Run the script and verify that you receive the notifications on Telegram.

Tutorial Creating a bot with BotFather:

Step 1: Start BotFather
  • Open the Telegram app.
  • Search "BotFather" in the Telegram search bar.
  • Click on the chat with BotFather to start it.
Step 2: Create a new bot
  • In the BotFather chat, type or click /newbot .
  • BotFather will ask you to name your bot.  Enter the desired name.
  • Next, you will be asked to create a username for the bot.  It must end with "_bot" (for example, "mychatbot_bot").
Step 3: Collect your TOKEN
  • Once you have created the bot, BotFather will provide you with a TOKEN.  Keep it secret and don't share it!  You will need it to interact with the Telegram API.

2. Find the ChatId

To get the ChatId, follow these steps:

Step 1: Start your bot
  • In Telegram, search for your bot's username (eg "@mychatbot_bot") and start a conversation with it by clicking "Start".
Step 2: Use Telegram API
  • Open your web browser.
  • Type  https://api.telegram.org/bot  [YOUR_TOKEN]/getUpdates replacing [YOUR_TOKEN] with the TOKEN that BotFather gave you.
  • You will see a JSON return of the messages your bot received.  Locate an entry that looks like "chat":{"id":123456789,"first_name":"YourName",... .
  • The numeric ID (for example, 123456789 ) is your ChatId.

Note  : If you don't see your ChatId immediately, try sending a few messages to your bot via Telegram and then refreshing the API page.

And There you go !  You have now created a bot with BotFather and obtained the ChatId to communicate with your bot.


Manual

  1. Once the script is installed and configured, notifications will automatically be sent to Telegram based on trading actions.
  2. Use the test button to verify that everything is working properly.

FormatMessage User Guide

The formatMessage function allows customizing messages sent to Telegram based on transaction details.  Each message can contain variables that will be replaced with real values ​​at runtime.

Possible variables to use in your message:

  1. {SYMBOL}  : The currency pair traded (eg: EUR/USD) accompanied by their respective flags (eg: 🇪🇺🇺🇸).
  2. {TICKET}  : The transaction ticket number.
  3. {TIMEFRAME}  : The time period of the transaction (for example: M5, H1).
  4. {BUYSELL}  : The type of transaction (for example: BUY, SELL).
  5. {ORDERLOTS}  : The number of lots traded.
  6. {OPENPRICE}  : The open price of the trade.
  7. {TAKEPROFIT}  : The price from which the profit will be made.
  8. {PROFIT%}  : Percentage of profit made in relation to the total account balance.
  9. {PROFITPIPS}  : Profit or loss in pips.
  10. {PROFITMONEY}  : Profit or loss in monetary terms (for example: $50).
  11. {STOPLOSS}  : The price from which the loss will be realized.
  12. {CLOSINGPRICE}  : The closing price of the transaction.
  13. {ORDERCOMMENT}  : Comments or remarks associated with the transaction.
  14. {TRADES_DETAILS}  : Specific details of the transaction or trades made.
  15. {TRADESD} : Number of trades for the day.
  16. {PROFITMONEYD} : Total profits in $ for the day.
  17. {PROFIT%D} : Total profit in % for the day.
  18. {MONTH}  : The current month.
  19. {LINK1}  ,  {LINK2}  ,  {LINK3}  : Customizable links to direct the user to external resources.
  20. {BR}  : To create a new line in the message.
  21. {B}  and  {/B}  : To put the text between these tags in bold.
  22. {U}  and  {/U}  : To underline the text between these tags.
  23. {I}  and  {/I}  : To put the text between these tags in italics.

Example of use :

Suppose you want to create a message with the following format:

{U+1F916} {B}TRADE CLOSED{/B} {U+1F916}{BR}---------------{BR}{U+1F44D}{BuySell}:{Symbol}{BR}{U+2705}Prix CLOSE:{ClosingPrice}{BR}{U+1F3C6}{ProfitPips},{ProfitMoney},{Profit%}{U+1F60D}{BR}---------------

At runtime, if a new trade for  GBPJPY  was closed at a closing price of  185.174  , the resulting message would be:


🤖   TRADE CLOSED  🤖 
---------------
👍 SELL:GBPJPY.4x
 Prix CLOSE:185.174
🏆 0.58 pips,14.37 $,0.29% 😍
---------------

Explanation of Emojis substitutions:

  • {U+1F600} will be replaced by 😀 (Grinning Face).
  • {U+1F602} will be replaced by 😂 (Face with Tears of Joy).
  • {U+1F604} will be replaced by 😄 (Grinning Face with Smiling Eyes).
  • {U+1F606} will be replaced by 😆 (Grinning Squinting Face).
  • {U+1F609} will be replaced by 😉 (Winking Face).
  • {U+1F60E} will be replaced by 😎 (Smiling Face with Sunglasses).
  • {U+1F60D} will be replaced by 😍 (Smiling Face with Heart-Eyes).
  • {U+1F618} will be replaced by 😘 (Face Blowing a Kiss).
  • {U+1F61C} will be replaced by 😜 (Winking Face with Tongue).
  • {U+1F622} will be replaced by 😢 (Crying Face).
  • {U+1F44D} will be replaced by 👍 (Thumbs Up).
  • {U+1F44E} will be replaced by 👎 (Thumbs Down).
  • {U+274C} will be replaced by ❌ (Cross Mark).
  • {U+2705} will be replaced by ✅ (Check Mark Button).
  • {U+1F3C6} will be replaced by 🏆 (Trophy).
  • {U+1F947} will be replaced by 🥇 (1st Place Medal).
  • {U+1F948} will be replaced by 🥈 (2nd Place Medal).
  • {U+1F949} will be replaced by 🥉 (3rd Place Medal).
  • {U+1F916} will be replaced by 🤖 (Robot).
  • {U+1F535} will be replaced by 🔵 (Blue Circle).
  • {U+1F534} will be replaced by 🔴 (Red Circle).
  • {U+2734} will be replaced by ✴️ (Eight-Pointed Star).
  • {U+2747} will be replaced by ❇️ (Sparkle).
  • {U+1F4C8} will be replaced by 📈 (Chart Increasing).

Note  : Always be sure to test your custom messages to ensure they are formatted correctly before using them live.


FAQ

  • Can I personalize the messages sent?
    Yes, you can define your own messages for each type of transaction in the script's external parameters.

  • Does the script support emojis?
    Yes, you can add emojis in your messages using the "{U+Code}" format.  For example, "{U+1F600}" will be replaced by the emoji 😀.

Feedback et support

If you have any suggestions, comments, or encounter any issues with the script, please don't hesitate to contact us.

Disclaimer / Disclaimer

Trading involves risk.  Although this script aims to improve your trading experience, it is essential to use it wisely and fully understand the implications of each trading action.  We are not responsible for any loss or damage that may arise from the use of this script.

Good luck with  Jarfac Mt4ToTelegram  and your trading on MT4!


Produtos recomendados
Trade Dashboard MT4
Fatemeh Ameri
5 (21)
Tired of complex order placement and manual calculations? Trade Dashboard is your solution. With its user-friendly interface, placing orders becomes effortless, by a single click, you can open trades, set stop loss and take profit levels, manage trade lot size, and calculate risk to reward ratios, allowing you to only focus on your strategy. Say goodbye to manual calculations and streamline your trading experience with Trade Dashboard. Download   demo version  right now. You can find details
Pending Orders Grid Complete System opens any combination of Buy Stop, Sell Stop, Buy Limit and Sell Limit pending orders and closes all existing pending orders. You will be able to Drag-and-Drop the Script on the chart and it will pick up the start price for the first position in the grid from the "Drop" point. Usually it should be in the area of Support/Resistance lines. Input Parameters Before placing all pending orders, the input window is opened allowing you to modify all input parameters
Drawdown Partial Closure
Jerome Thierry Francois Delobel
Drawdown Partial Closure Expert Advisor Description: The Drawdown Partial Closure Expert Advisor is a tool designed for MetaTrader 4 that assists traders in managing their positions during drawdown periods. It monitors the drawdown of the trading account in real-time and automatically closes a portion of losing positions when the drawdown exceeds a specified threshold. This helps traders to mitigate losses during adverse market conditions while allowing profitable positions to remain open. Featu
Auto risk manager Free is a utility for order management. Regardless of whether the orders are opened manually or by Expert Advisors, the utility removes pending orders (if needed) and disables the terminal (not letting the EAs open new trades) when a specified profit or loss percentage is reached. This demo versions allows you to understand the work of the full version of Auto risk manager . The demo works only with AUDNZD orders only. Profit_Percent and Loss_Percent may have either positive or
FREE
PRODUCT description: Market Data Logger   PRO  is a utility tool specially created for the sole purpose of logging your Broker's market data to a text file. With this tool, you will be able to record and export metrics from your MT4 Broker such as the "MT4 Market Watch Time", "Bid Price", "Ask Price", "High Price", "Low Price" and various measures of "Spread". This tool may be of interest to traders, data scientists wanting to capture and analyze market data, entrepreneurs, archival purpose
Trailing and SL TP
Konstantin Kulikov
5 (2)
The utility places trailing stop, breakeven, stop loss and take profit.‌ It is necessary to allow automated trading in the terminal settings. In testing mode, the utility opens Buy or Sell positions on the first ticks, which allows you to visually observe the given logic, changing the utility parameters. In real mode, the utility does not open positions. Parameters magic  - magic number. If less than 0, positions with any magic number are tracked. only_this_symbol  - only chart symbol. If  false
HotKeys MT4
Alexey Valeev
4 (2)
This utility provides the ability to use hot keys in manual trading instantly responding to the current market situation. You can assign hot keys to open/close positions by their type, close all positions on the current chart and remove all orders on the current chart. You can also assign hot keys for five predefined trade volumes and switch between them if necessary with no need to change the volume manually from time to time. It is also possible to set the auto calculation of a trade volume in
LMBF Executor
Graeme Dakers
5 (1)
**IMPORTANT** THIS TOOL REQUIRES YOU TO FIRST PURCHASE "Graphical Trade Planner" https://www.mql5.com/en/market/product/56702. Without it, this tool will do nothing of any use. -------------------------- Use "Graphical Trade Planner"  to plan your trades directly on your charts and get instant feedback on account risk, trade risk to reward and  required position size. Plus, purchase LMBF Executor separately to easily convert planned trades into orders and manage them from your charts. Features i
One Click Trader is a tool designed for MetaTrader 4 platform, which enables you to take your trading to the next level. It enables you to open, manage and close your trades in simple an efficient way by just one click of your mouse button. Up arrow minimizes the OCT panel Down arrow maximizes the OCT panel Right arrow displays the next panel with additional features Left arrow hides the panel with additional features Red SELL button enables you to open short market orders Red SELL STOP button e
The informer provides information on the current state of open market positions. The visual presentation consists of two parts.  The left side contains the latest transactions executed on the account. Transactions are sorted by time. The right part shows the current state of the aggregate positions of the instruments. Sorting of positions is carried out in descending order of the margin load on the account. Updating and recalculating the status of positions is performed automatically and/or by
One more Copier MT4
Oleksii Chepurnyi
5 (1)
Yet another signal copier. Nothing special. Demo version can be downloaded here . Key Features The utility copies trades between terminals: by market, pending orders (optional), as well as their stop loss and take profit levels (optional as well). You can copy from one Master account to several Slave accounts, as well as from several Master accounts to one Slave account. Volume calculation At the moment, there are two options for calculating the volume: The trade volume is taken 1 to 1 from
AW Metatrader to Telegram
AW Trading Software Limited
Um sistema automatizado para enviar notificações para que nenhum de seus assinantes perca seus eventos de negociação do seu terminal de negociação. Um utilitário que envia notificações ao mensageiro do Telegram sobre quaisquer operações de negociação em sua conta. Instruções passo a passo para conectar o utilitário a um canal no Telegram ->   AQUI   / MT5 ->   AQUI Vantagens: Fácil configuração e instruções detalhadas, Possibilidade de enviar screenshots ajustáveis, Texto de notificação persona
BuyLimit_SellLimit_Grid script opens BuyLimit and SellLimit pending orders. You just need to drop this script on the chart with a desired currency pair.  Before placing all pending orders, the input window is opened allowing you to modify all input parameters: LongPos - if TRUE, BuyLimit order is opened. ShortPos - if TRUE, SellLimit order is opened. InitLot - initial lot. LotCoeff - if 1, all pending orders will have the same lot size. InitStep - difference between two consecutive orders in poi
O ChartChanger é uma ótima ferramenta utilitária para reduzir o número de gráficos abertos em seu terminal. Há três seções: Símbolos, Prazos e Modelos. Você precisa apenas de um gráfico para ser aberto e ainda assim pode rolar até vários. Símbolos: Com o apertar de um botão você pode mudar de um símbolo para outro, e seus indicadores aplicados permanecerão no próximo gráfico. Para os símbolos existe um modo de detecção automática, ou você pode inserir manualmente os desejados. Você pode usar tod
Chart Button is a very useful indicator that allows you to navigate all charts with a simple click. This tool has been designed to work both vertically and horizontally. The particularity of this navigator is that you can change more charts simultaneously setting the input value. This tool will give you the ability to optimize your navigation and speed up all your analyzes. Input Values Direction (the direction of symbols buttons) Horizontal Vertical 32 SYMBOLS Forex_Suffix_Symbols (add Forex
The  Silver Volatility Trend Line for MT4 is an EA that helps you trade using the trendlines, drawn on your chart. It basically allows you to send and manage orders using trend lines. It automatically calculates the True Range of your asset to allow you to send orders well calibrated with the market volatility. Take Profit and Stop Loss are calculated in number of True Range. You can do that for two different orders at the same time , so that you can trade two different kind of risk / profit rat
Telegram Signal Sender
Biswarup Banerjee
5 (1)
Whether you're a seasoned forex trader or just starting, Telegram Signal Sender is a must-have tool for anyone looking to start their telegram channel as a forex signal provider. With its user-friendly interface and advanced features, you can easily set up your signals and watch as your followers start to grow. So, what are you waiting for?  Features:  Highly customizable panel for calculating stop loss and take profit values  User-friendly interface for easy setup of forex signals Ability to se
Risk Controller Expert Advisor, um programa que permite controlar o risco total de seus consultores de negociação em sua conta. Com este programa, você pode controlar o risco máximo que será permitido na conta de todos os conselheiros. Por exemplo, você define o risco de 30% do rebaixamento máximo, o que significa que se seus robôs de negociação de ações excederem o risco de 30%, o Controlador de Risco fechará todas as posições dos consultores e também poderá fechar todos os gráficos abertos, p
This QuickClose help you to close all orders having profit immediately with only ONE CLICK, its work is very fast. You can choose which symbol you want or close all symbols so it will helpful for you in your trading to manage trading faster. This EA can quick close all Buy and Sell Orders by a selected symbol or total. This SymbolButton is designed for closing orders. There is available Manual and Automatic closing functions. Automatic closing function will close the orders according the paramet
Pointer synchronization is an indicator with which the pointer can be synchronized in all the visible charts of the terminal. It shows a crossed cursor in all the visible charts of the terminal, in position relative to the cursor of the active chart. To activate the indicator, simply press the button that appears in one of the corners of the chart once the indicator is added to the chart. To deactivate the indicator, simply press the button again. Once the indicator has been deactivated, the cr
Hello This EA for send Orders Signals when you open or close order and send statics to your channel in Telegram with sum of profit or Loss Pips you can share your orders with your clients in your telegram please watch our video  to see how it is fast. https://www.youtube.com/watch?v=u_7twtYZhyI you must have Telegram channel then make bot and give it Permission and get token (watch this video to know how do it) https://www.youtube.com/watch?v=x1bKWFOjSBE and you must download this files h
Pending Orders Grid Complete System opens any combination of Buy Stop, Sell Stop, Buy Limit and Sell Limit pending orders and closes all existing pending orders. You will have a possibility to put a legitimate Open Price for the first position in the grid. Usually it should in the area of Support/Resistance lines. You just need to drop this script on the chart of a desired currency pair. Input Parameters Before placing all pending orders, the input window is opened allowing you to modify all i
This trade panel is able to greatly simplify the work for news traders. The utility allows to place market or pending orders with a single mouse click. The trade panel is a good assistant for scalping, news trading and for opening a multitude deals. The orders are placed manually, the lines indicate distance for placing the orders. The trailing stop and breakeven features will take care of the deal, in case it is unable to reach the take profit level. The trade panel can work with both limit and
News Calculator and Trading Panel is a high-tech exclusive calendar indicator, which shows news for many currencies. At the same time, it is a versatile trading panel. The News Calculator indicator shows the news on the chart in a detailed form and draws vertical lines: for low, medium and high-impact news. The indicator contains multiple features. Many buttons are displayed on the chart, each button is responsible for a certain action. When a news event occurs, the indicator generates notificat
Quick Lines
Andrey Vasilenko
A simple tool for trading on trend and horizontal lines. A small panel of buttons on the chart allows you to set trigger lines in one click and track their status. Market orders open automatically when the price touches the lines. The order direction (Buy or Sell) is set by the line color when it is installed. Allows you to apply an unlimited number of lines, they will work as the price touches. You can create any graphic patterns: levels, channels, triangles, flags, grids, etc. The principle
Advanced Pending Orders
Fernando Jose Velasco Borea
This EA facilitates sending multiple orders simultaneously. It also facilitates a function designed to be executed in a specific hour, ideal to facilitate its operation during the night, allowing to schedule positions while we are not next to the graph. The system can send direct orders at the market price or pending orders, speeding up the execution of operations with multiple Take Profit as well as controlling the Slippage of each order. The parameters of the system are: •          Broker Info
This tool monitors your current Expert Advisors and manages stop losses and take profits. You can customize which EAs and/or which currencies to monitor. It is primarily meant for EAs that you feel manage stop losses and/or take profits poorly. If you want this tool to be able to monitor manual trades, please use '0' (zero) as the magic number. Supports hidden stoploss and take profit Supports ATR-calculated dynamic stoploss Supports Breakeven for individual trades Supports Trailing stop Lower r
MT4 Telegram Management (from now simply “EA”) will be attached on specific MT4 chart user want to manage from remote. Note to developer: if possible, EA will be able to read info from command from user to select automatically the correct pair to work on, even if EA is attached only on one pair. EA should open/close position or manage opened or pending position. The MT4 Telegram Management l (form now simply “panel”) will be a simple Telegram group setted from user. By panel, user should be able
Risk Control Utility MT4   designed for manual trading. It helps to calculate and control your risks, transfer transactions to breakeven and accompany positions with trailing stop. Easy to set up and use. It can be used for calculating a trading lot, calculating stop loss and take profit levels. Works with currency pairs, CFDs, stocks, indices, futures, cryptocurrencies Displays   volume,   potential loss and profit before   placing an order Ability to set the expiration time of a pending order
Hello Trader, This EA let you manage your daily drawdown and profit. The EA close All market & pending orders  when your account reach a choosen level in daily drawdown and choosen level in profit. The level of the loss and the profit can be choosen by 3 ways;  - a pourcentage amount of your account - an amount in USD (profit and loss) - an equity target (minimum equity/maximum equity target)
Os compradores deste produto também adquirem
Trade Assistant MT4
Evgeniy Kravchenko
4.46 (181)
Ajuda a calcular o risco por comércio, a fácil instalação de uma nova encomenda, gestão de encomendas com funções de fecho parcial, trailing stop de 7 tipos e outras funções úteis. Atenção, o aplicativo não funciona no testador de estratégia. Manual, Description, Download demo Função de linha Mostra no gráfico a linha de Abertura, Stop Loss, Take Profit. Com esta função é fácil definir uma nova ordem e ver as suas características adicionais antes da abertura.   Gestão de risco A função de cá
Você acha que em mercados onde o preço pode mudar em uma fração de segundo, colocar os pedidos deve ser o mais simples possível? No Metatrader, cada vez que você deseja abrir uma ordem, você deve abrir uma janela onde você insere o preço de abertura, stop loss e take profit, bem como o tamanho da negociação. Ao negociar nos mercados financeiros, a gestão de capital é essencial para manter seu depósito inicial e multiplicá-lo. Portanto, quando você deseja fazer um pedido, provavelmente se pergunt
Local Trade Copier EA MT4
Juvenille Emperor Limited
5 (80)
Experimente uma cópia de negociação excepcionalmente rápida com o Local Trade Copier EA MT4 . Com sua fácil configuração de 1 minuto, este copiador de negociações permite que você copie negociações entre vários terminais MetaTrader no mesmo computador Windows ou em um Windows VPS com velocidades de cópia ultra rápidas de menos de 0.5 segundos. Seja você um trader iniciante ou profissional, o Local Trade Copier EA MT4 oferece uma ampla gama de opções para personalizá-lo de acordo com suas necess
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
O MT4 para Telegram Signal Provider é uma ferramenta fácil de usar e totalmente personalizável que permite o envio de sinais para o Telegram, transformando sua conta em um provedor de sinais. O formato das mensagens é totalmente personalizável! No entanto, para uso simples, você também pode optar por um modelo predefinido e habilitar ou desabilitar partes específicas da mensagem. [ Demonstração ]   [ Manual ] [ Versão MT5 ] [ Versão Discord ] [ Canal do Telegram ] Configuração Um guia do usuá
TradePanel MT4
Alfiya Fazylova
4.91 (87)
Trade Panel é um assistente comercial multifuncional. O aplicativo contém mais de 50 funções projetadas para negociação manual. Permite automatizar a maioria das ações de negociação. Antes de comprar, você pode testar a versão demo em uma conta demo. Versão de demonstração aqui . Instruções completas aqui . Principais recursos do aplicativo: Funciona com qualquer instrumento de negociação (Forex, CFD, Futuros e outros). Funciona com todos os instrumentos de negociação em uma janela de terminal.
Assuma o controle de sua carteira forex. Veja instantaneamente onde você está, o que está funcionando e o que está causando dor! VERSÃO MT5 DISPONÍVEL AQUI: https://www.mql5.com/en/market/product/58658 O Painel do Trade Manager foi projetado para mostrar rapidamente onde está cada posição que você tem no mercado cambial atualmente e tornar o gerenciamento de risco e a exposição a moedas mais fáceis de entender. Para os comerciantes que escalam para o mercado gradualmente com várias posições o
Trade Manager para ajudá-lo a entrar e sair rapidamente de negociações enquanto calcula automaticamente seu risco. Incluindo recursos para ajudar a evitar negociações excessivas, negociações de vingança e negociações emocionais. As negociações podem ser gerenciadas automaticamente e as métricas de desempenho da conta podem ser visualizadas em um gráfico. Esses recursos tornam este painel ideal para todos os traders manuais e ajudam a aprimorar a plataforma MetaTrader 4. Suporte multilíngue. Vers
The top-selling EAs on the market cost a lot and one day they are suddenly gone. This is because one strategy will not work in the forex market all the time. Our product is unique from all others in the MQL Marketplace because our EA comes with 34+ built-in indicators that allow adding more strategies every time.  You build your strategy and keep updating it. If one strategy does not work, simply build another all using only one EA. This is All-In-One EA in this market place. You can use as trad
-25% discount ($199 -> $149) Advanced trading tool: One click smart orders that execute under your conditions Developed by trader for trading community:  position size calculator (lot size), open position after price action, strategy builder, set and forget trading, mobile notifications... Risk Management -  Risk percentage position size calculator, gain percentage, target risk reward ratio, spread and commissions are included in calculations 7 Advanced order types   - Set and forget trading
Exp COPYLOT CLIENT for MT4
Vladislav Andruschenko
4.66 (67)
Copiadora comercial para MetaTrader 4. Ele copia negociações, posições e pedidos em forex de qualquer conta. É uma das melhores copiadoras comerciais  MT4 - MT4, MT5 - MT4 para a versão COPYLOT MT4  (ou MT4 - MT5 MT5 - MT5 para a versão COPYLOT MT5 ). Versão MT5 Descrição completa +DEMO +PDF Como comprar Como instalar    Como obter arquivos de log    Como testar e otimizar    Todos os produtos da Expforex Versão da copiadora para o terminal MetaTrader 5 ( МТ5 - МТ5, МТ4 - МТ5 ) -  Copylot
DrawDown Limiter MT4
Haidar, Lionel Haj Ali
5 (9)
Drawdown Limiter EA You are in the right place if you were searching for Drawdown control, Drawdown limiter, Balance protection, Equity Protection or Daily Drawdown Limit related to Prop Firm, FTMO, or Funded account trading, or if you want to protect your trading account. Have you suffered from controlling your drawdown when trading funded accounts? This EA is meant for you. Prop firms usually set a rule called “Trader Daily Drawdown”, and if it is not respected, you are disqualified.  I am an
Risk Manager for MT4
Sergey Batudayev
4.5 (8)
O Expert Advisor Risk Manager para MT4 é um programa muito importante e, na minha opinião, necessário para todos os traders. Com este Expert Advisor você poderá controlar o risco em sua conta de negociação. O controle de risco e lucro pode ser realizado tanto em termos monetários quanto em termos percentuais. Para que o Expert Advisor funcione, basta anexá-lo ao gráfico de pares de moedas e definir os valores de risco aceitáveis ​​na moeda de depósito ou em % do saldo atual. PROMO BUY 1 GET
The product will copy all  Discord  signal   to MT4   ( which you are member  ) , also it can work as remote copier.  Easy to set up. Work with almost signal formats, support to translate other language to English Work with multi channel, multi MT4. Work with Image signal. Copy order instant, auto detect symbol. Work as remote copier: with signal have ticket number, it will copy exactly via ticket number. How to setup and guide: Let read all details about setup and download Discord To MetaTrade
Mentfx Mmanage
Anton Jere Calmes
5 (16)
The added video will show you the full functionality, effectiveness, and simplicity of this trade manager. Drag and Drop Trade Manager. Draw your entry and have the tool calculate the rest. Advanced targeting and close portions of a trade directly available in tool (manage trades while you sleep). Market order or limit order on either side with factored spread. Just draw the entry, the tool does the rest. Hotkey setup to make it simple. Draw where you want to enter, and the stop loss, the tool c
Take a Break
Eric Emmrich
5 (27)
The most advanced news filter and drawdown limiter on MQL market NEW: Take a Break can be backtested against your account history! Check the " What's new " tab for details. Take a Break has evolved from a once simple news filter to a full-fledged account protection tool. It pauses any other EA during potentially unfavorable market conditions and will continue trading when the noise is over. Typical use cases: Stop trading during news/high volatility (+ close my trades before). Stop trading when
Copie sinais de qualquer canal do qual seja membro (incluindo privados e restritos) diretamente para o seu MT4.  Esta ferramenta foi projetada com o usuário em mente, oferecendo muitos recursos que você precisa para gerenciar e monitorar as negociações. Este produto é apresentado em uma interface gráfica fácil de usar e visualmente atraente. Personalize suas configurações e comece a usar o produto em minutos! Guia do Usuário + Demonstração  | Versão MT5 | Versão Discord Se você quiser experim
Trade Copier Pro
Vu Trung Kien
4.6 (15)
Trade Copier Pro é uma ferramenta poderosa para copiar remotamente comércio entre multi-contas em diferentes locais mais internet. Esta é uma solução ideal para provedor de sinais, que querem compartilhar seu comércio com os outros no mundo todo em suas próprias regras. Um provedor pode copiar comércios de multi-receptores e um receptor pode obter comércio de multi-fornecedores também. Provedor e receptor pode gerenciar sua lista de parceiros com potência sistema de gestão de banco de dados buil
VirtualTradePad mt4 Extra
Vladislav Andruschenko
4.88 (60)
Painel de negociação para negociação em 1 clique.  Trabalhando com posições e pedidos!  Negociar a partir do gráfico ou do teclado. Usando nosso painel de negociação, você pode negociar com um clique no gráfico e realizar operações de negociação 30 vezes mais rápido do que o controle MetaTrader padrão. Cálculos automáticos de parâmetros e funções que tornam a vida mais fácil para um trader e ajudam-no a conduzir suas atividades de trading com muito mais rapidez e conveniência. Dicas gráficas e
The Expert Advisor will help you forward all pop-up alert with screenshot from  MetaTrader 4 to Telegram channel/ group, also forward all notifications to Telegram. Parameters  -  Telegram Bot Token - create bot on Telegram and get token.  -  Telegram Chat ID  - input your Telegram user ID,  group / channel ID  -  Forward Alert - default true, to forward alert.  -  Send message as caption of Screenshot - default false, set true to send message below Screenshot  How to setup and guide  - Telegram
Grid Manual MT4
Alfiya Fazylova
4.71 (17)
"Grid Manual" é um painel comercial para trabalhar com uma grade de ordens. O utilitário é universal, possui configurações flexíveis e uma interface intuitiva. Ele trabalha com uma grade de pedidos não apenas na direção da média das perdas, mas também na direção do aumento dos lucros. O trader não precisa criar e manter uma grade de pedidos, tudo será feito pelo ""Grid Manual". Basta abrir um pedido e o "Grid manual" criará automaticamente uma grade de pedidos para ele e trabalhará com ele até q
Custom Ultimate Sniper Dashboard
Hispraise Chinedum Abraham
5 (2)
Este painel de atiradores personalizados Ultimate Sniper Dashboard é uma actualização EA para o indicador original Ultimate Sniper Dashboard. Trabalha com até 98 algoritmos diferentes para assegurar que capta a verdadeira natureza de uma tendência numa classe de activos com que se trabalha. É uma resposta directa a muitas das sugestões e conselhos que recebemos da maioria dos nossos clientes ao longo de vários meses.   Esta versão personalizada é totalmente personalizável. Alimentada por 98
MT4 Alert Signal Trader  is an EA that helps you trade MT4 Alert popup. Some indicators can provide signals by showing an alert popup containing signal texts. This EA will read and trade these signal texts. The alert texts should contain at least 2 elements:  (1) a symbol text   (ex: "EURUSD") and  (2) a command type   (ex: "Buy", "Sell", "Close") that trigger EA's trading activities. Some other contents that may have or not are open price, stop loss, take profit values... The EA needs an aweso
O MT4 to Discord Signal Provider é uma ferramenta fácil de usar e totalmente personalizável, projetada para enviar sinais de negociação diretamente para o Discord. Esta ferramenta transforma sua conta de negociação em um provedor de sinais eficiente. Personalize os formatos de mensagens para se adequar ao seu estilo! Para facilitar o uso, selecione entre modelos pré-desenhados e escolha quais elementos da mensagem incluir ou excluir. [ Demo ] [ Manual ] [ Versão MT5 ] [ Versão Telegram ] Confi
OrderManager MT4
Lukas Roth
4.63 (19)
Apresentando o OrderManager : Uma Ferramenta Revolucionária para MT4 Gerencie suas operações como um profissional com o novo utilitário Order Manager para MetaTrader 4. Projetado com simplicidade e facilidade de uso em mente, o Order Manager permite que você defina e visualize facilmente o risco associado a cada operação, possibilitando tomar decisões informadas e otimizar sua estratégia de trading. Para mais informações sobre o OrderManager, por favor, consulte o manual. [ Manual ] [ Versão MT5
TPSpro Trade PRO
Roman Podpora
5 (3)
-  Version MT5  (Coming soon) An instrument capable of instantly calculating position size or risk based on a specified stop-loss level is critically important for both professional traders and beginners. Trading utility  TRADE PRO   provides fast and accurate calculations, helping you make decisions in conditions of limited time and increased market volatility. Main functions: Original. Simple. Effective. Original and convenient opening of the main trading panel: Simply hover your mouse over th
TakePropips TradePad Pro
Eric John Pajarillaga Aldana
5 (4)
TakePropips TradePad Pro inclui um poderoso gerenciador comercial, medidor de força da moeda, ferramentas de relatórios de contas, ferramentas de gerenciamento de risco e muito mais! É um dos gerentes e assistentes comerciais forex mais avançados que você jamais encontrará! É a solução perfeita para traders que desejam uma maneira mais eficiente de gerenciar transações comerciais. Você pode baixar o manual do usuário em nosso blog:   https://www.mql5.com/en/blogs/post/751180 Você pode testar e
RedFox Copier Pro
Rui Manh Tien
4.75 (12)
FREE SIGNAL CHANEL:  https://t.me/redfox_daily_forex_signals Time saving and fast execution Whether you’re traveling or sleeping, always know that Telegram To Mt4 performs the trades for you. In other words, Our   Telegram MT4 Signal Trader  will analyze the trading signals you receive on your selected Telegram channels and execute them to your Telegram to MT4 account. Reduce The Risk Telegram To Mt4   defines the whole experience of copying signals from   Telegram signal copier to mt4  p
ADAM for FTMO 40
Vyacheslav Izvarin
ADAM EA Special Version for FTMO  Our 1st EA created using ChatGPT technology Trade only GOOD and checked PROP FIRMS  Default parameters for Challenge $100,000 Tested on EURUSD and GBPUSD only  Use 15MIN Time Frame Close all deals and Auto-trading  before Weekend at 12:00 GMT+3  Friday For Prop Firms MUST use special Protector  https://www.mql5.com/en/market/product/94887 Signal using ADAM  https://www.mql5.com/en/signals/2190554 --------------------------------------------------------------
Virtual Grid
Vladimir Gribachev
Utilitário para negociação semi-automática. Aplica níveis dinâmicos para definir ordens de stop, stop loss, take profit e trailing stop invisíveis para o corretor. Adequado para trabalhar com qualquer corretor, incluindo corretores dos EUA com um requisito de FIFO. Versão MT5 do link do consultor As negociações podem ser abertas usando botões ou linhas. Para que o consultor abra uma posição ao longo da linha: desenhe uma linha no gráfico e renomeie-a. Quando o preço o ultrapassar, o EA
Mais do autor
Trades Extractor
Medilane Bernard Philippe Couratier
Jarfac Trades Extractor Description: Le "Jarfac Trades Extractor" est un script MQL4 conçu pour les traders qui souhaitent exporter et analyser leurs trades historiques. En un seul clic, le script génère un fichier CSV contenant des informations détaillées sur chaque trade exécuté pendant une période spécifiée. Caractéristiques principales : Filtrage par Période : Définissez une période personnalisée pour l'extraction. Possibilité de désactiver le filtrage par période. Filtrage par Commentaire :
FREE
Filtro:
Sem comentários
Responder ao comentário
Versão 1.4 2023.09.07
-Customizable daily report message
Time management for sending the message

-In case of an error in sending messages, 3 attempts

-Various minor improvements