Robo Swing Trader Consistente

Robô MQL5 para BTCUSD que opera cruzamento da EMA100, entra após confirmação com pivôs (fractal/zigzag), usa stop fixo 250 pontos abaixo do último fundo/topo e alvo definido. Faz no máximo 3 operações por dia (1 gain ou até 2 loss com gale), mantém o lote no dia seguinte e opera só das 08:00 às 16:00 (Brasília).apos contratar , deixe rodando por 1 semana  com margem sempre acima de 20 usd. utilize a corretora abaixo para ter acesso a conta CENT  >>>>  https://fbs.partners?ibl=44536&ibp=5690088 <<< ideal para contas com margem inicialmente curtas.

Fique a vontade para tirar duvidas no chat.. Sou desenvolvedor e entro aqui diariamente.se eu não souber resolver , sei quem sabe.

 voltando ao robo..que rendeu 61% de lucro em 2025


(operacional antigo de livros ( Elliot) )

pernada 3,onda3

(3).3

--------------------------------------------------------------------------------------

inicio do cod  do  (  #property strict ) pra baixo ..


#property strict

#property version "REX7.2.2_OPT_FIX_PRO"


#include <Trade/Trade.mqh>

CTrade trade;


//==================== INPUTS ====================//

input long   Magic = 330033;


input double FixedInitialLot = 0.20;

input double GaleMultiplier = 2.0;

input int    MaxGales = 2;


input double WeeklyDDLimit = 80;

input double DailyGainTarget = 1;


input double FiboTP = 1.161;

input double PartialPercent = 95;

input int PartialAfterMinutes = 5;


input int SlippagePoints = 30;


input bool UseTimeFilter = true;

input int StartHour = 6;

input int EndHour = 18;


input int TradeCooldownMinutes = 20;


//==================== STRUCTURAL STOP ====================//

int counterAgainst=0;

double entryCandleHigh=0;

double entryCandleLow=0;

int positionDirection=0;


//==================== SCORE ====================//

int totalWins=0;

int totalLosses=0;

int totalTrades=0;


double todayProfit=0;


bool lastGateBuy=false;

bool lastGateSell=false;


datetime lastTradeOpenTime=0;


//==================== GLOBALS ====================//

int hMA200;

int hMA75;

int hMA9;


datetime lastBar;

int galeLevel=0;


double weeklyStartEquity;

bool weeklyLock=false;


double dailyStartBalance;

bool dailyLock=false;

datetime lastDayCheck=0;


ulong partialTicketDone=0;

datetime lastPartialAttempt=0;


//==================== HELPERS ====================//

double PointValue(){ return SymbolInfoDouble(_Symbol,SYMBOL_POINT); }

int DigitsSym(){ return (int)SymbolInfoInteger(_Symbol,SYMBOL_DIGITS); }


double NormalizePrice(double p)

{

   return NormalizeDouble(p,DigitsSym());

}


bool IsNewBar()

{

   datetime t=iTime(_Symbol,_Period,0);

   if(t!=lastBar)

   {

      lastBar=t;

      return true;

   }

   return false;

}


bool IsTradingTime()

{

   if(!UseTimeFilter) return true;


   MqlDateTime tm;

   TimeToStruct(TimeCurrent(),tm);


   if(StartHour<EndHour)

      return (tm.hour>=StartHour && tm.hour<EndHour);


   return (tm.hour>=StartHour || tm.hour<EndHour);

}


bool HasPosition()

{

   if(!PositionSelect(_Symbol)) return false;

   if(PositionGetInteger(POSITION_MAGIC)!=Magic) return false;

   return true;

}


//==================== MA ====================//

double GetMA(int handle,int shift)

{

   double buf[];

   if(CopyBuffer(handle,0,shift,1,buf)!=1)

      return EMPTY_VALUE;


   return buf[0];

}


//==================== LOT ====================//

double CalculateLot()

{

   double lotStep=SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_STEP);

   double minLot=SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_MIN);

   double maxLot=SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_MAX);


   double lot=FixedInitialLot*MathPow(GaleMultiplier,galeLevel);


   lot=MathMax(minLot,MathMin(maxLot,lot));

   lot=MathFloor(lot/lotStep)*lotStep;


   return lot;

}


//==================== BROKER PROTECTION ====================//

bool BrokerCanTrade()

{

   if(!TerminalInfoInteger(TERMINAL_TRADE_ALLOWED)) return false;

   if(!AccountInfoInteger(ACCOUNT_TRADE_ALLOWED)) return false;

   if(!AccountInfoInteger(ACCOUNT_TRADE_EXPERT)) return false;


   return true;

}


//==================== WEEKLY DD ====================//

void CheckWeeklyDD()

{

   double equity=AccountInfoDouble(ACCOUNT_EQUITY);

   if(weeklyStartEquity<=0) return;


   double dd=(weeklyStartEquity-equity)/weeklyStartEquity*100.0;

   if(dd>=WeeklyDDLimit) weeklyLock=true;

}


//==================== DAILY TARGET ====================//

void CheckDailyTarget()

{

   MqlDateTime now;

   TimeToStruct(TimeCurrent(),now);


   MqlDateTime last;

   TimeToStruct(lastDayCheck,last);


   if(now.day!=last.day)

   {

      dailyStartBalance=AccountInfoDouble(ACCOUNT_BALANCE);

      dailyLock=false;

      lastDayCheck=TimeCurrent();

      return;

   }


   double profitToday=AccountInfoDouble(ACCOUNT_EQUITY)-dailyStartBalance;


   if(profitToday>=DailyGainTarget)

      dailyLock=true;

}


//==================== GATE STRUCTURAL ====================//

void UpdateGate()

{

   double ma200=GetMA(hMA200,1);

   double ma75=GetMA(hMA75,1);


   double close1=iClose(_Symbol,_Period,1);

   double open1=iOpen(_Symbol,_Period,1);


   lastGateBuy = (close1>ma200 && close1>ma75 && open1<ma200);

   lastGateSell = (close1<ma200 && close1<ma75 && open1>ma200);

}


//==================== SIGNAL ====================//

int Signal_3Wave()

{

   double ma200=GetMA(hMA200,1);

   double ma75=GetMA(hMA75,1);

   double ma9_1=GetMA(hMA9,1);

   double ma9_2=GetMA(hMA9,2);


   if(ma200==EMPTY_VALUE || ma75==EMPTY_VALUE || ma9_1==EMPTY_VALUE) return 0;


   double close1=iClose(_Symbol,_Period,1);

   double close2=iClose(_Symbol,_Period,2);


   if(close1>ma200 && close1>ma75)

      if(close2<ma9_2 && close1>ma9_1 && lastGateBuy)

         return 1;


   if(close1<ma200 && close1<ma75)

      if(close2>ma9_2 && close1<ma9_1 && lastGateSell)

         return -1;


   return 0;

}


//==================== STRUCTURAL STOP ====================//

void CheckStructuralStop()

{

   if(!PositionSelect(_Symbol)) return;

   if(PositionGetInteger(POSITION_MAGIC)!=Magic) return;


   int type=(int)PositionGetInteger(POSITION_TYPE);


   double entryHigh=entryCandleHigh;

   double entryLow=entryCandleLow;


   int countAgainst=0;


   for(int i=1;i<=3;i++)

   {

      double c=iClose(_Symbol,_Period,i);


      if(type==POSITION_TYPE_BUY)

      {

         if(c < entryLow) countAgainst++;

      }


      if(type==POSITION_TYPE_SELL)

      {

         if(c > entryHigh) countAgainst++;

      }

   }


   if(countAgainst>=3)

   {

      trade.PositionClose(_Symbol);

   }

}


//==================== PARCIAL ====================//

void ManagePartial()

{

   if(!PositionSelect(_Symbol)) return;

   if(PositionGetInteger(POSITION_MAGIC)!=Magic) return;


   ulong ticket=PositionGetInteger(POSITION_TICKET);

   double profit=PositionGetDouble(POSITION_PROFIT);


   datetime openTime=(datetime)PositionGetInteger(POSITION_TIME);


   if((TimeCurrent()-openTime) < PartialAfterMinutes*60)

      return;


   if(partialTicketDone==ticket) return;


   if(profit<=0)

   {

      if((TimeCurrent()-lastPartialAttempt)<300)

         return;


      lastPartialAttempt=TimeCurrent();

      return;

   }


   double volume=PositionGetDouble(POSITION_VOLUME);

   double step=SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_STEP);

   double minLot=SymbolInfoDouble(_Symbol,SYMBOL_VOLUME_MIN);


   double closeVol=volume*(PartialPercent/100.0);

   closeVol=MathFloor(closeVol/step)*step;


   if(closeVol<minLot || volume-closeVol<minLot) return;


   trade.SetDeviationInPoints(SlippagePoints);


   if(trade.PositionClosePartial(_Symbol,closeVol))

   {

      if(PositionSelect(_Symbol))

      {

         double entry=PositionGetDouble(POSITION_PRICE_OPEN);

         double tp=PositionGetDouble(POSITION_TP);


         trade.PositionModify(_Symbol,NormalizePrice(entry),tp);

      }


      partialTicketDone=ticket;

   }

}


//==================== INIT ====================//

int OnInit()

{

   hMA200=iMA(_Symbol,_Period,200,0,MODE_EMA,PRICE_CLOSE);

   hMA75=iMA(_Symbol,_Period,75,0,MODE_EMA,PRICE_CLOSE);

   hMA9=iMA(_Symbol,_Period,9,0,MODE_EMA,PRICE_CLOSE);


   weeklyStartEquity=AccountInfoDouble(ACCOUNT_EQUITY);

   dailyStartBalance=AccountInfoDouble(ACCOUNT_BALANCE);


   lastBar=iTime(_Symbol,_Period,0);

   lastDayCheck=TimeCurrent();


   return INIT_SUCCEEDED;

}


//==================== ON TICK ====================//

void OnTick()

{

   CheckStructuralStop();

   ManagePartial();

   CheckWeeklyDD();

   CheckDailyTarget();


   static ulong lastHistoryTicket=0;


   HistorySelect(0,TimeCurrent());


   int total=HistoryDealsTotal();


   if(total>0)

   {

      ulong ticket=HistoryDealGetTicket(total-1);


      if(ticket!=lastHistoryTicket)

      {

         double profit=HistoryDealGetDouble(ticket,DEAL_PROFIT);


         if(profit>0) totalWins++;

         if(profit<0) totalLosses++;


         totalTrades++;


         lastHistoryTicket=ticket;

         lastTradeOpenTime=TimeCurrent();

         galeLevel=0;

      }

   }


   if(lastTradeOpenTime>0)

   {

      if((TimeCurrent()-lastTradeOpenTime) < TradeCooldownMinutes*60)

         return;

   }


   if(weeklyLock) return;

   if(dailyLock) return;

   if(!IsTradingTime()) return;

   if(!BrokerCanTrade()) return;

   if(HasPosition()) return;

   if(!IsNewBar()) return;


   UpdateGate();


   int sig=Signal_3Wave();

   if(sig==0) return;


   double lot=CalculateLot();

   if(lot<=0) return;


   double ask=SymbolInfoDouble(_Symbol,SYMBOL_ASK);

   double bid=SymbolInfoDouble(_Symbol,SYMBOL_BID);


   trade.SetExpertMagicNumber(Magic);

   trade.SetDeviationInPoints(SlippagePoints);


   if(sig>0)

   {

      double entry=ask;

      double prevLow=iLow(_Symbol,_Period,1);


      entryCandleLow=prevLow;

      entryCandleHigh=iHigh(_Symbol,_Period,1);


      double sl=NormalizePrice(prevLow);


      double risk=entry-sl;

      if(risk<=0) return;


      double tp=NormalizePrice(entry+(risk*FiboTP));


      trade.Buy(lot,_Symbol,0,sl,tp);

   }

   else

   {

      double entry=bid;

      double prevHigh=iHigh(_Symbol,_Period,1);


      entryCandleHigh=prevHigh;

      entryCandleLow=iLow(_Symbol,_Period,1);


      double sl=NormalizePrice(prevHigh);


      double risk=sl-entry;

      if(risk<=0) return;


      double tp=NormalizePrice(entry-(risk*FiboTP));


      trade.Sell(lot,_Symbol,0,sl,tp);

   }


   DrawScorePanel();

}


//==================== SCORE PANEL ====================//

void DrawScorePanel()

{

   todayProfit = AccountInfoDouble(ACCOUNT_EQUITY) - dailyStartBalance;


   double winrate=0;

   if(totalTrades>0)

      winrate=(double)totalWins/(double)totalTrades*100.0;


   string statusEA = (weeklyLock||dailyLock ? "LOCKED":"ACTIVE");


   Comment(

   "\n====== REX SCORE ======",

   "\nTrades: ",totalTrades,

   "\nWins: ",totalWins,

   "\nLosses: ",totalLosses,

   "\nWinrate: ",DoubleToString(winrate,2),"%",

   "\nProfit Today: ",DoubleToString(todayProfit,2),


   "\n\nStatus EA: ",statusEA

   );

daqui pra cima é um cod de um EA de DAy trade extremamente lucrativo ... 

------------------------------------------------------------------------------------------------------------------------------

Prodotti consigliati
Gold M3 Doji Breakout H1 Gold M3 Doji Breakout H1 is an automated MetaTrader 5 Expert Advisor designed to identify a fixed M3 compression structure inside a closed H1 candle and evaluate a breakout during the following H1 trading window. This product is designed for Gold symbols. Its default absolute-price distances are not intended for Forex pairs, cryptocurrencies or stock indices. Position management The EA divides the position into three stages: - Stage 1 closes at the configured first
Risk Guard Pro
Muniz Machado Thiago
RiskGuard PRO – Defesa Inteligente para Traders Sérios no EURJPY M15 O RiskGuard PRO é um Expert Advisor de alto desempenho, projetado exclusivamente para o par EURJPY no timeframe M15 , com foco total em preservação de capital, gestão de risco avançada e execução estratégica de múltiplas abordagens operacionais . Ao contrário dos EAs tradicionais, o RiskGuard PRO foi desenvolvido com tecnologia proprietária e arquitetura inteligente , capaz de operar com segurança mesmo em ambientes de merc
XAU Momentum Sniper
Napat Puangjunkum
XAUUSD MOMENTUM SNIPER AI  MMD Precision Sniper - Know exactly which pip the trend runs out of gas. XAUUSD Momentum Sniper AI is a revolutionary trading robot built on the elite "Momentum Mass Decay (MMD)" theory. Retail traders constantly get burned because they try to guess resistance and support lines. The reality is: Gold doesn't stop because it hits an imaginary line; it stops because it RUNS OUT OF FUEL. This AI converts Tick Volume into a measurement of "Fuel" and compares it against
XAU vs USD
Pablo Filipe Soares De Almeida
XAU vs USD — EA AUTOMATIZZATO PER L'ORO (XAUUSD) - 24H XAU vs USD è un Expert Advisor sviluppato esclusivamente per operare sulla coppia XAUUSD, con particolare attenzione alla semplicità d'uso e a una gestione del rischio integrata. CONFIGURAZIONE SEMPLICE, SENZA COMPLICAZIONI. L'EA è già pronto per l'uso, con una configurazione conservativa e lotto minimo (0.01), ideale per chi vuole testare in sicurezza o operare con basso rischio fin dall'inizio. Non è necessario regolare decine di parametr
FTrend3
Sonia Tait
Este EA combina a tendência do tempo gráfico principal com mais dois tempos gráficos configuráveis. Os stops são técnicos baseados na técnica dos canais OffRoad. Ao executar otimizações, é interessante buscar as combinações de tempos gráficos que corroboram para um bom resultado para cada ativo e seu comportamento. Estudos apontam para resultados mais assertivos quando os testes são feitos nos últimos meses para operar no próximo. O período do ADX e das bandas de Bollinger também podem variar co
Router Regime eurusd M15
Marcelo Do Couto Rodrigues
Router Regime EURUSD M15 is a rule-based Expert Advisor for MetaTrader 5, designed mainly for EURUSD on the M15 timeframe. (Se o robô estiver te ajudando, deixe uma avaliação rápida. Isso me ajuda muito a continuar melhorando e lançando novas versões). (If the robot is helping you, please leave a quick review. This helps me a lot to keep improving and releasing new versions) The EA uses a multi-timeframe structure: M15 for entries H1 for market regime H4 for directional bias It does not use ar
FREE
The Inside Bar e one is a reversal/continuation candle formation, and is one of the most traded candle patterns. Robot F1 allows you to configure different trading strategies, Day Trade or swing trade, based on the Inside Bar as a starting point.  This pattern only requires two candles to perform. Robot F1 uses this extremely efficient pattern to identify trading opportunities. To make operations more effective, it has indicators that can be configured according to your strategy. Among the o
EA builder master
Davi Silva Campos
Unisciti al nostro gruppo e aiutaci a costruire un EA migliore e a scoprire setup redditizi. https://discord.gg/ebPS82eM EA Builder Master: Domina il Mercato con Automazione Intelligente e Controllo Totale  Lo strumento definitivo per i trader che desiderano costruire, testare e automatizzare le proprie strategie in MetaTrader 5, senza scrivere una sola riga di codice. Ti sei mai sentito frustrato per aver perso opportunità perché non eri davanti al grafico? Hai mai lottato contro l'indisciplina
FREE
SemisScalpel
Andriy Sydoruk
The   SemiScalpel   Expert Advisor is a semi-scalping system which analyzes the market using an oscillator. During tests use the "Every tick" mode. The expert works only with accounts like "Netting" Adjust   StopLoss ,   TakeProfit ,   TrailingStart ,   TrailingBreakeven   and   TrailingStop   to set the system operation mode: scalping or standard. Simple overbought/oversold levels are used. You can use one of the indicators (select the value of the   Signal   parameter): RSI CCI WPR DEM MOM RVI
SMC Liquidity Core
Fateh Lal Jeengar
SMC Liquidity Core MT5 Professional Smart Money Concepts Expert Advisor for MetaTrader 5 SMC Liquidity Core MT5 is a professional fully automated Expert Advisor designed for traders who want to trade XAUUSD (Gold) using institutional Smart Money Concepts (SMC) . The EA has been carefully developed to identify Liquidity Sweeps , validate Change of Character (CHoCH) , and execute trades only after market structure confirms a potential reversal. Instead of relying on traditional lagging indicators,
Aurion Edge Pro Gold AI
Diogenes De Souza Negreiros
Aurion Edge Pro Gold AI Expert Advisor Professionale per XAUUSD (Gold) | MetaTrader 5 (MT5) Aurion Edge Pro Gold AI è un Expert Advisor professionale per MetaTrader 5 (MT5) sviluppato appositamente per il trading automatico di XAUUSD (Gold) . Il sistema combina Intelligenza Adattiva , Price Action , Smart Money Concepts (SMC) , analisi Multi-Timeframe e una gestione professionale del rischio per identificare opportunità di trading ad alta probabilità. A differenza dei tradizionali robot di tradi
Trend Follow EMA Dash Fit V2
Aguinaldo Ferreira Costa
EMA 200 Trend Master Pro A Estratégia das Instituições no Seu Gráfico O EMA 200 Trend Master Pro é um Expert Advisor (EA) de alta performance projetado para traders que buscam operar a favor da tendência principal do mercado. Ele utiliza a Média Móvel Exponencial de 200 períodos , amplamente reconhecida por grandes bancos e fundos de investimento como o "divisor de águas" entre mercados de alta (Bull Market) e baixa (Bear Market). Como a Estratégia Funciona? O robô monitora o preço em tempo real
Dynamic Linear Regression EA
Abraao Moreira
4.75 (8)
The Expert Advisor (EA) is based on the Dynamic Linear Regression indicator ( https://www.mql5.com/en/market/product/49702 ). User inputs: Number of candles is considered when calculating linear regression; Distance to the top line; Distance to the bottom line; Stop the loss of. The EA executes purchase and sale orders in the market when the value of a line, higher or lower, is reached at the current price, when the lower line is reached, a buy order at market is executed and when the upper li
FREE
Ratio X Gold ML
Mauricio Vellasquez
Ratio X Gold ML EA — Adaptive AI Trading System for Gold (XAUUSD) Important: The EA includes a built-in Validation Mode to pass MQL5 Market tests automatically. Switch to ML Mode for live trading after installation. Overview Ratio X Gold ML EA is an advanced Expert Advisor developed for trading XAUUSD (Gold) using a hybrid AI-driven model and rule-based logic. It merges deep learning predictions with technical analysis filters, balancing adaptability and discipline. The system was trained on l
RoyalTrade Pro
Milton Giovanny Jaramillo Herrera
RoyalProfit EA Pro - Automated London/New York Breakout System Leverage the strategy used by institutional traders: Identify key levels during the London session and execute precise breakouts when New York opens. 100% automated. What Does This EA Do? RoyalProfit EA Pro implements a proven institutional strategy: during the London trading session, the EA automatically marks the maximum and minimum price range levels. When New Y
Reversion Trend Tracker
Arthur Wesley Oliveira Leite
Expert Advisor that seeks reversals of highly profitable trends. Its use is recommended for periods of up to 30 minutes. It can be used for indices, futures and stocks. Its configuration is very intuitive. Superior results are obtained through swing-trade operations. But excellent results are also obtained in day-trading operations. Tests were performed for Timeframes of 5, 10, 15, 20 and 30 minutes.  For day-trade operations, daily, in the final hour, all positions are closed.  For swing-trade
Turis Eurjpy
Fabriel Henrique Dosta Silva
Descrição do Produto: Decsters EURJPY M15 Taris O Decsters EURJPY M15 Taris é um Expert Advisor (EA) automatizado, projetado para operar no par de moedas EUR/JPY utilizando o gráfico de 15 minutos (M15). Ele executa estratégias de negociação automatizadas com base em sinais de mercado predefinidos, otimizando a eficiência e a velocidade das transações. Características: • Por Moedas: EUR/JPY • Período: 15 minutos • Estratégia: O EA utiliza indicadores técnicos avançados, como meios móveis expo
X7pro
Viktor Mitrofanov
X7 PRO — Adaptive Trade Driver. Shifts when the market shifts.  = XAU, CFD, FOREX = X7 PRO was built with a deep understanding of trading's core axiom: the market never stands still, and the search for a single "holy grail" formula is destined to fail. The purpose of this tool is not to guess the market, but to synchronize with it. We designed it as a flexible, adaptive environment that remains "alive" through every phase of the market cycle. It doesn't provide ready-made answers — it provides
FiveStarFX Gold Reversal Edge Professional automated trading solution designed for structured execution and controlled risk management in the Gold market. Built for traders who value discipline, precision, and consistency. Key Features Fully automated trading One trade at a time (controlled exposure) Fixed Stop Loss and Take Profit Smart Break-Even protection Profit lock with buffer Step-based trailing management Spread protection system Works on any broker Trade Management The E
FREE
XAUUSD Liquid AI – M1 Momentum Scalping Expert Advisor ORIGINAL PRICE $1500 TAKE THE OPPORTUNITY NOW WHILE OFFER LASTS XAUUSD Liquid AI is an automated trading system that analyses short-term price momentum using micro-trend analysis, volatility filters and adaptive trade management. The Expert Advisor combines momentum analysis, exponential moving averages, candle structure, tick volume and Average True Range (ATR) calculations to determine trade entries according to its configured rules. The
GoldGridMVP
Steven Wong Sing Seng
Gold Grid MVP is a MetaTrader 5 Expert Advisor for trend pullback trading with optional grid scaling and basket profit management. It combines higher-timeframe trend context with lower-timeframe entry timing, then manages multiple legs as one basket. Features H1 trend filter with M15 pullback entries Fixed-lot style grid scaling (configurable layers) Basket take-profit and optional basket loss exit Risk profiles: conservative, standard, aggressive Daily and total drawdown guards Optional news, s
Gold Zone EA
Simon Reger
4.04 (46)
Gold Zone EA is a fully automated Expert Advisor that analyzes market structure using supply and demand zones and executes trades based on defined price reactions. The EA combines zone detection, momentum analysis, EMA filtering, multiple take-profit levels, break-even logic, trailing stop and an integrated manual trading panel directly on the chart. The EA works on many symbols, including: XAUUSD, EURUSD, GBPUSD, USDJPY, BTCUSD as well as numerous other Forex, index and CFD instruments. No ext
FREE
Touch Of God
Francisco De Biaso Neto
Touch Of God is a Grid and Hedge Expert Advisor for MetaTrader 5. It manages a basket of positions on both sides of the market, adding new orders as price moves against the current basket and closing each side once it reaches a defined profit target. How It Works On start, the EA opens a Buy and a Sell position at the same time. If price moves against one side by the configured Grid Space, a new position is added on that side with a larger volume, following the chosen lot formula (constant, line
Orizon 4MA Trend
Aguinaldo Ferreira Costa
Descrição Comercial (Copywriting) Português Orizon 4MA Trend – Estratégia de Confluência de Médias Móveis O Orizon 4MA Trend é um Expert Advisor (EA) de alta performance desenvolvido para traders que buscam operações seguras e consistentes baseadas em tendências. Ele utiliza a confluência de 4 médias móveis (9, 21, 50 e 200 períodos) para identificar o "momento exato" em que o preço ganha força direcional. Por que escolher o Orizon? Filtro de Ruído: Só entra em operações quando as 4 médias estão
Exclusive EA for FOREX HEDGE account The EA (FuzzyLogicTrendEA) is based on fuzzy logic strategies based on the analysis of a set of 5 indicators and filters. Each indicator and filter has a weight in the calculation and, when the fuzzy logic result reaches the value defined in the EA parameter, a negotiation is opened seeking a pre-defined gain. As additional functions it is possible to define maximum spread, stop loss and so on . Recommended Symbol: EURUSD, AUDUSD, GBPUSD, NZDUSD, USDCAD, AUD
Alpha Trend Premium
Cesar Henrique Alves Tomaz
Alpha Trend Premium – MT5 Trend Trading Expert Advisor New release – Stable trend trading strategy with strict risk control Alpha Trend Premium is a professional trend-following Expert Advisor for MetaTrader 5 , developed in MQL5 , designed for traders who value consistency, discipline, and capital protection . Includes 15 activations , ideal for traders using multiple accounts, VPS, or prop firm environments . How Alpha Trend Premium Works Alpha Trend Premium executes trades only when a c
Maximum Infinity Pro – EA Grid Avanzato per MT5 Maximum Infinity Pro è un Expert Advisor (EA) di livello professionale progettato per MetaTrader 5, che combina una logica di trading a griglia avanzata con una robusta gestione del rischio e strategie di entrata/uscita adattive. Questo EA è adatto sia ai trader principianti che a quelli esperti che desiderano una soluzione di trading affidabile, flessibile e completamente automatizzata. Caratteristiche Principali Sistema a Griglia Intelligente (S
SkyNet Fx EA
Fernando De Paljla Silva
SkyNet EA uses the Mean Return strategy plus Filters to generate a market entry signal.  This setup is frequently used by professional traders around the world. If you want a reliable EA, SkyNet EA is for you.  SkyNet EA   does not use AI or martingale, it does not work miracles, but it is safe. The results shown in the images are out of sample, therefore much more reliable. The SkyNet EA has been subjected to a long period of more than ten years of Backtesting with Tick by Tick data, using the
EMA256 Fourier Cycle Trader EMA256 Fourier Cycle Trader is an advanced MetaTrader 5 Expert Advisor combining a long-term EMA or TEMA trend model, causal Fourier cycle analysis, configurable averaging and a unified basket take-profit system. The Expert Advisor is designed primarily for CENT accounts and for traders who understand basket recovery strategies, geometric lot progression and the risks associated with trading without a mandatory Stop Loss. RECOMMENDED STARTING CONFIGURATION Recommended
Gli utenti di questo prodotto hanno anche acquistato
Quantum Commander
Bogdan Ion Puscasu
4.5 (8)
L'ecosistema Quantum sta entrando in un nuovo campo di battaglia e un nuovo Comandante ne sta prendendo il comando. Sviluppato in esclusiva per l'indice US30, Quantum Commander è l'Expert Advisor completamente automatizzato creato per uno dei mercati più dinamici al mondo. In un mondo saturo di Expert Advisor (EA) di altissima qualità, Quantum Commander si distingue nettamente. Dopo diverse uscite incentrate sull'ORO, ci addentriamo in un nuovo territorio con US30: un nuovo strumento, una stra
Quantum Titan MT5
Bogdan Ion Puscasu
4.87 (30)
Portando il trading di livello istituzionale nell'ecosistema Quantum, Quantum Titan definisce un nuovo standard in termini di precisione, disciplina e prestazioni comprovate sui mercati reali. Sviluppato per i trader che si aspettano di più da un Expert Advisor GOLD, Titan rappresenta la prossima evoluzione della tecnologia di trading quantistico. La disponibilità è strettamente limitata a 1.000 licenze a vita in tutto il mondo. Una volta esaurite tutte le 1.000 copie, Quantum Titan non sarà p
MoonDog EA
James Vito Armin Bianchini
4.79 (24)
MoonDog EA è un Expert Advisor multi-strategia basato sui breakout, sviluppato specificamente per XAUUSD su MetaTrader 5. Il sistema combina cinque strategie di breakout indipendenti, progettate per individuare differenti condizioni di breakout ed espansione del prezzo. MoonDog non utilizza martingala, modalità recovery, grid recovery, moltiplicazione dei lotti o mediazione delle perdite. Ogni operazione viene aperta con il proprio Stop Loss e Take Profit predefiniti. Le posizioni in perdita non
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (47)
La leggenda continua. La regina si evolve. Benvenuti in Quantum Queen X, la nuova generazione del leggendario sistema di trading sull'ORO che si basa sul comprovato successo di Quantum Queen. Quantum Queen X si basa sullo stesso motore collaudato di Quantum Queen, introducendo una nuova e potente modalità personalizzata che consente ai trader di scegliere esattamente quali strategie attivare o disattivare. Ogni strategia è stata individualmente rivista, perfezionata e ottimizzata per offrire pre
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
PROP FIRM PRONTO! (   scarica SETFILE   ) AVVERTIMENTO: Rimangono solo poche copie al prezzo attuale! Prezzo finale: 990$ Ricevi 1 EA gratis (per 3 account di trading) -> contattami dopo l'acquisto Offerta combinata definitiva     ->     clicca qui UNISCITI AL GRUPPO PUBBLICO:   Clicca qui   Segnale in diretta Segnale del client Recensioni di YouTube ULTIMO MANUALE Benvenuti al Gold Reaper! Basato sul collaudato Goldtrade Pro, questo Expert Advisor è stato progettato per funzionare contempora
Ghost Scalper MT5
Thomas Christoph Lipka
5 (8)
Ghost Scalper MT5 Ghost Scalper MT5 è un Expert Advisor completamente automatico sviluppato per XAUUSD / Oro su MetaTrader 5 . Ghost è stato progettato per movimenti selettivi di breakout e momentum nel mercato dell'oro. L'EA attende le proprie condizioni interne di mercato e non apre continuamente operazioni. Modello di prezzo: il prezzo aumenta di 100 USD ogni 10 vendite fino a raggiungere il prezzo finale di 1.499 USD . 4 STRATEGIE INDIPENDENTI Ghost A Ghost B Ghost C Ghost D Ogni strategia d
Iron Stops
Fajar Dicky Firmansyah
4.5 (52)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 Zero trucchi. Nessuna affermazione vuota. Iron Stops si rivolge ai trader focalizzati su un aspetto cruciale: coerenza . Che tu stia affrontando una prop challenge o gestendo fondi di clienti, questo EA resta nei confini stabiliti e fornisce risultati affidabili. Posizioni chiuse entro 36 ore. Eseguilo su un singolo grafico: Applicalo semplicemente a XAUUSD utilizzando il timeframe M30 . È tutto ciò di cui hai bisogno. Un grafico. Uno
Smart Gold Hunter
Barbaros Bulent Kortarla
4.05 (61)
No Grid / No Martingale / No Recovery / No Hedging / Single Entry with SL / One Shot Smart Gold Hunter è un Expert Advisor per il trading di XAUUSD / Gold su MetaTrader 5. È progettato per trader che preferiscono un EA sul gold senza grid, senza martingala, con vera logica di Stop Loss e Take Profit, e con gestione del rischio controllata. Puoi controllare il segnale live prima di prendere una decisione: Live Main Signal : https://www.mql5.com/en/signals/2365400?source=Site Smart Gold Hunter non
Ultimate Breakout System
Profalgo Limited
5 (48)
IMPORTANTE   : Questo pacchetto sarà venduto al prezzo attuale solo per un numero molto limitato di copie.    Il prezzo salirà presto a 1999$!   Oltre 300 strategie incluse   e altre in arrivo! BONUS   :   scegli   5    dei miei altri Expert Advisor gratuitamente!   TUTTI I FILE DI INSTALLAZIONE + GUIDA COMPLETA ALL'INSTALLAZIONE E ALL'OTTIMIZZAZIONE VIDEO GUIDA SEGNALI IN DIRETTA RECENSIONE (di terze parti) NUOVO - SEGNALE LIVE CON 44 STRATEGIE Benvenuti nel SISTEMA DEFINITIVO DI SBLOCCAGGI
Scalping Robot Pro MT5
MQL TOOLS SL
4.37 (157)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Aikon MT5
William Brandon Autry
Aikon cambia il modo in cui utilizzi un Expert Advisor. PREZZO DI LANCIO — PRIME 24 ORE Aikon viene lanciato con un prezzo introduttivo. Il prezzo attuale sul Market sarà disponibile per le prime 24 ore dopo il rilascio e aumenterà successivamente. Inizia rapidamente. Parla con il sistema in modo naturale. Scegli come le operazioni assumono rischio. Controlla quanto capitale è autorizzato a lavorare. Usa l’IA in tutta l’operazione senza pagare per chiamate inutili. AVVIO RAPIDO — Nuovo con l’IA?
ThunderGold Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.59 (17)
ThunderGold Scalper ThunderGold Scalper è un Expert Advisor sviluppato per il trading automatico dell’oro su MetaTrader 5. L’EA è progettato per XAUUSD e GOLD sul timeframe M15. Utilizza un motore decisionale multifattoriale proprietario per identificare opportunità di trading qualificate e gestire automaticamente le posizioni. Il sistema combina struttura del mercato, direzione del trend, qualità delle candele, volume, momentum e controlli di esecuzione. È progettato per attendere condizioni ap
GoldenShot
Adam Hrncir
5 (9)
Last copies at 169 USD  /   199 USD next  /   399 USD final price. The earlier you decide, the less you pay. Check the live signal   /   Read the manual  / Why are the back-test numbers that good - is it real or over-fitted? One shot. One target. Zero recovery. GoldenShot is a single-position gold EA built for controlled, long-term trading. It waits for a qualified setup, takes one clean shot with a real stop loss, and if the idea does not work, it manages the trade instead of rescuing it. No
Silent Exit MT5
Fajar Dicky Firmansyah
5 (6)
Niente trucchi. Niente promesse vuote. Silent Exit è progettato per i trader che si concentrano su un unico obiettivo: performance costanti .  Tutte le coppie Major incluse:  EURUSD,USDCAD,USDJPY,NZDUSD,USDCHF,AUDUSD,GBPUSD Che tu stia affrontando una challenge di prop trading o gestendo fondi dei clienti, questo EA mantiene la disciplina — e produce risultati. Link SIGNAL: https://www.mql5.com/en/signals/2388541 Ricorda che questo è un conto Darwinex Zero da 100k e non ho depositato 100k. Ser
Quantum King EA
Bogdan Ion Puscasu
4.96 (219)
Quantum King EA: potenza intelligente, raffinata per ogni trader IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. Prezzo di lancio speciale Segnale in diretta:       CLICCA QUI Versione MT4:   CLICCA QUI Canale Quantum King:       Clicca qui ***Acquista Quantum King MT5 e potresti ottenere Quantum StarMan gratis!*** Chiedi in privato per maggiori dettagli! Gestisci   le tue attività di trading con precisione
Quantum Athena X
Bogdan Ion Puscasu
5 (11)
Controllo più intelligente. Precisione raffinata. Benvenuti in Quantum Athena X, la nuova generazione del sistema di trading sull'ORO focalizzato, che si basa sulla precisione, l'efficienza e la disciplina di esecuzione di Quantum Athena. Quantum Athena X si basa sullo stesso motore di trading ottimizzato e sulle stesse 6 strategie accuratamente selezionate di Quantum Athena. Ogni strategia è stata perfezionata e ottimizzata individualmente per le attuali condizioni del mercato dell'oro, ment
Lizard
Marco Scherer
4.22 (50)
Che cos'è Lizard? Lizard è un Expert Advisor completamente automatico per XAUUSD (oro) su MetaTrader 5. Utilizza un sistema di breakout di swing a più strategie: l'Expert Advisor individua i livelli strutturali chiave sul grafico e colloca ordini stop pendenti in punti di ingresso calcolati. Niente martingala, niente griglia, nessuna mediazione in perdita. Ogni operazione viene aperta con stop loss e take profit definiti e viene poi gestita da un sistema di uscita a più livelli, ininterrottament
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
Zerqon EA
Vladimir Lekhovitser
3.47 (34)
Segnale di trading in tempo reale Monitoraggio pubblico in tempo reale dell’attività di trading: https://www.mql5.com/it/signals/2372719 Informazioni ufficiali Profilo del venditore Canale ufficiale Manuale utente Istruzioni di configurazione e utilizzo: Apri manuale utente Zerqon EA è un Expert Advisor adattivo sviluppato specificamente per il trading su XAUUSD. La strategia si basa su un modello di rete neurale Deep LSTM integrato tramite ONNX, consentendo al sistema di elaborare il
Cepheus
Thierry Ouellet
5 (1)
LIMITED LAUNCH SPECIAL: 149 USD (Next Tier: 199 USD / Final Price: 399 USD) Price automatically increases by +50 USD every 10 licenses sold .  User manual Live signals Cepheus Loyalty Cepheus Discipline Cepheus Ultimate (both breakout engines Two Synergistic Engines. Zero Grid. Zero Martingale. Defined Risk. Cepheus is a dual-engine algorithmic trading system developed specifically for XAUUSD (Gold) . Instead of relying on a single trading model, Cepheus combines two independent strategies des
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.4 (139)
Meno trade. Trade migliori. La costanza prima di tutto. • Segnale in Tempo Reale Modalità 1  Segnale Live Modalità 2 Twister Pro EA è un Expert Advisor di scalping ad alta precisione sviluppato esclusivamente per XAUUSD (Oro) sul timeframe M15. Opera meno — ma quando lo fa, lo fa con uno scopo. Ogni ingresso passa attraverso 5 livelli indipendenti di validazione prima che venga aperto un singolo ordine, risultando in un tasso di successo estremamente elevato nella configurazione predefinita.
Cortex IDX
Vladimir Mametov
4 (8)
Questo è un Expert Advisor completamente automatizzato per MetaTrader 5, sviluppato specificamente per il trading sull'indice US30 . La sua logica di trading è progettata in base al comportamento dinamico dei principali indici azionari: forti movimenti direzionali, pullback intraday e periodi di elevata volatilità. L'EA automatizza il trading in un ambiente in cui velocità di esecuzione, disciplina e gestione efficiente delle posizioni sono fondamentali. Il sistema si concentra su una gestione d
Gold Bomb
Aleksandr Makarov
5 (1)
Se stai leggendo questo messaggio - hai trovato il Santo Graal nel mercato!!! L'expert advisor si basa sui miei   indicatori proprietari . Niente   IA   o altre sciocchezze. Solo una combinazione di indicatori, livelli e price action. Non utilizza metodi di trading pericolosi, opera su   XAUUSD M1  e con le coppie di valute! Imposta sempre   Stop Loss   e   Take Profit . Segnale reale: https://www.mql5.com/en/signals/2388322 Assicurati di contattarmi dopo l'acquisto e di inviarmi il numero del t
Neo Delta
Marco Scherer
Neo Delta è un Expert Advisor automatizzato per MetaTrader 5 che opera esclusivamente sull'Oro (XAUUSD). Le sue decisioni si basano sul momentum del delta di volume – l'equilibrio tra pressione di acquisto e di vendita all'interno di ogni candela. Un filtro di machine learning esamina ogni potenziale ingresso prima di aprire una posizione. Supporto Nel nostro team i compiti sono suddivisi: una parte lavora allo sviluppo, una parte segue i clienti. Per installazione, configurazione e qualsiasi al
Scalping Index Pro is a professional trading system designed specifically for fast and precise scalping on US30 and DE40 using the M1 timeframe . The system has been developed specifically for the unique behavior of major stock indices, focusing on short term price movements, rapid momentum changes, market volatility, and selective grid based trade management techniques to identify high probability trading opportunities . Scalping Index Pro is optimized for traders who prefer dynamic trading wit
Gold Snap
Chen Jia Qi
4.57 (23)
Gold Snap — A Fast Profit Capture System for Gold Gold Snap v2.1 launch offer: the first 10(7 left) unlimited licenses are $599 with a free internal EA, ending in 7 days or when sold out (regular price $999). Live Signal: https://www.mql5.com/en/signals/2362714 Live Signal2: https://www.mql5.com/en/signals/2372603 Live Signal 3: https://www.mql5.com/en/signals/2379945 Important: After purchase, please contact us via MQL5 private message to receive the user guide, recommended settings, install
The Gold Space
Ayush V Jain
5 (6)
LIVE SIGNAL REACHED NEW HIGH Live Signal on Vantage https: // www.mql5.com/en/signals/2378090 https: // www.mql5.com/en/signals/2378091 live signal is running mode/option 1 with autolot 2 % risk. Join telegram group   https://t.me/+UaALtDiYMb4xYTk1 Overview:  The Gold Space is a fully automated, professional-grade Expert Advisor specifically engineered for the XAUUSD (Gold) market. Designed natively for MetaTrader 5, this EA capitalizes on high-probability volatility expansions using a precise,
Swing Forge Gold
Hanzla Khalil
5 (4)
SwingForge Gold MT5 — Multi-Zone Breakout Engine 4 Copies left then the price will be increased to: $299 — Current Price: $249 If you’ve traded Gold (XAUUSD), you already know the problem: most automated EAs rely on dangerous grids, martingale, or cost-averaging that look great until one big trend wipes out the account. SwingForge Gold was built on the opposite philosophy: strict risk management and pure price action. It trades confirmed swing breakouts using pending stop orders. Every sin
Smart Gold Impulse
Barbaros Bulent Kortarla
4 (24)
Senza Grid / Senza Martingala / Senza DCA / Senza Recovery Smart Gold Impulse è ora disponibile in una fase speciale di lancio anticipato. Puoi seguire i risultati del segnale qui a scopo informativo, https://www.mql5.com/en/signals/2390103. I risultati possono variare significativamente tra broker, tipi di conto, condizioni di slippage, spread e configurazioni VPS. I file di impostazione del conto segnale attualmente in esecuzione e il link di accesso alla chat live saranno condivisi solo con
SomaGold
Andrii Soma
5 (10)
SomaGold è un Expert Advisor multi-strategia di breakout per MetaTrader 5, realizzato esclusivamente per l'oro (XAUUSD). Un grafico, un EA, 32 strategie indipendenti che operano insieme come un unico portafoglio diversificato. Segnale live. È il mio primo EA pubblicato su MQL5. Per renderlo accessibile al lancio uso un modello di prezzo a scalini trasparente: Prezzo di lancio: 100 USD Il prezzo aumenta di 100 USD ogni 10 copie vendute Chi acquista per primo blocca il prezzo più basso per tutta l
Filtro:
Nessuna recensione
Rispondi alla recensione