Whale Speed Volatility Divergence

1

This EA looks for a two-layer momentum/liquidity breakout:

Divergence detection (trigger):

  • TPS (ticks-per-second / bar tick_volume ) must be high vs. its recent average ( TPS_Multiplier ),

  • while Volatility (bar high–low) must be low vs. its recent average ( Volatility_Multiplier ).

This combo flags “flow in a quiet range” → a likely near-term breakout.

Direction & filter:

  • If the signal bar is green ( close > open ) → consider BUY; if redSELL.

  • Optional MA trend filter ( Use_TrendFilter ): bar above MA → BUY allowed; below MA → SELL allowed.

Order parameters:

  • SL = signal bar low (BUY) or high (SELL).

  • TP = SL × TakeProfit_Multiplier (risk/reward multiple).

  • Position size is computed from RiskPercentage . If margin is insufficient, size is reduced iteratively ( Reduce_On_Margin_Or_Limit , Open_Retry_* ).

Execution safeguards (broker realities):

  • Before placing orders, check spread, stop/freeze levels, tick size, and a latency buffer.

  • For SL modifications, use throttle, skip when too close to freeze, pre-modify tick refresh, and slack pips to reduce “close to market” rejections.

  • On open/modify failures, apply cooldowns to avoid spammy logs and needless retries.

Trailing stop engine:

  • As price moves in favor, move SL forward by a pip distance ( TrailingStop_Pips ),

  • enforcing a minimum step each modify ( Trailing_Min_Step_Pips ) and honoring stop/freeze + buffer distances.

Data/warmup & tester compatibility:

  • If there aren’t enough bars, the EA waits ( Require_History_Warmup ) or falls back to another timeframe.

  • In the tester, TPS can be emulated from tick_volume ( Use_TickVolume_Emulation ) and signals can be fixed to bar[1] ( Use_Closed_Bar ) for stable/reproducible backtests.

Signal flow (detail)

OnTimer (every 1s): Real-time TPS counter → tps_history[] ; average of last 5 bars’ high–low → vol_history[] .

OnTick:

  1. Warmup & symbol/TF ready? If not, wait or use fallback TF.

  2. Compute TPS_now / TPS_avg and Vol_now / Vol_avg (emulated in tester).

  3. Condition: TPS_now > TPS_avg × TPS_Multiplier AND Vol_now < Vol_avg × Volatility_Multiplier .

  4. Bar color + optional MA filter set the direction.

  5. Build SL/TP, compute size from risk, check spread & stop/freeze, run iterative margin fit → open order.

  6. If a position is open, run trailing; before modify, refresh tick + apply slack to keep SL within safe limits.

All inputs — explained

Risk & Trade Controls

  • TakeProfit_Multiplier
    Sets TP as a multiple of SL distance (RR). Example: 2.0 = 1:2 RR.

  • Max_Spread_Pips
    If current spread exceeds this, skip signals (avoid poor liquidity entries).

  • InpMagicNumber
    Magic number to tag the EA’s trades. In netting accounts, one position per symbol.

  • RiskPercentage
    % of balance risked per trade. Lot size is derived from this, SL distance, and tick value.

  • TrailingStop_Pips
    If enabled, SL trails price by this many pips (while honoring stop/freeze + buffers).

  • Max_Lots_Per_Trade
    Hard cap: even if the risk formula suggests more, size won’t exceed this.

  • Reduce_On_Margin_Or_Limit
    If opening fails due to margin/volume, shrink lot and retry.

  • Open_Retry_Attempts
    How many reduced-lot retries on open.

  • Open_Retry_Factor
    Each retry multiplies lot by this factor (e.g., 0.75 → reduce by 25%).

Trend Filter (MA)

  • Use_TrendFilter
    When on, a BUY/SELL is only allowed if it aligns with the MA side.

  • MA_Period, MA_Method, MA_Price
    MA settings for the trend filter (SMA/EMA/WMA, close/HLC3, etc.).

Signal Logic (TPS & Vol)

  • TPS_Multiplier
    Threshold for the “flow” side. Higher = more selective vs. average TPS.

  • Volatility_Multiplier
    Threshold for “quietness.” Lower = stricter requirement for low range.

  • HistorySize
    How many seconds/samples of TPS/Vol history to keep (1-second timer in live).

Backtest & Robustness

  • Use_TickVolume_Emulation
    In tester, emulate TPS from bar tick_volume instead of real tick timing.

  • Use_Closed_Bar
    Compute signals on closed bars (bar[1]) → reduces repaint/look-ahead bias.

  • TPS_Lookback_Bars / Vol_Lookback_Bars
    Bar lookbacks for TPS/Vol averages (tester path).

Execution Safeguards

  • Modify_Throttle_Sec
    Minimum seconds between SL modifications (reduces spam/rejects).

  • Trailing_Min_Step_Pips
    Minimum pip improvement required to move SL.

  • Modify_Extra_Buffer_Pips
    Extra buffer on top of broker stop and freeze levels.

  • Enable_CloseToMarket_Backoff
    On “close to market/invalid stops,” retry once with looser distance.

  • Backoff_Extra_Pips
    Extra distance used for that single retry.

  • Freeze_Skip_Pips
    If current SL is within freeze level + this buffer, skip modify (avoid rejects).

  • Modify_Latency_Margin_Pips
    Extra safety vs. live price jumps.

  • Modify_Failure_Cooldown_Sec
    Wait time after a failed modify before trying again.

  • PreModify_Refetch_Tick
    Refresh the tick just before modifying SL; recompute limits with current price.

  • PreModify_Slack_Pips
    Place SL a touch beyond the theoretical limit to reduce “close to market” errors.

  • Open_Failure_Cooldown_Sec
    If open fails (No money / volume limit), wait before retrying—cleaner logs, safer behavior.

Data & Warmup

  • Auto_Select_Symbol
    Auto-select the symbol if not already visible.

  • Require_History_Warmup
    Don’t trade until enough bars are loaded.

  • Auto_Find_Available_TF
    If the main TF lacks data, auto-fallback to the first TF with data.

  • Warmup_Min_Bars
    Minimum bars required before starting.

  • Fallback_Timeframe
    Backup timeframe used when data is insufficient.

  • Preload_Bars
    How many bars to preload at startup.

Risk management (built-in measures)
  • Position sizing: dynamic lots from RiskPercentage and SL distance.

  • Margin fit: use OrderCalcMargin vs. free margin; if it doesn’t fit, iteratively shrink size.

  • Spread filter: skip entries when Max_Spread_Pips is exceeded.

  • Broker level guards: stop/freeze levels + extra buffers + latency margin.

  • Retry policy: only shrink-and-retry on volume/money errors; don’t insist on other rejects.

  • Cooldowns: on open/modify failures to avoid over-trading and excess risk.

Practical tips
  • Tune signal first ( TPS_Multiplier , Volatility_Multiplier , lookbacks), then polish execution (trailing + pre-modify slack).

  • Majors (EURUSD H1/M30): keep Max_Spread_Pips low; start PreModify_Slack_Pips around 0.4–0.8.

  • XAUUSD (D1/H1): large point size; widen TrailingStop_Pips , nudge up Modify_Latency_Margin_Pips and Backoff_Extra_Pips .

  • Scalp (M1/M5): begin with Use_Closed_Bar = true for stability; switching it off increases risk.

Risk disclosure (important)

This EA/strategy:

  • Is not investment advice.

  • Does not guarantee profits; backtests/optimizations do not represent future performance.

  • Market conditions (news, liquidity drops, slippage, latency, broker limits) can negatively impact results.

  • Misconfiguration, low capital, high leverage, or unsuitable risk percentages can cause loss of capital.

  • Demo/forward test before going live; start RiskPercentage low (e.g., 0.1–0.5%) and scale gradually.

  • Stop/freeze levels and contract specs vary by broker—verify your broker’s conditions before using aggressive parameters.


おすすめのプロダクト
[FREE EA] EA34 TANIN FORCE: MACD & STOCH ENGINE (Prop Firm Ready) Are you tired of market noise and false breakouts? Meet EA34 Tanin Force, a commercial-grade Expert Advisor designed specifically for the EURUSD on the M15 timeframe. This system combines the raw trend-following power of MACD with the precision timing of the Stochastic Oscillator. PERFORMANCE HIGHLIGHTS (6-Year Stress Test 2020 - 2026): * Symbol & Timeframe: EURUSD | M15 * Set & Forget: Hard Stop Loss and Take Profit. No
FREE
Gold Swing Trader EA Advanced Algorithmic Trading for XAUUSD on Higher Timeframes The Gold News & Swing Trader EA is a specialized MetaTrader 5 Expert Advisor designed for trading XAUUSD (Gold). It operates on a swing trading strategy to capture medium- to long-term price movements on the H4 and Daily charts. Key Features: · Dedicated XAUUSD Strategy: Logic optimized for the unique volatility of Gold. · Swing Trading Focus: Aims to capture significant price swings over several days. · High
FREE
This EA was made for educational purposes.  You can find a full overview of how it was made in the YouTube video (Literally a step by step guide) We used AI and ML to create the whole thing, with no coding.  Can you trust this to make money? Possibly, but do so at your own risk.  It could be a nice addition to a large porfolio.  How to use: Add to H1 gold chart Make sure the subchart is correctly named to your broker name for Gold.  Big picture It’s a   trend + breakout system for buys , and a
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
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
Budget Golden Scalper M1 — Trial Edition Built for traders who are tired of hype and ready for transparency Let’s be honest. If you have explored automated trading before, you have probably seen systems that looked perfect in backtests but behaved very differently in live markets. Many traders today are understandably cautious — and rightly so. Budget Golden Scalper M1 was created with this reality in mind. This is not marketed as a “holy grail” or a get-rich-quick robot. Instead, it is a str
FREE
Goldfish FX
Michael Prescott Burney
Gold Fish Portfolio(XAUUSD H1向け) Gold Fish Portfolio は、MetaTrader 5 向けに開発されたプロフェッショナルなエキスパートアドバイザー(EA)であり、XAUUSD の H1 時間足専用として、Expert Advisor HQ のユニバーサル・ポートフォリオ・フレームワーク上で動作します。 構造化された自動売買を目的として設計されており、エントリー、エグジット、保護機能、リアルタイムのパフォーマンスをチャート上に明確に表示することで、XAUUSD H1 での EA の稼働状況を常に把握することができます。 概要 Gold Fish Portfolio は、ゴールド専用の戦略ロジックと Expert Advisor HQ の実行および保護エンジンを組み合わせています。単にトレード機会を検出するだけでなく、各ポジションをフィルタリング、条件チェック、注文執行、リスク管理、監視といった一連のプロセスを通じて管理します。 フレームワークには、エントリー・日次・口座レベルの多層保護、自動的なブローカー約定方式の選択、一時的な実行エラー
Expert description Algorithm optimized for Nasdaq trading The Expert Advisor is based on the constant maintenance of long positions with daily profit taking, if there is any, and temporary interruption of work during the implementation of prolonged corrections The Expert Advisor's trading principle is based on the historical volatility of the traded asset. The values of the Correction Size (InpMaxMinusForMarginCallShort) and Maximum Fall (InpMaxMinusForMarginCallLong) are set manually. Recomm
FREE
EA designed to generate pending orders based on the trend and designated take profit value. This EA designed exclusively to work best on GOLD SPOT M5 especially during up trend. User can freely decide to close the open position from this EA or wait until take profit hit. No parameters need to be set as it already set from the EA itself.  This EA do not use Stop Loss due to the applied strategy. Please do fully backtest the EA on the worst condition before use on the real account. Recommended ini
FREE
Reset Pro
Augusto Martins Lopes
RESET PRO: The Future of Algorithmic Trading Revolutionary Technology for Consistent and Intelligent Trading RESET PRO is the most advanced automated trading solution, combining cutting-edge market analysis with a dynamic position management system. Our exclusive reset-and-recover methodology ensures consistent performance, even in the most challenging market conditions. Key Technical Features PROPRIETARY RESET MECHANISM Never lose trade direction again! When the market moves against yo
FREE
Imagine a professional system that patiently weaves its web on the currency market, waiting for the perfect moment to strike. Stochastic SpiderNet is an intelligent trading robot (expert advisor) for the MetaTrader 5 platform, created for traders who understand the power of grid trading but want to secure it with powerful protection algorithms. This is not just a "grid trader." It is a symbiosis of the classic Stochastic oscillator and an adaptive grid controlled by artificial constraints. How
FREE
A mean-reversion MQL5 Expert Advisor that detects Bollinger Bands crossings (price touching/exiting the lower band for buys, upper band for sells) combined with an ATR volatility filter. It includes built-in presets optimized for AUDCAD - H1; Pair:  AUDCAD - H1; Recommended initial deposit: $1000; Leverage: 1:500; Recommended brokers: IC Markets, Fusion Markets, Dukascopy, FP Markets; VPS recommended;
FREE
EAVN001 – A Simple, Effective, and Flexible Trading Solution In the world of financial trading, simplicity can often be the key to efficiency. EAVN001 is designed based on the Moving Average Single Line principle, enabling traders to quickly identify trends and make timely decisions. Its operation is straightforward: open a BUY position when the price crosses above the MA line , and open a SELL position when the price crosses below the MA line . The strength of EAVN001 lies not only in its simp
FREE
Volatility Doctor
Gamuchirai Zororo Ndawana
4.5 (2)
ボラティリティ・ドクター - 市場リズムをマスターするためのあなたの専門アドバイザー! 精密なトレードの力を解き放つ準備はできていますか?ボラティリティ・ドクターに会ってください。外国為替市場のダイナミックな世界で信頼できるパートナーです。このマルチ通貨の専門アドバイザーは単なる取引ツールではありません。それはシンフォニーの指揮者であり、非常に高い精度であなたの投資を導く存在です。 主な特徴を発見してください: 1. トレンドを追求する専門知識:ボラティリティ・ドクターは確かな手法を用いて堅牢な市場のトレンドを見つけ出します。推測を捨てて情報に基づいた意思決定に切り替えましょう。 2. 総合的なコントロール:組み込まれたマネーマネジメントツールでトレード戦略の主導権を握りましょう。いつでもいくつのポジションを開くか、トレードサイズをどれだけ拡大するかを決定します。それはあなたのプレイブック、あなたのやり方です。 3. ボラティリティのマエストロ:その名前が示すように、このEAは市場のボラティリティを測定し反映することに特化しています。水が容器の形に合わせて変化するように、市
FREE
ICT Killzone Scalper – スマートマネー・トレーディング自動化システム 精密な自動化により、Inner Circle Traderの手法をマスターする 主要なセッション中の絶好のセットアップを見逃すことに疲れていませんか? ICT Killzone Scalper は、プロレベルのスマートマネー・コンセプトをMT5(MetaTrader 5)ターミナルに導入します。 実績のあるICTトレード戦略 とインテリジェントな自動化を組み合わせ、一貫性のあるシステム的な利益を追求します。 テクニカル詳細 通貨ペア: XAUUSD(ゴールド) 時間足: M15 リスク: 1%(調整可能) 推奨デポジット: 最低 $200 / 推奨 $1,000以上 レバレッジ: 1:50以上(1:100以上を推奨) 口座タイプ: ECN / RAW VPS: 推奨 このEA(自動売買ソフト)の特徴とは? 独自のICTシグナルエンジン: 3つのキルゾーン(Killzones) – ロンドン、ニューヨーク、アジア各セッションの最適化された時間枠。 マーケット構造の変化(MSS)検出 – 相場が爆発
FREE
Grid Master Pro12
Sidi Mamoune Moulay Ely
4 (4)
GridMaster ULTRA - Adaptive Artificial Intelligence The Most Advanced Grid EA on MT5 Market GridMaster ULTRA  revolutionizes grid trading with Adaptive Artificial Intelligence that automatically adjusts to real-time market conditions. SHORT DESCRIPTION Intelligent grid Expert Advisor with adaptive AI, multi-dimensional market analysis, dynamic risk management and automatic parameter optimization. Advanced protection system and continuous adaptation for all market types. REVOLUTIONARY
FREE
EURUSD EMA–SMA Reversal Breakout (H1) is a fully automated MetaTrader 4 strategy designed to capture **confirmed reversal breakouts** on EURUSD using a simple trend + position filter with rule-based **pending STOP execution** beyond recent structure. The EA was backtested on **EURUSD on the H1 timeframe** from **April 1, 2004 to April 24, 2024** using a MetaTrader 4 backtest engine (base data: EURUSD_M1_UTC2). No parameter setup is required — the system is delivered with optimized and fine-tune
FREE
RSI, MACD, Moving Average, Bollinger Bands, Stochastic Oscillator, ATR, and Ichimoku このエキスパートアドバイザーは、RSI、MACD、移動平均、ボリンジャーバンド、ストキャスティクス、ATR、一目均衡表の7つの主要インジケーターを使用し、カスタマイズ可能な時間枠でトレードシグナルを生成します。 買いと売りの方向を個別に有効または無効にでき、曜日や正のスワップ条件に基づく取引制限にも対応しています。 リスク管理は固定のテイクプロフィット、ストップロス、ロットサイズの設定によって行われ、既存ポジションがあっても新規取引を開くことができます。 各インジケーターには独自の設定パラメータ、閾値、比較ロジックがあり、エントリー精度を高めます。
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
Max Hercules
Aaron Pattni
4.13 (8)
Get it FREE while you can! Will be increased to $100 very shortly after a few downloads!! Join my Discord and Telegram Channel - Max's Strategy For any assistance and help please send me a message here.    https://t.me/Maxs_Strategy https://discord.gg/yysxRUJT&nbsp ; The Max Hercules Strategy is a part of a cross asset market making strategy (Max Cronus) built by myself over years of analysis and strategy building. It takes multiple theories and calculations to trade the market in order to cov
FREE
Max Poseidon
Aaron Pattni
3.33 (3)
Get it FREE while you can! Will be increased to $200 very shortly after a few downloads!! Join my Discord and Telegram Channel - Max's Strategy For any assistance and help please send me a message here.    https://t.me/Maxs_Strategy https://discord.gg/yysxRUJT&nbsp ; GBPUSD and EURUSD Set files can be found in the comments! (please message me if you need help with them) TimeFrames are harcoded, therefore any chart and time will work the same. The Max Poseidon Strategy is a part of a cross ass
FREE
MACD RSI Optimized EA is a free, fully automated trading robot designed to capture trends using a classic combination of indicators. By merging the trend-following capabilities of the MACD (Moving Average Convergence Divergence) with the momentum filtering of the RSI (Relative Strength Index), this EA aims to filter out market noise and enter trades with higher probability. This version has been specifically optimized for the month of October on the M15 (15-minute) timeframe and performs best on
FREE
This Expert Advisor is a robust, trend-following system that uses a confluence of five different indicators to confirm a strong upward trend before entering a buy position. Its strategy is built on a two-step validation process: first, it confirms the overall trend using the EMA 200 and Linear Regression Slopes to ensure the price is in a clear bullish direction. Once a valid trend is established, it looks for one of three entry signals from Aroon , ADX , or MACD to trigger a buy trade. The EA i
FREE
Use this expert advisor whose strategy is essentially based on the Relative Strength Index (RSI) indicator as well as a personal touch. Other free expert advisors are available in my personal space as well as signals, do not hesitate to visit and leave a comment, it will make me happy and will make me want to offer content. Expert advisors currently available: LVL Creator LVL Creator Pro LVL Bollinger Bands   Trading is not a magic solution, so before using this expert on a live account, carry
FREE
Sovereign Hunter
Rehan Sulistyo Nugroho
Sovereign Hunter is an algorithmic trading system designed for trading Gold (XAUUSD). The EA monitors the market in real-time to identify price momentum and execute trades based on predefined technical conditions. Sovereign Hunter does not utilize Martingale, Grid, or Averaging strategies. Every opened position is equipped with a defined Stop Loss (SL) and Take Profit (TP). The risk management features are designed to be compatible with standard account types as well as Prop Firm account rules.
FREE
Donchain Grid Zone is a BUY-only grid trading Expert Advisor based on the Donchian Channel. It dynamically scales into positions as price drops through grid zones, and scales out as price recovers — all governed by a Donchian midline filter. How it works: Grid zones are defined below the entry price (RedLine) Zone 1 = 1 order, Zone 2 = 2 orders... up to Zone 7 Orders are only opened when price is   above   the Donchian midline Dynamic Stop Loss trails the Donchian Lower Band Grid spacing adapts
FREE
SR Breakout EA MT4 Launch Promo: Depending on the demand, the EA may become a paid product in the future. Presets:  Click Here Key Features: Easy Installation : Ready to go in just a few steps - simply drag the EA onto any chart and load the settings. Safe Risk Management:   No martingale, grid, or other high-risk money management techniques. Risk management, stop loss, and take profit levels can be adjusted in the settings. Customizable Parameters:   Flexible configuration for individual tradin
FREE
Meta Mind FX
Michael Prescott Burney
WHEN YOU BUY METAMIND FX YOU GET ANOTHER EA OF YOUR CHOICE FREE!!  FLASH SALE FOR THE NEXT 5 COPIES ONLY AT $60 BEFORE PRICE RETURNS THE 120.00!!! ONLY 50 COPIES OF METAMIND FX WILL BE SOLD BEFORE IT BECOMES EXCLUSIVE TO THE BUYERS!! Introducing the MetaMind FX for EURUSD H1 CHART , an advanced Expert Advisor (EA) meticulously crafted to adapt and thrive in the dynamic world of forex trading with a respectable 1:2 R:R (risk to reward ratio) on every trade placed. Boasting an impressive Total Ne
FREE
Hedge Copier Pro — Master EA   is the control unit of a high-speed, LOCAL trade copier for MetaTrader 5. It monitors your prop firm account and instantly broadcasts every trade event to the paired Slave EA — with ZERO latency and NO internet dependency. Designed specifically for prop firm traders, it includes a unique   REVERSE HEDGE mode : the Slave (sold separately) opens the OPPOSITE direction of every Master trade, allowing you to hedge across two accounts simultaneously and protect your fu
FREE
FOZ One Shot Sessions — One Trade. One Opportunity. Every Day. Discipline beats noise. Simplicity beats complexity. The FOZ One Shot Sessions EA is built for traders who want clarity, robustness, and long-term discipline. Instead of chasing signals all day, it takes just one precise trade per session — clean, controlled, and fully transparent. Key Highlights One trade per day per enabled session (default = London) Safe by design — No Grid, No Martingale, No Arbitrage, No tricks
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
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 は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングス
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 購入後、以下
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 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
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 ページに表示されている
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
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(動的計算マッピング)にあります。アルゴリズムは単に価格を分析するので
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)を自動売買したいトレーダー向けに設計されており、明
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
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
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 時間枠で成功し、市場の勢いの本質を捉
リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2378119 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く Mavrik Scalper は、Hybrid Attention ニューラルネットワークアーキテクチャを基盤として開発された新世代のエキスパートアドバイザーです。 事前に定義された取引ルールに依存する従来型のアルゴリズム戦略とは異なり、Mavrik Scalper は市場行動の複数の特徴を同時に分析できる学習済みニューラルモデルを使用します。 Hybrid Attention アーキテクチャにより、システムは重要度の高い市場情報に動的に集中し、重要度の低い価格変動の影響を抑えることができます。 このモデルは、取引回数ではなく執行品質を重視して、短期的な取引機会を識別するために開発されました。 各取引判断は、単一のシグナルではなく、学習された複数の特徴の相互作用に基づいて行われます。 取引活動は意
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
このEAは、第三者の販売業者、アフィリエイト、または別の配布チャネルを通じて販売していません。 モニタリング -  ライブシグナル 公開チャンネル - こちら このEAは2つのシンボルを取引し、それらの間の短期的な不均衡を探します。シンボルが通常の関係から外れて動いた場合、EAは取引を開始し、不均衡が小さくなった時に決済できます。 これはグリッドEAではありません。マーチンゲールではありません。EAは多くの回復注文を開きません。各シンボルにつき1ポジションのみを使用します。 含み損のまま何日もポジションを保有するために作られたものではありません。 EAは取引を開始する前にフィルターを使用します。市場条件が良くない場合、取引をスキップできます。 EA入力: メイン取引シンボル - 取引に使用される最初のシンボル。 セカンダリーシンボル - 比較と取引に使用される2番目のシンボル。 分析タイムフレーム - 計算に使用されるタイムフレーム。 履歴データの深さ - EAが計算のために確認するローソク足の数。 Entry Threshold - EAが取引を開始する前に必要な不均衡の強さ。値が高
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チャンネルに参加して、製品アップデートやトレードのヒントを受け取りましょう。 リンクを開き、ページ上部の「購読」ボタンをクリッ
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はトレーディング・インテリジェンスを複数のターミナル、ブローカー、口座、市場にわたって分散させます。各ノードは独立して
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つの小さな取引に継続的に分割する独自の戦略を採用しています
Scalper speed with sniper entries. Built for Gold. Wave Rider 5.0 is coming - look at the  Early Back-Test Get your copy for  499 USD  only  before the 5.0 price jump to   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 tri
Pulse Engine
Jimmy Peter Eriksson
4 (31)
最新情報 - 現在の価格で入手できるのは残りわずかです! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。  現在の価格での販売部数は非常に限られています。 最終価格 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるい
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 の主な考え方は、危険なナンピンではなく、管理されたロジック、保護設定、実際のトレ
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
Mosquito
Muhammad Zahran Rahmadi Putra
5 (3)
The price is gradually increasing up. Only 5 copy remains available at the current price,  next price increase to   $799 . Hello, traders!, the newest and a very powerful Mosquito MT5 of Expert Advisors. My specifically designed to run on the XAUUSD/GOLD pair. Live Performance      ||      Setfile ICM Mosquito  EA is more selective and accurate in signal entry and better in managing existing transactions.  Mosquito   MT5 EA analyzes markets based on Trend Following using Bollinger Bands and Mo
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 または同等
Obsidian Flow Atlas EA 精度・構造・実行 金融市場は感情に報いることはありません。 市場が評価するのは、規律、一貫性、そして客観的なデータに基づいて意思決定を行う能力です。 Obsidian Flow Atlas EA は、この理念のもとに開発されました。 MetaTrader 5向けに設計された完全自動売買システムであり、金融市場で最も人気の高い2つの銘柄に対応しています。 • XAUUSD(ゴールド) • EURUSD(ユーロ/米ドル) システムは市場環境を自動的に分析し、独自の取引ロジックと統合されたリスク管理モデルに基づいてポジションを開設・管理します。 チャートを長時間監視したり、エントリーポイントを探したり、手動で取引判断を行う必要はありません。 EAをインストールし、希望するリスクレベルを選択するだけで、システムが自動的に取引を行います。 実証済みのリアル運用実績 最大限の透明性を確保するため、本システムの運用実績は公開ライブシグナルを通じて確認できます。 XAUUSD(ゴールド) https://www.mql5.com/en/signals/23
作者のその他のプロダクト
AVWAP Retest Pro Market EA is an adaptive trading robot built around Anchored VWAP retest, breakout, and continuation logic. The Expert Advisor calculates Anchored VWAP internally and uses price interaction around this dynamic level to identify structured trading opportunities. The system combines Anchored VWAP logic with EMA trend confirmation, optional Heikin Ashi filtering, ATR-based risk control, break-even, trailing stop, and multiple trade management protections. It is designed with a vali
FREE
Overview This Expert Advisor (EA) targets high-probability, short-term scalping opportunities by analyzing minute-based market activity (tick momentum), indecision boxes , and breakout/momentum behavior —optionally aligned with trend and session filters. Version 2.0 replaces second-based TPS with a minute (M1) window model that’s Open Prices Only compatible and more stable to optimize. Additional entry modes ( Breakout Close and Retest Entry ) help capture moves that classic momentum filters ma
FREE
Overview Anti-Spoofing Strategy (v1.0) is a live-market Expert Advisor designed to detect and counter high-frequency DOM (Depth of Market) spoofing manipulations in ECN/STP environments. The system monitors real-time Level-2 order book changes via MarketBookGet() and identifies large fake orders that appear and vanish within milliseconds — a hallmark of spoofing. Once such manipulations are detected, the algorithm opens a counter trade in the opposite direction of the spoof, anticipating the tru
FREE
This EA looks for a divergence signal, which occurs when the price of a financial instrument moves in the opposite direction of the RSI indicator. This divergence can signal that the current trend is losing momentum and a reversal is likely. The EA identifies two types of divergence: Bullish (Positive) Divergence : This occurs when the price makes a new lower low , but the RSI indicator fails to confirm this by making a higher low . This discrepancy suggests that bearish momentum is weakening, a
FREE
Concept. Flash ORR is a fast-reaction scalping EA that hunts false breakouts at important swing levels. When price spikes through a recent swing high/low but fails to close with strength (long wick, weak body), the move is considered rejected . If the very next candle prints strong opposite momentum , the EA enters against the spike: Up-spike + weak close → followed by a bearish momentum bar → SELL Down-spike + weak close → followed by a bullish momentum bar → BUY Entries are placed at the open
FREE
ATR Squeeze Fade EA: Low Volatility Mean Reversion Strategy The ATR Squeeze Fade is a specialized scalping Expert Advisor designed to exploit rapid price spikes that occur after extended periods of low market volatility. Instead of following the direction of the spike, the EA trades against it, applying the principle of mean reversion . With advanced entry filters and strict risk management, it focuses on high-probability reversal setups. How the Strategy Works The strategy is based on the assu
This Expert Advisor (EA) generates trading signals by combining popular technical indicators such as   Chandelier Exit (CE) ,   RSI ,   WaveTrend , and   Heikin Ashi . The strategy opens positions based on the confirmation of specific indicator filters and closes an existing position when the color of the Heikin Ashi candlestick changes. This is interpreted as a signal that the trend may be reversing. The main purpose of this EA is to find more reliable entry points by filtering signals from var
Overview Trade Whale Supply & Demand EA   is a fully automated trading system built on   supply and demand zones, liquidity sweeps, and market structure shifts . It detects institutional footprints and high-probability trading zones, aiming for precise entries with tight stop-loss and optimized risk/reward. Works on Forex, Gold ( XAUUSD ) and Indices. Designed for   sharp entries ,   low-risk SL placement , and   dynamic profit targets . Strategy Logic The EA combines: Supply & Demand Zo
This Expert Advisor (EA) is designed to automate trading based on Fibonacci retracement levels that form after strong price movements. The main objective of the EA is to identify entry points during pullbacks within a trend. It executes trades based on a predefined risk-to-reward ratio, entering the market when the price action is confirmed by specific candlestick patterns. How the EA Works The EA automatically performs the following steps on every new bar: Trend and Volatility Detection : First
Trade Whale – Tick Compression Breakout (v1.0) is a short-term breakout scalper that filters setups via ATR-based compression . After price coils in a tight band on your chosen timeframe (e.g., H1), it opens a position when the previous candle’s high/low is broken . Risk is anchored by SL = ATR × multiplier , while TP is an R-multiple of that stop distance (e.g., 2.0R). Position size can be percent-risk or fixed lot , and is margin-clamped to broker limits for safety. A timeout can auto-close p
O verview Trend Band Strategy (v1.0) is a hybrid trend-following and mean-reversion Expert Advisor that blends Fibonacci-scaled Bollinger Bands with Parabolic SAR confirmation. It identifies stretched price moves toward the extreme Fibonacci bands, waits for a reversal signal aligned with the SAR trend switch, and opens counter-trend trades aiming for reversion toward equilibrium. The algorithm runs entirely on bar-close logic for stability and includes dynamic risk-based lot sizing, margin veri
This Expert Advisor is a reversal-style system that combines a 50-centered RSI extreme filter with a 200 SMA proximity rule . It evaluates signals only on a new bar of the selected timeframe and uses closed-bar data (shift=1) to reduce noise and avoid “in-bar” flicker. How the Strategy Works On every new candle (for InpTF ), the EA follows this logic: Compute RSI thresholds around 50 A single parameter creates both buy/sell levels: BuyLevel = 50 − InpRSIThresholdDist SellLevel = 50 + InpRSIThre
フィルタ:
patrickdrew
3220
patrickdrew 2025.08.27 06:45 
 

This could be great but a lack of proven sets AND control of LS is very dangerous.

On M5 this EA took a trade with LS 2. (TWO!?!?!) despite risk % set at 0.1% of balance.

Trade ended up at -330.

This will kill accounts.

Author can improve this EA with proven sets.

jude5508
48
jude5508 2025.08.15 20:27 
 

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

レビューに返信