H Bandys PIRDPO

Howard Bandy's - PIRDPO (Position in Range Detrended Price Oscillator)

A professional implementation of Howard Bandy's PIRDPO (Position In Range of Detrended Price Oscillator) strategy, designed to systematically capture high-probability short-term reversals in equity markets.

PIRDPO measures where the current detrended price sits relative to its recent history, expressed as a percentile from 0 to 1. When the percentile is low, price is at the bottom of its detrended range — a classic mean reversion setup that this EA captures with disciplined, rule-based execution.

Core Edge

The Detrended Price Oscillator removes long-term trend effects to isolate short-term cycles. PIRDPO takes this further by ranking the current DPO reading against its recent history as a percentile:

  • A low percentile (near 0) means price is at an extreme low relative to its detrended range
  • A high percentile (near 100) indicates an overbought condition for short trades
  • The range is recalculated on every bar, automatically adjusting to current volatility
  • No fixed thresholds to re-optimize -- PIRDPO is self-calibrating

Unlike fixed-threshold indicators, PIRDPO adapts to recent market conditions by ranking the current reading as a percentile — making it self-calibrating across different volatility regimes.

How PIRDPO Is Calculated

PIRDPO is built in two steps. First, the Detrended Price Oscillator (DPO) removes the trend by measuring the percentage distance between the closing price and its simple moving average:

DPO = (Close - SMA) / SMA

The SMA period is configurable (default 20). When the close is below the moving average, DPO is negative. When above, DPO is positive. Dividing by SMA normalizes the result as a percentage, so the value is comparable across different price levels.

Second, the current DPO is ranked as a percentile within its recent range. The EA finds the minimum and maximum DPO values over a lookback window (default 20 bars) and calculates:

PIRDPO = 100 x (DPO_current - DPO_min) / (DPO_max - DPO_min)

This produces a value between 0 and 100. A reading of 0 means the current DPO is at the lowest point of its recent range — maximum oversold. A reading of 100 means it is at the highest point — maximum overbought. Because the range is recalculated on every bar, PIRDPO automatically adjusts to current volatility conditions without requiring fixed thresholds.

Research Foundation

Based on Howard Bandy's PIRDPO indicator from "Mean Reversion Trading Systems" (Blue Owl Press, 2013). PIRDPO uses two components: a DPO Moving Average Period (default 20) that detrends price, and a PIRDPO Lookback Period (default 20) that ranks the current reading as a percentile.

Bandy's mean reversion strategies were originally designed as long-only systems, reflecting the natural upward bias of equity markets. The short side has been coded into this EA for those who wish to experiment, but the long side is where the primary research edge lies.

Strategy Rules

Long side:

  • Entry: PIRDPO drops below 15 (default) while price is above the SMA trend filter
  • Exit: PIRDPO rises above 80 (default), or Take-Profit target is hit (default 1.0%), or N-bar timeout expires (default 10 bars) -- whichever comes first

Short side (disabled by default):

  • Entry: PIRDPO rises above 85 (default) while price is below the SMA trend filter
  • Exit: PIRDPO drops below 20 (default), or Take-Profit target is hit, or N-bar timeout expires -- whichever comes first

Two entry modes are available:

  • Standard: single entry per signal
  • Aggressive: adds one additional position on the next bar if the signal remains active

Typical System Behaviour

  • High win rate (often 65 to 85 percent depending on market and settings)
  • Small, consistent gains per trade
  • Occasional drawdowns during strong trending markets
  • Performs best on liquid equity indices and ETFs

This is a mean reversion system, not a trend-following strategy. It profits from short-term pullbacks rather than large directional moves.

Who This EA Is For

Ideal for:

  • Traders building multi-strategy portfolios
  • Users familiar with systematic trading concepts
  • Traders targeting consistency over aggressive returns

Not suitable for:

  • "Set and forget" users expecting constant profits
  • Traders who cannot tolerate temporary drawdowns
  • Users seeking high-risk, high-return systems

Key Features

  • Fully automated execution on MetaTrader 5
  • Multi-symbol trading: up to 10 markets from a single chart
  • Three position sizing modes: Fixed Lots, Dollar Value, and Account Percentage
  • Automatic currency conversion for cross-currency instruments
  • Triple-exit framework: PIRDPO-based exit, profit target, and time-based exit
  • Standard and Aggressive entry modes
  • Built-in performance dashboard with win rate, P&L, average trade, and open positions
  • Alerts via chart popups, push notifications, and email

Recommended Markets

Best suited for:

  • US equity indices: S&P 500 (US500), NASDAQ 100 (NDX100/US100), Dow Jones (US30)
  • Other liquid indices: Russell 2000 (US2000), ASX 200, DAX 40, FTSE 100
  • Equity ETFs: SPY, QQQ, DIA, IWM, XLK

Individual equities can be traded but carry higher risk. Single stocks are inherently more volatile than indices and ETFs, and their downside risk during company-specific events is substantially larger. If trading individual equities, use conservative position sizing and always backtest first.

Not recommended for Forex or commodities unless specifically tested. Do not mix asset classes in the same EA instance.

Screenshots

Screenshots show individual trade examples on SPY with entry and exit markers, PIRDPO indicator values, and strategy details.

Part of a Professional EA Series

This EA is one of 9 mean reversion strategies available from M.Wills. All target the same core edge — short-term pullbacks in trending markets — but each uses a different signal to identify when that pullback has gone far enough. Running multiple uncorrelated entry signals together can reduce drawdowns, improve consistency, and smooth equity curves.

The series includes:

  • Connors TPS (scale-in with RSI)
  • Connors RSI2 (RSI extreme readings)
  • Connors Double 7s (7-day price channel)
  • Connors Percent B (Bollinger Band %b)
  • Bandy Naive MR (consecutive down days)
  • Bandy PIRDPO (detrended price oscillator)
  • Bandy RVI2 (relative vigor index)
  • Bandy DV2 (close-to-midpoint momentum)
  • Bandy Z-Score (statistical z-score)

Expert Advisor Settings

General Settings

Magic Number (default: 12345) - Unique identifier for this EA's trades. Use different numbers when running multiple EAs on the same account to prevent trade conflicts.

Trade Entry Mode (default: Open of Next Bar) - Controls when trades are executed:

  • OPEN OF NEXT BAR: Places trades at the next bar open. Best for backtesting.
  • CLOSE OF THIS BAR: Executes near the daily session close. Recommended for live trading.
  • EXACT TIME: Executes at a user-defined time each day using the broker's server clock.

Exact Time (default: 23:54) - The time in HH:MM format used when Trade Entry Mode is set to Exact Time.

Timeframe (default: Current) - The chart timeframe for analysis. Daily is recommended.

Position Sizing

Sizing Mode (default: Lot Size) - Determines how position size is calculated:

  • LOT SIZE: Uses a fixed number of lots per trade entry.
  • TRADE VALUE $: Allocates a fixed dollar amount per trade, automatically converted to the correct lot size.
  • ACCOUNT BALANCE %: Allocates a percentage of the current account balance per trade.

Position Size (default: 0.01) - The value applied to the selected sizing mode.

Max Margin % of Equity (default: 30.0) - Safety limit that caps how much margin a single trade can consume relative to account equity. Before every trade, the EA calculates the required margin and checks whether it would exceed this percentage of current equity. If it would, the trade is skipped and a message is logged to the Journal. This prevents accidental over-leverage on brokers with high minimum lot sizes. Set to 0 to disable.

Symbol Management

Additional Symbols (default: blank) - Comma-separated list of additional symbols to trade from a single chart (e.g. US500,NDX100,ASX200). Leave blank to trade only the chart symbol.

Max Symbols Open at Once (default: 2) - Maximum number of symbols that can have active trades simultaneously.

Indicator Settings

DPO Moving Average Period (default: 20) - The period for the simple moving average used in the DPO calculation. DPO = (Close - SMA) / SMA. A longer period smooths out more trend, isolating longer cycles.

PIRDPO Lookback Period (default: 20) - The number of bars used to calculate the min/max DPO range for the percentile ranking. PIRDPO = (DPO_current - DPO_min) / (DPO_max - DPO_min). A longer lookback creates wider percentile ranges and fewer signals.

Long System

Enable Long (default: true) - Toggles long (buy) trading on or off.

Entry Mode (default: Standard) - Standard = single entry per signal. Aggressive = adds one additional position on the next bar if the signal remains active.

Trend Filter: Price > SMA (default: true) - Long trades are only taken when price is above the moving average, ensuring trades align with the broader uptrend.

Trend Filter: SMA Period (default: 200) - The lookback period for the trend filter.

Entry: PIRDPO Below (default: 0.15) - When PIRDPO drops below this percentile level, a long entry is triggered. Values near 0 indicate extreme oversold conditions.

Exit: PIRDPO Above (default: 0.80) - When PIRDPO rises above this percentile, all long positions are closed.

Exit: Take Profit % (default: 1.0) - Percentage profit target submitted at broker level. Set to 0 to disable.

Exit: N-Bar Timeout (default: 10) - Close position after N bars if no other exit triggered. Set to 0 to disable.

Aggressive: 2nd Entry Multiplier (default: 1.0) - Position size multiplier for the second entry in Aggressive mode.

Short System

Enable Short (default: false) - Toggles short (sell) trading on or off. Disabled by default.

Entry Mode (default: Standard) - Standard = single entry per signal. Aggressive = adds one additional position on the next bar if the signal remains active.

Trend Filter: Price < SMA (default: true) - Short trades are only taken when price is below the moving average, ensuring trades align with the broader downtrend.

Trend Filter: SMA Period (default: 200) - The lookback period for the trend filter.

Entry: PIRDPO Above (default: 0.85) - When PIRDPO rises above this percentile level, a short entry is triggered.

Exit: PIRDPO Below (default: 0.20) - When PIRDPO drops below this percentile, all short positions are closed.

Exit: Take Profit % (default: 1.0) - Percentage profit target for short positions. Set to 0 to disable.

Exit: N-Bar Timeout (default: 10) - Maximum bars to hold a short position before closing at market. Set to 0 to disable.

Aggressive: 2nd Entry Multiplier (default: 1.0) - Position size multiplier for the second entry in Aggressive mode.

Display Settings

Show Dashboard (default: true) - Displays the on-chart information panel showing all active settings and current trade status.

Font Size (default: 20) - Text size for the dashboard display.

Show Trade Metrics (default: true) - Includes performance statistics in the dashboard: total trades, win/loss ratio, accuracy, average trade, and cumulative P&L.

Metrics Start Date (default: 2000.01.01) - Starting date for performance calculations.

Alerts and Notifications

Chart Alerts (default: false) - Enable on-chart popup alerts when trade signals are generated.

Push Notifications (default: false) - Enable mobile push notifications for trade signals. Requires push notifications to be configured in the MetaTrader 5 terminal.

Email Notifications (default: false) - Enable email notifications for trade signals. Requires email to be configured in the MetaTrader 5 terminal settings.

Backtesting and Execution Notes

This strategy is designed for entry at the close of the trading day, when the signal is first identified. Backtesting research shows that entering at the close provides a measurable edge over waiting for the next day's open.

  • Default mode: Open of Next Bar (required for MQL5 Market validation)
  • Recommended for live trading: Close of This Bar, or Exact Time (1-2 minutes before market close)
  • Set Exact Time to match your broker's daily close (e.g. 23:54 for a server that closes at 23:55)

Backtesting tips:

  • Use "1 minute OHLC" or higher tick model for accurate results on daily bars
  • Do not use "Open prices only" for daily timeframe strategies
  • Close of This Bar and Exact Time modes may not function correctly in the Strategy Tester

Additional notes:

  • Do not mix different asset classes in the same EA instance
  • For Forex and Metals, use the Lot Size position sizing method only -- Trade Value and Account Percentage modes are designed for stocks and indices

Requirements

  • MetaTrader 5 platform (Hedging or Netting account)
  • Minimum recommended leverage: 1:30
  • Daily timeframe preferred
  • All symbols must be available in your broker's Market Watch

Support

If you need custom adjustments or have questions, leave a comment with your email and we will get back to you. Always test the EA on a demo account before running it on a live account.

Risk Disclosure

This EA trades mean reversion setups using PIRDPO percentile rankings. However, percentile rankings can stay at extremes during sustained trends, and exits may not prevent losses during severe drawdowns. Backtests use historical data and do not account for slippage, partial fills, or changing market conditions. Proper position sizing relative to account equity is essential. Always test with demo accounts before trading live. Past performance does not guarantee future results.


おすすめのプロダクト
I present to you the parameters and settings of the Series Control bot, which is an ultra-modern bot for working in the Forex market. This bot uses the latest money management and market analysis technologies to identify trends and make trading decisions. It also has a flexible control and protection system for each position. Currency pairs for trading: EURUSD, USDJPY, GBPUSD, AUDUSD, USDCAD, USDCHF, NZDUSD, EURJPY, GBPJPY, EURGBP, AUDJPY, EURAUD, EURCHF, AUDNZD, NZDJPY, GBPAUD, GBPCAD, EURNZ
HP メカニカル・トレーディング・システム EA V.1 — 完全ガイド このEAとは MetaTrader 5向けの完全自動マルチストラテジー・エキスパートアドバイザーで、4つのプロフェッショナルなトレーディングシステムを統合されたトレンドフィルターの下で組み合わせ、グリッド回復、リスク管理、アカウント保護機能を内蔵しています。 4つのトレーディングシステム 1. トレンドフォロー(EMAクロスオーバー) - ファストEMA(50)とスローEMA(200)のクロスオーバーを使用 - ファストEMAがスローEMAを上回ると買い - ファストEMAがスローEMAを下回ると売り - 強いトレンド市場で最も信頼性が高い 2. 平均回帰(BB + RSI) - 価格が下側のボリンジャーバンドで跳ね返り、RSIが売られすぎの時に買い - 価格が上側のボリンジャーバンドで跳ね返り、RSIが買われすぎの時に売り - レンジ相場や保ち合い相場での使用に最適 3. ブレイクアウトシステム(出来高確認あり) - 価格が過去N本のバーの最高値を上回ってクローズしたときに買い - 価格が過去N本のバ
Trang Holding
Thu Huyen Trang Nguyen
Trang Holding EA - use trendline of H4 to confirm buy/sell zone, then open first entry when break-out candle - hold profit with trailing stop. we have 2 options: + low risk ; holding only 3 (fill the number you want) trades, close a part of combo when markets move by negative way + high risk : hold all trades of combo to TP of combo - I like high risk option with maximum autolot = 0.05/$1000 . but better option is fix_vol. example 10k open fixed 0.2 and you can withdraw profit everyweek -change
Catching Bot is an automated advisor used for trading in all financial markets. This bot combines rich functionality for working on the Forex market and on any instruments. The bot implements methods that can overcome the security of the forex market and help you work with it with an acceptable reasonable risk. Briefly about the essence of the problem. As you know, working in the forex market is not easy, it is difficult to predict the price movement, and if you work with one order, it is diff
Trend-following Expert Advisor that acts based on Ichimoku indicators, programmed to respond for identify strong trend moments and ensure greater precision in entry decisions for better perfomance in ops. It features optional stop-loss control based on the percentage of price change, or "stop and reverse" between these moments, and lot scaling based on balance growth. Learn what parameters are with better performance for each symbol in the strategy tester and find a good linear regression making
PythonX CandleMaster AUDUSD EMA + Candlestick Pattern Precision Trading System Strategy Overview PythonX CandleMaster AUDUSD is a price action-driven Expert Advisor engineered specifically for the AUDUSD currency pair . The system combines a trend-following EMA filter with high-probability candlestick pattern recognition to execute trades with precision. The strategy focuses on trend-aligned reversals , capturing pullbacks within established market direction instead of chasing breakouts. This a
Wolf EA MT5
Satria Adhi Monandar
Wolf-EA is an automated forex robot work using a combination of martingale and hedging. Because of this method, this EA has a very high ROI (Return of investment) with relatively good stability. According to the developers, this automated trading system is able to perform miracles. Many Traders scare away from Martingale, as this principle is perceived as the basis of the trading system. But if you play smart, it can be very profitable. Please test in a demo account first for at least a week. Al
SchermanActionPro のご紹介:Automatictrading の新しい自動取引ボット Automatictrading は、SchermanActionPro をご紹介できることを誇りに思っています。 注目の機能:  • 設定可能なインジケーター: Ivan の推奨に従って、平均とローソク足の数を調整します。  • 運用の柔軟性: 購入か販売かを選択します。  • 利益確定: ATR または逆シグナルに基づく固定オプション。  • Loss Stop: ATR または逆の信号に従って固定に設定可能。  • ロットタイプ: 固定ロットの選択、アカウントの % または固定金額での固定リスク。  • 最大バッチ保護: 設定可能。  • ピップと滑りのサイズ: 完全に調整可能。  • フィルタと出力: ATR およびスプレッド レベルに従って入力フィルタと出力フィルタをアクティブにします。  • 利益確定と部分損失決済: レベルごとに設定可能。  • トレーリングストップと損益分岐点: 距離、パーセンテージ、スリッページを設定可能。  • キャンドルの数による出力: 設定可能
SL$TPauto Expert Advisor SL$TPauto automatically manages Stop Loss (SL) and Take Profit (TP) levels for all trades on a specific symbol. This Expert Advisor scans whatever chart it's placed on and works based on that chart's symbol, functioning independently across multiple charts simultaneously. Key Features: Automatically places Stop Loss (SL) and Take Profit (TP) for all open trades on the current chart symbol Applies the same Stop Loss (SL) and Take Profit (TP) settings to any new trades as
Range Expansion PRO: Strategy & Implementation The Problem: The "Fakeout" Trap Most breakout bots fail for one simple reason: they treat every price movement as a signal. They get chopped up in sideways markets or wiped out by "fakeouts" during low-liquidity sessions. I designed Range Expansion PRO to solve this specific frustration. I wanted a tool that remains dormant when the market is indecisive and only strikes when there is undeniable institutional momentum. By shifting the focus from "how
Explosive Breakout Hunter は、 強烈 なブレイクアウトを捉えることで 利益の最大化を目指すEAです。 勝率は約50%、月に数回のエントリーのみと少ないながらも、量ではなく質を重視。 じっくりとチャンスを待ち構え、着実に大きな勝利を積み上げていきます。 このEAでどれだけの利益を期待できるか、バックテストの結果をスクリーンショットでご確認ください。 また、ぜひ無料のデモを試してみてください。 インストールはとても簡単で、設定の変更は一切不要。 初期設定のままで、GMT+2(サマータイムあり)のサーバー時間を使用するほとんどのブローカーで問題なく動作します。 もしブローカーのサーバー時間が異なる場合でも、プロパティから簡単に調整できます。 必須条件: 通貨ペア:   USDJPY タイムフレーム:   1時間足 エントリー時間:   東ヨーロッパ時間(EET)7:00~12:00 推奨条件: 最低初期資金:  10万円程度から レバレッジ: 最低1:25(推奨1:100) VPS での運用: VPSを使用して24 時間365日安定して稼働させましょう 中長期運
Only profit! This is a smart grid trading robot.  It works on my original algorithm!  At  medium  risks, it shows more than 100%  profit  per year.  ( Tested exclusively on real ticks and real accounts ) This robot is created to receive income more than any bank offers. It trades automatically around the clock on any currency pair!   ( I do not recommend "exotic" currency pairs ) Adjustable   risks.  Adjustable position volume. Adjustable mesh pitch. Adjustable profit level. Not tied to a time f
Ai Brain — MetaTrader 5 対応 ニューラルネットワーク自動売買システム Ai Brain はトレーディング指標ではありません。ルールベースのシステムでもありません。MetaTrader 5 内部でネイティブに動作するリアルタイム人工知能推論エンジンであり、すべての市場ティックでディープニューラル計算を通じて自律的な売買判断を行います。 ニューラルインテリジェンスエンジン Ai Brain の中核には ONNX 駆動のディープラーニングモデルがあります。ONNX(Open Neural Network Exchange)は、Microsoft、Google、NVIDIA が本番グレードの人工知能を展開するために使用する業界標準フレームワークです。Ai Brain に組み込まれたモデルは、数千の実際の市場シーケンスを使った教師あり学習によってトレーニングされています。すべての新しいバーで、Ai Brain は多次元特徴ベクトルを構築し、トレーニング済みニューラルネットワーク層に渡し、信頼度加重の市場状態分類出力を受け取ります。取引は、ニューラル出力が厳格な二重信頼度ゲ
A fully automated trading system based on trend analysis and consisting of two interdependent bots: one works when the market rises (Buy-bot), the second - when the market falls (Sell-bot). Link to the second bot (Sell-bot):  https://www.mql5.com/ru/market/product/78678?source=Site+Market+Product+Page The system works on a "set it and forget it" principle. The client does not need to do anything except ensure the round-the-clock operation of the trading terminal. The developer assumes obligation
A fully automated trading system   based on trend analysis and consisting of two interdependent bots: one works when the market rises (Buy-bot), the second - when the market falls (Sell-bot). Link to the second bot (Buy-bot):  https://www.mql5.com/ru/market/product/78152?source=Site+Market+Product+Page The system works on a "set it and forget it" principle.   The client does not need to do anything except ensure the round-the-clock operation of the trading terminal. The developer assumes obligat
Nexus Alpha Engine
Krasimir Borislavov Petrov
Automation with Precision. No Surprises. Nexus Alpha Engine   delivers a new standard of trading precision.   Meet NexusEA —the foundational expert advisor in this framework, built for traders who demand absolute transparency and full control over their automated strategies. With   NexusEA , you're not just buying an EA; you're acquiring a powerful   "strategy skeleton builder."   We provide the robust, deterministic framework—you   integrate   your unique market insights and precise rules. Aut
Quantum Candlestick Collider — Institutional-Grade Precision for XAUUSD Quantum Candlestick Collider is a next-generation automated trading system engineered specifically for XAUUSD (Gold) on the M15 timeframe. Built on a proprietary quantitative engine and advanced candlestick intelligence, this EA delivers exceptional entry precision, adaptive market awareness, and institutional-level risk control — designed to perform even under extreme market volatility. Real trading environment Transpa
概要 資金管理、トレーリングストップ、ポジション管理ができる トレンドフォローEAです。 特徴 一般的なトレンドの方向にポジションを開くことに基づいたトレンドフォロー戦略です。 テイクプロフィット注文とストップロス注文を使用してリスクを管理し、利益を確保します。 また、 EA はトレーリング ストップを採用し、価格が取引に有利に動くにつれてストップロスを動的に調整します。 MT5であればブロカー関係なく、暗号資産(仮想通貨)、FX、CFD、株式等の使用可能なEAとなっております。 ※スクリーンショットの模様は、フォワードテスト最適化の様子やフォワードテスト後の資産状況を載せています。 EAを稼働させる上での注意事項 当サイトでご提供しているEAは、利用者の収益を保証するものではありません。 当サイトで掲載しているロジック、損益シミュレーションと同じ結果になることを保証するものでもありません。利用者の環境等で結果が異なることもございます。 実際にEAを利用するか中止するかの判断は、必ずご自身で決定してください。
Quantum Breaker PRO - Intelligent Breakout Trading System Quantum Breaker PRO is a sophisticated Expert Advisor crafted with passion and precision to capitalize on market breakouts with surgical accuracy. This isn't just another EA - it's a complete trading system designed to identify and trade the most profitable breakout opportunities in the market. Key Features Smart Breakout Detection Automatically identifies recent swing highs and lows using advanced algorithms Places strategic buy-st
Evoque Global MT5
Muhammad Mubashir Mirza
Evoque Global – Reliable Automated Hedging The price will keep increasing by $100 with every  single purchase, so don't be late. Evoque Global   offers a hands-free, adaptive trading solution designed to deliver consistent profits with controlled risk. Using a smart hedging approach, it balances trades to reduce drawdowns and maximize smooth equity growth. This expert advisor works seamlessly in all market conditions—trending or ranging—automatically managing entries, exits, and trade sizes with
We present you an expert system, which is a universal scalper. The expert system works with small spreads and on a fast Internet channel. Settings are quite simple and easy to adjust. The Forex Attack expert system is a high-speed scalpel, and accordingly works with ticks, which must be taken into account when testing the system. The expert system works on all types of accounts: netting, hedging. The bot does not use the history stored in the database for work. For his own needs, he uploads hi
BOOSTER FOR MT5は、FOREX市場での日常業務のためのプロのスカルパーアドバイザーです。取引では、経験とともに、トレーダーは通常、ストップ注文の蓄積レベル、価格、時間が市場で重要な役割を果たすことを理解するようになります。この戦略は、このFOREX Expert Advisorで実装されており、この製品の使用を楽しむだけでなく、その開発にも参加していただければ幸いです。フィードバックは、https:// www.mql5.com/en/に残してください 。市場/製品/ 45915#!タブ=レビュー MT4バージョン:https:// www.mql5.com/en/market/product/45915 オプション: 価格-割り当てられた期間内にトラバースする必要がある価格の距離。 TIME-割り当てられた時間(秒単位)。 HL_PERIOD-レベルを決定するためのバーの数。 HL_TIMEFRAME-レベルを決定するための時間枠。 BREAKTHROUGH_LEVEL-レベルを突破した後に注文を開きますか?; MAGIC_NUMBER-取引のマジックナンバ
Hydra Neuron
Ignacio Agustin Mene Franco
Hydra Neuron EA | XAU/USD M1 Scalping System Developed by Worldinversor 2026 Hydra Neuron is an institutional scalping Expert Advisor designed exclusively for the XAU/USD (Gold) pair on the M1 timeframe. It combines structural price analysis with a multi-layered system of technical filters to identify high-probability entries in real time. ️ SYSTEM ARCHITECTURE The EA's core integrates two main signal engines: 1. Liquidity Sweep Detection — Identifies institutional liquidity sweeps by an
Introducing "CypherInvest," your trusted Expert Advisor in the dynamic world of financial markets.  With cutting-edge technology and advanced algorithms, CypherInvest analyzes market data, identifies patterns, and uncovers hidden opportunities to help you make informed investment decisions. Our innovative approach combines the power of cryptography and data analysis, unlocking the secrets of the market to maximize your returns. Powered by the Secret algorithm, CypherInvest leverages support an
Sonic
Jalaluddin Raheemi
only 3 copies will be sold at the current price and then the price will increase to $399. Sonic EA is the result of studying and testing our best trading strategies and combining them with Artificial Intelligence technology. This EA is a perfect combination of quality, technology, intelligence, safety, and experience. This is just the start of this project, Every week our team works hard to improve this trading algorithm and add the best features to it.   Monitoring : Sonic MT5 1 Signal new
USE IT ONLY WITH THE SET FILES I POSTED TO THE COMMENT SECTION.  Youtube video: https://www.youtube.com/watch?v=kQN5LTd91rk&amp ;t=2s This is the biggest update in the life of the Imperium Pattern EA, it got new features and engine. ---It got the official TheNomadTrader Dynamic engine system alongisde with good risk:reward ratio ---New feature that allows traders to tell the EA after how much time(X value in minutes) the EA can close trades by dynamic exit. This feature boosts the EA perfoe
Holy Mary is a fully automated MT5 Expert Advisor built exclusively for XAUUSD (Gold) and designed to trade the H4 candle using a high-precision candlestick pattern engine + ATR-based risk management . This is not a “generic candlestick EA” that uses loose textbook rules. Holy Mary was built around one idea: A pattern is only useful if its definition is measurable. So every pattern in Holy Mary was refined through thousands of tests to translate vague concepts into exact numbers. Example: Peopl
The Advanced BreakOut Scalper is an effective trading system with predetermined Take Profit, Stop Loss, and Trailing Stop settings. As the name implies, its strategy is trading breakouts. It is professionally coded and runs quickly in backtesting or optimization mode. It does not employ grid, martingale, averaging, or any other risky money management strategies. It is recommended to use a tight spread broker, preferably an ECN broker with good liquidity. For a list of brokers that work well wi
Trend analytic data for forecast a price to make order. This EA use a data in past to analytic, find a trend on chart and has condition to make order. Long time to run EA trade. This EA confirm not the same with another EA in this word! EA creates a line for max price zone, min price zone, pricing and show trendline and price forecast. Use a data analytic to help in create order. And result by EA not the same with another time in EA run, that is a main of this EA. Thank you Best Time.
Alpha Trades — Adaptive Professional Trading System Author: Andrii Sydoruk Version: 1.0 Release Date: 31.10.2025 Support: andriisydoruk@gmail.com Description Alpha Trades is a next-generation universal trading expert, designed for stable and controlled operation under any market conditions. The system uses an adaptive analytical approach that automatically adjusts to the current market structure while maintaining a high level of accuracy and safety. The algorithm is built as a multi-layer
このプロダクトを購入した人は以下も購入しています
Quantum Queen MT5
Bogdan Ion Puscasu
4.97 (628)
トレーダーの皆さん、こんにちは!私は 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 (46)
クォンタム・アテナ ― 経験から生まれた精密さ トレーダーの皆さん、こんにちは!私は クォンタム・アテナ です。伝説のクォンタム・クイーンの軽量版で、今日の市場環境に合わせて改良・再設計されました。 私は何でもできる人間になろうとはしない。 私は今、うまくいっていることに集中します。 私の専門分野は?金です。私の使命は?正確さを核とした、鋭く効率的で、インテリジェントに最適化された取引パフォーマンスを提供することです。 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公開チャンネル:       ここ
Pulse Engine
Jimmy Peter Eriksson
4.4 (20)
発売記念価格 – 残りわずか! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。 現在の価格での販売部数は非常に限られています。 最終価格: 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるいは特定の市場局面にあるのか
Quantum King EA
Bogdan Ion Puscasu
4.97 (188)
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
BB Return mt5
Leonid Arkhipov
4.54 (118)
BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は最終価格ではありません。 現在の価格で残りは5~7ライセンスのみです。
Quantum Valkyrie
Bogdan Ion Puscasu
4.79 (140)
クォンタムヴァルキリー - 精密、規律、実行 割引   価格。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.69 (48)
リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
ArtQuant Gold
Miguel Angel Vico Alba
4.5 (14)
$699 — 最後のローンチ価格ウィーク 当初の48時間限定オファーは、多くのユーザーが週末に初めて ArtQuant Gold を知ったため、最後にもう1週間延長されました。 延長期限: 2026年6月1日 月曜日 — マドリード時間 00:00 / CEST / UTC+2 この期間終了後、価格は引き上げられる予定です。 すべてのユーザーに同じ公開Market価格です。個別割引はありません。 説明 ArtQuant Gold は、 Gold / XAUUSD 、またはブローカーが使用する同等のゴールド銘柄専用に設計された Expert Advisor です。 このEAは、管理されたエクスポージャー、安定した運用、明確なリスク管理を重視した構造化グリッド方式を採用しています。取引エンジンは内部で最適化されているため、ユーザーが戦略、インジケーター、高度な技術パラメータを設定する必要はありません。 ArtQuant Gold はマーチンゲールや段階的なロット増加を使用しません。 言葉ではなく事実 IC Markets RAW のリアルマネー口座で、 Medium-High リスクプロフ
Byrdi
William Brandon Autry
5 (8)
BYRDIをご紹介します ― 生きたメッシュとして構築された分散型トレーディング・インテリジェンス。 ほとんどのトレーディングシステムは孤立して動作します。1つのターミナル。1つの銘柄。一度に1つの判断。他のどこで何が起きているかは一切認識しません。 BYRDIは違います。 MQL5でAI統合型リテール・トレーディングEAを切り開いた開発者によって構築されました。 BYRDIはメッシュノード・ネットワークです。複数のターミナル、ブローカー、口座にまたがって稼働する複数のインスタンスが、リアルタイムで相互に通信します。各ノードは独立して動作する一方で、メッシュ全体としては総エクスポージャー、通貨集中度、ポートフォリオの挙動を完全に把握し続けます。 各ノードは独立して動作する。各ノードは他のノードを認識し続ける。 1人のトレーダー。複数のターミナル。協調するインテリジェンス。統一されたリスク。 AIトレーディングの新カテゴリー 第一世代のAIトレーディングEAは、1つのモデルを1つのターミナルに置きました。1つの頭脳、1つのチャート、一度に1つの判断。 BYRDIはその次のステップです。
The Gold Reaper MT5
Profalgo Limited
4.5 (96)
プロップしっかり準備完了!   (   SETFILEをダウンロード ) WARNING : 現在の価格で残りわずかです! 最終価格: 990ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here JOIN PUBLIC GROUP:   Click here Live Signal YouTube Reviews ゴールドリーパーへようこそ! 非常に成功した Goldtrade Pro を基にして構築されたこの EA は、複数の時間枠で同時に実行できるように設計されており、取引頻度を非常に保守的なものから非常に不安定なものまで設定するオプションがあります。 EA は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 こ
Chiroptera
Rob Josephus Maria Janssen
4.79 (29)
Prop Firm Ready! Chiroptera is a non-martingale, multi-currency 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-
重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに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もランクインしました。
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
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.8 (122)
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 House MT5
Chen Jia Qi
4.52 (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年間のヒストリカルデータで開発・検証し、実際の
Gold Safe EA
Anton Zverev
4.86 (7)
ライブシグナル:   https://www.mql5.com/en/signals/2360479 時間枠:   M1 通貨ペア:   XAUUSD Gold Safe EA Manual: https://www.mql5.com/ru/blogs/post/770312 Varko Technologiesは 企業ではなく、自由という哲学そのものです。 私は長期的な協力関係を築き、評判を高めることに興味があります。 私の目標は、変化する市場状況に対応するために、製品を継続的に改善・最適化することです。 Gold Safe EA   - このアルゴリズムは複数の戦略を同時に使用し、損失トレードとリスクのコントロールを重視することを基本理念としています。 取引の決済および管理には、複数の段階が用いられている。 Expertのインストール方法 EAからXAUUSD M1通貨ペアチャートにファイルを転送する必要があります。SETファイルは不要です。時間シフト値を設定するだけで済みます。 IC MarketsやRoboForexのようなブローカーを利用するなど、時間軸を活用すること
Gold OPR Killer
Ilies Zalegh
4.07 (14)
Gold OPR Killer — XAUUSDスキャルピングの究極スペシャリスト 48時間限定スペシャルオファー: Gold OPR Killer を 1099 USD でご購入いただくと、 Gold Quantum Liquidity Scalper を無料でプレゼントいたします。 詳細については、ダイレクトメッセージでお問い合わせください。 トレーダーの皆様へ 私は Gold OPR Killer 、XAUUSDの プロフェッショナルスキャルピング専用 に設計されたMQL5エキスパートアドバイザーです。私の使命はシンプルです:金市場の加速的な値動きを、スピード・精度・アルゴリズム的規律で捉えることです。 私は常に取引するわけではありません。最もクリーンで、最もダイナミックで、最も効率的なセットアップのみを選択し、高速かつ最適化された執行を目指します。 Gold OPR Killerが他と違う理由 Gold OPR Killerは、次のようなトレーダーのために開発されました: 高速かつ正確な約定 攻撃的だが制御されたスキャルピングロジック インテリジェントなリスク管理 金
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つの小さな取引に継続的に分割する独自の戦略を採用しています
Full Throttle DMX
Stanislav Tomilov
5 (10)
フルスロットル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はゴールド市場において、安定性と安全性を重視して開発されたプロ
Gold Quantum Liquidity Scalper — 流動性を機関レベルの精度で活用するために設計された XAUUSD Expert Advisor トレーダーの皆様へ、 Gold Quantum Liquidity Scalper は、ゴールド取引 XAUUSD / GOLD 専用に開発された高度な MQL5 Expert Advisor です。 その目的はシンプルです。最も重要な流動性ゾーンを特定し、市場ノイズを排除し、真の統計的優位性がある場合にのみ取引を実行します。 このシステムは無意味にポジション数を増やすことを目的としていません。市場の本質的な構造に沿った、クリーンでダイナミックなセットアップのみを選択します。 ライブシグナル: Ultima Market のライブシグナルを見る Gold Quantum Liquidity Scalper が他と異なる理由 Gold Quantum Liquidity Scalper は、よりスマートで選択的かつプロフェッショナルなゴールド自動売買を求めるトレーダーのために開発されました。 高度な流動性ゾーン分析 市場の不
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
Gold Trade Pro MT5
Profalgo Limited
4.33 (39)
プロモーションを開始します! 449ドルで残りわずかです! 次の価格: 599ドル 最終価格: 999ドル EA を 1 つ無料で入手 (2 取引アカウント用) -> 購入後に連絡してください Ultimate Combo Deal   ->   click here Live signal:   https://www.mql5.com/en/signals/2084890 Live Signal high risk :  https://www.mql5.com/en/signals/2242498 Live Signal Set Prop Firm Set File JOIN PUBLIC GROUP:   Click here Parameter overview Gold Trade Pro はゴールド取引 EA の仲間入りですが、大きな違いが 1 つあります。それは、これが本物の取引戦略であるということです。 「実際の取引戦略」とは何を意味しますか?   おそらくお気づきかと思いますが、市場に出回っているほぼすべてのゴールド EA は単純なグリッド/マーチンゲー
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
AI Gold Scalp Pro
Ho Tuan Thang
4.14 (14)
私のライブシグナルと同じ結果をお望みですか?   私が使っているのと同じブローカーを使用してください:   IC MARKETS  &  I C TRADING .  中央集権化された株式市場とは異なり、外国為替には単一の統合された価格フィードがありません。  各ブローカーは異なるプロバイダーから流動性を調達し、独自のデータストリームを作成しています。 他のブローカーでは、60〜80%に相当する取引パフォーマンスしか達成できません。 ライブシグナル MQL5のForex EA Tradingチャンネル:  私のMQL5チャンネルに参加して、最新情報を入手してください。  MQL5上の14,000人以上のメンバーからなる私のコミュニティ . 10個中残り3個のみ、$499で提供中! その後、価格は$599に引き上げられます。 EAは、購入されたすべてのお客様の権利を確実にするため、数量限定で販売されます。 AI Gold Scalp Proのご紹介:損失を教訓に変える自己学習型スキャルパー。  ほとんどのスキャルピングEAは自分のミスを隠します。AI Gold Scalp Pro
Mosquito
Muhammad Zahran Rahmadi Putra
5 (2)
The price is gradually increasing up. Only 3 copy remains available at the current price,  next price increase to   $599 . Hello, traders!, the newest and a very powerful Mosquito MT5 of Expert Advisors. My specifically designed to run on the XAUUSD/GOLD pair. 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 Moving Average Indicator and also price acti
私のライブシグナルと同じ結果を求めていますか?   私と同じブローカーを使用してください:   IC MARKETS  および  I C TRADING .  中央集権的な株式市場とは異なり、FXには単一の統一された価格フィードは存在しません。 各ブローカーは異なるプロバイダーから流動性を調達しているため、独自のデータストリームが生成されます。他のブローカーでは、私の取引パフォーマンスの60〜80%程度しか再現できない可能性があります。     MQL5 Forex EA Trading チャンネル:  MQL5チャンネルに参加して最新ニュースを受け取ってください。  MQL5にて15,000人以上のメンバーが参加するコミュニティ . 499ドルでの販売は残り10本中3本のみです! それ以降、価格は599ドルに引き上げられます。 本EAは、購入されたすべてのお客様の権利を保護するため、限定数のみ販売されます。     AI Gold Tradingは、高度な GPT-4oモデルを活用し、XAU/USD(ゴールド)市場で洗練されたトレンドフォロー戦略を実行します。システムはマルチタ
プロップファーム準備完了! 1ヶ月で口座を転売したいトレーダーには不向き マーチンゲールなし / グリッドなし / AIなし XAUUSD、USDJPY、BTCUSD、US30、DE40 向けのプロフェッショナルブレイクアウトシステム ライブ結果:  ライブシグナル  |  メインポートフォリオ  |    FTMO結果  |  パブリックコミュニティ 更新 - 現在の価格:    $449、次の価格: $499 (残り 4 部のみ) レンジブレイクアウトEA レンジブレイクアウトEAは、取引セッション間のボラティリティの変化という、よく知られた市場行動に基づいています。 アジアセッション中は通常、ボラティリティが低く、狭い価格レンジを形成します。ロンドンセッションが始まると、ボラティリティが上昇し、価格はしばしばこのレンジを突破し 、ブレイクアウト方向への動きを続けます。 システムはこのブレイクアウトをトレードし、ボラティリティが鈍化し始める日中にポジションをクローズします。 インジケーターや固定時間枠を使用しないため、オーバーフィッティングを軽減できます。内部ブレイ
XG Gold Robot MT5
MQL TOOLS SL
4.26 (104)
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
One Man Army
Ihor Otkydach
4.73 (22)
すべてのお客様への特典: このボットをご購入いただいたお客様には、 GRABBER BOT をプレゼントいたします。本キャンペーンは期間限定です。お早めにご利用ください! 誇張もなく、無謀なリスクもなし。最小限のドローダウンでトレードする:One Man Army は、個人トレードにもプロップファームトレードにも対応したマルチカレンシー自動売買システムです。 短期および中期の市場調整や反転を狙うスキャルピング戦略を採用し、**指値の保留注文(リミットオーダー)**で取引を行います。 このトレーディングボットは方向を予想しません。最も有利な価格帯で高精度にエントリーします。まさにあなたが求めていたスタイルです。では、詳しく見ていきましょう。 テストには、EURCAD通貨ペア、M15時間枠を使用してください.  One Man Army は、複数の資産とさまざまな市場局面における広範なテストに基づいて開発されました。このシステムの動作は安定的で予測可能、そして分析しやすい設計です。コントロール、安全性、そして体系的なアプローチを重視するトレーダーのために作られています。 LIVE SIG
作者のその他のプロダクト
Connors TPS
MATTHEW STAN WILLS
5 (1)
日本語翻訳 – Larry Connors TPS - 自動取引システム Larry Connors TPS - 自動取引システム バージョン 2.0 – Matthew Wills このエキスパートアドバイザー(EA)は、Larry Connors の 「Time, Position & Scale(TPS)」 取引システムを自動化したものです。このシステムは彼の著書に詳しく説明されています: 「High Probability ETF Trading」 Amazon リンク 戦略概要 Larry Connors の TPS システムは 市場の押し目 を利用し、ポジションを段階的に拡大して リスク調整後のリターンを最適化 します。 ETF、株価指数、個別株 などの 平均回帰資産 に適用可能 200日移動平均線(SMA) より上で最も効果を発揮 RSIシグナル & スケールイン戦略 に基づいて取引を実行 標準TPS取引ルール: 1️⃣ ETF、株価指数、または個別株を取引 2️⃣ 200日SMAより上で取引していること 3️
Howard Bandy's - Naive Mean Reversion System Version 1.0   – Developed by   Matthew Wills This EA automates a professional-grade mean reversion system designed to exploit one of the most consistent edges in equity markets: short-term reversals after clustered selling pressure. This Expert Advisor systematically enters trades after consecutive down days within an established trend, capturing the high-probability bounce that often follows. Both long and short trading are supported, with short disa
Connors RSI2 – The High Win Rate Mean Reversion System for Indicies ETFs & Stocks (MT5) A professional implementation of Larry Connors' RSI(2) strategy, designed to systematically capture high-probability short-term reversals in equity markets. This strategy exploits one of the most consistent edges in trading: extreme short-term exhaustion followed by rapid mean reversion. When RSI(2) reaches extreme levels, markets are temporarily stretched — creating repeatable bounce opportunities that this
Larry Connor's - Double7 Mean Reversion System -  Version 1.0   An enhanced implementation of Larry Connors' Double 7s strategy from "Short Term Trading Strategies That Work," designed to systematically capture high-probability short-term reversals in equity markets. This elegantly simple system buys when price closes at a 7-day low and sells when it closes at a 7-day high. No indicators, no oscillators — just raw price action relative to its recent range. The strategy captures the tendency for
Howard Bandy's - Naive Mean Reversion System - version 1.0 A professional implementation of Howard Bandy's Z-Score strategy, designed to systematically capture high-probability short-term reversals in Indicies, ETFs and Equity markets. The Z-Score measures how many standard deviations the current price is from its recent mean. When price deviates significantly below the mean (negative Z-Score), statistical probability favours a reversion back toward average. This is one of the most mathematicall
Larry Connors TPS – PercentB - (Bollinger Band %) A professional implementation of Larry Connors' Percent B strategy, designed to systematically capture high-probability short-term reversals in equity markets. This system uses the Bollinger Band %b indicator to identify when price has moved to a statistical extreme relative to its recent volatility envelope. When %b drops near zero, price is at or below the lower Bollinger Band — a quantified oversold condition that this EA captures with discipl
Howard Bandy's RVI2 – Automated Trading System A professional implementation of Howard Bandy's 2-period Relative Vigor Index (RVI) strategy, designed to systematically capture high-probability short-term reversals in Indicies, ETF's and Equity markets. RVI measures the conviction behind price moves by comparing the close-to-open range against the high-to-low range. When RVI is deeply negative, candles are closing near their lows — indicating exhausted selling pressure and a high-probability boun
フィルタ:
レビューなし
レビューに返信