ScalpEA v2 preview

5

Hi, I would like to introduce you version of my EA for FVG scalping.

Difference between full and preview version is only in machine learning part. If you have any question visit my channel.

How does it work?:

  1. EA waits until there are 3 candles (H1) after each other and between (candle 1 top wick) and (candle 3 bottom wick) is gap
  2. After that EA places pending order below candle 3 bottom wick and waits if market returns to the gap.
  3. Thats all it does.

Some additonal info about full version and configs here
Channel where to discuss and share your ideas

Graph at the screensots is from backtest with default settings on XAUUSD.
Backtest it and test it on demo first, this version does not have all the protection that full version does. Simply test it first, no profit is guaranteed!
FYI, I am using this and full version on VT Markets, Vantage and Purple trading you can see them on myfxbook.
Also make sure to enable Algoritmic trading in your Metatrader settings or it will not work! (Tools - Options - Expert advisors)

MODES of TP:

MODE 1: FIXED TAKE PROFIT
- Parameter: TP distance (points) 
- Default: 500 points
- Advantage: Simple, predictable
- Use case: Scalping strategies

MODE 2: TRAILING TAKE PROFIT
- Trailing activation (points): Profit needed before activation (default 50)
- Trailing distance (points): Distance maintained from current price (default 200)
- Behavior: Moves only in profit direction
- Benefit: Captures extended moves
- Update trigger: 2+ points price movement

MODE 3: EXPERIMENTAL (TRAILING STOP LOSS)
- Experimental activation (points): Distance from TP (default 50)
- Experimental trailing SL (points): Distance from price (default 200)
- Minimal profit lock (points): Minimum profit guarantee (default 20)
- Purpose: Capital protection near TP
- Mechanism: Progressive SL tightening


You can find full ScalpEA v2 with machine learning functions here: https://www.mql5.com/en/market/product/167553

AI generated full system description:

ScalpEA V2 Preview — FVG Scalping Expert Advisor

AI generated description:

FVG Scalping Expert Advisor for MetaTrader 5

Version 2.650 | © Martin Vrlik 2026

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

OVERVIEW

────────

ScalpEA v2 is an automated Expert Advisor for MetaTrader 5 that detects and trades Fair Value Gap (FVG) zones. A Fair Value Gap is a price inefficiency that forms when three consecutive candles leave an uncovered gap between the high of the first candle and the low of the third candle (bullish FVG), or vice versa (bearish FVG). The EA places pending limit or stop orders at these zones and manages them through a complete set of filters, safety checks and risk controls.

The EA is primarily designed for XAUUSD (Gold) but works on any instrument and timeframe combination supported by MetaTrader 5.


HOW IT WORKS

────────────

On every new bar of the detection timeframe (sourceTF), the EA scans recent price history for valid FVG zones and stores them in an internal cache. On every new bar of the placement timeframe (placementTF), it reads that cache, applies all active filters, and places pending orders for zones that pass every check. The two timeframes can be set independently, allowing combinations such as detecting FVGs on H1 while evaluating placement conditions on M30.

Before placing any order the EA runs the following checks in sequence: duplicate detection (no two orders for the same FVG zone), candle direction filters, EMA trend filter, gap size filters, distance from current price, zone age, spread limit, margin and volume validation, and STOPS_LEVEL compliance. Only zones that pass all active filters receive a pending order.

If an order placement fails because the market is closed (for example at session open), the EA saves the order to a retry queue and attempts to place it again every tick for up to five minutes.


SIGNAL FILTERS

──────────────

Third candle confirmation — the candle that closes the FVG gap must move in the direction of the signal: green (close > open) for bullish FVG, red for bearish FVG.

All-three-candles confirmation — all three candles forming the FVG must be the same color. This is a stricter version of the above filter and ensures the FVG is backed by a consistent directional impulse rather than a mixed sequence.

Middle candle wick check — the wick of the middle candle (the one between the two gap candles) is inspected. If its counter-directional wick is more than wickMultiplier times longer than its directional wick, the signal is rejected. This filters out candles with strong rejection shadows that suggest weak momentum.

EMA(200) trend filter — before placing any pending order, the EA checks whether the last N closed H1 candles all lie entirely above (for BUY) or entirely below (for SELL) the 200-period Exponential Moving Average on the H1 chart. For a BUY order to be allowed, the Low of every one of those candles must be greater than the EMA value at that bar. For a SELL order, the High of every candle must be below the EMA. This filter always uses the H1 timeframe regardless of the sourceTF and placementTF settings. If not enough historical data is available at EA startup, the filter is skipped for that bar to prevent false blocking.

SELL-specific gap filters — SELL signals require a larger minimum gap size than BUY signals (controlled by a multiplier), and optionally a maximum gap size cap to avoid trading exhaustion moves.


PENDING ORDER MANAGEMENT

────────────────────────

The EA enforces a configurable maximum number of pending orders per direction (BUY and SELL are counted separately). When the FIFO system is enabled and the limit is reached, the oldest pending order is automatically removed to make room for the newest FVG signal. When FIFO is disabled, new signals are skipped until an existing pending order is filled or expires.

Pending orders are automatically removed when the FVG zone that generated them reaches its maximum age (maxFVGDurationMinutes). The age is measured from the time the FVG zone was formed, not from the time the order was placed.


RISK AND MONEY MANAGEMENT

──────────────────────────

The EA supports two lot sizing modes. In fixed mode, every trade uses the same lot size defined by the lotSize parameter. In dynamic mode, the lot size is calculated automatically for each trade based on the account balance, the configured risk percentage per trade, and the Stop Loss distance, ensuring that each trade risks no more than the specified percentage of the account balance.

SELL trades support independent TP, SL, risk percentage and pending order limit settings, because gold tends to behave differently during price drops versus rallies.

Every order is validated before sending: free margin is checked against the required margin, volume is verified against the symbol's minimum, maximum and step values, the number of pending orders is checked against the broker's account limit, and SL/TP distances are verified against the symbol's STOPS_LEVEL.


VISUALIZATION

─────────────

Active FVG zones are drawn as colored rectangles directly on the chart. Bullish zones use one color and bearish zones another, both fully configurable. Transparency, maximum number of visible zones and optional size labels can all be adjusted. Zones are automatically removed from the chart when they expire.


A dashboard panel in the top-left corner of the chart shows current account balance, equity, floating P/L, total EA profit since the start, number of closed trades, win rate, and the current number of pending orders per direction.


INPUT PARAMETERS

────────────────


Basic Settings
allowLong — enables BUY pending orders from bullish FVG zones. When set to false, no BUY orders are placed regardless of detected signals.
allowShort — enables SELL pending orders from bearish FVG zones. When set to false, no SELL orders are placed.
magicNumber — unique identifier assigned to all orders and positions opened by this EA. Change this value if you run multiple EAs on the same account to avoid conflicts.
configName — a text label displayed in the on-chart dashboard. Useful for identifying different parameter sets during optimization or testing.
tradeComment — comment string attached to every order and visible in the MT5 trade history.
sourceTF — the timeframe on which FVG zones are detected. The EA scans candle history on this timeframe to find valid gaps. Recommended values are H1 or H4.
placementTF — the timeframe that controls when pending orders are evaluated and placed. A new evaluation runs only at the open of each new bar on this timeframe. Must be equal to or smaller than sourceTF.

Money Management
lotSize — fixed lot size used for every trade when dynamic lot sizing is disabled.
useDynamicLotSizing — when true, the lot size is calculated automatically based on account balance, risk percentage and Stop Loss distance. When false, the fixed lotSize value is used.
riskPerTradePercent — maximum risk per trade expressed as a percentage of account balance. Active only when useDynamicLotSizing is true.

FVG Detection
maxFVGPerSide — maximum number of pending orders allowed simultaneously in one direction. BUY and SELL are counted separately.
minGapPoints_global — minimum FVG gap size in points. Gaps smaller than this value are ignored as noise. For XAUUSD, 30 points equals 3 pips.
maxFVGDurationMinutes — maximum age of an FVG zone in minutes, measured from the time the zone was formed. Zones older than this are removed from the cache and any pending orders generated by them are cancelled.
maxFVGDetectionWindow — how far back in history (in minutes) the EA searches for FVG zones during each detection pass.
entryOffsetPoints — offset added to the FVG boundary to set the entry price. For BUY orders: entry = FVG top + offset. For SELL orders: entry = FVG bottom - offset.
requireThirdCandleConfirmation — when true, the candle that closes the FVG must be in the direction of the signal (green for bullish, red for bearish).
requireAllThreeCandlesConfirmation — when true, all three candles forming the FVG must be the same color. Provides stronger directional confirmation than the single-candle check above.
enableMiddleWickCheck — when true, the EA inspects the wick of the middle candle of the FVG formation and rejects signals where the counter-directional wick is disproportionately large.
wickMultiplier — the maximum allowed ratio of the counter-directional wick to the directional wick of the middle candle. A value of 2.0 means the counter-directional wick may be at most twice as long as the directional wick.
useFIFOPendingSystem — when true and the pending order limit is reached, the oldest pending order is removed to make room for the new  signal. When false, new signals are skipped while the limit is full.

Take Profit and Stop Loss
takeProfitType — selects the TP mode. In this version only TP_FIXED (fixed take profit) is available.
takeProfitPips — distance from entry price to Take Profit in points. For XAUUSD: 500 points = 50 pips.
stopLossPips — distance from entry price to Stop Loss in points for BUY trades. The default is intentionally high and acts as a safety net; primary exits rely on the Take Profit.

SELL Trade Settings
useSellSpecificSettings — when true, SELL trades use the parameters defined in this group instead of the global BUY parameters. Recommended for XAUUSD due to asymmetric volatility between upward and downward moves.
sellTakeProfitPips — Take Profit distance for SELL trades in points, independent of takeProfitPips.
sellStopLossPips — Stop Loss distance for SELL trades in points.
sellRiskPercentOverride — overrides the risk percentage for SELL trades when dynamic lot sizing is active. Set to 0.0 to use the global riskPerTradePercent.
sellMaxPendingsOverride — overrides the maximum number of SELL pending orders. Set to 0 to use the global maxFVGPerSide.

SELL FVG Filters
sellRequireBiggerGap — when true, SELL signals require a larger minimum gap than BUY signals, multiplied by sellGapMultiplier.
sellGapMultiplier — multiplier applied to minGapPoints_global to calculate the effective minimum gap for SELL signals. Ignored when sellMinGapPointsFixed is greater than zero.
sellMaxGapPoints — maximum allowed SELL FVG size in points. Gaps larger than this are rejected as potential exhaustion moves. Set to 0 to disable this cap.
sellMinGapPointsFixed — fixed minimum gap size for SELL signals in points. When greater than zero, this value is used directly and sellGapMultiplier is ignored.

Safety Limits
maxSpreadPoints — maximum allowed spread in points. When the current spread exceeds this value, no new pending orders are placed. Position management (trailing, cleanup) continues regardless of spread.
maxDistanceFromPrice — maximum allowed distance between the pending order entry price and the current market price, in points. FVG zones whose entry price is too far from the current price are skipped.
countOpenPositionsInLimit — when true, open positions are counted together with pending orders toward the maxFVGPerSide limit. When false, only pending orders are counted.

EMA Trend Filter
enableEMATrendFilter — enables the EMA(200) trend filter. When active, a pending order is placed only if the last N closed H1 candles all lie entirely on the correct side of the 200-period EMA. BUY orders require all candles above EMA (Low > EMA), SELL orders require all candles below EMA (High < EMA). The filter always uses H1 regardless of sourceTF and placementTF.
emaTrendCandleCount — number of recently closed H1 candles that must satisfy the EMA condition. Higher values produce a stricter trend requirement. A value of 10 means all ten of the last closed H1 candles must fully clear the EMA line.

Visual Settings
showFVGOnChart — draws active FVG zones as filled rectangles on the chart.
bullFVGColor — fill color for bullish (BUY) FVG rectangles.
bearFVGColor — fill color for bearish (SELL) FVG rectangles.
fvgTransparency — transparency of the FVG rectangle fill. Range 0 (opaque) to 255 (fully transparent). A value of 90 produces a light, non-intrusive tint.
showOnlyActiveFVG — when true, only FVG zones relevant to the current allowLong/allowShort configuration are displayed. When false, all detected zones are shown regardless of trade direction settings.
maxFVGToShow — maximum number of FVG rectangles drawn on the chart per direction. Limits visual clutter when many zones are detected.
showFVGLabels — when true, a text label showing the gap size in points is displayed at the center of each FVG rectangle.

Debug and Testing
debug — enables verbose logging to the MT5 Journal tab. Outputs detailed information about FVG detection, filter decisions, lot calculations, EMA trend checks, SL/TP modifications, and order management. Disable in live trading to reduce log volume.


    レビュー 2
    Samuel Henrique Almeida Ferreira
    774
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    おすすめのプロダクト
    The idea of the system is to indentify the reversal patterns using the calculation of the composite candle. The reversal patterns is similar to the "Hammer" and "Hanging Man" patterns in Japanese candlestick analysis. But it uses the composite candle instead the single candle and doesn't need the small body of the composite candle to confirm the reversal. Input parameters: Range - maximal number of bars, used in the calculation of the composite candle. Minimum - minimal size of the composite can
    FREE
    Main purpose:   "Pin Bars"   is designed to automatically detect pin bars on financial market charts. A pin bar is a candle with a characteristic body and a long tail, which can signal a trend reversal or correction. How it works:   The indicator analyzes each candle on the chart, determining the size of the body, tail and nose of the candle. When a pin bar corresponding to predefined parameters is detected, the indicator marks it on the chart with an up or down arrow, depending on the directi
    FREE
    SpikeBoom
    Kabelo Frans Mampa
    A classic buy low & sell high strategy. This Bot is specifically Designed to take advantage of the price movements of US30/Dow Jones on the 1 Hour Chart, as these Indices move based on supply and demand. The interaction between supply and demand in the US30 determines the price of the index. When demand for US30 is high, the price of the US30 will increase. Conversely, when the supply of shares is high and demand is low, the price of t US30  will decrease. Supply and demand analysis is used to i
    FREE
    Range Auto TP SL  is for you, 100% free for now, download it and give me a good review and you are free to use it for lifetime !!!! Range Auto TP SL is a EA to set Stop Loss and Take Profit level based on range using Average True Range (ATR). It works on both manually opened positions via PC MT5 Teriminals or MT5 Mobiles and EA/robots opened position. You can specify magic number for it to work on or it can work on all the positions. Many EA does not good Stop Loss and Take Profit function and
    FREE
    !! THE FIRST FREE NEURAL NETWORK EA WITH EXCELLENT AND REALISTIC RESULTS.!! Another beautiful work of art, guys you don't know the powerful creations that are created by my developer Nardus Van Staden. Check him out guys and gals, he is the real deal, an amazing person and a professional when it comes to coding and business, if you want work done!, hit him up! you can get in contact with him HERE . THE FOLLOWING PRODUCT IS A FREE VERSION OF A PAID VERSION THAT IS TO COME, PROFITS ARE GOING TO B
    FREE
    Silent Wave
    Murtadha Majid Jeyad Al-Khuzaie
    Silent Wave EA – Free Expert Advisor for MetaTrader 5 Designed specifically for USDJPY on the 15‑minute timeframe, Silent Wave EA is a unique trading system that captures hidden market rhythms when volume fades. Unlike conventional strategies that rely on heavy filters or lagging indicators, Silent Wave listens to the “quiet moments” of the market. When trading activity contracts, the market often prepares for its next decisive move. This EA is engineered to detect those silent pulses and turn
    FREE
    Smart Super Trend Indicator (Free) Turn volatility into opportunity — Catch trends early and trade smarter The Supertrend Indicator is one of the most trusted tools in technical analysis, designed to help traders quickly identify the prevailing market trend and spot potential entry and exit points with precision. Built on price action and volatility, this trend-following indicator adapts dynamically to market conditions, making it a powerful companion for both beginners and experienced traders.
    FREE
    Gives you a trading environment where you can do forward testing without the use of a live trading account. You will be able to trade the same Market without having to wait for the next day, but by just fast forwarding  on the strategy tester and going straight to that session. You can trade it over and over again without having to just look at the charts and have a bias analysis when  back testing on a chart that is not moving
    FREE
    LAUNCH OFFER - FREE for the first users (in exchange for an honest review + feedback). After that the price steps up as copies are claimed: $49 → $69 → $99 → $129 , up to the launch price of $149 . Early adopters lock in the lowest price. Rental $30/month and a free Strategy-Tester demo are always available. Aegis Meridian is a fully automated AUDCAD adaptive mean-reversion grid for MetaTrader 5, with a one-knob risk facade and optional high-conviction TURBO profiles. All figures below are St
    FREE
    Triple Indicator Pro
    Ebrahim Mohamed Ahmed Maiyas
    4 (4)
    Triple Indicator Pro: ADX, BB & MA Powered Trading Expert Unlock precision trading with Triple Indicator Pro, an advanced Expert Advisor designed to maximize your market edge. Combining the power of the ADX (trend strength), Bollinger Bands (market volatility), and Moving Average (trend direction), this EA opens trades only when all three indicators align 1 - ADX (Average Directional Index) indicator – This indicator measures the strength of the trend, if the trend is weak, the expert avoids
    FREE
    This EA has been backtested with real ticks since January 2012 untill March 2025, with no delay in execution, and then with a delay of 1000ms, the backtest showed a drawdown of 30% with a 10k USD backtest account. The EA default parameters are optimised to work best on EURUSD pair, but can work on other currencies and metals like XAUUSD. Before using this EA and in order to not lose all your money make sure you have at least 5000USD in your account. Do not use another EA with this one on the sam
    Trade Anomalo BTC Multi Grid EA   Trade Anomalo  BTC Multi Grid  is an advanced, fully automated Multi-Grid Expert Advisor meticulously designed to navigate the volatility of BTC and other major pairs. Introduces highly requested features, including Multi-Window Time Management and an interactive, upgraded on-chart dashboard. Unlike traditional grids that get trapped in one direction,   Parallel Pro   utilizes a dual-engine architecture (Grid A and an optional inverted mirror Grid B) to simultan
    FREE
    Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
    FREE
    THE>>>>>>___IIIREX_CLAW_vs_CLUSTER_EAIII___<<<<<< Set1: Price Offset 100, Stopp Loss 100-1000, Take Profit 2000  Set2: Price Offset 200, Stopp Loss 100-1000, Take Profit 2000 Set3: Price Offset 100, Stopp Loss 100-1000, Take Profit 1000 Set4: Price Offset 200-500, Stopp Loss 100-1000,  TakeProfit 1000 Set5: PriceOffset 100-1000 (Recomment 200) higher is lower Risk,   Stopp Loss  500  Take Profit  1000, 2000,  3000 it is the same Target Set it to your Moneymanagement  Indize: DE40  “IC Market” R
    FREE
    ET1 for MT5 is new and completely free!! ET1 for MT5 v4.20 Updated!! Now use on XAUUSD(Gold) !!  The success rate is more than 75%   !!! important update: Merge ET9 's breakout strategy Warning!! You can use ET1 completely free, but we do not guarantee ET1 stability, It is recommended that the more powerful ET9 for MT5 version includes the ET1 strategy and guarantees complete and stable returns. The Best Expert Advisor  on   XAUUSD   any timeframes  ET9  for MT5 Updated v4.80 !!  https://www
    FREE
    Alpha Trade Master
    Mohamed Hashem Mohamed Hashem
    5 (9)
    あなたが望むすべて、そして想像すらしていなかったすべてが、この1つのBotに。Alpha Trade Master – 究極のチャート上SMC取引オペレーティングシステム。Alpha Trade Masterへようこそ。これは、本格的なトレーダー、投資家、プロップファーム(Prop-Firm)挑戦者のために設計された、機関投資家レベルのアルゴリズム取引スイートです。 遅行指標(RSIやMACDなど)や使いにくい入力設定に依存する従来の市販Botとは異なり、Alpha Trade Masterは完全なスマートマネーコンセプト(SMC)のオペレーティングシステムです。プロのヘッジファンドトレーダーと全く同じように、市場をマッピングし、流動性(Liquidity)を狙い、取引を実行します。 Alpha Trade Masterを本当に際立たせているのは、その驚くべきチャート上のインタラクティブUIです。複雑なMetaTraderの設定ウィンドウを開く必要はもうありません。リスク管理から視覚的インジケーターまで、すべてがチャート上の洗練されたインタラクティブパネルから直接制御されま
    FREE
    これは、ほぼ10年前に初めて公開された私の有名なスキャルパー、ゴールドフィンチEAの最新版です。短期間で起こる急激なボラティリティの拡大で市場をスキャルピングします。突然の価格上昇の後、価格変動の慣性を利用しようとします。この新しいバージョンは、トレーダーがテスターの最適化機能を簡単に使用して最適な取引パラメーターを見つけられるように簡素化されています。 [ インストールガイド | 更新ガイド | トラブルシューティング | よくある質問 | すべての製品 ] 最適化を容易にするシンプルな入力パラメーター カスタマイズ可能な取引管理設定 取引セッションの選択 平日の選択 資金管理 注意してください... 多くの要因が見返りを台無しにする可能性があるため、ダニのダフ屋は危険です。変動スプレッドとスリッページは、取引の数学的期待値を低下させ、ブローカーからの低いティック密度は幻の取引を引き起こす可能性があり、ストップレベルは利益を確保する能力を損ない、ネットワークラグはリクオートを意味します。注意が必要です。 バックテスト Expert Advisorはティックデータのみを使用します
    FREE
    Chameleon Trader
    Choawana Malaikitsanachalee
    2 (1)
    Chameleon Hybrid Pro v2.14 - Professional Gold Trading Solution English Description Chameleon Hybrid Pro v2.14 is a professional-grade Expert Advisor (EA) specifically engineered for the Gold (XAUUSD) market. It features a proprietary "Hybrid Intelligence" strategy that merges long-term trend analysis with precision short-term execution. The "Hybrid Pro" Advantage Unlike standard EAs, Chameleon Hybrid Pro utilizes a dual-layer filtering system: Trend Guard (H1): Analyzes the primary mar
    FREE
    VERSIONE INGLESE (ENGLISH VERSION) ️ ATTENTION: IMPORTANT NOTE ABOUT THE VERSION AND STRATEGY TESTER RESULTS Due to the strict restrictions and memory limitations imposed by the MQL5 automatic validator, which often rejects algorithms with highly complex protection logics, the version downloadable directly here from the Market serves as a validation/demo setup. To download the FULL, UNRESTRICTED, and REAL production version of the algorithm (.ex5 file), please connect to our official GitHub re
    FREE
    Summer Giveaway For a limited time during the summer season, this product is available free of charge. We would like to give traders the opportunity to test the product in their own MetaTrader environment and evaluate whether it fits their workflow. Downloads, comments and honest feedback are highly appreciated. Your feedback helps us improve the product and provide better tools for the MQL5 community. Thank you for your support. Pricewerk Turtle Soup EA is an automated Expert Advisor for Meta
    FREE
    Brent Trend Bot
    Maksim Kononenko
    4.5 (16)
    The Brent Trend Bot special feature is simple basic tools and logic of operation. There are no many strategies and dozens of settings, like other EAs, it works according to one algorithm. The operating principle is a trend-following strategy with an attempt to get the maximum profitability adjusted for risk. Therefore, it can be recommended for beginners. Its strong point is the principle of closing transactions. Its goal is not to chase profits, but to minimize the number of unprofitable trans
    FREE
    NeuroExt
    Dmytryi Voitukhov
    4 (11)
    https://t.me/mql5_neuroExt   actual version Signal https://www.mql5.com/ru/signals/1511461 You can use any tool. The bases will be automatically created at the start of the Learn. If you need to start learning from 0 - just delete the base files. Initial deposit - from 200 ye. Options: DO NOT ATTEMPT TO TEST WITHOUT NEURAL NETWORK TRAINING! it is enough for the balance graph after training to be horizontal. generating a training base is extremely simple.  there is a ready-made training for U
    FREE
    Algo Edge EA  This EA only SELL download the second EA for BUY and Run it both. -DE40/ Tec100 Self learning EA just set the EA on the Chart and Start no Settings optimization.  AUD/USD, EUR/USD, DE40, US30, Tec100 and much more.  Multifunctional Expert Advisor can trade with every Forex Pair or Indize. EA can Trade with every Broker. M1 high, M30 medium, H1 low Risk. Functions: For other Indize example US30: Change the Robot Worktime in Europe to 16:30-21:30. -inp1_ =Robot Worktime inp_2 and in
    FREE
    Widow FX
    Michael Prescott Burney
    Widow FX for GER30 - H1 Chart Dominate the Market with Unmatched Precision Widow FX for GER30 is a groundbreaking trading system, specifically designed for the H1 chart, that stands out in the MQL market for its exceptional performance. This elite system features an impressive array of 100 strategies, each meticulously tailored to achieve an excessive win rate. Key Highlights: Superior Win Rate: Boasting a phenomenal 98% win rate in both out-of-sample and in-sample testing cycles since 2021. Min
    FREE
    Gap Catcher
    Mikita Kurnevich
    5 (5)
    Read more about my products Gap Cather - is a fully automated trading algorithm based on the GAP (price gap) trading strategy. This phenomenon does not occur often, but on some currency pairs, such as AUDNZD, it happens more often than others. The strategy is based on the GAP pullback pattern. Recommendations:  AUDNZD  TF M1  leverage 1:100 or higher  minimum deposit 10 USD Parameters:  MinDistancePoints - minimum height of GAP  PercentProfit - percentage of profit relative to GAP level
    FREE
    MSX Plug And Play Scalper EA Overview MSX Plug And Play Scalper EA is a MetaTrader 5 Expert Advisor based on a Triple EMA alignment methodology. The Expert Advisor evaluates trend direction using three Exponential Moving Averages and can optionally apply a higher-timeframe trend filter before opening positions. The EA is intended for users who wish to study and evaluate an EMA-based trend-following approach under live or demo market conditions. Trading Logic The trading engine monitors three Ex
    FREE
    Babel Assistant
    Iurii Bazhanov
    4.33 (9)
    Babel assistant 1     The MT5 netting “Babel_assistant_1” robot uses the ZigZag indicator to generate Fibonacci levels on M1, M5, M15, H1, H4, D1, W1  periods of the charts , calculates the strength of trends for buying and selling. It opens a position with "Lot for open a position" if the specified trend level 4.925 is exceeded. Then Babel places pending orders at the some Fibonacci levels and places specified Stop Loss , Take Profit. The screen displays current results of work on the position
    FREE
    Introducing TRAD-E- LITE : Your Ultimate Trading Assistant! Are you tired of manually analysing the markets and executing trades? TRAD-E- LITE is here to assist you! Developed by Gold Lion XI, this expert adviser utilizes advanced algorithms to identify profitable trading opportunities and execute trades automatically, saving you time and effort. Key Features: Trading Time Management: Take control of your trading schedule. With TRAD-E- LITE , you can define specific trading hours based on your p
    FREE
    Stribrobot
    Lubos Terynger
    3 (2)
    Stribrobot — Silver Trading Bot Automated EA for XAGUSD running on H1 timeframe. Uses trend following with RSI, EMA and ADX signals combined with Bollinger Band based take profit targeting. Built in market regime detection automatically adjusts behavior based on current conditions. Position sizing adapts to volatility in real time — reduces risk during high volatility spikes, increases it during calm periods. Session filters focus trading during the most active silver hours, skipping low liquidi
    FREE
    Discover the power of automated trading with **SimpleTradeGioeste**, an Expert Advisor (EA) designed to optimize your trading operations in the Forex market. This innovative EA combines advanced trading strategies with proven technical indicators, offering an unparalleled trading experience. video backtest :  https://youtu.be/OPqqIbu8d3k?si=xkMX6vwOdfmfsE-A ****Strengths**** - **Multi-Indicator Strategy**: SimpleTradeGioeste employs an integrated approach that combines four main technical ind
    FREE
    このプロダクトを購入した人は以下も購入しています
    Quantum OmniGold
    Bogdan Ion Puscasu
    5 (4)
    MQL5史上最高評価かつベストセラーのGOLDエキスパートアドバイザーであるQuantum Queenの驚異的な成功に続き、Quantumの伝統は続いています。 次世代の金取引エキスパートアドバイザーが登場しました。 生涯ライセンスの提供数は1,000個限定です。すべてのライセンスが取得され次第、Quantum OmniGoldはこの限定リリースでは提供されなくなります。 クォンタム・オムニゴールドのご紹介: IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引価格での発売   価格。       10個購入するごとに価格が50ドルずつ上がります。最終価格は1999ドルです。 ライブシグナルIC市場:       ここをクリック Quantum OmniGold MQL5 公開チャンネル:       ここをクリック ***Quantum OmniGold MT5を購入す
    Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
    Zerqon EA
    Vladimir Lekhovitser
    3.5 (14)
    リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2372719 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く Zerqon EA は、XAUUSD 取引専用に設計された適応型エキスパートアドバイザーです。 この戦略は、ONNX を通じて統合された Deep LSTM ニューラルネットワークモデルに基づいており、市場の連続的な動きを処理し、価格変動を構造的に分析することを可能にしています。 モデルは、金価格の動き、ボラティリティ、および時間的条件における特定のパターンを識別することに重点を置いています。 固定的な従来型シグナルを使用する代わりに、EA は学習済みニューラルネットワークフレームワークを通じて市場を分析し、適切な条件が検出された場合にのみ取引を実行します。 Zerqon EA は継続的に取引を行うわけではありません。 まったく取引が行われない期間もあれば、適した XAUUSD 市場局面では短時間に
    重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに1999ドルになるだろう    100 以上の戦略が含まれており 、今後もさらに追加される予定です。 ボーナス : 1499 ドル以上の価格の場合 --> 私の他の EA を  5 つ無料で選択できます! すべてのセットファイル 完全なセットアップと最適化ガイド ビデオガイド ライブシグナル レビュー(第三者) NEW - VERSION 5.0 - ONECHARTSETUP NEW - 30-STRATEGIES LIVE SIGNAL 究極のブレイクアウトシステムへようこそ! 8 年をかけて丹念に開発された、洗練された独自のエキスパート アドバイザー (EA) である Ultimate Breakout System をご紹介します。 このシステムは、高く評価されているGold Reaper EAを含む、MQL5市場で最高のパフォーマンスを誇るいくつかのEAの基盤となっています。 7か月以上にわたって1位を維持したこのほか、Goldtrade Pro、Goldbot One、I
    Goldwave EA MT5
    Shengzu Zhong
    4.72 (67)
    リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.47 (118)
    取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 ライブシグナル モード 2 Twister Pro EA は、XAUUSD(ゴールド)のM15タイムフレーム専用に開発された高精度スキャルピングEAです。取引回数は少なめ——しかし、取引する時は必ず目的を持って行います。 すべてのエントリーは注文が出される前に5つの独立した検証レイヤーを通過し、デフォルト設定では極めて高い勝率を実現します。 2つのモード: • モード1(推奨)— 非常に高い精度、週数回の取引。資金保護と規律ある取引のために設計。 • モード2(ショートSL)— ストップロスが大幅に短く、モード1より多くの取引。個々の損失は最小限。リスクを管理しながら市場への露出を増やしたいトレーダーに最適。 仕様: シンボル:XAUUSD | タイムフレーム:M15 最低入金:$100 | 推奨:$250 RAW SPREADアカウントは必須 VPS強く推奨 グリッドなし!すべての取引にTPとSLあり! 推奨ブローカー: Exness Raw | Vantage | Fusion Markets 購入後、以下
    The Gold Reaper MT5
    Profalgo Limited
    4.46 (101)
    プロップしっかり準備完了!   (   SETFILEをダウンロード ) WARNING : 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal Client Signal YouTube Reviews LATEST MANUAL ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングス
    Quantum King EA
    Bogdan Ion Puscasu
    5 (204)
    Quantum King EA — あらゆるトレーダーのために洗練されたインテリジェントパワー IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 発売記念特別価格 ライブ信号:       ここをクリック MT4バージョン:   こちらをクリック クォンタムキングチャンネル:       ここをクリック ***Quantum King MT5 を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! 正確さと規律をもって取引を管理します。 Quantum King EA は、 構造化グリッドの強さと適応型マーチンゲールのインテリジェンスを 1 つのシームレスなシステムに統合します。M5 の AUDCAD 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
    Gold Snap
    Chen Jia Qi
    5 (14)
    Gold Snap — ゴールド向け高速利益獲得システム 実績シグナル v2.0: https://www.mql5.com/en/signals/2379945 ライブシグナル: https://www.mql5.com/en/signals/2362714 ライブシグナル2: https://www.mql5.com/en/signals/2372603 現在の価格で購入できるのは残り3本のみです。価格はまもなく799ドルに値上げされます。 更新:価格は明日799米ドルに改定される予定です。 重要:残り3本です。まもなく値上げ予定です。 購入後、ユーザーガイド、推奨設定、使用上の注意、およびアップデートサポートを受け取るため、必ずプライベートメッセージでご連絡ください。 https://www.mql5.com/en/users/walter2008 製品アップデートやトレード情報を受け取るため、ぜひ MQL5 チャンネルにご参加ください。 https://www.mql5.com/en/channels/tendmaster Gold House の長期的な開発と実運用での検
    AXIO Gold EA
    Shengzu Zhong
    4.56 (9)
    AXIO GOLD EA MT5 MQL5 ライブシグナル参照 https://www.mql5.com/en/signals/2378982?source=Site+Signals+My AXIO GOLD EA MT5 は、MetaTrader 5 上の XAUUSD ゴールド向けに開発された自動売買システムです。 この EA は、MQL5 上で確認できる検証済みライブシグナルと同じロジックおよび執行ルールを使用します。推奨される最適化済み設定を使用し、 TMGM のような信頼性の高い ECN/RAW 原始スプレッドのブローカーで運用する場合、この EA のライブ取引挙動は、ライブシグナルの取引構造および執行特性にできる限り近づくように設計されています。 ただし、ブローカー条件、スプレッド、執行品質、銘柄仕様、スリッページ、通信遅延、VPS 環境、口座設定の違いにより、個別の結果が異なる場合があります。 AXIO GOLD は、危険なマーチンゲール、過度なグリッド拡張、または損失ポジションへのナンピンを使用しません。 現在の製品価格は MQL5 Market ページに表示されている
    Gold House MT5
    Chen Jia Qi
    4.73 (55)
    Gold House — ゴールド・スイングブレイクアウト取引システム 1つのEA、3つの取引モード。あなたのスタイルに合ったモードを選べます。ナンピンなし。マーチンゲールなし。 10件のご購入ごとに、価格は50米ドルずつ値上がりします。最終予定価格:1,999米ドル。 ライブシグナル: アダプティブモード: https://www.mql5.com/en/signals/2379287 利益優先モード: https://www.mql5.com/en/signals/2359124 BE(損益分岐)優先モード: https://www.mql5.com/en/signals/2372604 重要:購入後、推奨パラメータ、使用説明、注意事項、使用のヒントを受け取るために、必ずプライベートメッセージをお送りください。 (MQL5 メッセージ):   https://www.mql5.com/en/users/walter2008 最新情報をお届け — MQL5チャンネルに参加して、製品アップデートやトレードのヒントを受け取りましょう。 リンクを開き、ページ上部の「購読」ボタンをクリッ
    Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpin
    Lizard
    Marco Scherer
    4.82 (22)
    LIZARD とは? Lizard は、MetaTrader 5 の XAUUSD(ゴールド)専用に開発された完全自動の Expert Advisor です。マルチストラテジーのスイングブレイクアウトシステムを使用し、チャート上の重要な構造レベルを特定して、精密に計算されたエントリーポイントに逆指値の待機注文を配置します。マーチンゲールなし。グリッドなし。ナンピンなし。 すべての取引には明確な Stop Loss と Take Profit が設定され、多層的なイグジットシステムによって24時間自動的に管理されます。 ライブシグナル - 購入前に実際のパフォーマンスを確認: https://www.mql5.com/en/signals/2372821 仕組み Lizard は H1 時間足で XAUUSD チャートを継続的にスキャンし、重要なスイングハイとスイングローを探します。有効な構造が特定されると、そのレベルから調整された距離に Buy Stop または Sell Stop の待機注文を配置します。トリガーには単なる価格のタッチではなく、本物のブレイクアウトが必要です。 このア
    NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation Mapping(動的計算マッピング)にあります。アルゴリズムは単に価格を分析するので
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.83 (126)
    Quantum Bitcoin EA   : 不可能なことは何もありません。やり方を見つけ出すだけの問題です。 トップ MQL5 販売業者の 1 つによる最新の傑作、   Quantum Bitcoin EA で ビットコイン 取引の未来に足を踏み入れましょう。パフォーマンス、精度、安定性を求めるトレーダー向けに設計された Quantum Bitcoin は、不安定な暗号通貨の世界で何が可能かを再定義します。 重要! 購入後、インストールマニュアルとセットアップ手順を受け取るために私にプライベートメッセージを送信してください。 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル 残り100部のうち80部のみ Quantum Bitcoin/Queen チャンネル:       ここをクリック ***Quantum Bitcoin EA を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! Quantum Bitcoin EA は H1 時間枠で成功し、市場の勢いの本質を捉
    このEAは、第三者の販売業者、アフィリエイト、または別の配布チャネルを通じて販売していません。 モニタリング -  ライブシグナル 公開チャンネル - こちら このEAは2つのシンボルを取引し、それらの間の短期的な不均衡を探します。シンボルが通常の関係から外れて動いた場合、EAは取引を開始し、不均衡が小さくなった時に決済できます。 これはグリッドEAではありません。マーチンゲールではありません。EAは多くの回復注文を開きません。各シンボルにつき1ポジションのみを使用します。 含み損のまま何日もポジションを保有するために作られたものではありません。 EAは取引を開始する前にフィルターを使用します。市場条件が良くない場合、取引をスキップできます。 EA入力: メイン取引シンボル - 取引に使用される最初のシンボル。 セカンダリーシンボル - 比較と取引に使用される2番目のシンボル。 分析タイムフレーム - 計算に使用されるタイムフレーム。 履歴データの深さ - EAが計算のために確認するローソク足の数。 Entry Threshold - EAが取引を開始する前に必要な不均衡の強さ。値が高
    Chiroptera
    Rob Josephus Maria Janssen
    4.54 (46)
    Prop Firm Ready! Chiroptera is a non-martingale, non-grid, multi-currency Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades (of all 28 pairs!) with tactically placed Take Profits and Stop Losses, that are continuously adjusted to maximize gains and minimize losses. It keeps track of past and upcoming news reports to ensure impacts are minimized and carefully measures real-time volatility to prevent impacts due to unpredictable geo-political disturbances c
    Impulse MT5
    Simon Reeves
    5 (14)
    Are you ready to power up your Gold trading? Impulse by Starpoint Trading — A five-strategy gold EA that waits for the perfect shot. Live Signal (High Risk) Vantage AU:  https://www.mql5.com/en/signals/2375861 Live Signal (Medium Risk) Vantage AU:  https://www.mql5.com/en/signals/2380200 Impulse is a momentum grid EA designed exclusively for XAUUSD, combining five independently developed entry strategies into a single unified grid framework. 5 momentum-based strategies | Two-sided trend partici
    Cortex Aurex
    Vladimir Mametov
    5 (2)
    本EAはMetaTrader 5向けに開発された完全自動売買システムであり、ゴールド(XAUUSD)専用に設計されています。そのロジックは、金市場の特徴である急激な価格変動、鋭い反転、高いボラティリティを前提に構築されています。本EAは、反応速度・規律・精密なポジション管理が特に重要となる環境での自動売買を可能にします。 本システムは、規律あるトレード管理、市場変化への迅速な対応、そしてコントロールされた決済を重視しています。基本的な考え方はシンプルで、トレーリングストップを用いて利益を伸ばしつつ、すべてのポジションを固定ストップロスで保護し、さらにM1時間足で逆シグナルが発生した場合には損失トレードを早期にクローズできる設計となっています。 シグナル:  https://www.mql5.com/en/signals/2378776 特別ローンチ価格: 現在の価格は最初の30本の販売にのみ適用されます。30本販売後、EAの価格は 100 USD 上昇し、 599 USD となります。 コアコンセプト 本EAは、ゴールド(XAUUSD)を自動売買したいトレーダー向けに設計されており、明
    Scalper speed with sniper entries. Built for Gold. Summer sale  499 USD  only |   regular   price  599  USD Check the Live signal  or Manual Hybrid scalper combining scalping speed with single position or intelligent recovery for XAUUSD. 4 trading strategies | Triple timeframe confirmation | 3 layers of account protection. Most trades close in under 30 minutes — minimal market exposure, maximum control. Wave Rider uses triple timeframe analysis (H1 trend + M15/M30 entry confirmation) to only en
    Byrdi
    William Brandon Autry
    5 (19)
    BYRDI。マルチアセット・メッシュ・トレーディング・インテリジェンス。 ほとんどのEAは一度に1つのチャートで取引します。 BYRDIはネットワークを稼働させます。 各チャートが1つのノードになります。各ノードは、独自のシンボル、口座、ブローカー、AIモデル、リスクプロファイル、ポジション管理モードで取引できます。メッシュがそれらを1つの協調したシステムへと結び付けます。 FX。ゴールド。金属。指数。暗号資産。原油。ブローカーが対応する場合は合成商品も。 1人のトレーダー。多くの市場。1つの協調したメッシュ。 現在のプロモーション。BYRDIには、アクティブなボーナス期間中、Mean Machine Oneの無料アクティベーション1回とAiQの無料アクティベーション1回が含まれます。 新しいカテゴリー 従来のEAは孤立したシステムです。 1つのターミナル。1つのシンボル。1つの判断。ポートフォリオの残りについての認識はありません。 BYRDIは違います。 BYRDIはトレーディング・インテリジェンスを複数のターミナル、ブローカー、口座、市場にわたって分散させます。各ノードは独立して
    XG Gold Robot MT5
    MQL TOOLS SL
    4.28 (108)
    The XG Gold Robot MT5 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 Action, Cycle S
    Pulse Engine
    Jimmy Peter Eriksson
    4 (31)
    最新情報 - 現在の価格で入手できるのは残りわずかです! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。  現在の価格での販売部数は非常に限られています。 最終価格 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるい
    Quantum Emperor MT5
    Bogdan Ion Puscasu
    4.86 (508)
    ご紹介     Quantum Empire EA は 、有名な GBPUSD ペアの取引方法を変革する画期的な MQL5 エキスパート アドバイザーです。 13年以上の取引経験を持つ経験豊富なトレーダーのチームによって開発されました。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. ***Quantum Emperor EAを購入すると、Quantum StarMan が無料で手に入る可能性があります!*** 詳細についてはプライベートでお問い合わせください 検証済み信号:   こちらをクリック MT4バージョン:   ここをクリック 量子EAチャネル:       ここをクリック 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル 量子皇帝EA       EAは、1つの取引を5つの小さな取引に継続的に分割する独自の戦略を採用しています
    Smart Gold Hunter
    Barbaros Bulent Kortarla
    5 (13)
    Smart Gold Hunter は、MetaTrader 5 で XAUUSD / Gold を取引するための Expert Advisor です。グリッドなし、マーチンゲールなし、実際の Stop Loss と Take Profit ロジック、そして管理されたリスクコントロールを重視するトレーダー向けに設計されています。 購入前にライブシグナルを確認できます: Live Signal - IC Markets: https://www.mql5.com/en/signals/2365400?source=Site +Signals+My Live Signal - Ultima Markets: https://www.mql5.com/en/signals/2376242?source=Site +Signals+My Smart Gold Hunter はグリッド EA ではなく、マーチンゲール EA でもありません。無制限のリカバリーポジションや、損失後のロット増加に依存しません。この EA の主な考え方は、危険なナンピンではなく、管理されたロジック、保護設定、実際のトレ
    Obsidian Flow Atlas EA 精度・構造・実行 金融市場は感情に報いることはありません。 市場が評価するのは、規律、一貫性、そして客観的なデータに基づいて意思決定を行う能力です。 Obsidian Flow Atlas EA は、この理念のもとに開発されました。 MetaTrader 5向けに設計された完全自動売買システムであり、金融市場で最も人気の高い2つの銘柄に対応しています。 • XAUUSD(ゴールド) • EURUSD(ユーロ/米ドル) システムは市場環境を自動的に分析し、独自の取引ロジックと統合されたリスク管理モデルに基づいてポジションを開設・管理します。 チャートを長時間監視したり、エントリーポイントを探したり、手動で取引判断を行う必要はありません。 EAをインストールし、希望するリスクレベルを選択するだけで、システムが自動的に取引を行います。 実証済みのリアル運用実績 最大限の透明性を確保するため、本システムの運用実績は公開ライブシグナルを通じて確認できます。 XAUUSD(ゴールド) https://www.mql5.com/en/signals/23
    ZenQ AI EA
    Valentina Zhuchkova
    5 (4)
    ZenQ AI EA — MetaTrader 5向け インテリジェント自動売買システム ZenQ AI EAは、アルゴリズム取引、人工知能技術、プロフェッショナルな市場分析、高度なリスク管理を統合した次世代の自動売買システムです。 このEAは独自の内部ロジックに基づいて完全自動で動作するよう設計されています。ほとんどの場合、複雑な設定や継続的な監視は必要ありません。EAをインストールし、ご希望のリスクレベルを選択するだけで、システムが自動的に取引を行います。 リアルトレードシグナル 実際の取引結果は以下の公開シグナルで確認できます。 https://www.mql5.com/ru/signals/2375993 このシグナルでは、実際の市場環境におけるシステムのパフォーマンスを確認することができます。 なお、結果はブローカー、口座タイプ、レバレッジ、約定品質、スプレッド、手数料、スリッページ、市場環境などによって異なる場合があります。 限定販売 ZenQ AI EAは限定数のみ販売されています。 製品の独自性を維持し、既存ユーザーの取引環境を保護するため、ライセンス数は予告なく削減さ
    ArtQuant Gold
    Miguel Angel Vico Alba
    4.33 (24)
    ArtQuant Gold は MetaTrader 5 向けのプロフェッショナルなエキスパートアドバイザーであり、 Gold / XAUUSD の自動売買専用に開発されています。また、各ブローカーで使用される一般的なゴールド銘柄名のバリエーションにも対応しています。 本EAは、構造化された マルチモジュール型グリッド取引エンジン を基盤として構築されており、シンプルでMarket向けに整理されたインターフェースを通じて、エクスポージャー、取引サイクル、執行フィルター、口座保護、仮想的なポジション管理を行うよう設計されています。 ArtQuant Gold は、XAUUSD専用の自動売買システムを求めるトレーダー向けに設計されています。明確なリスク管理、ブローカー別設定プロファイル、制御されたモジュール稼働、カスタムポートフォリオ機能、そして見やすい操作パネルを備えています。 本EAはチャートの時間足に依存しません。 任意の時間足チャートに適用できますが、内部の取引ロジックは独自の構造に基づいて動作します。 重要: ArtQuant Gold は、Gold / XAUUSD または同等
    BB Return mt5
    Leonid Arkhipov
    4.62 (121)
    BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   Global   update   on   June   14th   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は
    MY LAST STRATEGY One engine. Every candle. Every session. TEN YEARS, DISTILLED INTO ONE My Last Strategy is not another experiment. It is the concentrated result of more than ten years of building, breaking, and rebuilding automated trading systems. Every dead end, every over-fit backtest, every system that looked flawless and then fell apart taught a lesson — and every lesson was poured into this single engine. This is the one the author chose to keep. After a decade in the trenches, one belief
    作者のその他のプロダクト
    I am happy that you are here, let me introduce my small miracle. How it started: At first, bot was created for XAUUSD pair. It could be used / trained for whatever you like, but at your own risk!  For your info, I am not a marketing guy so nothing here will look so fancy, my bot just simply works, and decision is only on you if you would like to buy it based on your tests. It all started as an experiment after one developer here told me that doing these modifications would be too complicated. So
    フィルタ:
    Samuel Henrique Almeida Ferreira
    774
    Samuel Henrique Almeida Ferreira 2026.05.14 00:54 
     

    Hello. I’m testing the EA and I would like to better understand the FVG identification logic used in it. I really liked the robot, and during my backtests it has shown very promising and impressive results. What criteria does the EA use to detect, validate, and invalidate FVGs? Is mitigation considered by candle close, wick touch, or another method? Does it use any additional filters for entries, trend, or confirmation? Thank you.

    Martin Vrlik
    572
    開発者からの返信 Martin Vrlik 2026.05.14 15:33
    I will create indicator which will contain all the filters used in my EA. Will let you know when finished.
    sancai
    41
    sancai 2026.05.12 03:41 
     

    ユーザーは評価に対して何もコメントを残しませんでした

    Martin Vrlik
    572
    開発者からの返信 Martin Vrlik 2026.05.14 15:28
    Hi, as I wrote in the DM, config for XAUUSD is the default one.
    レビューに返信