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.


おすすめのプロダクト
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 は、主に XAUUSD を対象としたゴールド取引用の自動売買 Expert Advisor で、適応型の市場分析アプローチを採用しています。 この戦略は、Volume Profile 分析、市場レジーム判定、プライスアクション、ボラティリティ、モメンタム、および統合された機械学習フィルターを組み合わせています。 EA は異なる市場環境を識別し、その状況に応じてエントリーロジックを適応させます。取引エンジンには、プルバック、ブレイクアウト、高速な市場変動に対応する個別のロジックが含まれています。 主な機能: ゴールド向け自動売買システム Volume Profile に基づく市場分析 市場レジームの自動判定 プルバックおよびブレイクアウトのエントリーロジック 急速な市場変動に対応するエントリーモジュール 統合された機械学習による取引フィルタリング Stop Loss と Take Profit の自動管理 市場状態に基づくオプションの追加ポジション 1つのメイントレードにつき追加ポジションは最大1つ DLL 不要 外部インジケーター不要 追加ファイル不要
HFT KING EA のご紹介 - トレーディングの究極の HFT KING!この完全に自動化された高頻度取引システムは、高度なアルゴリズムと最先端の機能により、お客様の取引体験に革命をもたらすように設計されています。 HFT King は、テクニカル分析、人工知能、高頻度取引、機械学習を独自に組み合わせて、トレーダーに信頼性が高く収益性の高い取引シグナルを提供します。 HFT King の最先端テクノロジーは、取引機会の特定、市場動向の分析、取引の正確な実行に非常に効果的です。 EA の強力なエントリーおよびエグジット ロジックはバークローズのみで動作し、市場ノイズを排除し、スピードを最適化し、ストップロスハンティングを回避し、将来的に信頼性が高く安定した利益を保証します。 高頻度取引の究極の王様の次の高レベルに挑戦する準備をしてください!最先端のテクノロジーと高度な取引機能のパワーを体験してください。 推奨事項: 通貨ペア: XAUUSD 時間枠: M15 最低入金額 : $1000 ブローカー アカウント タイプ: ECN、Raw、またはスプレッドが非常に低い Razor を
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 は、M5 期間を使用して金市場 (XAUUSD) を取引するように設計された自動取引ロボットです。 このロボットは、短期間の間隔で自動的に取引 (スキャルピング) したいトレーダー向けに設計されています。 特徴: スキャルピング戦略: ロボットは、短期的な価格変動に基づくポジションへの即時エントリーとポジションに基づくスキャルピング戦略を使用します。 M5 の XAUUSD 用に最適化: XAUUSD スキャルパーは、M5 時間枠で XAUUSD ペアを取引するように特別に調整されており、金市場での機会を最大化できます。 最低残高: ロボットとの取引に推奨される最低残高は 1000 ドルです。 このレベルのバランスにより、リスクを管理するのに十分なマージンが提供され、ロボットが短期間で効果的に動作することが可能になります。 使いやすさ: XAUUSD Scalper は、取引口座へのインストールと設定が簡単で、初心者から経験豊富なプロまで幅広いトレーダーが利用できます。 取引に関する推奨事項: XAUUSDでの取引 M5 の時間枠 最低初期残高は$100
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 MT4 適応型トレード管理と日次損失保護を備えたマルチカレンシーFOREX EA FxPrimeOperatorは、MetaTrader 4で外国為替取引を自動化するためのエキスパートアドバイザーです。12種類の通貨ペアを監視し、内部基準に基づいて取引機会を評価し、保有ポジションを自動的に管理します。 入力パラメーターは2つだけで、設定はシンプルです。取引ロジックは統一された内部取引プロファイルで動作します。 主な機能 12種類の外国為替通貨ペアを自動監視 マルチタイムフレーム分析 統一された内部取引プロファイル 保有ポジションの適応型管理 状況に応じた部分利益確定 ブレークイーブンおよび利益保護機能 動的ストップロス・トレーリング 適切な条件下で当初の利益目標を超えてポジションを継続する機能 取引状況が悪化した場合の早期決済 自動日次損失保護 注文送信時のストップロス設定 既存ストップロスの追加監視 スプレッド、ボラティリティ、急激な値動き、頻繁な反転に対するフィルター 連続損失後の取引一時停止 過剰な取引活動に対する保護 利用可能証拠金および保有ポジ
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 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)
マトリックスアローEAMT4 は、 マトリックスアローインジケーターのMT4 シグナルをチャート上のトレードパネルと手動または100%自動でトレードできるユニークなエキスパートアドバイザーです。 マトリックスアローインジケーターMT4 は、初期段階で現在のトレンドを判断し、最大10の標準インジケーターから情報とデータを収集します。平均方向移動指数(ADX) 、 商品チャネルインデックス(CCI) 、 クラシック平研アシキャンドル 、 移動平均 、 移動平均収束発散(MACD) 、 相対活力指数(RVI) 、 相対力指数(RSI) 、 放物線SAR 、 ストキャスティクス 、 ウィリアムズのパーセント範囲 。 すべてのインジケーターが有効な買いまたは売りシグナルを与えると、対応する矢印がチャートに印刷され、次のろうそく/バーの開始時に強い上昇トレンド/下降トレンドを示します。ユーザーは、使用するインジケーターを選択し、各インジケーターのパラメーターを個別に調整できます。 Matrix Arrow EA MT4 を使用すると、チャートのトレードパネルから直接、または100%アルゴリズム取
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)
Indicementへようこそ! プロップファーム準備完了! -> セットファイルを ここからダウンロード ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル NEW: Choose 1 EA for FREE! (limited to 2 trading account numbers) 究極のコンボディール   ->   こちらをクリック 公開グループに参加する: ここをクリック   VERSION 4.0 LIVE RESULTS OLD VERSION FINAL RESULTS INDICEMENT は、 専門的な取引アルゴリズムの作成における私の 15 年間の経験をインデックス市場にもたらします。 EA は、最適なエントリー価格を見つけるために非常によく考えられたアルゴリズムを使用し、取引のリスクを分散するために内部で複数の戦略を実行します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリング ストップロスとトレーリング テイクプロフィットも使用します。 このシス
これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
FREE
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
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 V2.05 - Skyrocket Your Forex Trading! Unlock the power of currency correlations with Correlation Beast V2.5 , the ultimate Expert Advisor for MetaTrader 4! Designed for traders who crave precision and profitability, this EA leverages advanced correlation strategies to identify high-probability trades. Whether you're a beginner or a pro, this tool is your key to mastering the Forex market! Why Choose Correlation Beast V2.5? Powerful Correlation Trading Trade sma
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   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+
Mathematical Algorithm   の素晴らしい世界へようこそ - 市場での取引についての考え方を変える最も革新的で効果的な取引アドバイザーです。 当社のユニークなアドバイザーは最先端の戦略を組み合わせて、最大の利益と最小限のリスクを提供します。 私はこのアルゴリズムの開発と改善に 2 年以上投資してきました。 過去 10 年間にわたる広範なバックテストのおかげで、低いドローダウンと高い勝率を保証し、自信を持って取引を成功させることができます。 Mathematical Algorithm は、最新の数学モデルとアルゴリズムを使用して開発されています。 当社の取引ロボットは単なる 1 つの戦略ではなく、6 つの異なる戦略を組み合わせたもので、取引の多様化を実現し、成功の可能性を高めます。 分散化は当社のエキスパートアドバイザーにとって重要な投資概念です。 リスクは軽減されますが、ほとんどの場合、収益性は低下しません。 Mathematical Algorithm の主な利点の 1 つは、あらゆるブローカーとの互換性です。 どのブローカーと取引しても、当社のアドバイザ
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里了,使用简单;
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
このプロダクトを購入した人は以下も購入しています
The Gold Reaper MT4
Profalgo Limited
4.62 (34)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) ローンチプロモーション: 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal LATEST MANUAL ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 こ
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
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 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 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
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
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 は、Aura シリーズのトレーディング システムを引き継ぐ独特のエキスパート アドバイザーです。高度なニューラル ネットワークと最先端のクラシック トレーディング戦略を活用することで、Aura Neuron は優れた潜在的パフォーマンスを備えた革新的なアプローチを提供します。完全に自動化されたこのエキスパート アドバイザーは XAUUSD (GOLD) などの通貨ペアを取引するように設計されています。1999 年から 2023 年まで、これらのペアで一貫した安定性が実証されています。このシステムは、マーチンゲール、グリッド、スキャルピングなどの危険な資金管理手法を回避しているため、あらゆるブローカーの条件に適しています。Aura Neuron は、多層パーセプトロン (MLP) ニューラル ネットワークを搭載しており、これを利用して市場のトレンドと動きを予測します。MLP はフィードフォワード人工ニューラル ネットワーク (ANN) の一種で、特に単一の隠し層で構成されている場合は「バニラ」ニューラル ネットワークと呼ばれることがよくあります。MLP には、入力
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
Signal (GOLD/XAUSD) - 16 months active and over 6,800 trades on a Standard account (1:400 leverage):   https://www.mql5.com/pt/signals/2278431 Product for MetaTrader 4:   https://www.mql5.com/pt/market/product/159627 Product for MetaTrader 5:   https://www.mql5.com/pt/market/product/160313 The Apache MHL Moving Average Expert Advisor, or simply "Apache MHL," is a robot that operates on the GOLD/XAUSD asset using strategies based on moving averages and risk management with Martingale. The use
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)
Advisor (Fortune): Your Reliable Tool for High-Frequency Forex Trading The Fortune advisor is designed to be used on any timeframe, any currency pair, and on any broker's server. Its unique trading system makes it a versatile tool for traders. For optimal performance, it is recommended to trade liquid forex pairs, maintain a low spread, and use a VPS. You can start with a $100 deposit and a lot size of 0.01. Key Features and Benefits High-Frequency Trading : Utilizes two trading options: with v
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 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 /な/ users / gzd811 運行はEURUSD M15 int Slippage=100;/ /成約価格はSlippageを受け入れることができる extern double止満ちる=200;/ /最大まで勝ち extern doubleストップロス=10 ; / /最大ストップロス extern doubleストップロスのモバイルぶり時=0;/ /最大ストップロス extern doubleストップロスのモバイル時=20 ; / /最大ストップロス extern double平価ストップロスのポイント=2 ; / /最大ストップロス extern int平倉更新ポイント=20 ; / /間隔 extern doubleぶりで個室k线数=1;/ /間隔 extern手double注文数= 0 . 1;/ /手数 extern double資金比例=2 ; / /手数 extern double倉N=10、 extern double止満ちるN=500、 extern double総止黒字額=10000、 extern double
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 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 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
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
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
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
作者のその他のプロダクト
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
フィルタ:
レビューなし
レビューに返信