FoxterAI

FoxterAI — Robô de Grid Trading com Step Adaptável por ATR e Painel de Controle Interativo

FoxterAI é um robô de grid trading automatizado para MetaTrader 4 baseado em uma estratégia de grid de média. O passo da grade é calculado a partir do indicador ATR ao invés de um valor fixo em pips: durante alta volatilidade as ordens são colocadas mais afastadas, durante baixa volatilidade — mais próximas. O EA gerencia duas séries independentes simultaneamente — BUY e SELL.

Recurso Principal: Painel de Controle Funciona Totalmente Dentro do Testador de Estratégia

O painel interativo embutido é totalmente funcional no modo visual do Testador de Estratégia. Durante um teste retroativo você pode alterar parâmetros-chave sem parar o teste: ativar/desativar negociação, mudar direção, alterar modo de entrada, ativar Modo Cesta, ajustar meta de lucro, ativar Sistema de Níveis, alterar limites de grade — e ver imediatamente o efeito nos resultados. Isto acelera dramaticamente a otimização.

Arquitetura

A cada tick o EA executa: atualização da série, DetectTrend(), CheckNewSeriesEntry(), ManagePositions() (breakeven, trailing, grid de média, Take Profit), atualização do painel.

Detecção de Tendência

Algoritmo ATR customizado — amplitude média High-Low ao longo de N barras completadas no timeframe selecionado. ATR é armazenado em cache e recalculado apenas na formação de novo candle.

TrendTimeframe — timeframe para detecção de tendência (H1) | TrendATR_Period — período ATR em barras (14)

SuperTrend

Cálculo embutido sem indicadores externos. Base = (High+Low)/2, Upper = Base + Mult x ATR, Lower = Base - Mult x ATR. Usado como filtro de entrada, filtro de média e fonte de nível. A linha SuperTrend é desenhada diretamente no gráfico.

SuperTrendTF — timeframe SuperTrend (H1) | SuperTrendATRPeriod — período ATR (10) | SuperTrendMultiplier — multiplicador ATR (3.0) | DrawSuperTrend — desenhar linha no gráfico (true) | SuperTrendBarsToDraw — barras a desenhar (300)

Modos de Entrada

Alterados através do botão Entry Mode no painel. Quatro modos:

  • Tendência apenas — entra na direção da tendência
  • Tendência + Impulso (padrão) — adicionalmente requer um candle de impulso em M15 cuja amplitude exceda o % especificado do ATR
  • Tendência + Impulso + SuperTrend — filtragem máxima: tendência, impulso e SuperTrend simultaneamente
  • Tendência + SuperTrend — tendência confirmada por SuperTrend, sem necessidade de impulso

EntryMode — modo de entrada (Tendência + Impulso) | ImpulseTimeframe — timeframe para detecção de impulso (M15) | ImpulseATR_Period — período ATR para impulso (14) | ImpulseMinPercent — tamanho mínimo de impulso % do ATR (150) | MinBarsBetweenSeries — barras entre fechamento e nova entrada (1)

Grade de Média

Passo = ATR(Grid_Timeframe, Grid_ATR_Period) x Grid_StepPercent / 100. Média é acionada quando todas as condições são atendidas: preço moveu um passo a partir da última ordem, tendência corresponde à direção da série, intervalo de tempo mínimo passou, contagem de ordem e lote total dentro dos limites.

Grid_Timeframe (M15) | Grid_ATR_Period (14) | Grid_StepPercent — grade passo % do ATR (50) | MartinCoeff — multiplicador martingale (1.5) | FirstLotMultiplier (1.0) | MaxOrdersBuy/MaxOrdersSell — máx de ordens (10) | MaxTotalLot (2.0) | GridIntervalMinutes — intervalo mínimo entre médias min (30) | UseSTForAveraging (false)

Modos Avançados de Grade e Martingale

Grade expansora (UseExpandingGrid): cada passo multiplicado por GridStepMultiplier. Reduz frequência de média durante movimentos profundos contra a posição.

Martingale escalonado (UseSteppedMartin): três zonas com multiplicadores diferentes. Exemplo: primeiras 3 ordens a 1.0, próximas 3 a 1.3, depois 1.6. Ativa martingale apenas profundamente na grade.

Martingale adaptável por ATR (UseATRAdaptiveMartin): ajusta dinamicamente multiplicador baseado em volatilidade. Alta volatilidade — mínimo, baixa volatilidade — máximo. Os três modos podem ser combinados.

UseExpandingGrid (false), GridStepMultiplier (1.3) | UseSteppedMartin (false) | StepZone1Count/Coeff (3/1.0) | StepZone2Count/Coeff (3/1.3), StepZone3Coeff (1.6) | UseATRAdaptiveMartin (false) | ATRAdaptive_MinCoeff (1.0) | ATRAdaptive_MaxCoeff (2.0)

Modos de Take Profit

TP baseado em ATR: distância = ATR x TP_Percent / 100. TP em % de Depósito: alvo = Balance x FirstTPDepositPercent / 100. TP Individual: TP fixo por ordem em pontos (apenas Modo Cesta). TP de série combinada: quando 2+ ordens, TP recalculado a partir do preço médio de abertura ponderado. IncludeCommissionSwap deduz comissões e swap.

TP_Timeframe (M15), TP_ATR_Period (14) | TP_Percent (100) | UseDepositPercentTP (false) | FirstTPDepositPercent (0.5) | IndividualTP_Points (100, 0=desabilitado) | IncludeCommissionSwap (true) | SlippagePercent (0.1)

Cesta

Combina séries BUY e SELL para fechamento conjunto em meta de lucro compartilhada. Tipos: OFF, Imediato (da primeira ordem), Após N (após N médias).

Modo Cesta: inclui ordens fechadas da grade atual no cálculo de lucro. Permite acumular lucro a partir de fechamentos parciais.

BasketType OFF/Imediato/Após N (OFF) | BasketProfitPercent (0.1) | BasketAfterNOrders (5) | UseBasketMode (false)

Breakeven e Trailing

Breakeven ativa com 2+ ordens. Preço atinge distância — SL se move para preço de abertura (ou offset).

UseBreakeven (false) | BreakevenActivatePoints (100) | BreakevenSL_Points (0)

Trailing funciona apenas na primeira ordem. Desabilitado quando segunda ordem aparece. Distâncias em % do ATR.

UseFirstOrderTrailing (false) | TrailActivatePercent (70) | TrailDistancePercent (50)

Sistema de Níveis

Módulo opcional ancorando lógica de grade a níveis de preço. Habilitado via botão Levels.

Fontes: Níveis redondos (passo pip fixo, 21 níveis) | High/Low Diário (N barras em dois TFs, padrão D1x1+W1x1=4 níveis) | SuperTrend TF (limite em LevelTF)

Modos: Filtro (somente exibição) | TP em níveis | Entrada apenas (perto do nível, LevelEntryZone x ATR) | Completo (TP+Entrada+passo de grade adaptável)

UseLevelAveraging (false), LevelSource Redondo/D-HL/ST-TF | RoundLevelStep (50), LevelTF (H4) | LevelHL_TF1/Count1 (D1/1), LevelHL_TF2/Count2 (W1/1) | UseLevelTP (false), LevelTP_OffsetPips (5) | UseLevelEntry (false), LevelEntryZone (0.15) | UseLevelGrid (false), UseLevelAutoLot (false)

Ajuste de Ordem Perdedora

Fecha forçadamente a ordem mais perdedora quando ordens restantes ainda atingem meta de lucro. Botão Trim no painel.

Modos: OFF | Próprio (ordens de mesma direção produzem alvo) | Conjunto (todas BUY+SELL produzem alvo)

Filtros e Proteção

  • Filtro de spread: MaxSpread pontos (30)
  • Filtro de margem: MinFreeMarginLevel % (200)
  • Janelas de tempo: até 3 janelas "09:00-17:00", cruzamento de meia-noite suportado
  • Proteção ATR: ATR=0 bloqueia toda negociação
  • Normalização de símbolo UseNormalizeSymbol: remove sufixos de broker

Painel de Controle Interativo

Três abas. Campos de entrada brancos — clique, digite número, Enter para aplicar, Escape para cancelar.

Aba Trading: START/STOP, BUY/SELL/BOTH, Entry Mode, Dry Run, Max BUY/SELL, Max Lot, Lucro %, BASKET ON/OFF, TP Individual, tipo BASKET, TRIM, filtro ST, BREAKEVEN, TRAILING, Mult Lote.

Aba Grade: Expandir Grade, Mult Passo, Martin Escalonado com zonas, ATR Martin Min/Max, Níveis ON/OFF, Fonte, passo Redondo, Modo.

Aba Info: direção tendência/SuperTrend, Bid/Ask/spread, status séries BUY/SELL (ordens, lote, lucro, TP), saldo/patrimônio, drawdown, estatísticas diárias/semanais/mensais.

Botões do Sistema: Fechamento Emergencial, Remover Robô, Fechar BUY/SELL, escala de painel 70-200%.

Requisitos

  • MetaTrader 4, qualquer símbolo e timeframe
  • Sem DLL externo — compatibilidade total com MQL Market
  • Suporte para conta Cent (UseCentAccount, CentMultiplier, CentBalanceBase)

Aviso de Risco

Negociação em grade envolve manter múltiplas posições abertas simultaneamente. Durante movimentos direcionais fortes, o drawdown pode ser significativo. Antes de usar em uma conta ao vivo, teste minuciosamente no Testador de Estratégia e selecione parâmetros de risco apropriados.

Entre em Contato

Estamos abertos ao diálogo! Se você tem dúvidas sobre configuração, sugestões de melhorias, ou deseja desenvolver um robô de trading baseado na sua própria estratégia — envie-nos uma mensagem privada. Vamos discutir sua necessidade, propor uma solução e transformar sua ideia em um Expert Advisor funcional.

Produtos recomendados
The Arrow Scalper
Fawwaz Abdulmantaser Salim Albaker
1 (2)
Dear Friend..  I share with you this simple Expert Adviser .. it is full automatic  this Expert Adviser following the trend of the pair you install on or any stocks or indices , it is works like that: - when the trend on H4 chart show a start of up trend the expert will wait till the 15M & 1H charts show an up trend the EA will open a buy order directly , and do the same for down trend and open a sell order the buy or sell  order lot size and take profit and stop loss will measured manually  by
FREE
Grid MT4 Recovery
Volodymyr Hrybachov
Um consultor de grade com um sistema adaptativo para "Resolver" uma cesta de pedidos também pode ser usado para restaurar posições não lucrativas na conta. Funciona dentro de um canal de regressão linear, entrada em várias condições. O sinal usa a direção do canal de regressão linear, médias móveis exponenciais, volatilidade média diária e, em seguida, constrói uma grade de pedidos se o preço se desviar. A etapa da grade é configurável, e se o preço vai contra nós, então após um certo número
H4 GBPUSD Trend Scalper is a trend signal scalper The EA trades according to the trend strategy using original built-in indicator for opening and closing orders. The external inputs for limiting trading on Fridays and Mondays are available. The purpose of the strategy is to use the current trend with the most benefit. According to the results of testing and working on demo and real accounts, the best results achieved by using the Н4 timeframe on the GBP/USD pair Works on MetaTrader 4 Build 971+
JumpLump
Olga Zhdanova
Um ótimo complemento para seu portfólio lucrativo de consultores especializados. A estratégia é baseada em um algoritmo para romper os níveis construídos por um determinado período de tempo. O EA tem um StopLoss fixo, que permite que você mantenha o rebaixamento mínimo. Testado em todos os ticks usando o Tick Data Suite, com as condições reais de negociação mais próximas possíveis, assista ao vídeo. Preço para os primeiros 10 compradores $ 75 (imploro que publique seus relatórios nos comentári
Sinless
Andrey Kolmogorov
A mathematical multicurrency trading system based on the principle of a neural network. It uses a general database of algorithms "S1M1" consisting of the most stable trading algorithms in its work. Before getting into the "S1М1" general database of algorithms, each block of conditions has passed the testing for stability with the identification of certain market dependencies for that block. A network created in such a way allows the EA to automatically select the most optimal variant of response
CRAZZ Winter EA
Low Chun Chiat
1. Intro: Like the cold weather and freezing of winter, Crazz Winter EA’s open trades can be held for one day or TP within minutes. Aiming to have a high consistency and profitable amount, Crazz Winter EA is designed to trade with only two kinds of currency which are EURUSD and AUDUSD and there will only one trade open for each currency at the same time. With the combination of Moving Average and Relative Strength Index, it may detect and identify the current and following market trade. The EA h
Bfxenterprise RSI
Ricky Romadona Tri Saputra
Bfxenterprise RSI Inspired and optimized RSI indicator is the focus of this Expert Advisor (EA). Designed with the use of RSI to perform optimal transactions. Reading trends and price reversals is done by the RSI whose functions have been sorted. Version of Bfxenterprise The version with the name “Bfxenterprise” focuses on special and thorough sorting of transactions. So this version does not always make transactions, unlike the Expert Advisor version in general. This version relies on accuracy
The algorithm of the adviser's work: When the Expert Advisor is launched at a specified distance from the price (first_step), BuyStop and SellStop orders are placed. Further, depending on which way the price went, one of them becomes market, and the other begins to crawl after the price. When the price rolls back, it also becomes market. If we have reached a set profit in some direction, the order is closed and a creeping pending order of the same direction is placed again. If the profit is no
Works to open two hedging deals, buying and selling, with a goal of each deal of 20 points With the opening of multiple cooling deals in the manner of another lot size and suspending each type of sale or purchase transaction At a profit level. Parameters: Lot1: Manual Lot Size Auto_Lot: Set true to automatically calculate optimal Lot Size based on risk preferences, Set False if you want to use manual lot size. Max_Risk: Max Risk as percentage of Equity * the greater this percentage is the grea
Hamster Grid MT4
Volodymyr Hrybachov
Um consultor de grade profissional trabalha com indicadores RSI (Índice de Força Relativa). tem a função de reduzir o saque na conta pela sobreposição de ordens não lucrativas. O gráfico exibe informações sobre o lucro. Versão MT5 https://www.mql5.com/ru/market/product/56995 OPÇÕES: RSI_PERIOD - período para cálculo do índice de resistência relativa; UP_LEVEL - limite superior; DN_LEVEL - limite inferior; RSI_TIMEFRAME - prazo para cálculo; START_LOT - lote inicial; LOT_MULTIPLIER - multip
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT4 version, click  here  for  Blue CARA MT5  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic R esponsive A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhapse most popular) Inn
Time Scalper
Sabil Yudifera
Time Scalper is a multi-currency Expert Advisor, which works on many symbols and M1 timeframe. The Expert Advisor does not use high-risk trading strategies like Martingale. EA works with Stoploss, Breakout, Pull back,Takeprofit, Next Trailing Stop with Neural Network Technology and Calculated through the last price every one minute not every tick. This made the decision that you do not have to worry about backtest results. For Customers Please write the author in private message to know which p
How the EA works (simple explanation) Trades on   M5   timeframe Uses   H1 timeframe   to analyze global market context Analyzes   2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on   trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol:   EURUSD Timeframe:   M5 Trading
Currency EURUSD . Timeframe H1 The minimum deposit is $ 200 when trading 1% per trade.  Classic trend advisor.  The Expert Advisor is based on classic, time-tested indicators . Also, some strategies use Price Action . Every trade is protected by a stop loss  No martingale, no grid, no high risk strategies. All strategies used here are trend following and reversal. Compliance with MM = 4% for each trade is recommended. Question: - Why is testing so slow? Answer: - Be patient, 15 very diff
Correlation Beast EA
Rodrigo Rethka Goncalves
Correlation Beast V2.5 – Eleve seu Trading no Forex às Alturas! Liberte o poder das correlações entre pares de moedas com o Correlation Beast V2.5 , o Expert Advisor definitivo para MetaTrader 4! Projetado para traders que buscam precisão e lucratividade , este EA utiliza estratégias avançadas de correlação para identificar operações com alta probabilidade de acerto. Seja você iniciante ou experiente, essa ferramenta é a chave para dominar o mercado Forex! Por que escolher o Cor
Works to open two hedging deals, buying and selling, with a goal of each deal of 20 points With the opening of multiple cooling deals in the manner of another lot size and suspending each type of sale or purchase transaction At a profit level. Parameters: Lot1: Manual Lot Size Auto_Lot: Set true to automatically calculate optimal Lot Size based on risk preferences, Set False if you want use manual lot size. Max_Risk: Max Risk as percentage of Equity* the greater this percentage is the greater
Doctor
Andrey Kolmogorov
This is a universal adviser working in several directions. The first and main thing is assistance in various situations that arise during trading. The second is scalping or positional trading according to the trend, open orders, at the same time, insured with support orders using the model of a quantum set of algorithms. Main Advantages Work in several directions; Increase in account balance during drawdown; Maintenance of already open orders; Building a grid lock; Scalping and/or trend trading
RSI Intelligent is a fully automated scalping robot that uses a very efficient Relative Strength Index (RSI) breakout strategy, Probabilistic analysis with (RSI). Most effective in the price Cumulative probability of a normal distribution that occupy the bulk of the market time. Transactions happen almost every day like Scalping follow trend. A Forex robot using the Relative Strength Index (RSI) indicator combined with an artificial neural network would be an advanced automated trading system th
Raider
Aleksandr Shurgin
A scalper trading advisor with an innovative method for calculating the opening of trading positions. The robot is designed for high-frequency trading with MT4 terminal instruments. The expert controls the volume of trading positions, spread expansion, and slippage. Can be used on any time frame, with any deposit size. Easily optimized and configured for the desired instrument. You can use preset settings. Recommendations for using the expert Initial deposit from 100USD. Brokers with normal exec
NewStar
Evgeniy Zhdan
The strategy of the adviser determines the direction, the strength of the trend and the behavior of prices in the zone of "round" price levels. If several factors coincide, the adviser starts working in the direction of the most likely price movement. The Expert Advisor uses a unique algorithm for tracking open positions. Each position advisor has a stop loss and take profit. Dangerous trading methods are NOT used. Recommended trading instruments (TF 5m): GBPUSD, EURUSD. For 24/7 advisor oper
GRV Grid
Roman Gergert
GRV Grid expert Advisor is a regular grid trader trading in both directions. The peculiarity of this grid is that subsequent orders in the grid are opened not only upon reaching the set step but also on the basis of the signal, which allows not to accumulate a lot of orders that can very quickly drain the entire Deposit. The EA makes a decision based on the signals from THE mA indicator and the trend filter. The EA trades almost non-stop, i.e. there are almost always open orders, so for stable
The Infinity Expert Advisor is a scalper. When the resistance and support levels are broken, trades are opened in the direction of the price movement. Open positions are managed by several algorithms based on the current market situation (fixed stop loss and take profit, trailing stop, holding positions in case of trend indication, etc.). Requirements for the broker The EA is sensitive to spread, slippages and execution quality. It is strongly recommended not to use the EA for currencies with s
Trending Mechanisms
Tatiana Savkevych
**Description of the Trending Mechanism Forex Trading Bot** **Trending Mechanism** is a high-tech trading bot for the MetaTrader 5 platform designed for automatic market analysis and trading in the Forex market. By utilizing the latest market analysis and capital management technologies, this bot allows traders to effectively identify trends and make informed trading decisions based on current market conditions. It is ideal for both experienced traders and beginners, thanks to its intuitive se
Gyroscopes
Nadiya Mirosh
Gyroscope        professional forex expert   (for EURUSD, GBPUSD, USDJPY, AUDUSD, USDCHF, EURGBP, EURJPY, NZDUSD, USDCAD, EURCHF, AUDJPY, CADJPY pairs)   alyzing the market using the Elliot Wave Index. Elliott wave theory is the interpretation of processes in financial markets through a system of visual models (waves) on price charts. The author of the theory, Ralph Elliott, identified eight variants of alternating waves (of which five are in the trend and three are against the trend). The mov
This Expert Advisor trades based on trend lines, as well as on the basis of volume analysis. Volumes are calculated using minute bars, in order to determine if they were ascending or descending. The trend lines are drawn based on High and Lows in the trade history. There are also additional indicators. Buy or sell signals depend on all those factors. This allows the EA to enter the market with more accuracy and to perform more deals. Input parameters Lots - lot size (if 0, a lot is calculated b
Harvest GOLD
Sayan Vandenhout
Harvest GOLD USES THE TREND WAVE INDICATOR AND IT CAN IDENTIFY THE BEGINNING AND THE END OF A NEW WAVE TREND MOVEMENT. AS AN OSCILLATOR, THE INDICATOR IDENTIFIES THE OVERBOUGHT AND OVERSOLD ZONES. IT WORKS GREAT TO CATCH THE SHORT TERM PRICE REVERSALS AND USES A MARTINGALE STRATEGY TO CLOSE ALL TRADES IN PROFIT. USE DEFAULT SETTINGS ON H1 OR HIGHER TIME FRAME ON ANY PAIR FOR MORE ACCURATE TRADES WHY THIS EA : Smart entries calculated by 3 great strategies The EA can be run on even a $30000
Gold Crazy EA MT4
Nguyen Nghiem Duy
Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
Matrix Arrow EA MT4
Juvenille Emperor Limited
5 (8)
Matrix Arrow EA MT4 é um consultor especializado exclusivo que pode negociar os sinais de MT4 do indicador de seta Matrix com um painel de negociação no gráfico, manualmente ou 100% automaticamente. O Matrix Arrow Indicator MT4 determinará a tendência atual em seus estágios iniciais, reunindo informações e dados de até 10 indicadores padrão, que são: Índice de movimento direcional médio (ADX), Índice de canal de commodities (CCI), Velas clássicas de Heiken Ashi, Média Móvel, Divergência de conv
Expert Grid rsi Pro
Mykhailo Zakervashevych
General Description Grid RSI Pro v3.1 is an advanced trading Expert Advisor for MetaTrader 4 that uses a grid strategy with RSI indicator filtering. The EA automatically opens orders at specified levels, creating a grid of orders to capture market fluctuations. Version 3.1 includes enhanced risk management features and improved signal filtering systems. Key Features 1. Trading Strategies RSI Strategy : Position opening when RSI reaches overbought (80) or oversold (20) levels Fixed Points : Posit
EA Calmed Pro
Jennifer Afi Azasoo
EA Calmed Pro Gold Tentamos otimizar o Calmed Expert Advisor para ouro, mas funciona com quaisquer outros pares e ações forex. Este especialista usa martingale (opcionalmente) para recuperação. Por favor, teste por pelo menos 1 ano e execute uma demonstração por pelo menos um mês inteiro antes de ir ao ar; dessa forma, você saberá como o Calmed Expert Advisor se comporta nos vários mercados. Por favor, não compre e comece a usar o EA, pois o desempenho passado não pode garantir resultados futu
Os compradores deste produto também adquirem
Big Forex Players MT4
MQL TOOLS SL
4.72 (43)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
AI Forex Robot MT4
MQL TOOLS SL
4.29 (17)
AI   Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation   Artificial Intelligence   system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD   and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in   real time   and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by   ar
XG Gold Robot MT4
MQL TOOLS SL
4.32 (38)
The XG Gold Robot MT4 is specially designed for Gold. We decided to include this EA in our offering after   extensive testing . XG Gold Robot and works perfectly with the   XAUUSD, GOLD, XAUEUR   pairs. XG Gold Robot has been created for all traders who like to   Trade in Gold   and includes additional a function that displays   weekly Gold levels   with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on  Price
Exorcist Projects
Ivan Simonika
3 (1)
Exorcist Bot   is a multi-currency, multi-functional advisor that works on any time frame and in any market conditions. - The robot’s operation is based on an averaging system with a non-geometric progression of constructing a trading grid. - Built-in protection systems: special filters, spread control, internal trading time limitation. - Construction of a trading network taking into account important internal levels. - Ability to customize the aggressiveness of trading. - Working with pending
Aura Black Edition
Stanislav Tomilov
4.6 (20)
Aura Black Edition é um EA totalmente automatizado projetado para negociar apenas OURO. O especialista mostrou resultados estáveis ​​no XAUUSD no período de 2011-2020. Nenhum método perigoso de gerenciamento de dinheiro usado, sem martingale, sem grade ou scalp. Adequado para quaisquer condições de corretor. EA treinado com um perceptron multicamadas A Rede Neural (MLP) é uma classe de rede neural artificial (ANN) de feedforward. O termo MLP é usado de forma ambígua, às vezes vagamente para qual
Algo Capital Trader
Jimitkumar Narhari Patel
Algo Capital Advanced Market Intelligence Trader: Empowering Traders with Integrity and Insight Algo Capital proudly introduces its inaugural state-of-the-art Advanced Market Intelligence Trader - engineered to transform your trading experience through precision, adaptability, and advanced market intelligence. Powered by proprietary algorithms and deep market research, this solution is designed to deliver consistent, high-quality performance across diverse market conditions. Why Algo Capital?
AI Prop Firms MT4
MQL TOOLS SL
5 (3)
AI Prop Firms - Intelligent Automation Built for   Prop Trading Firms . AI Prop Firms is an advanced fully automated Forex trading system powered by   Artificial Intelligence , developed specifically to operate within the strict rules and evaluation models of prop trading firms. The system is designed to trade under controlled risk conditions while   maintaining consistency , stability, and compliance with prop firm requirements. AI Prop Firms uses intelligent market analysis logic that continu
Fundamental Hunter – The Smart Money Tracking Expert Advisor You buy a unique opportunity not an EA. Early buyers get the power first... at a price they'll never get back. Next price will be:   $1200   |   2/10   spot remains Next price will be: $1600 | 10/10 spot remains Next price will be: $2000   | 10/10 Final price: $2400 Live result If you are looking for an Expert Advisor that goes beyond indicators and actually understands the market through real economic data , Fundamental Hunter is
Forex Dream X – Trend-Based Expert Advisor with Smart Risk Management Broker (Recommended):   https://one.exnesstrack.org/a/lmeqq9b7 Forex Dream X is a fully automated Expert Advisor designed to trade in the direction of the market trend using a combination of price action, volatility filtering, and moving average logic. The EA focuses on disciplined entries, strict risk control, and automatic lot sizing based on account balance and user-defined risk percentage. The system is optimized to
Pharaoh Gold
Dmitriq Evgenoeviz Ko
Pharaoh Gold  is carefully designed for effective trading of gold and any currency assets with an emphasis on reducing risks and increasing potential profits. Trading is carried out by pending orders in the direction of the trend. the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller The advisor is able to adapt to the constantly changing market dynamics, identifying statistically significant price patterns with a high degree of forecasting accuracy. Th
Introducing   Trade Vantage : Professional Market Analyst Trade Vantage   is a highly effective analytical tool that uses a specialized algorithm for trading on the Forex and cryptocurrency markets. Its operating principle is based on price analysis for a certain time interval, identifying the strength and amplitude of price movements using a unique indication system. When a trend loses its strength and changes direction, the expert closes the previous position and opens a new one. The bot also
O       Opening Range Breakout Master   é um sistema de negociação algorítmica profissional projetado para capitalizar conceitos de negociação institucional, como       ICT (Inner Circle Trader), Smart Money Concepts (SMC) e estratégias baseadas em liquidez   . Este consultor especialista automatiza a detecção e execução de       rompimentos de intervalo de abertura (ORB)       nas principais sessões globais de Forex, incluindo       Londres, Nova York, Tóquio e Midnight Killzones   , permitindo
Trillion Pips GridX EA
Sivaramakrishnan Natarajan
Trillion Pips GridX EA - Grid and Hedging Expert Advisor Trillion Pips GridX EA is a fully automated Expert Advisor for MetaTrader 4 that uses grid trade management, progressive lot scaling, and optional hedging logic to manage trades under various market conditions. This EA is intended for experienced traders who fully understand the risks associated with grid and martingale style trading systems. Strategy Overview Grid Trading Logic The EA opens sequential trades at defined price intervals to
Big Hunter
Mehdi Sabbagh
5 (1)
The Multi Strategy Trading Robot This automated trading robot always uses stop loss. Big Hunter is specially designed to trade gold , but you can test it on other pairs since you have the access to the parameters. The robot uses different strategies like swing trading ,  momentum trading , position trading and more. It's backtested for the last 10 years under the harshest, simulated market conditions. Each trade has  unique SL, TP, Trailing stop, and breakeven. These parameters are variable a
### Forex Hedging Expert Advisor: No Loss Strategy #### Overview The Forex Hedging Expert Advisor (EA) with a No Loss Strategy is an advanced automated trading system designed to mitigate risk and protect against adverse market movements. The core principle behind this EA is to implement a sophisticated hedging strategy that aims to lock in profits and minimize losses in volatile forex markets. This EA is ideal for traders who seek a robust, risk-averse trading solution that maintains capital
Btcusd Grid
Ahmad Aan Isnain Shofwan
1 (1)
TCUSD GRID EA é um programa automatizado projetado para usar a estratégia de negociação em grade BTCUSD GRID EA é altamente útil tanto para iniciantes quanto para traders experientes.   Embora existam outros tipos de bots de negociação que você pode usar, a natureza lógica da estratégia de negociação em grade torna mais fácil para os bots de negociação em grade criptográfica realizarem negociações automatizadas sem problemas.   BTCUSD GRID EA é a melhor plataforma geral para usar se você deseja
Gold Lady
Dmitriq Evgenoeviz Ko
1 (1)
The Gold Lady Expert Advisor for gold trading in the MetaTrader 4 (MT4) platform is an automated trading system specifically designed for gold (XAU/USD) trading. Such advisors typically use algorithms to execute trades based on technical analysis and other market data. the full list for your convenience is available https://www.mql5.com/ru/users/pants-dmi/seller The advisor employs neural networks to analyze market data in real time, skillfully adapting to changing conditions and issuing highl
Historical Pattern MT5: Os 8 Pilares da Vantagem Estatística   PARE DE ADIVINHAR. OPERE COM DADOS. Matemática Pura. Zero Indicadores. Vantagem Institucional. Vamos ser honestos. A maioria dos traders falha porque está lutando a batalha errada. Eles olham para gráficos de 5 minutos, desenham linhas aleatórias e confiam na esperança. Enquanto isso, as Instituições — Bancos, Fundos de Hedge e Algoritmos — operam com base em   Fatos Estruturais . Se você está operando com base em um "sentimento", vo
GridSync Pro
Thushara Dissanayake
GridSync Pro       é um       EA de negociação de grade sofisticada       projetado para       MetaTrader 4       que combina       execução totalmente automatizada       com       flexibilidade de negociação manual   . Isto       EA de rede inteligente       implementa um       estratégia de grade avançada e não martingale       com       controles precisos de gerenciamento de risco   , incluindo       metas de lucro diário, limites de perdas e trailing stops       para proteger o capital duran
Three Little Birds
Ahmad Aan Isnain Shofwan
Forjado a partir da perda. Aperfeiçoado com dor. Lançado com propósito. ️ ESTRUTURA. NÃO ESPECULAÇÃO. O Three Little Birds EA não é apenas mais um robô de negociação. É um motor forjado em batalha, criado ao longo de anos de fracassos reais e projetado para uma missão:   proteger, recuperar e aumentar seu patrimônio — quando o mercado se torna cruel. Ele combina   três estratégias poderosas   em perfeita sincronia: Grade de Perdas com Martingale   : absorve perdas e constrói em dir
Gold Bullion
Armin Heshmat
Gold Bullion EA   is   VIP ,   It    was developed by   ENZOFXEA   team in Germany with experienced traders with   more than 15 years   of trading experience.The indicators used in expert have nothing to do with the standard indicators in the market and are completely derived from strategy. All Trade Have StopLoss Always Behind Order An expert based on    (GOLD , XAUUSD   ) This Expert  is Day Trader and  Breakout strategy NOTE Default EA setting is correct    Time Frame :  Daily  D1 first depo
Benefit EA
Vsevolod Merzlov
Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the operating system (can match). This function allo
Meat EA
Roman Kanushkin
5 (1)
The Meat EA is a fully automatic, 24-hour trading system. It trades based on analysis of market movement on the basis of a built-in indicator and the Moving Average trend indicator. The system is optimized for working with the EURUSD currency pair on the M30 timeframe. It is recommended to use an ECN/STP broker with low spread, low commission and fast execution. Signal monitoring Working currency pair/timeframe: EURUSD M30. Advantages never trades against the market; the higher the risk, the hi
PointerX
Vasja Vrunc
PointerX is based on its own oscillator and built-in indicators (Pulser, MAi, Matsi, TCD, Ti, Pi) and operates independently. With PointerX you can create your own strategies . Theoretically all indicator based strategies are possible, but not martingale, arbitrage, grid, neural networks or news. PointerX includes 2 Indicator Sets All Indicator controls Adjustable Oscillator Take Profit controls Stop Loss controls Trades controls Margin controls Timer controls and some other useful operations. T
Milch Cow Hedge
Mohamed Nasseem
MILCH COW HEDGE V1.12 EA is primarily a Hedging Strategy. Expert support is to seize every opportunity in any direction. Not just opens the deals, but chooses the right time to close the open positions to begin trading again. We recommend the use of an expert with a pair of high volatility for the currency, such as GBPAUD, AUDCAD Testing expert during the period from 01.01.2016 until 09.12.2016 profit doubled four times to account Experts interface allows the user to directly trading open order
Forebot
Marek Kvarda
This robot uses a custom hidden oscillating indicator and also analyzes the market response. It traded mostly at the time of higher volatility. It works with several pending orders with different size of volume and their position actively modifies. It uses advanced money management. TradingMode setting can also meet the conditions FIFO. It is successful in different markets and different timeframes. Best results are achieves with a broker with the spread to 5 points on EURUSD. Is necessary a br
Avato
Nikolaos Bekos
The Avato is one of our standalone tools. (A Signal based on it will also be provided on Mt4 Market in the future). It is designed around a combined form of hedging and martingale techniques and uses sophisticated algorithms and filters to place the trades. It uses Stop loss and Take profit levels while Lot size is calculated automatically following the according multiplier settings. We consider it a toolbox for every seasoned trader. Made with Gold market in mind, it can be tested in other inst
AreaFiftyOne
Valeri Balachnin
Area 51 EA generates signals on different strategies. Has different money management strategies and dynamic lot size function. When a position is opened, it is equipped with a take profit and a stop loss. If the position becomes profitable, a dynamic stop loss based on the specified values (TrailingStep and DistanceStep) will be set for it and constantly trailed. This allows you to always close positions in profit.  If you want, that your manual opened positions will be handled by the EA, so you
Note : the spread value,  the broker's slippage and the VPS speed affect the Expert Advisor trading results. Recommendations: gold with spread up to 3, USDJPY with spread up to 1.7, EURUSD with spread up to 1.5. Results will be better with better conditions. The Ping value between VPS and the broker server should be below 10 ms. In addition, the smaller the broker's stop-level requirement, the better; 0 is the best. The Expert Advisor is based on a breakthrough system and carefully controls all
Milch Cow Extra
Mohamed Nasseem
EA is primarily a Hedging and Multiples Strategy. It support to seize every opportunity in any direction as MILCH COW MIX but with multiple profit results without increasing the risk. Milch Cow Mix EA starts to open Hedge at first level only But EA opens Hedge at every level Not just opens the deals, but chooses the right time to close the open positions to begin trading again. We recommend the use of an expert with a pair of high volatility for the currency, such as GBPAUD, AUDCAD Experts inter
Filtro:
Sem comentários
Responder ao comentário