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
Drream Catcher FX
Michael Prescott Burney
DREAM CATCHER FX is the ultimate EURUSD H1 trading solution, built on 16 years of relentless development and precision-engineered algorithms. This game-changing EA has executed over 4,000 trades with only 99 losses, achieving an astounding win rate that sets it apart from all competitors. Designed for both aggressive and conservative traders, it features advanced exit signals that preemptively close unfavorable trades, ensuring controlled drawdowns and consistent, long-term capital growth. Key
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
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
Fuzzy Trend EA
Evgeniy Kornilov
1 (1)
FuzzyTrendEA - Intelligent Expert Advisor Based on Fuzzy Logic We present to you FuzzyTrendEA - a professional trading Expert Advisor designed for market trend analysis using fuzzy logic algorithms. This expert combines three classic indicators (ADX, RSI, and MACD) into a single intelligent system capable of adapting to changing market conditions. Key Features: Fuzzy logic for trend strength assessment: weak, medium, strong Combined analysis using three indicators with weighted coefficients Full
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
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
Grid Master Pro12
Sidi Mamoune Moulay Ely
3.67 (3)
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
3.67 (3)
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
Hassila
Benjamin Gabriel Nieves Ortiz
HASSILA is a professional algorithmic trading system engineered for EURUSD on the M5 timeframe. It combines multi-timeframe support & resistance zone detection with momentum-based breakout entries, ensuring trades are only taken in the direction of the prevailing trend. Core Features: — Smart zone detection using H1 pivot highs and lows — Breakout confirmation with retest entry for precision — Triple-stage dynamic breakeven system (30% / 60% / 80% of TP) — Adaptive ATR-based stop loss and t
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
Xauusd 1 Minute
Anastase Byiringiro
3.5 (2)
XAUUSD 1 MINUTE EA MT5 A free early-access Gold Expert Advisor built for traders who want a cleaner, smarter, and more disciplined start with XAUUSD automation. XAUUSD 1 MINUTE EA MT5 is a MetaTrader 5 Expert Advisor created for traders who want to enter the Gold market with structure, controlled execution, and a professional automation mindset. This EA is built around the same gold-focused trading vision behind the Gold Family system: clean market structure, pending-order execution, controlled
FREE
ENGLISH DESCRIPTION (MQL5 Standard Optimized) Product Name: Golden Autonomous Architect AI (MT5) [Subtitle: Structural KAMA Beam | Foundation ATR | Sanctum Shield Safety] Introduction Golden Autonomous Architect AI is a structural engineering trading system designed to build profits with the precision of an autonomous architect. It constructs a "Structural Beam" using the Kaufman Adaptive Moving Average (KAMA) to define the load-bearing trend, verifies the "Foundation" with ATR Velocity , and ap
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
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
このプロダクトを購入した人は以下も購入しています
Quantum Queen MT5
Bogdan Ion Puscasu
4.97 (593)
トレーダーの皆さん、こんにちは!私は Quantum Queen です。Quantumエコシステム全体の至宝であり、MQL5史上最高評価とベストセラーを誇るエキスパートアドバイザーです。20ヶ月以上のライブトレード実績により、XAUUSDの揺るぎない女王としての地位を確立しました。 私の専門は?ゴールドです。 私の使命は?一貫性があり、正確で、インテリジェントな取引結果を繰り返し提供することです。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引 価格。10 点購入ごとに50ドルずつ値上がりします。最終価格1999ドル ライブシグナルICマーケット:   こちらをクリック ライブシグナルVTマーケット:   こちらをクリック Quantum Queen mql5 パブリックチャンネル:   こちらをクリック クォンタムクイーンの軽量版で、より手頃な価格の クォンタム
Quantum Athena
Bogdan Ion Puscasu
5 (28)
クォンタム・アテナ ― 経験から生まれた精密さ トレーダーの皆さん、こんにちは!私は クォンタム・アテナ です。伝説のクォンタム・クイーンの軽量版で、今日の市場環境に合わせて改良・再設計されました。 私は何でもできる人間になろうとはしない。 私は今、うまくいっていることに集中します。 私の専門分野は?金です。私の使命は?正確さを核とした、鋭く効率的で、インテリジェントに最適化された取引パフォーマンスを提供することです。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引価格   価格 。       10個購入するごとに価格が50ドルずつ上がります。最終価格は1999ドルです。 ライブシグナルIC市場:       ここをクリック ライブシグナルVTマーケット:       ここをクリック Quantum Athenaのmql5公開チャンネル:       ここ
BB Return mt5
Leonid Arkhipov
4.92 (104)
BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は最終価格ではありません。 現在の価格で残りは5~7ライセンスのみです。
Pulse Engine
Jimmy Peter Eriksson
4.83 (18)
発売記念価格 – 残りわずか! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。 現在の価格での販売部数は非常に限られています。 最終価格: 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるいは特定の市場局面にあるのか
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.38 (73)
取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 ライブシグナル モード 3 Twister Pro EA は、XAUUSD(ゴールド)のM15タイムフレーム専用に開発された高精度スキャルピングEAです。取引回数は少なめ——しかし、取引する時は必ず目的を持って行います。 すべてのエントリーは注文が出される前に5つの独立した検証レイヤーを通過し、デフォルト設定では極めて高い勝率を実現します。 3つのモード: モード1(推奨)— 非常に高い精度、週あたりの取引数が少ない。資本保全と規律ある取引のために設計。 モード2 — 取引頻度が高く、精度はやや低い。より多くの市場参加を好むトレーダー向け。 モード3(ワイドトレール)— モード1と同じエントリー品質ですが、より広いトレーリングストップでポジションを長く保持し、大きな値動きを捉えます。モード1より取引頻度がやや高め。 仕様: シンボル:XAUUSD | タイムフレーム:M15 最低入金:$100 | 推奨:$250 RAW SPREADアカウントは必須 VPS強く推奨 グリッドなし!すべての取引にTPとSLあり!
Quantum Valkyrie
Bogdan Ion Puscasu
4.76 (139)
クォンタムヴァルキリー - 精密、規律、実行 割引   価格。10 回購入するごとに価格が 50 ドルずつ上がります。 ライブシグナル:   こちらをクリック Quantum Valkyrie MQL5 パブリックチャンネル:   こちらをクリック ***Quantum Valkyrie MT5 を購入すると、Quantum Emperor または Quantum Baron を無料で入手できます!*** 詳細については、プライベートでお問い合わせください! IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions.      こんにちは、トレーダーの皆さん。 私は Quantum Valkyrie です。正確さ、規律、そして制御された実行で XAUUSD にアプローチできるように構築されています。 数ヶ月間、私のアーキテクチャは舞台裏で洗練され続けました。変動の激しいセッシ
Goldwave EA MT5
Shengzu Zhong
4.59 (41)
リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
Chiroptera
Rob Josephus Maria Janssen
4.76 (25)
Prop Firm Ready! Chiroptera is a multi-currency, single trade Expert Advisor that operates in the quiet hours of the night. It uses single-placed trades 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 caused by Tweets and other ad-ho
Quantum King EA
Bogdan Ion Puscasu
4.99 (181)
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
The Gold Reaper MT5
Profalgo Limited
4.51 (95)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) WARNING : 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal YouTube Reviews ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 こ
Scalper speed with sniper entries. Built for Gold. Last (3) copies at   449 USD |   final   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
ライブシグナル:   https://www.mql5.com/en/signals/2360479 時間枠:   M1 通貨ペア:   XAUUSD Varko Technologiesは 企業ではなく、自由という哲学そのものです。 私は長期的な協力関係を築き、評判を高めることに興味があります。 私の目標は、変化する市場状況に対応するために、製品を継続的に改善・最適化することです。 Gold Safe EA   - このアルゴリズムは複数の戦略を同時に使用し、損失トレードとリスクのコントロールを重視することを基本理念としています。 取引の決済および管理には、複数の段階が用いられている。 Expertのインストール方法 EAからXAUUSD M1通貨ペアチャートにファイルを転送する必要があります。SETファイルは不要です。時間シフト値を設定するだけで済みます。 IC MarketsやRoboForexのようなブローカーを利用するなど、時間軸を活用することをお勧めします。 時刻設定でお困りの場合は、遠慮なくプライベートメッセージを送ってください。 実際の口座で使用する前に、必ずブ
Gold House MT5
Chen Jia Qi
4.44 (50)
Gold House — ゴールド・スイングブレイクアウト取引システム まもなく価格が上がります。現在の価格で購入できるライセンスは残りわずかです (3/100) 。次の目標価格:$999。 ライブシグナル: Profit Priority モード: https://www.mql5.com/en/signals/2359124 BE Priority モード: https://www.mql5.com/en/signals/2372604 重要:購入後、推奨パラメータ、使用説明、注意事項、使用のヒントを受け取るために、必ずプライベートメッセージをお送りください。 (MQL5 メッセージ): https://www.mql5.com/en/users/walter2008 最新情報をお届け — MQL5チャンネルに参加して、製品アップデートやトレードのヒントを受け取りましょう。 リンクを開き、ページ上部の「購読」ボタンをクリックしてください: Click to Join このEAは、私たちのチームの内部リアル取引口座から生まれました。7年間のヒストリカルデータで開発・検証し、実際の
Price Action Robot is a professional trading system built entirely on real market behavior without indicators, grid strategies, or martingale systems. It analyzes pure price action , focusing on structure, trend dynamics, and key market movements to identify high probability trading opportunities. The system is designed to read the market the same way experienced traders do, using logic based on real price movement rather than lagging indicators. It reacts dynamically to changing market conditio
Akali
Yahia Mohamed Hassan Mohamed
3.26 (81)
LIVE SIGNAL: ライブパフォーマンスを見るにはここをクリック 重要:最初にガイドをお読みください このEAを使用する前に、ブローカーの要件、戦略モード、およびスマートアプローチを理解するために、設定ガイドを読むことが重要です。 ここをクリックして公式Akali EAガイドを読む 概要 Akali EAは、ゴールド(XAUUSD)専用に設計された高精度スキャルピングエキスパートアドバイザー(EA)です。非常にタイトなトレーリングストップアルゴリズムを利用して、ボラティリティの高い期間に瞬時に利益を確保します。 このシステムは精度を重視して構築されており、市場の急速な動きを利用し、市場が反転する前に利益を確定することで、高い勝率を目指しています。 設定要件 通貨ペア: XAUUSD(ゴールド) 時間足: M1(1分足) 口座タイプ: Raw ECN / 低スプレッドが必須です。 推奨ブローカー: ガイドを参照してください 注意: このEAはタイトなトレーリングストップに依存しています。スプレッドの広い口座ではパフォーマンスに悪影響を及ぼします。サーバー時間とブローカーの選択の詳細
AnE
Thi Ngoc Tram Le
4.75 (4)
ANE — Gold Grid Expert Advisor ANE は、M15 時間軸で XAUUSD(金) を取引するために設計された完全自動化されたエキスパートアドバイザー(EA)で、 グリッド加重平均戦略 を採用しています。 重要: ライブ口座で運用する前に、まずデモ口座で EA をテストし、加重平均システムの動作を十分に理解してください。 ライブシグナル ANE 公式チャンネル 取引戦略 ANE はポジションをグループとして管理します。条件が許す場合、平均入値価格を最適化するために追加の取引を開き、合計利益が目標に達した時点でバスケット全体をクローズします。 グリッド稼働中は浮動ドローダウンが発生する期間があります。これは正常で想定される動作です。一時的なドローダウンに対応するため、適切なロットサイズ設定と十分な口座資金が不可欠です。 口座保護機能 最大ドローダウン回路遮断器 — 設定したドローダウン閾値に達すると全取引を停止します(デフォルト 80%)。 スプレッドフィルター — スプレッドが許容最大値を超える場合、新規注文を防止します(デフォルト 70 ポイント)。 ロ
NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation Mapping(動的計算マッピング)にあります。アルゴリズムは単に価格を分析するので
重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに1499ドルになるだろう    100 以上の戦略が含まれており 、今後もさらに追加される予定です。 ボーナス : 999 ドル以上の価格の場合 --> 私の他の EA を  5 つ無料で選択できます! すべてのセットファイル 完全なセットアップと最適化ガイド ビデオガイド ライブシグナル レビュー(第三者) NEW - VERSION 5.0 - ONECHARTSETUP 究極のブレイクアウトシステムへようこそ! 8 年をかけて丹念に開発された、洗練された独自のエキスパート アドバイザー (EA) である Ultimate Breakout System をご紹介します。 このシステムは、高く評価されているGold Reaper EAを含む、MQL5市場で最高のパフォーマンスを誇るいくつかのEAの基盤となっています。 7か月以上にわたって1位を維持したこのほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインしました。
Wall Street Robot is a professional trading system developed exclusively for US stock indices, focused on S&P500 and Dow Jones. These markets are known for their high liquidity, structured movements and strong reaction to global economic flows, making them ideal for algorithmic trading strategies based on precision and discipline. By concentrating only on these indices, the system is able to adapt closely to their behavior, volatility patterns and intraday dynamics, instead of trying to operate
Quantum Emperor MT5
Bogdan Ion Puscasu
4.86 (504)
ご紹介     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つの小さな取引に継続的に分割する独自の戦略を採用しています
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 登場 – より速く。よりスマートに。かつてないほど高性能に。 私たちは2024年末にMean Machineでこの変革を始めました。リアルな最先端AIをライブのリテール取引に導入した最初期のシステムの一つです。 AiQ Gen 2はそのラインにおける次の進化です。 AiQ Gen 2は全く異なるレベルのスピードのために構築されています。指値注文がそのエッジの核にあり、モメンタムが拡大する前に精密にポジションを取り、そしてアダプティブ・インテリジェンスに引き継ぎます。 ほとんどのAIツールは一度回答すると、すべてを忘れます。 AiQ Gen 2は違います。 すべての指値注文セットアップ、各配置や調整の背後にある推論、なぜトリガーされたか、なぜ見送ったか、そしてマーケットがどう反応したかを記憶しています。毎セッションの完全なコンテキスト。時間とともに蓄積される永続インテリジェンス。 これはマーケティングのためにAIを付け足しただけのEAではありません。 これは精密な指値注文執行を中心に構築された高速専門インテリジェンスです。 従来のEAは固定されたロジックの中に閉じ込
Full Throttle DMX
Stanislav Tomilov
5 (9)
フルスロットルDMX - リアルな戦略 , とリアルな結果   Full Throttle DMXは、EURUSD、AUDUSD、NZDUSD、EURGBP、AUDNZDの通貨ペアで動作するように設計された、マルチ通貨取引エキスパートアドバイザーです。このシステムは、よく知られたテクニカル指標と実績のある市場ロジックを用いた、古典的な取引アプローチに基づいて構築されています。EAには10種類の独立した戦略が含まれており、それぞれが異なる市場状況と機会を特定するように設計されています。多くの現代の自動システムとは異なり、Full Throttle DMXは、グリッド、平均化、マーチンゲール、その他の積極的な回復手法といったリスクの高い資金管理手法は使用しません。このシステムは、長年にわたりテストされてきた、規律正しく保守的な取引哲学に従っています。EAは、H1時間枠で動作するデイトレードシステムを使用し、影響力の大きい経済イベント時の取引を回避するためのニュースフィルターを内蔵しています。取引は5つの通貨ペアに分散されているため、単一市場への依存を軽減できます。この戦略は透明性の高い取引
Aurum AI mt5
Leonid Arkhipov
4.87 (45)
アップデート — 2025年12月 2024年11月末、Aurumは正式に販売開始されました。 それ以来、ニュースフィルターや追加の防御条件、複雑な制限なしで、実際の相場環境にて継続的に稼働してきましたが、安定して利益を維持してきました。 Live Signal (launch April 14, 2026) この1年間のリアル運用により、トレーディングシステムとしての信頼性が明確に証明されました。 そしてその実績と統計データを基に、2025年12月に大規模アップデートを実施しました: プレミアムパネルを全面刷新、すべての画面解像度に最適化 取引保護システムを大幅に強化 Forex Factoryを基にした高性能ニュースフィルターを追加 シグナル精度を向上させる2つの追加フィルター 最適化の強化、動作速度と安定性の向上 損失後に安全に回復するRecovery機能を搭載 プレミアムスタイルの新しいチャートテーマを採用 AURUMについて Aurum — ゴールド(XAU/USD)専用プレミアム自動売買EA Aurumはゴールド市場において、安定性と安全性を重視して開発されたプロ
Sentinel XAU is an automated Expert Advisor designed with a strong focus on risk control, capital preservation, and stable execution. The EA operates with discipline and consistency, avoiding aggressive exposure and adapting its behavior during unfavorable market conditions . Sentinel XAU prioritizes account stability over high-frequency or high-risk trading and does not force entries when market conditions are not suitable. It features automated position management, built-in margin and drawdown
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.83 (120)
Quantum Bitcoin EA   : 不可能なことは何もありません。やり方を見つけ出すだけの問題です。 トップ MQL5 販売業者の 1 つによる最新の傑作、   Quantum Bitcoin EA で ビットコイン 取引の未来に足を踏み入れましょう。パフォーマンス、精度、安定性を求めるトレーダー向けに設計された Quantum Bitcoin は、不安定な暗号通貨の世界で何が可能かを再定義します。 重要! 購入後、インストールマニュアルとセットアップ手順を受け取るために私にプライベートメッセージを送信してください。 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル Quantum Bitcoin/Queen チャンネル:       ここをクリック ***Quantum Bitcoin EA を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! Quantum Bitcoin EA は H1 時間枠で成功し、市場の勢いの本質を捉える トレンドフォロー戦略 を
Gold OPR Killer — XAUUSDスキャルピングの究極スペシャリスト 期間限定オファー Gold OPR Killer の価格は 24時間ごとに50USD上昇 します。 次回の値上げ前に現在の価格をお見逃しなく。 トレーダーの皆様へ 私は Gold OPR Killer 、XAUUSDの プロフェッショナルスキャルピング専用 に設計されたMQL5エキスパートアドバイザーです。私の使命はシンプルです:金市場の加速的な値動きを、スピード・精度・アルゴリズム的規律で捉えることです。 私は常に取引するわけではありません。最もクリーンで、最もダイナミックで、最も効率的なセットアップのみを選択し、高速かつ最適化された執行を目指します。 Gold OPR Killerが他と違う理由 Gold OPR Killerは、次のようなトレーダーのために開発されました: 高速かつ正確な約定 攻撃的だが制御されたスキャルピングロジック インテリジェントなリスク管理 金(ゴールド)のボラティリティへの自動適応 MT5上での高い安定性 EAのすべての構成要素は、 高精度なゴールドスキャルピング
Gold Oni
Lo Thi Mai Loan
4.8 (5)
> 価格は24時間ごとに上昇します - 今すぐ行動しなければ明日はもっと高くなります 現在の価格:$299.99 -> 最終価格:$1999.99 待つ日が増えるほど価格は上がります。価格履歴を確認してください。 [ ライブシグナル ] | [ バックテスト結果 ] | [ セットアップガイド ] ボーナス:購入後にプライベートメッセージを送ってください。無料のボーナスEAをすぐにお届けします。 >> 重要なお知らせ:購入後、プライベートメッセージでご連絡いただくと、お客様の口座残高に合わせた設定ファイルをお送りします。デフォルトのSL・TP・トレーリングストップの値は、$3,000以上の口座向けに最適化されています。口座残高がそれ以下の場合は、カスタム設定ファイルのご使用を強くお勧めします。 AI Aurum Pivot と AI Gold Prime の作者から AI Aurum Pivot や AI Gold Prime をご存知の方なら、すでに水準はご存知のはずです。一貫したロジック。すべての取引に対するハードなストップロス。マーチンゲールなし。隠されたトリックなし。
Grabber Bot
Ihor Otkydach
5 (3)
残り5 部、価格は399ドルです。次の価格は499ドルとなります。 Grabber Bot — は、MQL5 Market プラットフォームにおいて既にトレーダーから高い評価と認知を得ている Grabber System の実績あるロジックに基づいて構築された、完全自動のエキスパートアドバイザーです。このEAは、実際のトレード経験とユーザーからのフィードバックをもとに開発されました。 Grabber System の手動バージョンを使用していた多くのトレーダーは、同じ問題に直面していました: シグナルがトレーダーが寝ている時や忙しい時に発生する(優れたトレードシグナルの約50%を逃す) トレーダーが戦略ルールを守らない:過剰なナンピン、ルール外のエントリー、早すぎる決済(これにより収益性が低下、または損失につながる) その結果、これらの問題を完全に排除し、より快適にトレードできるように、GRABBER を完全自動化することを決定しました。 LIVE SIGNAL (3 deals trading) LIVE SIGNAL (1 deal trading) USER MANUAL G
XIRO Robot MT5
MQL TOOLS SL
4.85 (26)
XIRO Robot is a professional trading system created to operate on two of the most popular and liquid instruments on the market:  GBPUSD, XAUUSD and BTCUSD . We combined two proven and well tested systems, enhanced them with multiple new improvements, optimizations and additional protective mechanisms, and integrated everything into one advanced and unified solution. As a result of this development process, XIRO Robot was created. Robot was designed for traders who are looking for a reliable and
プロップファーム準備完了! 1ヶ月で口座を転売したいトレーダーには不向き マーチンゲールなし / グリッドなし / AIなし XAUUSD、USDJPY、BTCUSD、US30、DE40 向けのプロフェッショナルブレイクアウトシステム ライブ結果:  ライブシグナル  |  メインポートフォリオ  |    FTMO結果  |  パブリックコミュニティ 更新 - 現在の価格:    $449、次の価格: $499 (残り 4 部のみ) レンジブレイクアウトEA レンジブレイクアウトEAは、取引セッション間のボラティリティの変化という、よく知られた市場行動に基づいています。 アジアセッション中は通常、ボラティリティが低く、狭い価格レンジを形成します。ロンドンセッションが始まると、ボラティリティが上昇し、価格はしばしばこのレンジを突破し 、ブレイクアウト方向への動きを続けます。 システムはこのブレイクアウトをトレードし、ボラティリティが鈍化し始める日中にポジションをクローズします。 インジケーターや固定時間枠を使用しないため、オーバーフィッティングを軽減できます。内部ブレイ
作者のその他のプロダクト
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
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
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
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
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
フィルタ:
patrickdrew
3191
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 
 

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

レビューに返信