Neural Network Swing Scalper Price Action

NNSSP-AI — Neural Network Swing Scalp Price Action Intelligence

The first MT5 Expert Advisor built on a genuine feedforward neural network — not a scoring system, not a rule engine, not a marketing label. Real neuron math. Real probability output. Real trading intelligence.

What Makes NNSSP-AI Different?

Every "AI" EA on the market hides the same thing under impressive branding — a hand-coded checklist that adds up indicator scores and calls it artificial intelligence. NNSSP-AI is different at the source code level.

It runs a true feedforward neural network on every bar:

  • 20 normalised market inputs fed into the network
  • 16 hidden neurons with ReLU activation — each one trained to detect a specific market condition
  • 8 second-layer neurons combining those conditions into higher-order signals
  • 2 output neurons with Softmax activation producing real probabilities — p_buy and p_sell — that always sum to 1.0

The network does not add weighted scores. It performs matrix multiplication, applies non-linear activation functions, and produces a mathematically valid probability. A p_buy of 0.84 means the network is 84% confident in a bullish trade on this bar. That is not a score — it is inference.

Three Genuinely Separate Trading Modes

NNSSP-AI operates in three modes that are structurally different — not cosmetically renamed versions of the same logic. Each mode uses a completely different timeframe triple. The neural network sees different candles, different data, different market context.

🌊 Neural Swing

Read the higher timeframe. Trade the institutional move.

  • Bar clock fires on H1 candle close only
  • Indicators computed on H1 / H4 / D1
  • Minimum 4 hours between trades
  • Maximum 3 trades per session
  • SL: 1.8× ATR | TP: 3.5× ATR

Swing mode is deliberately patient. It waits for a full H1 candle to confirm the signal, checks H4 for directional alignment, and reads D1 trend bias before committing. The neural network in this mode weights market structure, BOS/ChoCH detection, and HTF bias most heavily — filtering out the noise that traps short-term traders.

⚡ Neural Scalp

Read momentum. Strike fast. Control risk precisely.

  • Bar clock fires on M5 candle close
  • Indicators computed on M5 / M15 / H1
  • Minimum 20 minutes between trades
  • Maximum 6 trades per session
  • SL: 1.0× ATR | TP: 2.0× ATR

Scalp mode reads fast data. MACD crossovers, Stochastic signals, and RSI momentum are weighted highest in this mode's neural weight matrix. The 20-minute minimum gap prevents signal spam while still capturing multiple opportunities during high-momentum London and New York sessions.

🕯️ Neural Price Action

Read structure. Trade institutional levels. Confirm with candles.

  • Bar clock fires on M15 candle close
  • Indicators computed on M15 / H1 / H4
  • Minimum 1 hour between trades
  • Maximum 4 trades per session
  • SL: 1.3× ATR | TP: 2.8× ATR

PA mode is built around one idea: price returns to where institutions traded. Order Block proximity and Fair Value Gap detection receive the highest weights in the PA neural matrix. The network looks for price returning to an unmitigated zone after a structural break — the cleanest, highest-probability setup in price action trading.

Smart Market Structure Engine

Regardless of mode, NNSSP-AI continuously maps the market for structural features that feed the neural network's 20 input neurons.

Break of Structure (BOS) & Change of Character (ChoCH) — Detected automatically on every bar. A ChoCH — price breaking a swing extreme against the prevailing trend — is classified separately from a BOS and receives a stronger neural signal, reflecting its higher significance as a potential reversal event.

Order Block Detection — The last aggressive candle before an impulsive move. Scored by proximity: 1.0 if price is inside the zone, 0.75 within 2 ATR, 0.50 within 5 ATR. Continuous proximity scores feed directly into the neural network — not a binary "in zone or not."

Fair Value Gap Detection — Three-candle price imbalances where the market moved without balanced two-sided trading. Up to 30 active FVG zones tracked simultaneously, each scored by proximity and fed to the neural network.

Liquidity Zone Mapping — Significant swing highs and lows marked as active or swept. Active liquidity pools near current price inform the neural network's structural bias inputs.

Multi-Timeframe Structure — All three mode timeframes are independently classified as bullish (HH/HL pattern), bearish (LL/LH pattern), or ranging. Three separate structure readings feed inputs x[11], x[12], x[13] — giving the neural network a complete picture of trend quality across timeframes.

Professional Risk Management

Five Risk Sizing Methods

Choose the approach that fits your trading style:

Mode How Lots Are Calculated
% of Balance Risk a fixed percentage of account balance per trade
% of Equity Risk a fixed percentage of live equity per trade
Fixed Lot Every trade uses the same lot size
Fixed $ Risk Every trade risks a fixed monetary amount
Auto R:R Lot sized automatically to target a specific risk:reward ratio

Three-Layer Order Validation

Every order passes three checks before reaching the broker:

  1. Stop Level Validation — SL and TP are automatically expanded if too close to price for the broker's minimum stop distance requirement. Eliminates [Invalid stops] errors.
  2. Volume Validation — SYMBOL_VOLUME_LIMIT, per-order ceiling, total exposure cap, and lot step rounding applied in sequence. Eliminates [Volume limit reached] errors.
  3. Margin Gate — OrderCalcMargin() called at the exact moment of order placement. If required margin exceeds 90% of free margin, the order is skipped cleanly. Eliminates [No money] errors on any symbol at any account size.

Intelligent Account Detection

NNSSP-AI reads ACCOUNT_MARGIN_MODE on every bar. On a netting account — where multiple entries stack into one net position and rapidly hit broker limits — the EA automatically restricts to one open position per symbol. On a hedging account, the configurable MaxOpenTrades limit applies. No configuration required — the EA detects and adapts.

Session-Based Trade Limits

Limits reset per trading session — not per day. Sessions are detected automatically from broker server time (Asian 00:00–07:00, London 07:00–13:00, New York 13:00–22:00 GMT). A Scalp trader gets 6 fresh trades in London and 6 in New York. Swing mode gets 3 per session — reflecting the patience that higher timeframe trading demands.

Additional Safeguards

  • Daily and total equity drawdown limits — trading halts automatically
  • Consecutive loss cooldown — configurable pause after N losses in a row
  • Minimum neural score threshold — only high-confidence signals execute
  • Minimum confluence requirement — multiple independent conditions must agree
  • News filter — MT5 Economic Calendar blocks entries before and after high-impact releases
  • Maximum spread filter — entries blocked when market liquidity is poor
  • Minimum R:R gate — every trade must meet the configured risk:reward ratio

Dynamic Trade Management

All management runs on the mode's bar clock — not on every tick — preventing the [Modification failed — close to market] broker rejections that plague poorly coded EAs.

Break-Even — SL moves to open price + buffer once trade reaches target ATR profit.

Trailing Stop — Activates at TrailStart × ATR in profit, steps in TrailStep × ATR increments, always validated against the broker's minimum stop distance.

Partial Close — 50% of the position is closed at the first TP level. The remainder runs to the full TP target.

Proximity Guard — All modifications are skipped when price is within the broker's stop level of the existing SL or TP. The position is allowed to close naturally without interference.

Interactive On-Chart Panel

Every parameter is adjustable live from the on-chart panel — no need to detach and reattach the EA to change settings.

The panel displays in real time:

  • Neural Network Output — p_buy, p_sell, confidence score, and active neuron count with names
  • Account — Balance, equity, free margin, margin level
  • Statistics — Daily drawdown, spread, session trades used/remaining, open positions, risk mode, current session
  • Risk Controls — Seven parameters with < and > adjustment buttons: Risk %, Max DD %, Max Trades, Open Positions, NN Score, Confluence, Min R:R
  • Trade Controls — Five toggle buttons for Trail, Break-Even, Partial Close, News Filter, Session Filter
  • EA Master Button — One click pauses or resumes all trading. Blue = active. Red = paused.

Panel position is fully configurable: inp_PanelX , inp_PanelY , and inp_PanelRight (left or right chart edge anchor).

In the Strategy Tester, panel buttons are disabled by MT5's design — configure values via the Inputs tab before running tests.

Professional Chart Aesthetic

When attached to any chart, NNSSP-AI applies a complete professional dark theme:

  • Background — Deep navy #06 08 12
  • Bull candles — Vivid sky blue #29B6F6
  • Bear candles — Vivid red #EF4444
  • Grid — Barely visible, eliminates visual noise

All detected zones are drawn directly on the chart:

  • Blue/red rectangles — Bullish and bearish Fair Value Gaps
  • Green/dark red rectangles — Bullish and bearish Order Blocks
  • Dashed horizontal lines — Active liquidity levels
  • Solid horizontal lines — BOS/ChoCH structural breaks
  • Arrows — Entry signals at the exact execution bar

A large watermark reading NNSSP-AI sits behind the candles at the bottom-left — visible but never intrusive.

Replace Weights with Python-Trained Data

The pre-initialised weights encode decades of manual trading logic into the network's structure. For advanced users, they can be replaced with genuinely data-trained weights:

from sklearn.neural_network import MLPClassifier clf = MLPClassifier(hidden_layer_sizes=(16, 8), activation='relu') clf.fit(X_train, y_train) # Export — paste directly into the MQL5 weight arrays W1 = clf.coefs_[0] # (20, 16) W2 = clf.coefs_[1] # (16, 8) W3 = clf.coefs_[2] # (8, 2)

The architecture is identical to scikit-learn's output format. No reshaping. Recompile and test.

Technical Specifications

Platform MetaTrader 5
Neural architecture Feedforward, fully connected
Network 20 → 16 (ReLU) → 8 (ReLU) → 2 (Softmax)
Parameters 490 total (weights + biases)
Output p_buy + p_sell = 1.0 (true probabilities)
Trading modes Swing (H1), Scalp (M5), Price Action (M15)
Compatible symbols Forex, Indices, Metals, Crypto — any symbol
Account types Netting and Hedging — auto-detected
Risk methods 5 (% Balance, % Equity, Fixed Lot, Fixed $, Auto R:R)
Zone detection Order Blocks, Fair Value Gaps, Liquidity Zones, BOS/ChoCH
Trade management Break-even, Trailing stop, Partial close, Duration exit
News filter MT5 Economic Calendar — high-impact events
Multi-symbol Yes — one instance per symbol, separate magic numbers

Recommended Starting Settings

For testing — any major forex pair on H1:

  • Mode: Neural Swing
  • Risk: 1.0% balance
  • Min Score: 62
  • Min Confluence: 2
  • Session filter: OFF
  • News filter: OFF
  • Max Lots Per Trade: 2.0

For live deployment:

  • Start with 0.5% risk until you understand the signal frequency
  • Enable the session filter to trade London and New York only
  • Enable the news filter for major pairs
  • Set MaxLotsPerTrade to your broker's per-order volume limit

NNSSP-AI v1.0 Neural Network Swing Scalp Price Action Intelligence Feedforward Neural Network 20→16→8→2 · ReLU Activation · Softmax Output · 490 Parameters

Risk Warning: Trading involves substantial risk of loss. Past backtesting performance does not guarantee future results. Always test on a demo account before deploying live capital.


おすすめのプロダクト
Beidou Trend EA is a trend EA with a large profit-loss ratio. Breakout trading is a very old method. It has been widely used since Livermore in the 1900s. It has been more than 120 years. This method is always effective, especially for XAUUSD and Gold with high volatility. I have been using the breakout method to make profits on XAUUSD since the beginning of my investment career. I am familiar with this method. It is old, simple and effective. Beidou Trend EA is improved based on Rising Sun Gold
K Dragon Gold (KDG-1) is a professional XAUUSD Expert Advisor for MetaTrader 5. It operates on a proprietary trend-following algorithm with a 3-layer filter architecture combining higher timeframe regime detection, statistical price-position analysis, and multi-indicator entry signals. No grid. No martingale. No hedging. Long-only bull trend specialist. XAUUSD M15 | Trend-Following Strategy | No Grid | No Martingale | IC Markets Optimized | Verified Across 6 Years | 20+ Years of Experience E
The Goldstar Gold Trend trading EA uses moving averages to gauge the direction of the trend of gold on a particular timeframe and if the conditions for buying or selling are met,one or two positions are opened depending on the settings in the EA. The EA strongest advantage is when the trend is above the 5 smooth moving average. The EA can work anytime and any day depending on the parameters in the EA settings. The EA can trade synthetics and other forex pairs with the right settings except gold
Gold Crown Pro
Hassan Abdullah Hassan Al Balushi
4 (2)
Gold Crown Pro — Professional Gold Trading System for XAUUSD Precision. Control. Consistency. Gold Crown Pro is a professionally engineered Expert Advisor designed exclusively for trading XAUUSD (Gold) . It delivers a structured automated trading approach based on adaptive execution, controlled exposure, and disciplined risk management , tailored specifically for gold market conditions. A Structured Approach to Gold Trading Gold Crown Pro operates through a dynamic execution model that contin
Aureum Advisor
Dmitriq Evgenoeviz Ko
Aureum Advisor – Expert Advisor for XAUUSD Aureum Advisor is an automated trading advisor for MetaTrader 5 designed for trading the XAUUSD instrument. The advisor uses a combination of trend logic, volatility analysis, and market condition filtering to make trading decisions. The advisor is designed for stable automated trading with a controlled level of risk and minimal user intervention. IMPORTANT: After purchase, it is recommended to contact the seller for installation instructions and recomm
GOLD D1 – Estratégia Candle 80% com Pirâmide Inteligente e Trailing Dinâmico (MT5) O   GOLD D1   é um Expert Advisor avançado desenvolvido para operar principalmente o XAUUSD (Ouro) com base em análise de força do candle diário, confirmação de momentum e gestão inteligente de posições. Trata-se de um robô robusto, focado em capturar movimentos fortes do mercado enquanto controla o risco através de uma estrutura adaptativa de pirâmide e trailing stop. Estratégia Principal – Candle 80% O robô
Gold Hybrid EA
Kunal Ramanbhai Vaghela
*** NEVER LOSING ADAPTIVE STRETEGY *** Gold Hybrid EA is a professional Expert Advisor built specifically for XAUUSD (Gold) on the H1 timeframe. It combines three independent trading strategies into a single adaptive engine, each targeting different market conditions. **Three-Strategy Engine** - Trend Following: EMA crossover confirmed by ADX filter. Captures directional moves when gold is trending. Configurable fast/slow EMA periods and ADX threshold. - Mean Reversion: RSI extremes combined
KingBacchusI
Christian Adr Lezcano Gimenez
KingBacchusI — 市場で最も完成度の高いゴールド・エキスパートアドバイザー 適応型ロジック。プロフェッショナルなリスク管理。 KingBacchusIとは? KingBacchusI は MetaTrader 5 用のトレンド型エキスパートアドバイザー(EA)であり、高いボラティリティを持つ市場での取引を目的に設計されています。特に XAUUSD(ゴールド)ペアに焦点を当てています。多因子シグナルスコアリングシステム、積層型品質フィルター、そして資本を守りつつ利益を伸ばすアクティブなポジション管理を組み合わせています。 グリッドEAではなく、マーチンゲールを使用せず、無限のリスクにさらすこともありません。すべての取引はエントリー時点でストップロス、テイクプロフィット、トレーリングが定義されています。 シグナルスコアリングシステム(0–100点) ポジションを開く前に、EAは市場の4つの側面を評価し、合計スコアを算出します: トレンド強度:EMA200までの距離、5本のバーにおける方向の一貫性、EMAの傾き(最大25点) モメンタムスコア:方向に応じた最適ゾーンのRSI、RS
Automatic Trading System. The first version of the ATS participated in the 2012 Championship. It has been actively developed since 2015. The strategy is based on identifying reversals in the movement of trading pairs. The only variable parameter is the deposit division coefficient. The goal of making a profit (as in the well-known proverb): a bird in the hand is worth two in the bush. Work: 1) on various time intervals: from M2 to M20, everything depends on the "behavior" of the ATS on a
PythonX TokyoFlow USDJPY EMA + MACD Momentum Engine for Intraday Precision PythonX TokyoFlow USDJPY is a professionally structured trading system developed specifically for the USDJPY pair on the M1 timeframe. It integrates trend analysis with momentum-based confirmation to identify structured intraday opportunities in fast-moving market conditions. Strategy Architecture The system is designed around a dual-layer approach that combines directional bias with momentum validation. This helps mainta
Description of   Simo : an innovative robot with a unique trading system Simo is a revolutionary trading robot that changes the rules of the game with its unique trading system. Using sentiment analysis and machine learning, Simo takes trading to a new level. This robot can work on any time frame, with any currency pair, and on the server of any broker. Simo uses its own algorithm to make trading decisions. Various approaches to analyzing input data allow the robot to make more informed decis
Aurus Pulse Sniper MT5 – The Art of Accurate Pulse Aurus Pulse Sniper is a highly accurate Expert Advisor (EA) designed specifically for gold ( XAUUSD ) and other highly liquid assets. The algorithm is based on a "sniper" volatility breakout strategy: the robot ignores market noise, activating only when there is a confirmed impulse. This is not just an advisor, but an adaptive system that adjusts to the current market conditions thanks to the built-in AI Adaptive Volatility unit. Key benefit
CGTxau
Ciaran Alan Butcher
CGT XAU EA  I have been developing this expert  advisor for the last two years and the results have been exceptional, the expert is built to catch all of the trends on XAUUSD, while aiming to maintain breakeven in-between.  This EA comes with a range of settings around trade and risk management.  The EA CAN be used with prop firms with adjusted settings or specifically an FTMO swing account with the recommended settings.  Recommendations: Main Pair: XAUUSD Timeframe: M5 Minimum deposit : $500-10
SafeGold EA
Ismael Alba Rocha Vieira
Trend Gold Safe Trading This is SafeGold EA, tested under the hardest conditions with profitable and consistent results (please see the images). Using advanced strategies, SafeGold is capable of generating consistent profits across 8 risk levels, entering only when all strategies intersect. No Martingale or grid usage, with fixed or automatic money management. Easy installation and simplified use. The EA is delivered to you, configured for optimal operating conditions. Requirements and recommen
Edge EA Pro MT5
Aleksandr Zheltikov
4.67 (3)
Edge is a fully automated trading system that finds trading opportunities and places trades by combining technical indicators, price action analysis, wave analysis and all-day market pattern analysis using Fibonacci areas. Based on historical market data, the system's thinly layered multilayer neural network is trained to identify patterns and relationships that can be used to predict future price movements. The neural network processes various inputs, including price data, technical indicators
RamonXZ
Natalia Nikolova
The “RamonX” Expert Advisor is designed to automate trading based on a simple and reliable strategy of crossing two moving averages (Moving Averages). This approach is widely used by traders to identify trends in the market and find entry and exit points. Functionality: 1. Basic strategy:    - The Expert Advisor analyzes the crossovers of two moving averages (fast and slow) on the selected timeframe.     - Trade opening:      - Buy: occurs when the fast moving average crosses the slow moving a
Wild Baboon Pro MT5 — 高度なAIゾーンリカバリー(Zone Recovery)EA Wild Baboon Pro MT5 は、インテリジェントなトレード管理、適応型リカバリーサイクル、および主要な通貨ペア全体での安定したパフォーマンスのために設計された、高度なAI駆動型ゾーンリカバリー・エキスパートアドバイザー(EA)です。盲目的なマーチンゲールではなく「制御されたリカバリー」を求めるトレーダーのために構築されており、相場のボラティリティを構造的なチャンスへと変えます。 Wild Baboon Pro MT5 とは? MetaTrader 5(MT5)向けに開発されたプロ仕様の自動売買システムです。高度な「ゾーンリカバリー」手法を採用し、AIベースの適応型ロジックによって強化することで、実際の市場条件下でトレードをインテリジェントに管理します。 単純なグリッドやマーチンゲールシステムとは異なり、この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
LineTrader2.0MT5 MT4:  https://www.mql5.com/en/market/product/67566 リアルタイムでの実際のアカウント上の専門家の作業の監視: 1. 5,000ドルの残高を開始するリアルアカウントは、2020年5月に開始されました。 https://www.mql5.com/en/signals/773977 2. 2022年4月に開始された、10,000ドルの残高を開始するリアルアカウント: 顧問の仕事の背後にある考え方: 誰もが価格が一方向に無限にそして修正なしに行くことは決してないことを知っています。 テクニカル分析のルールは、歴史が常に繰り返されることを示しています。 これは、価格が一定期間後に安値と高値を繰り返すことを意味します。 また、様々な金融商品の価格行動チャートを見てみると、市場が一定の価格帯で横ばいになっている時間の約90%、市場には下降または上昇傾向がある時間の10%しかないことがわかりました。 この理解に基づいて、我々は潜在的な利益で取引操作を開き、記録するアルゴリズムを開発しました。 EAの設定
はじめに(Introduction) **「Terry Lyons Path Signature EA」**は、RSIやEMAのような従来のテクニカル指標ではなく、 Rough Path Theory や Path Signature といった高度な数学理論に基づいて開発された革新的な自動売買システム(EA)です。これらの理論は Terry Lyons によって提唱されました。 このEAは単に価格の動きを分析するだけでなく、市場データの 幾何学的構造 や**曲率(カーブ)**を理解し、より深い市場分析を可能にします。 この数学はどのように機能するのか?(The Math Logic) Rough Path Theoryを使用することで、このEAは市場のノイズを除去し、生データから構造化された**「パス(Path)」**を構築します。 レベル2シグネチャ(Lévy Area): これはパスの曲率とモメンタムを測定します。 これにより、EAは フェイクブレイクアウト を検出し、真のモメンタムが形成されているかを判断できます。 主な特徴(Main Features) ノンラグ技術(Non
Automated trading system. Trend Advisor big_Source MT5 uses 2 EMA indicators and an RSI indicator. Safe, doesn 't use a martingale or a grid of warrants. The expert uses standard stop loss, teak profit and trailer stop. Requirements Optimized for GOLD (XAUUSD). The Expert Advisor trades on M30 timeframes. The minimum deposit is $ 500. Compatible with four- and five-digit accounts. Compatible with all brokers, including American ones, that are subject to the FIFO rule. Input Parameters L
MR-GOLD TRADER はバックテスト中に 1503%の利益 を達成し、 XAUUSD(ゴールド) を H4時間枠 で取引するための非常に収益性の高いエキスパートアドバイザー(EA)です。初期残高 10,000ドル からスタートし、 2019年4月8日 から 2024年10月25日 までのテスト期間に 150,305.26ドル の純利益を生み出しました。 このEAは初心者と経験豊富なトレーダーの両方に適しており、収益性、リスク管理、および信頼性のバランスのとれた組み合わせを提供します。 主な特徴: 対象通貨ペア : XAUUSD(ゴールド) 時間枠 : H4(4時間足) 初期入金 : 10,000ドル レバレッジ : 1:100 モデリング : ティックごと テスト期間 : 2019年4月8日から2024年10月25日まで 取引戦略 : テクニカル指標、価格アクション、トレンドフォロー技術の組み合わせ。EAはゴールドのボラティリティを活用し、タイムリーな市場参入と退出で利益を狙います。 結果 履歴の品質: 98% バー: 8558 ティック: 188407056 シンボル:
ScalpelBarUVL is a new generation universal scalpel bot. It can work on any type of accounts. On any instrument, without exception. Advantages: Automatically adjusts all pip parameter values ​​for the instrument (stops, volatility, spread). That is, if you optimize your stop loss, for example, from 100 to 1000, then such a range will be on any instruments (on all currency pairs), the actual stop loss will be adjusted in accordance with the needs of this instrument. This is very convenient for
GOLD Trading Assistant only XAUUSD - The ultimate AI tool for gold trading GOLD Trading Assistant only XAUUSD is a cutting edge trading tool specifically designed for gold trading, utilizing powerful breakout strategies, operating within the H1 timeframe. Based on advanced artificial intelligence technology, it aims to help traders at all levels succeed in the rapidly changing gold market. Why  Choose  GOLD Trading Assistant only XAUUSD? AI-driven breakthrough strategy: Utilize real-time machin
New Year 1-Month Promotion: Currently priced at $68 USD, promotion ends May 30, 2026. After the promotion, the price will revert to $500 USD per month. High-Precision Scalping Trading Program (MT5) ⸻ Product Philosophy True scalping is not about luck-based entry points, but about the ultimate control over price rhythm, execution speed, and risk boundaries. Precision Scalping Engine was created precisely for this trading philosophy. ⸻ Core Positioning This is a professional-gra
Shuriken Scalper
Ignacio Agustin Mene Franco
Shuriken Scalper XAU — Developed by Worldinversor | 2026 Overview Shuriken Scalper XAU is an institutional scalping Expert Advisor specifically designed to trade the XAU/USD pair (spot gold) on the M5 timeframe. It combines market structure analysis with multiple technical confluence filters, aimed at identifying high-probability zones where the price has "swept" liquidity before continuing its true direction. Core Strategy The core of the system is the detection of Liquidity Sweeps and Fair
NEURAL FVG MATRIX MT5 Advanced Smart Money Trading System for XAUUSD "What if the market isn't random… but structured?" NEURAL FVG MATRIX MT5 is a fully automated Expert Advisor designed to detect Fair Value Gaps (FVG) and institutional liquidity zones in the market. Instead of reacting to price movements, MATRIX analyzes market imbalances and executes trades based on structured price behavior. SYSTEM CONCEPT The core logic of MATRIX is based on: • Fair Value Gap Detection • Smart Money Concept
++ Apex Gold Fusion – The Intelligence and Energy of Gold Trading Apex Gold Fusion is more than just a trading robot; it's a synergy of advanced mathematical algorithms and in-depth gold (XAUUSD) volatility analysis. This advisor is designed for traders who value entry accuracy, capital security, and consistent results. ++ Why choose Apex Gold Fusion? ++ Specialization on XAUUSD: The algorithm is tailored exclusively to the nature of gold movements, taking into account its specific market impul
Sasa XAUUSD H1 — Premium Expert Advisor for Gold Trading Sasa XAUUSD H1 is a fully automated Expert Advisor designed exclusively for the XAUUSD (Gold) market on the H1 timeframe . Built for traders who value long-term stability , controlled risk , and professional performance , the system uses an optimized Long-Only breakout structure , eliminating unnecessary Sell signals and focusing strictly on the statistically stronger bullish direction of Gold. With over 3 years of verified backtesting
CalcWave EA: A Robust, Indicator-Free Trading Solution (Only for EURUSD daily & H1 chart) CalcWave is a professionally engineered Expert Advisor that relies purely on mathematical models and money management rules—no chart indicators are used for trade execution. Backed by over 20 years of trading experience, this EA treats trading as a business, not gambling, and adapts to today’s dynamic markets. Key Features Uses advanced price-action and statistical algorithms instead of visual indicators Co
このプロダクトを購入した人は以下も購入しています
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
Syna
William Brandon Autry
5 (24)
Syna 5 – 永続的インテリジェンス。真の記憶。ユニバーサル・トレーディング・インテリジェンス。 ほとんどのAIツールは一度回答すると、すべてを忘れます。何度も何度もゼロからやり直すことになります。 Syna 5は違います。 すべての会話、分析したすべてのトレード、なぜエントリーしたか、なぜ見送ったか、そしてその後マーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。トレードを重ねるごとに蓄積されるインテリジェンス。 これはマーケティングのためにAI機能を付け足しただけのEAではありません。 これは、インテリジェンスがリセットを止め蓄積を始めた時のトレーディングの姿です。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテールトレーディングに導入した最初期のシステムの一つです。 Syna 5は次なる飛躍です。 従来のEAは静的です。固定されたロジックに従い、マーケットが変化すると取り残されます。 Syna 5は時間とともにインテリジェンスを蓄積します。実際の結果から学び、変化する状況を認識し、思考と応答の
Advanced Multi-Engine Trading System for EURUSD (M1) Version 1.2 updated - see the "What's New" tab for full upgrade details. New Year Special Offer - 90% Discount valid until 31 January 2026 All tests performed on: Every tick based on real ticks Introduction PythonX Fictional EA is built on a multi-layered logic engine designed for high-frequency, high-stability algorithmic execution on EURUSD M1. The system incorporates volatility-based filters, an adaptive entry range algorithm, and a multi-
GoldSMCProFx - Professional SMC Order Book EA for MT5 ( Prop Firm Standart ) STRATEGY • Smart Money Concepts (SMC) with Limit Order entries at Order Blocks • Detects BOS/CHoCH structure breaks for high-probability setups • RSI + ATR + Private Signal filters to reduce false entries • NO TRAILING STOP — Clean exit logic: Partial Profit + Break Even + Structure Reversal ️ PROP FIRM READY • Real-time drawdown protection (Daily/Total/Weekly) • Adaptive risk reduction after consecutive losses
Famous EA – 実運用で検証済みのパフォーマンス Famous EAは、安定した結果と高度な取引執行を求める本格的なトレーダーのために開発された高性能エキスパートアドバイザーです。価格アクション、トレンドラインの動き、そして独自のフィルターアルゴリズムを組み合わせ、高確率のエントリーとエグジットを規律ある形で捉えます。 戦略概要 Famous EAは以下を使用して動作します: リペイントしない独自インジケーターロジック 動的なトレンドライン/サポート・レジスタンス検出 マルチタイムフレームの価格アクション分析 独自のノイズフィルタリングアルゴリズム この組み合わせにより、市場環境に適応しながら過剰取引を避け、構造の整ったセットアップに集中します。 主な特徴 100%自動化 — 手動操作不要 主要FX通貨ペアおよび貴金属に最適化(USDJPY、GBPJPY、XAUUSD、XAUJPYなど) 柔軟なリスク設定(保守的〜攻撃的) 大きなボラティリティを回避するスマートニュースフィルター(任意) 高度なトレーリングストップ&ブレイクイーブン機能 マーチンゲールなし、グリッドなし、ヘッ
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
Swingy3
Bashier Awny Husein Ismail Alhafy
Swingy3: The Institutional Pivot & Swing Execution Engine Swingy3 is an algorithmic trading system designed for MetaTrader 5, focusing on high-conviction price action swings and institutional-grade risk management. Unlike standard retail indicators, Swingy3 analyzes market structure through dynamic pivot points and multi-timeframe confluence to identify entries where momentum and exhaustion align. The Strategy The core of Swingy3 is its advanced Pivot Analysis engine. It detects institutional "S
AI Nodiurnal EAは、先進的なForexロボットであり、最先端の機械学習技術を活用して取引戦略を最適化し、動的な外国為替市場でのパフォーマンスを向上させます。用語「Nodiurnal」は、通常の昼間の取引時間だけでなく、非標準の時間帯にも適応して稼働し、外国為替取引に対する連続的かつ適応的なアプローチを提供する能力を反映しています。 設定:通貨ペアのデフォルト設定:EURUSD H1。特別な設定は購入後にのみ提供されます。 リアルタイムアカウントシグナルはこちら: https://www.mql5.com/ja/signals/1270367 MT4バージョンはこちら: https://www.mql5.com/ja/market/product/69905 マーケットローンチプロモ!残り3/10のコピーのみ:USD 5,500 次の価格:USD 7,500 最終価格:USD 10,000 主な特徴: 機械学習アルゴリズム:AI Nodiurnal EAの主力は、機械学習アルゴリズムの活用にあります。これらのアルゴリズムは膨大な量の歴史的な市場データを分析し、パターン、トレ
AI Forex Robot - The Future of Automated Trading. AI Forex Robot is powered by a next-generation Artificial Intelligence system based on a hybrid LSTM Transformer neural network, specifically designed for analyzing XAUUSD, EURUSD and BTCUSD price movements on the Forex market. The system analyzes complex market structures, adapts its strategy in real time and makes data-driven decisions with a high level of precision. AI Forex Robot is a modern, fully automated system powered by artificial intel
GOLD GRABBER Israel L. MT5 Grid-Hedge EA. WARNING: EA has Optimised  sets for GOLD (XAUUSD) ONLY (Minimum Capital: $1000) Download sets below: Use these sets for XAUUSD:  https://drive.google.com/drive/folders/1FBfc-eE7B7APhZ-P754R76d3xih8OnXX?usp=sharing Professional Grid-Hedge Trading System with Advanced Risk Management This sophisticated Expert Advisor employs a dual-directional grid strategy designed for consistent performance in volatile markets. The system opens positions in both directi
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 登場 – より速く。よりスマートに。かつてないほど高性能に。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール取引に導入した最初期のシステムの一つです。 AiQ Gen 2はそのラインにおける次の進化です。 AiQ Gen 2は全く異なるレベルのスピードのために構築されています。指値注文がそのエッジの核にあり、モメンタムが拡大する前に精密にポジションを取り、そしてアダプティブ・インテリジェンスに引き継ぎます。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 AiQ Gen 2は違います。 すべての指値注文セットアップ、各配置や調整の背後にある推論、なぜトリガーされたか、なぜ見送ったか、そしてマーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される永続インテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これは精密な指値注文執行を中心に構築された高速専門インテリジェンスです。 従来のEAは固定されたロジックの中に閉じ込
NorthEastWay MT5
PAVEL UDOVICHENKO
4.5 (8)
NorthEastWay MT5は完全自動の「プルバック」トレーディングシステムであり、特に人気の「プルバック」通貨ペア(AUDCAD、AUDNZD、NZDCAD)での取引に効果的です。このシステムは、外国為替市場の主要なパターンである、価格が急激に動いた後に元の位置に戻るという特性を活用しています。 タイムフレーム: M15 主要通貨ペア: AUDNZD、NZDCAD、AUDCAD 追加通貨ペア: EURUSD、USDCAD、GBPUSD、EURCAD、EURGBP、GBPCAD EA購入後、必ず私にプライベートメッセージを送ってください。プライベートグループに追加し、設定ファイルや詳細な説明を送付します。 EAのインストールや設定について、購入者全員をサポートします。 EAを初めて使う方には、使用方法を丁寧にお教えします。 EA設定: OneChartSetupを使用すれば、単一のチャート上で全ての通貨ペアを取引できます(M15タイムフレームのみ)。 このEAはスプレッド、スリッページ、またはブローカーに関連する他の変数に影響を受けません。 推奨される通貨ペアのみを使用してくだ
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
Aegis Quant Pro - Institutional Prop Firm Engine Welcome to the World of Quant. One of our flagships —   Aegis Quant Pro , is the institutional-grade core of the quantitative infrastructure. Our Mission: Capturing alpha while protecting your downside with absolute precision. First of all, we are being brutally honest here first (no sugar-coated words): A Note on Backtesting Aegis Quant Pro is optimized for live market conditions. Backtest results will vary significantly depending on your brok
Remstone
Remstone
4.9 (10)
Remstoneは、ありきたりなエキスパートアドバイザーではありません。 長年の研究と資産管理の成果を融合させたものです。 Remstone is a french financial research company delivering trading signals to regulated asset managers. Remstone ETI   (ISIN: DE000AMC0DP2) is our Exchange Traded Instrument on the Stuttgart Stock Exchange, investable from Interactive Brokers. 約束も、曲線フィッティングも、幻想もなし。ただ、豊富なライブ体験だけ。 Remstone の力を活用して成功しているトレーダーの成長コミュニティに参加しましょう。 Remstoneは、市場トレンドを活用するために設計された完全自動取引ソリューションです。高度なアルゴリズムを基盤とし、信頼性と成果を求めるトレーダーのために設計されています。 実証された精度でトレーディングの優位性を高め
) SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping & Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold) . Version 7.2 introduces the "Smart Adaptive Engine" , making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. ️ CRITICAL REQUIREMENTS Latency: You MUST use a VPS with < 20ms latency (Recommended: MQL5 Built-in VPS). Account
Musahi
OneUp Trading LLC
Built on a realistic and structured day trading concept, this EA applies a breakout logic commonly used in professional environments. Its goal is to capture directional market movements following periods of consolidation, without employing high-risk techniques such as martingale or grid systems. Strategy The system operates by placing pending orders at the extremes of a defined range (for example, between 08:00 and 09:00). This technique seeks to exploit breakouts that often set the market dir
Gold Liquidity Hunter is a professional automated trading system engineered for the high-volatility nature of the modern XAUUSD (Gold) market. The algorithm operates on the H1 timeframe , utilizing a strategy based on institutional liquidity sweeps and price reclaims. The "Volatility Regime" Strategy This Expert Advisor is tuned specifically for the post-2024 market structure, where Gold daily ranges have expanded significantly. Unlike older strategies designed for smaller ranges, Gold Liquidity
Pure Scalper R1 – XAUUSD(金)向け高度なスキャルピング・エキスパートアドバイザー Pure Scalper R1は、MetaTrader 5プラットフォーム上でXAUUSD(金)市場のスキャルピングに特化して設計された、最先端の完全自動エキスパートアドバイザー(EA)です。精度と効率性を重視して構築されたこのEAは、高度なアルゴリズムと強力なカスタムインジケーターを活用し、高確率の取引機会を的確に捉え、驚異的なスピードで取引を執行し、リスクを効果的に管理します。経験豊富なトレーダーでも初心者でも、Pure Scalper R1は、ボラティリティの高い金市場における取引パフォーマンスを向上させる強力なツールです。 Pure Scalper R1戦略 - AI、ニューラルネットワーク、機械学習、マーチンゲール法、グリッド手法は一切使用していません。代わりに、独自に開発した強力なインジケーターを活用することで、安定した低リスクのパフォーマンスを実現します。 XAUUSD(金)に特化:金は世界で最も取引量の多い商品の一つであり、高いボラティリティと流動性で知られ
次は、日本語への正確な翻訳です。 統計的エッジ・トレーディングの8つの柱 はじめに トレードにおいて、過去が未来を予測することはありません。しかし、時間に刻まれたパターンは、繰り返される時を待つ市場のリズムを明らかにします。このガイドでは、「統計的エッジ・トレーディングの8つの柱」を紹介します。これは、過去のデータを実行可能なトレード・インテリジェンスへと変換する包括的なフレームワークです。 このシステムの核となるのは「ヒストリカル・データ(過去のデータ)」です。一過性のインジケーターや遅行シグナルとは異なり、過去のパターンは金融市場の季節的な鼓動を明らかにします。それは、人間の商取引、機関投資家の行動、そして経済的必然性という不変のサイクルに影響され、数十年にわたって繰り返されてきたパターンです。 農家を例に考えてみましょう。彼らは収穫の時期を知っています。なぜなら、自然は太陽と降雨の予測可能なサイクルに従っているからです。金融市場も同じように機能します。決算報告、財政予算、ポートフォリオのリバランスなどが、価格変動に季節的なパターンを生み出します。これが、グローバル市場を流れる資金
Benefit EA Uses only hedging accounts.     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 oper
CRYSTAL AI PRO v7.21 — MT5 エキスパートアドバイザー 概要 XAUUSD(ゴールド)および主要FXペア向けの自動売買システム。エントリー、SL/TP、トレーリング、ドローダウン管理をルールベースで実行。利益は保証されません。リスク告知をご確認ください。 要件 プラットフォーム:MetaTrader 5 口座タイプ:ECN/RAW 推奨 接続:24/7(VPS 推奨) 時間足:M1〜H4 初期設定 Algo Trading を有効化。 チャートにEAを適用(1シンボル=1チャート)。 Inputs の AI_Access_Mode = ON を設定し、再読み込み。 資金・レバレッジに合わせてリスク調整。 推奨条件 十分な証拠金と安定した約定(低スプレッド/低レイテンシ)。 ゴールドは $5,000+ / 1:500 が目安。複数シンボル時はリスク縮小。 まず デモ で検証。 主な機能 SL/TP 、 ブレークイーブン 、 トレーリング を伴うエントリー/エグジット。 ドローダウン抑制 :環境悪化時に取引頻度を低下。 マルチシンボル対応(シンボルごとにチャート
Traders Toolbox Premium   はオールインワンツールです   それらの戦略と計算を自動化するために、一般的な取引戦略に関する広範なトレーニングに基づいて作成されました。   (Jason Kisoglooによって設計およびプログラムされました) 特徴: 19個々の信号 -これらの信号の それぞれ は、ニューラルネットワークスタイルの構成でバイアスされ、最終的な/全体的な結果を構成します。 各信号には独自の設定が あり 、必要に応じてカスタマイズまたは最適化できます。   包括的なオン - 画面 - ディスプレイ -包括的な情報とツールチップを備えた6つのスナップアウェイパネル。 (パネルの境界線をクリックして、折りたたんだり、離したりします...設定は機器ごとに自動的に保存されます):   信号パネル -バイアス情報と信号の詳細を含む信号分析を表示します。   ニュースパネル -アップ、さらにはニュース来 トン の に基づいて 予測 の イベントへのカウントダウンと現在の機器に影響を。 (内部M   T5 エコノミックカレンダーと 外国為替ファクトリースクレー
SkyScraperMT5
Teressa Herlene Thomson
Overview SkyScraper is a sophisticated automated trading system built exclusively for MetaTrader 5. This versatile EA adapts to your trading style on any timeframe (optimized for 3-5 minute charts) and works seamlessly across forex pairs, cryptocurrencies, and metals including gold. Why SkyScraper? Smart Automation That Protects Your Capital Intelligent trade execution with multi-layer risk controls Dynamic position sizing that automatically adjusts to your broker's requirements Adaptive stop l
Brevo Quantum EA
BK CORP CLUB (PTY) LTD
5 (1)
Brevo Quantum EA – Advanced MT5 Algorithmic Trading System Expert Advisor Overview Brevo Quantum EA is a high-performance, fully automated Expert Advisor for MetaTrader 5, engineered specifically for traders with prior experience in algorithmic trading, advanced system behaviour, and disciplined capital management. Positioned as the advanced evolution of BK Corp Club EA , this system is designed for traders operating with larger capital allocations, deeper risk awareness, and a requirement fo
XAU Dominator Pro – Precision Scalping for GOLD (XAUUSD) on M5 XAU Dominator Pro.mq5 is a high-performance Expert Advisor built specifically for XAUUSD (GOLD), optimized on the M5 timeframe for short-term scalping and trend-based trades. Engineered to dominate the gold market using precision entries and robust risk control, this EA is designed for consistent gains with discipline. Key Features ️ Symbol: XAUUSD / XAUUSDc Timeframe: M5 (5-minute) Trading Style: Scalping + Trend Acco
The Neurolite Expert Advisor offers trade decisions based on a neural network trained using a 10-year history of real tick data. The trading is performed only on GBP/USD. Its main peculiarity is a small amount of input parameters so as to facilitate the working process of users. The Neurolite EA will fine-tune all the parameters for you. Trading Strategy The system does NOT use dangerous strategies such as averaging or martingale, but strictly adheres to the neural network instructions. Stop lo
The Neurolite Expert Advisor offers trade decisions based on a neural network trained on 5-years of real tick data. Trading is performed only on the EUR/USD currency pair. Its main peculiarity is a small amount of input parameters so as to facilitate the working process of users. The Neurolite EA will fine-tune all the parameters for you. This Expert Advisor is based on the previously released Neurolite EA gbpusd , which was adjusted for successful trading on the EUR/USD currency pair. Trading
A scalper system only work during Asian hours. Several unique indicators to detective the price fluctuation. Dynamic TP/SL level according to market conditions. Fixed stoploss to protect the capital, very low risk of losing a lot of money. No need to obtain SET files. The parameters are the same for each currency pair. It is optimized to work on EURAUD . It is recommended to use Eagle Scalper on M15 chart. It is recommended to run it on a real ECN broker with very low spread . It is recommended
作者のその他のプロダクト
RSI+EMA Grid & Dragonfly+EMA Grid System The RSI+EMA Grid & Dragonfly+EMA Grid System is a sophisticated Expert Advisor (EA) developed for traders who seek both consistency and adaptability in dynamic market conditions. Combining two proven strategies, this EA is built for precision entries, controlled risk, and intelligent position management. Strategy 1: RSI + EMA Grid System This strategy uses a combination of the Relative Strength Index (RSI) and Exponential Moving Averages (EMAs) to identi
Professional-Grade VWAP + Market Profile Technology for Precision Trading VWAP Scalping Pro is an advanced analytical tool that integrates Volume-Weighted Average Price (VWAP) analysis with professional Market Profile visualization. It provides traders with institutional-style insights into price structure, volume distribution, and session dynamics — ideal for scalping, intraday, and swing trading strategies. Key Features Triple VWAP Strategy Framework Trend VWAP (50) – Defines long-term dire
All-in-One Chart Patterns Professional Level: The Ultimate 36-Pattern Trading System All-in-One Chart Patterns Professional Level is a comprehensive 36-pattern indicator well known by retail traders, but significantly enhanced with superior accuracy through integrated news impact analysis and proper market profile positioning. This professional-grade trading tool transforms traditional pattern recognition by combining advanced algorithmic detection with real-time market intelligence.  CORE FEATU
FREE
Engulfx Pro – Advanced Breakout & News-Driven EA for MT5 Engulfx Pro is a powerful and intelligent Expert Advisor designed for traders who demand smart decision-making, precision entries, and dynamic risk control. This EA combines high-quality technical confirmations with market timing logic to trade breakouts effectively — while staying ahead of volatility caused by major news events. Whether you're a trend trader or a volatility hunter, Engulfx Pro adapts with two professional-grade strategi
FREE
Stop Loss Hunting: Market Manipulation Visualized This professional candlestick chart clearly highlights stop loss hunting zones —a common market manipulation tactic used by institutional players. Sharp downward wicks pierce below local support levels, triggering retail traders' stop losses before price reverses sharply in the opposite direction. Each event is marked with precision red arrows , showcasing engineered liquidity grabs designed to shake out weak positions before strong bullish moves
FREE
Key Marketing Elements:  Professional Positioning: Premium product language - "Ultimate Professional Trading System" Enterprise terminology - "institutional-quality," "professional-grade" Technical credibility - AI-powered, neural network technology Market compliance - MQL5 certified, fully compliant  Value Proposition Highlights: Triple strategy framework with clear explanations AI/Neural network technology as key differentiator Professional visual interface with specific details Comprehensive
FREE
RSI + Grid Distance Strategy with 200 EMA Filter Overview The RSI + Grid Distance Strategy integrates momentum and mean-reversion principles within a structured grid trading framework. By combining the Relative Strength Index (RSI) with dynamic grid levels and a 200-period Exponential Moving Average (EMA) filter, the system seeks to optimize trade timing, trend alignment, and overall position efficiency. Core Logic 1. RSI Signal Generation The algorithm utilizes a 17-period RSI , identifying b
Smart Money EQ H/L Scanner v2.0 – Advanced Institutional Market Structure Indicator for MT5 Overview The Smart Money EQ H/L Scanner v2.0 is a professional MT5 indicator built to identify Smart Money Concepts (SMC) in real time. It detects Equal Highs (EQH) and Equal Lows (EQL) patterns — zones that often indicate institutional liquidity targets — helping traders anticipate potential reversals and market manipulation areas. This tool combines price structure, volume profile, and economic event d
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  MARKET PROFILE PRO - Professional Volume Analysis & Smart Trading Dashboard Transform Your Trading with Institutional-Grade Market Profile Analysis Market Profile Pro brings Wall Street's most pow
ICT Breaker Block EA - Professional Order Block Trading System  Trade Like The Institutions The ICT Breaker Block EA is a sophisticated automated trading system based on the powerful Inner Circle Trader (ICT) methodology. This EA identifies institutional order blocks, detects when they are broken (becoming "breaker blocks"), and enters trades when price returns to test these levels.  What This EA Does Core Strategy The EA automatically: Detects Order Blocks - Identifies consolidation zones where
LIQUIDITY VOID EA          Professional MetaTrader 5 Expert Advisor PRODUCT OVERVIEW The Liquidity Void EA is a sophisticated automated trading system designed for MetaTrader 5 that capitalizes on liquidity gaps in the market. Based on institutional trading concepts, this
SMC STRATEGY SCALPER PRO - EXPERT ADVISOR ========================================== PROFESSIONAL TRADING SOLUTION FOR MT5 OVERVIEW -------- SMC Strategy Scalper Pro is an advanced automated trading system built on Smart Money Concepts (SMC) methodology. This Expert Advisor combines institutional trading strategies with cutting-edge algorithmic execution to identify and capitalize on high-probability market structures. Designed for serious traders who demand precision, reliability, and prof
Skyliner
Domantas Juodenis
Skyliner EA - The Professional Smart Money Trading System Hello, traders! I am Skyliner , the ultimate multi-market Expert Advisor built on institutional Smart Money Concepts and designed to trade like the professionals do. Unlike other EAs that focus on a single instrument, I am a versatile, all-market powerhouse capable of delivering precision trades across Forex majors, precious metals, and stock indices. My specialty? Smart Money trading using BOS (Break of Structure), FVG (Fair Value Gaps),
Revolution Scalper X v2.0 - Expert Advisor Description Revolution Scalper X is a sophisticated multi-asset scalping Expert Advisor (EA) for MetaTrader 5 that combines advanced risk management, flexible trading strategies, and comprehensive monitoring capabilities through dual on-chart dashboards. Key Features: Multi-Asset Trading Capabilities: Dual Mode Operation : Can operate in single-pair mode (current chart symbol) or multi-asset mode Asset Categories : Supports Forex, Cryptocurrency, and Me
Alliance EA – Smart Money & Swing Trading Expert Advisor for MT5 Alliance EA is a professional MetaTrader 5 Expert Advisor built around Swing Trading and Smart Money Concept (SMC) strategies. It is designed for traders who want a structured, rule-based, and disciplined automated trading system rather than risky scalping or martingale approaches. Alliance EA focuses on high-probability setups , institutional price behavior, and capital protection—making it suitable for both new and experienced t
Induciment Pinbar Signal – Professional Supply & Demand Trading System IT-Pinbar SD is a professional Expert Advisor built on institutional supply & demand concepts , inducement detection, and pinbar confirmation. It is designed to trade where smart money operates , not where retail traders chase price. The EA automatically identifies high-quality supply and demand zones , filters them by strength, and waits for liquidity grabs (false breakouts) before entering. Optional pinbar confirmation ensu
ORB Strategy X (For people who can contact me directly 75% with updates if i do them, discount will be for a month) This Strategy Was Banned. Now It's Back. The Opening Range Breakout is not new. Institutional desks have traded it for decades. When it started appearing in automated form on retail platforms, something interesting happened — brokers began quietly restricting accounts that ran it consistently. Requote storms. Artificial slippage on breakout candles. Platform-level execution delays
PHANTOM SNAP EA  v3.0          Advanced CRT + TBS Automated Trading System               MetaTrader 5 | Multi-Symbol | Netting  OVERVIEW Phantom Snap EA is a professional algorithmic trading system built on two of the most pow
OPEN RANGE BREAKOUT  PRO WHAT IS OPEN RANGE BREAKOUT PRO? Open Range Breakout Pro is a fully-featured, all-in-one trading indicator built exclusively for MetaTrader 5. It automatically identifies the Opening Range — the high and low formed during the first configurable minutes of a trading session — and then detects, visualises, and alerts you to high-probability breakout opportunities the moment price escapes that range. Beyond the core strategy, the indicator ships with a professional dual-
CandlePatternDetector v2.0 MT5 Custom Indicator — Full Description & User Guide What This Indicator Does CandlePatternDetector is a MetaTrader 5 chart indicator that automatically scans every closed bar on your chart and identifies 8 key candlestick reversal patterns in real time. When a pattern is found, it places a coloured arrow directly above or below the signal candle — green for bullish signals, red for bearish signals. Every signal is context-aware : the indicator reads the current market
BOWLER SCALPER X VWAP Point of Control Scalping System for MetaTrader 5 Version 1.03  |  Expert Advisor  |  MetaTrader 5                                                                                                                                                                                                                                                                                                                                                           --------------------------------
フィルタ:
レビューなし
レビューに返信