NeuroPrice Navigator

NeuroPrice Navigator 2.0 — intelligent trading advisor based on the TCNN-LSTM neural network model with an attention mechanism

Brief description

NeuroPrice Navigator 2.0 is a fully automated trading advisor for MetaTrader 4 that uses a hybrid TCNN-LSTM neural network architecture with a Feature Attention mechanism to predict the direction of price movement and make trading decisions. The advisor trains itself on historical data, adapts to changing market conditions, and is equipped with a built-in risk management system.

Principle of operation

The advisor is based on its own neural network model, which combines three key components:

  1. Temporal Convolutional Neural Networks (TCNN) — analyze a sequence of 64 previous bars, identifying local patterns and impulsive market movements. Two convolutional layers with 24 and 12 filters allow the model to recognize short-term and medium-term structures in price data.

  2. Feature Attention mechanism — evaluates the importance of each feature at each moment in time, automatically focusing on the most significant signals. This allows the model to ignore market noise and highlight truly important patterns.

  3. Long Short-Term Memory (LSTM) — processes the time sequence after the convolutional layers and the attention mechanism, remembering long-term dependencies and market context. A recurrent layer of 12 LSTM blocks allows the model to take history into account when forming a forecast.

The model outputs the probability of price growth (P(up)) in the range from 0 to 1. Based on this value, a trading signal is formed:

  • P(up) ≥ 0.65 — strong BUY signal;

  • P(up) ≤ 0.35 — strong SELL signal;

  • 0.35 < P(up) < 0.65 — uncertainty zone, no trade is opened.

The advisor automatically retrains every 12 bars on a rolling history window (600 bars by default), using backpropagation through time (BPTT) with an adaptive learning rate and L2 regularization. The training process includes cross-validation with chronological fold splitting, which prevents overfitting and ensures the model’s robustness to market changes.

Advantages

  • Self-learning and adaptability. The advisor does not require manual optimization for a specific currency pair — it trains directly on the chart data where it is installed and automatically rebuilds the model weights when the market regime changes.

  • Hybrid architecture. The combination of convolutional layers, an attention mechanism, and LSTM allows it to simultaneously capture short-term impulses, medium-term trends, and long-term context, which produces more accurate forecasts compared to single-type models.

  • Multi-level deposit protection. Built-in risk management mechanisms include adaptive lot calculation based on free margin, drawdown protection (volume reduction when a specified level is reached), a limit on the maximum number of concurrent positions, spread control, and a volatility filter.

  • Flexible position management. Real and virtual stop losses and take profits are supported, along with a trailing stop with activation and step settings, as well as dynamic distance between orders based on ATR.

  • Information panel. The chart displays a detailed panel with the current signal, model confidence, account status, drawdown, and training progress. The panel also contains manual control buttons (BUY / SELL / CLOSE).

  • State saving. All model parameters, optimizer parameters, and the feature cache are saved to a single file, which allows training to continue after restarting the terminal without losing accumulated knowledge.

Input parameters

Main settings

Parameter Description Default value
MagicNumber Unique identifier for the advisor’s orders 2456
SessionStart Trading session start (UTC hours) 9
SessionEnd Trading session end (UTC hours) 23
UTCOffset Server time offset from UTC (hours) 0
EnableDebugLogging Enable detailed logging true
FixSeedForTesting Fix the random number generator for testing true

Risk management

Parameter Description Default value
LotCalculationMode Lot calculation mode: fixed or based on free margin LOT_MODE_FIXED
FixedLotSize Fixed lot size 0.01
RiskPercent Risk per trade (% of free margin) 1.0
UseEquityProtection Reduce lot at high drawdown true
MaxDrawdownPercent Drawdown (%) after which lot reduction begins 20.0
MaxConcurrentTrades Maximum number of concurrent positions 3

Execution and broker

Parameter Description Default value
InpOrderComment Order comment Trade
MaxSpreadPoints Maximum allowed spread (points) 40
MaxSlippagePoints Maximum slippage (points) 5
ExecutionRetries Number of order submission attempts 3
ExecutionRetryDelayMs Delay between attempts (ms) 250
EnableExecutionDiagnostics Detailed execution diagnostics true

Real SL / TP

Parameter Description Default value
StopLoss Stop loss (points), 0 — disabled 400
TakeProfit Take profit (points), 0 — disabled 200

Virtual SL / TP

Parameter Description Default value
UseVirtualSL Enable virtual stop loss false
VirtualStopLoss Virtual stop loss (points) 0
UseVirtualTP Enable virtual take profit false
VirtualTakeProfit Virtual take profit (points) 0

Trailing stop

Parameter Description Default value
UseTralling_Stop Enable trailing stop true
UseAveragePrice Use the average entry price across all positions true
TrallingStart Profit to activate trailing (points) 400.0
TrailingDistance Distance from price to stop loss (points) 200.0
TrailingStep Minimum SL improvement for modification (points) 50.0

Distance between orders

Parameter Description Default value
FixedDistancePoints Fixed distance (points) 300
UseDynamicDistance Use ATR-based distance false
DynamicDistanceAtrPeriod ATR period for dynamic distance 10
DynamicDistanceMultiplier Multiplier for dynamic distance 1.2

TCNN-LSTM model parameters

Parameter Description Default value
ML_TrainingPeriod Training period (bars) 600
ML_RetrainInterval Retraining interval (bars) 12
Lookback_Window History depth for analysis (bars) 64
ForecastBars Number of bars for forecast 3
ForecastThreshold Forecast threshold (ATR multiplier) 0.5
CNN_Filters Number of CNN filters 24
Kernel_Size Convolution kernel size 5
LSTM_Units Number of LSTM units 12
ML_LearningRate_Input Base learning rate 0.005
ML_DropoutRate Dropout during training 0.20
ML_BuyThreshold BUY threshold: P(up) ≥ this value 0.65
ML_SellThreshold SELL threshold: P(up) ≤ this value 0.35
L2_Lambda L2 regularization coefficient 0.001
Target_MSE Target MSE value for early stopping 0.1
Max_Epochs Maximum number of training epochs 10
EnableShuffle Shuffling (kept for compatibility) false
ML_BatchSize Batch size 16
ML_WalkForwardFolds Number of cross-validation folds 3
ML_LRPatience Epochs without improvement before LR reduction 6
ML_LRDecayFactor LR decay factor 0.5
ML_MinLearningRate Minimum learning rate 0.0001
ML_EnableGradientDiagnostics Gradient diagnostics false
ML_BPTT_GradClipNorm Global gradient clipping norm 5.0
ML_BPTT_SampleClipNorm Per-sample gradient clipping norm 10.0
ML_BPTT_StateClip LSTM state clip 10.0
ML_BPTT_DeltaClip Limit for dh/dc at the BPTT step 5.0

Feature attention mechanism

Parameter Description Default value
Attention_Heads Number of attention heads 2
Enable_Contextual_Attention Enable contextual attention true
Attention_Temperature Temperature for scaling 1.0
Attention_Dropout Dropout for the attention mechanism 0.1

Indicator parameters

Parameter Description Default value
ADX_Period ADX period 10
CCI_Period CCI period 14
WPR_Period Williams %R period 12
STD_Dev_Period Standard deviation period 12
MFI_Period_New Money Flow Index period 10
ATR_Period ATR period 12

Volatility filter

Parameter Description Default value
Volatility_Filter Enable volatility filter false
Min_Volatility Minimum volatility (ATR value) 0.0003
Max_Volatility Maximum volatility (ATR value) 0.012

Usage recommendations

The advisor is intended for trading currency pairs with moderate volatility (for example, EURUSD, GBPUSD, USDJPY). Before launching on a live account, it is recommended to test the advisor in the MetaTrader 4 Strategy Tester with a fixed initial deposit (for example, $10,000) and 1:100 leverage. The default parameters are optimized for the M15 timeframe and can be used without additional configuration.


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
Adaptive VP Gold é um Expert Advisor automatizado desenvolvido para negociação de ouro, principalmente XAUUSD, utilizando uma abordagem adaptativa de análise de mercado. A estratégia combina análise de Volume Profile, detecção do regime de mercado, price action, volatilidade, momentum e um sistema integrado de filtragem baseado em machine learning. O EA identifica diferentes condições de mercado e adapta a sua lógica de entrada de acordo com cada situação. O mecanismo de negociação inclui lógica
HFT King Ea
Ram Klein Caputol
Apresentando HFT KING EA - O HFT KING definitivo da negociação! Este sistema de negociação de alta frequência totalmente automatizado foi projetado para revolucionar sua experiência de negociação com seu algoritmo avançado e recursos de última geração. O HFT King utiliza uma combinação única de análise técnica, inteligência artificial, negociação de alta frequência e aprendizado de máquina para fornecer aos traders sinais de negociação confiáveis ​​e lucrativos. A tecnologia de ponta da HFT King
he expert works on the Zigzag levels on the previous candle With some digital way to enter the deal On the five minute frame Work on currency pairs only Do not use TakeProfit or Stop Loss How the expert works It is placed on the three currency pairs GBPUSD GBPJPY GBP AUD Same settings without changing anything When he works, he will work on only one currency of them until it closes on a profit Profit is only seven points Please watch the video Explains how the expert works. Max Spread = 0.3 Bro
Diversify the risk in your trading account by combining our Expert Advisors. Build your own custom trading system here:   Simple Forex Trading Strategies The expert advisor opens trades when the SMAs cross and when the WPR has left overbought/oversold areas. The SMAs are also programmed to close the trades if the trend changes. The Stop Loss, Take Profit, and Trailing Stop are calculated based on the ATR indicator. The recommended currency pair is NZDUSD and the recommended timeframe to operat
FREE
Gold Coin M5
Andrey Kozak
2.33 (9)
Gold Coin M5 is an automated trading robot designed to trade the gold market (XAUUSD) using the M5 period. This robot is designed for traders who want to trade automatically on short-term time intervals (scalping). Peculiarities: Scalping strategy: The robot uses a scalping strategy based on instant entry and exit from positions based on short-term price movements. Optimized for XAUUSD on M5: The XAUUSD Scalper is specifically tuned to trade the XAUUSD pair on the M5 time frame, allowing it to
Brexit Breakout (GBPUSD H1) This EA has been developed for GBPUSD H1.  Everything is tested for H1 timeframe . Strategy is based on breakout of the This Bar Open indicator after some time of consolidation. It will very well works on these times, when the pound is moving. It uses Stop pending orders with  FIXED Stop Loss and Take Profit . It also uses PROFIT TRAILING to catch from the moves as much as possible. At 9:00 pm we are closing trading every Friday to prevent from weekly gaps. !!!Adjust
| 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
FXPrimeOperator
Alain Andras Korodi
FXPRIMEOPERATOR MT4 EA FOREX MULTIMOEDA COM GESTÃO ADAPTATIVA DE OPERAÇÕES E PROTEÇÃO DE PERDA DIÁRIA FxPrimeOperator é um Expert Advisor para negociação automatizada de Forex no MetaTrader 4. O EA monitora doze pares de moedas, avalia oportunidades de negociação através de critérios internos e administra automaticamente as posições abertas. A configuração permanece simples com apenas dois parâmetros de entrada. A lógica de negociação utiliza um perfil interno unificado. PRINCIPAIS FUNÇÕES Monit
DynamicGrid
Paranchai Tensit
Key concepts of Dynamic grid trading system -Dynamic Grid uses a simple grid basis from dynamic grid development, the number of orders that vary according to data. -Take advantage of the volatility of the product.  -Use volatility to help in zone consolidation and manage position sizes. -Trading grids according to price directions can use the advantage to adjust costs and can reduce the increase of drawdown. -Not stoploss is a zone management. -Do not need a martingale, double lot. -Can trade
DracoAI
Hua Manh Hung
DracoAI is a revolutionary automated forex trading robot based on neural network.  Loss coverage is our premium exclusive feature. DracoAI IS: THE BEST MONEY MAKING SERVICE & STABLE PASSIVE INCOME PROFIT, EVEN IF YOU DO NOT PARTICIPATE IN BIDDING FINANCIAL INDEPENDENCE AND STABILITY DracoAI IS SAFE, BECAUSE: WE GUARANTEE THE SAFETY OF YOUR FUNDS NEGATIVE RESULTS OF TRADING ARE COVERED BY OUR RESERVE FUND 100% CONFIDENTIALITY Monitoring  - most popular signal at MQL5 :  https://www.mql5.com/en/s
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
Gold Champions
Maria Julieta Frias Torres
Limited time offer for $59. Launch promotion Price will go up soon.   NO MARTINGALE!!!    LOW DD!!!   GOLD CHAMPIONS is a new EA designed through a new AI system that operates in the Forex market and is designed GOLD/XAUUSD with excellent results. Developed by a team of experienced traders with more than 10 years of trading experience. It uses a powerful algorithm to detect fluctuations in the market and make entries with a high profit ratio and limiting losses. Key Features: Integrated Strat
BENJ HYBRID EA (Martingale Arm) Your Professional Trading Cockpit: Mapped ATR • Dual-Limit Logic • Daily P&L Guard Important notice: After purchase, please contact via Telegram @CryptomanPh for installation guide and setting, and updated version (for lifetime purchase only). Why Traders Choose BENJ HYBRID EA BENJ HYBRID EA is more than a simple trading robot—it’s a complete execution, analytics, and risk management system . Built for serious traders, this EA blends institutional-grade autom
Indicement MT4
Profalgo Limited
5 (2)
Bem-vindo ao Indicement! PROP FIRM READY! -> baixe os arquivos do conjunto   aqui PROMOÇÃO DE LANÇAMENTO: Restam apenas algumas cópias pelo preço atual! Preço final: 990$ NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) Oferta de combinação definitiva     ->     clique aqui JUNTE-SE AO GRUPO PÚBLICO:   Clique aqui   VERSION 4.0 LIVE RESULTS OLD VERSION FINAL RESULTS A INDICEMENT   traz meus 15 anos de experiência na criação de algoritmos de negociação profissionais para os mer
PZ Goldfinch Scalper EA
PZ TRADING SLU
2.7 (44)
Esta é a iteração mais recente do meu famoso scalper, Goldfinch EA, publicado pela primeira vez há quase uma década. Ele amplia o mercado em expansões súbitas de volatilidade que ocorrem em curtos períodos de tempo: assume e tenta capitalizar a inércia no movimento dos preços após uma súbita aceleração dos preços. Esta nova versão foi simplificada para permitir que o profissional use o recurso de otimização do testador facilmente para encontrar os melhores parâmetros de negociação. [ Guia de ins
FREE
BuckWise
Joel Protusada
BuckWise   is a fully automated scalping Expert Advisor that can be run successfully using EURUSD currency pair at H1 timeframe. Very Important This Expert Advisor can not run with any EAs in the same account. As part of the money management plan, it calculates and monitors the Margin Level % and assumes that all open trades are created by it. If you want an Expert Advisor that trades in a daily basis, this EA is not for you because using this requires a patience to wait for a few days or weeks
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
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
Simple RSI Forex Trading Strategy
Victor Manuel Valderrama Zamora
2.5 (2)
Diversify the risk in your trading account by combining our Expert Advisors. Build your own custom trading system here:   Simple Forex Trading Strategies The expert advisor opens trades when RSI indicator enter in oversold or overbought areas. The Stop Loss, Take Profit, and Trailing Stop are calculated based on the ATR indicator. The recommended currency pair is EURGBP and the recommended timeframe to operate and to do backtests is H4. This Expert Advisor can be profitable in any TimeFrame an
FREE
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,
User friendly Interface. On panel fat finger protection. High speed for sending   manual  orders. Auto follow up for manual orders placed by the panel. Highly customized parameters for automated or manual buy/sell orders. Customized  money management system. Advanced users can choose their buy/sell decision according to their views and leave the rest to the EA to follow up their initial decisions. Beginners can fully rely on the built-in technology  to make transaction decisions. Users can limi
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+
Bem-vindo ao maravilhoso mundo do   Mathematical Algorithm - o consultor comercial mais inovador e eficaz que mudará a maneira como você pensa sobre negociação no mercado! Nosso consultor exclusivo combina estratégias de ponta para fornecer lucros máximos e riscos mínimos. Investi mais de dois anos no desenvolvimento e melhoria deste algoritmo. Graças a extensos backtesting ao longo dos últimos 10 anos, garantimos baixos drawdowns e altas taxas de ganho, permitindo-lhe negociar com sucesso e c
Commodity Channel Indicator Forex Trading Strategy
Victor Manuel Valderrama Zamora
4.67 (3)
Diversify the risk in your trading account by combining our Expert Advisors. Build your own custom trading system here:   Simple Forex Trading Strategies The expert advisor opens trades after CCI indicator exit the oversold or overbought areas. The Stop Loss, Take Profit, and Trailing Stop are calculated based on the ATR indicator. The recommended currency pair is GBPUSD and the recommended timeframe to operate and to do backtests is D1. This Expert Advisor can be profitable in any TimeFrame a
FREE
ATTENTION : The Tiger Security EA can not be tested in the MT4 strategy tester !!!  TigerSecurity EA  robot is a fully automated robot for  Forex trade.  TigerSecurity EA  is a combination numerous special trend strategy ,that It provides the possibility the best entries of the trade . TigerSecurity EA robot is designed  for medium and long term trading ,the robot will help you deal with and manage emotions ,and you don't need worry about news release any more !!  The trend is the key ,the Tige
趋势EA“缔造者”4.1.8版本最新产品,联系方式qq398867673 ,微信15940404448,(qq不经常登录,电话微信均可)都是实名认证的。国内按授权开户数量限制、授权交易仓位限制、授权使用时间限制为参考依据定价,不管您是大资金还是小资金都有相应的权限价格。黄金缔造者经过多次更新现在的交易获利能力有目共睹如图。 购买须知: 1.提供所想要授权账号,用于写入EA授权; 2.报备账户资金额度以及所想使用的时间(半年起),用于写入EA授权; 3.添加微信,有一个简单的培训; 4.本产品只适合XAUUSD的交易; 5.产品为趋势类EA,所以震荡行情会小亏,属于正常,趋势行情大赚。 (注:交易一定是有亏有赚,主要看盈亏比例,我们不会说“放心用单单都赢利”这种骗人的话)。 虽然在官网售卖,但我们有修改权限的权力,有人不相信可以联系我们,先给你写一个简单的EA都是可以的,也可以你购买产品后,额外为你写一个你自己的策略EA,算是赠送。定价高低自有意义,我们只会给最好的产品,定最合适的价格。本产品为mt4使用 EA介绍: 1.EA没有任何参数,所有的算法我们全部封存在EA里了,使用简单;
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 automated trading robot uses the capabilities of the macd indicator to create a grid strategy. The algorithm creates a grid strategy at overbought and oversold levels and in times of high volatility. This makes it susceptible to all price fluctuations. The Close Money input is the total amount of earnings in the cycle. We define it as the total take profit amount in the cycle. It has the ability to open more cycles in short periods. However, you can use the robot in medium-term trading. Rea
News Scalps
Tolulope Aanuoluwapo Bello
Introducing News scalp: The Premier News Scalping Expert Advisor And Arbitrage In the realm of forex trading, seizing fleeting opportunities amid market turbulence demands precision and speed. Enter News scalp, the pinnacle of news scalping Expert Advisors (EAs) designed to excel in the high-stakes arena of news-driven trading. With its innovative features tailored specifically for rapid-fire scalping strategies,   News scalp   promises to revolutionize how traders navigate volatile market con
Os compradores deste produto também adquirem
The Gold Reaper MT4
Profalgo Limited
4.62 (34)
PROP FIRM PRONTO!   (   baixar SETFILE   ) PROMOÇÃO DE LANÇAMENTO: Restam apenas algumas cópias pelo preço atual! Preço final: 990$ Ganhe 1 EA gratuitamente (para 2 contas comerciais) -> entre em contato comigo após a compra Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal LATEST MANUAL Bem-vindo ao Ceifador de Ouro! Baseado no muito bem-sucedido Goldtrade Pro, este EA foi projetado para funcionar em vários períodos de tempo ao mesmo tempo e tem a opção de def
Scalping Robot Pro MT4
MQL TOOLS SL
4.29 (17)
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 tra
Quantum Scalperr Gold
Ignacio Agustin Mene Franco
Quantum Scalper GOLD v2.00 High-Precision Scalping for XAUUSD (Gold) Quantum Scalper GOLD is an advanced and fully automated Expert Advisor designed exclusively for trading XAUUSD (Gold) on the M5 timeframe. Key Features: Intelligent Hybrid Strategy: Combines RSI signals (overbought/overbold detection), Envelopes (volatility filter), and a real-time trained MLP Neural Network using price, EMA, MACD, and ATR features. Dynamic Risk Management: Adaptive Stop Loss based on ATR, intelligent traili
Scipio Gold Bot
Stefano Frisetti
BEWARE of SCAM! SCIPIO GOLD BOT is only distributed by MQL5.com. Please note: this is not a commercial BOT, but a professional one. Distribution is limited to 100 copies in total, and the price may increase without notice. Thisi is MT4 versione, Mt5 version is here:  https://www.mql5.com/it/market/product/148820 The differences that make SCIPIO EA unique are: + no variable settings or settings that the TRADER must enter + only opens one trade at a time + always uses close and fixed STOP LOSSES
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
Exotic Adv
Ivan Simonika
Exotic Bot   is a multi -cream multifunctional adviser working on any time frame and in any market conditions. The robot’s work is taken as a system of averaging with the non -geometric progression of the construction of a trading grid. Built -in protection systems: special filters, spreading, internal restriction of trading time. Building a trading grid, taking into account important internal levels. The ability to configure trading aggressiveness. Work postponed orders with trailing orders. T
Trend Radar — Expert Advisor for MetaTrader 4 Overview Trend Radar is an Expert Advisor (EA) for MetaTrader 4 that opens trades based on a proprietary price-channel analysis model, filtered by slope angle and corridor width. The EA combines clear signal logic with flexible risk management and full control over every stage of trade management — from entry to trailing stop. How It Works Channel analysis. The EA builds a price channel from the last SignalBarCount bars and determines its overall dir
Big Forex Players MT4
MQL TOOLS SL
4.71 (42)
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
XG Gold Robot MT4
MQL TOOLS SL
4.27 (41)
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
Aura Neuron MT4
Stanislav Tomilov
4.67 (15)
Aura Neuron é um Expert Advisor distinto que continua a série Aura de sistemas de negociação. Ao alavancar Redes Neurais avançadas e estratégias de negociação clássicas de ponta, Aura Neuron oferece uma abordagem inovadora com excelente desempenho potencial. Totalmente automatizado, este Expert Advisor foi projetado para negociar pares de moedas como XAUUSD (GOLD). Ele demonstrou estabilidade consistente entre esses pares de 1999 a 2023. O sistema evita técnicas perigosas de gerenciamento de din
AurexBot
Vladimir Pokora
AurexBot – Gold Reversal Expert Advisor AurexBot is an intelligent Expert Advisor designed exclusively for XAUUSD (Gold) , built to capture fast price reversals with precision and disciplined risk management. Instead of chasing trends, AurexBot focuses on high-probability turning points where volatility creates the best trading opportunities. Why traders choose AurexBot No dangerous averaging,  No grid,  No martingale , Real Stop Loss and Take Profit logic Fast Reversal Detection – Identifies s
DAX Robot is an advanced automated trading system developed specifically for the   DAX 40 Index   on the H1 timeframe. Designed to handle the fast paced nature of one of Europe's   most actively traded indices , the robot continuously analyzes market conditions and automatically executes trades based on its built in trading logic. The system focuses on identifying high probability   trading opportunities   by combining trend analysis, market momentum, and volatility based conditions. DAX Robot
RiskShield Dragon   — Automated Multi-Currency Advisor Combining intelligent algorithms, robust protection mechanisms, and flexible configuration, **RiskShield Dragon** delivers consistent profits with minimal risk. --- ## Key Advantages * **Multi-Currency & Multi-Threaded**: Supports over 20 currency pairs (EURUSD, GBPUSD, USDJPY, AUDUSD, NZDJPY, and more) simultaneously on any timeframe. * **Minimum Deposit from 10,000**: Optimized for trading with a starting balance of 10,000 account uni
I will support only my client. สำหรับลูกค้า Parameters General Trade Settings Money Management  Lot : Fixed (can change) Strategies  - M30 Strategies you can using both it is fixed with MA, Bollinger band, Candlestick Levels Close Functions  - M30 Strategies MagicNumber  - individual magic number. The EA will only manage position of the chart symbol with this magic number. NextOpenTradeAfterMinutes  - 8 minutes is default, can change it MaxSpread  - upto currency pairs, MaxSlippage  - upto cur
Forex Engine EA is a professional MetaTrader 4 trading robot built around a structured reversal and mean-reversion methodology. It analyzes swing highs and lows, support and resistance zones, market overextension, and overbought or oversold conditions to identify areas where a price correction or reversal may occur. When price approaches a key resistance zone, the EA evaluates the possibility of selling pressure before considering a sell entry. When price reaches a strong support area, it looks
SFire Gold EA
Jacques Scholtz Fourie
This EA is a grid-based trading system. It incorporates several advanced features to manage trades dynamically and adapt to market conditions. Here's a summary of its functionality: I am happy to provide my settings file. Recomendation would be to run on a 20 000 cent account. Key Features: 1. Grid Trading Strategy:    - The EA uses a grid-based approach to open buy and sell trades at predefined price intervals.    - It dynamically adjusts the grid levels based on market conditions and risk se
Apache MHL Moving Average
Paulo Roberto Da Costa
Produto para MetaTrader4:  https://www.mql5.com/pt/market/product/159627 Produto para MetaTrader5:  https://www.mql5.com/pt/market/product/160313 O Apache MHL Moving Average Expert Advisor ou simplesmente "Apache MHL" é um robô que opera no ativo GOLD/XAUUSD utilizando estratégias baseadas em médias móveis e gestão de risco com Martingale. O usuário dispõe de ajuste de RSI para confirmar força do ativo. Ele combina múltiplas médias móveis para identificar potenciais pontos de rompimento no merc
Stp
Vladislav Filippov
For the expert to work correctly, do not forget to upload the files to the directory of the agreement (... AppData \ Roaming \ MetaQuotes \ Terminal \ Common \ Files) STP is an automated trading adviser based on neurotechnology, working on an hourly timeframe. The Expert Advisor is configured for trading according to the safe trading strategy from levels, involving the opening of short-term deals and closing them when positive profitability dynamics of several points are achieved, which allows
AccountUP Algo
Aurelian-eusebio Enescu
Short Description: Advanced, stable multi-order EA featuring dual-mode Trailing/Breakeven, hidden levels, and steady 80% Win Rate. Engineered for robust capital growth with tight ~10% Drawdown. Non-overoptimized. Long Description : AccountUP Algo is a premium, fully automated Expert Advisor engineered for stable, long-term equity growth without exposing your account to extreme market risks. Designed with a deep focus on capital preservation, this EA delivers a smooth, almost linear equity curv
Fortune
Andriy Sydoruk
3 (2)
Consultor (Fortune): Sua Ferramenta Confiável para Trading de Alta Frequência no Forex O consultor Fortune é projetado para ser utilizado em qualquer período de tempo, qualquer par de moedas e no servidor de qualquer corretor. Seu sistema de trading único o torna uma ferramenta versátil para os traders. Para um desempenho ideal, recomenda-se operar com pares de moedas líquidos, manter um spread baixo e usar um VPS. Você pode começar com um depósito de $100 e um tamanho de lote de 0,01. Caracter
This EA requires a broker having Market Execution (ECN, NDD, STP accounts), low spread, zero StopLevel (or close to such level), no commission if possible (as it influences on the profit amount). Order executin time should be measured in milliseconds, not minutes, requotes and slippage should not happen too often. Deposit: Minimum deposit is $50 (MinLot = 0.01) or $500 (MinLot = 0.1) Recommended currency pairs: EURUSD, GBPUSD, AUDUSD, NZDUSD, USDJPY, USDCHF, USDCAD No Martingale / No grid / No a
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
Https://www.mql5.com/zh/users/gzd811 Correr no EURUSD M15 Int derrapagem = 100; / / preço aceitável EM derrapagem Extern: máximo lucro = 200; / / para Vencer Extern double stop = 10; / / max stops Mover o Ponto extern DUPLO isolamento máximo = 0; / / stop Extern: stop loss móvel maior = 20; / / stop Extern a double loss = 2; / / max stops Extern int Fechar Pontos de intervalo de atualização =; / / Um número único intervalo extern k =; / / intervalo de O número extern double single =; / / número
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
This is an optimized and ready-to-use automated trading system. A market entry is performed at a certain time on a quiet market. When certain conditions are met, a trade is closed. As a rule, a profit is small. The EA features SL to manage losses. The EA is recommended for use on currency pairs and M5 timeframe. Before using on a live account, it is recommended to test the EA in the strategy tester in the terminal. The EA operation requires a broker with minimum spread and minimum or no commissi
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
Mais do autor
KNN Pattern Hunter
Aleksandr Zavolskov
KNN Pattern Hunter 2.0 An automated trading advisor that learns from market history and adapts to volatility changes Short Description KNN Pattern Hunter 2.0 is a fully automated trading robot for MetaTrader 4 built on the K-Nearest Neighbors (KNN) machine learning algorithm. The advisor analyzes historical market patterns and finds the most similar past situations to predict future price movement. The key innovation in version 2.0 is adaptive rolling Z-normalization : the robot continuously rec
NeuroPrice Navigator 2.0 — TCNN‑LSTM Neural Network EA with Attention Mechanism Brief Description NeuroPrice Navigator 2.0 is a fully automated trading advisor for MetaTrader 5 that uses a hybrid TCNN‑LSTM neural network with a Feature Attention mechanism to predict price direction. The advisor self‑trains on historical data, adapts to changing market conditions, and includes a built‑in multi‑level risk management system. How It Works The advisor is built on a proprietary neural network model co
Filtro:
Sem comentários
Responder ao comentário