Bully Bear AI

# Bully Bear AI — Expert Advisor Description (v2.40)

## Overview

**Bully Bear AI** is a fully automated MetaTrader 5 Expert Advisor built around **Bollinger Bands pullbacks in a confirmed trend**, with optional hammer/strong-candle confirmation. It is designed for **H1 major FX pairs**, with higher-timeframe (H4) bias filtering, ATR-based risk, breakeven, trailing stop, and optional partial take-profit.

Core idea:
1. Trade only when trend strength is present (ADX + MA alignment).
2. Enter on a **pullback toward the Bollinger middle** in the trend direction (not at the extreme outer band).
3. Confirm with RSI range and a directional candle (and optional strong/hammer bar).
4. Align with **H4 MA** so H1 trades are not taken against the larger trend.
5. Manage risk with fixed fractional risk, ATR stop, 3R target, trailing, and optional partial TP.

---

## Strategy logic (summary)

| Stage | Rule |
|--------|------|
| **Trend** | Fast MA > Slow MA and rising (buys), or opposite (sells); price on the correct side of Fast MA |
| **H4 bias** | Price above H4 MA(50) for buys; below for sells |
| **Volatility** | Bollinger width ≥ `MinBBWidthATR` × ATR; ADX ≥ `MinADX` |
| **Entry zone** | Price between BB middle and ~70% of the way to the outer band |
| **Momentum** | RSI in a moderate band (not extreme); prior bar is a pullback, current bar continues with trend |
| **Risk** | Lot size from `% risk` and SL distance; SL = `SL_ATR_Mult` × ATR; TP = `TP_RR` × SL |
| **Management** | Breakeven, ATR trailing, optional 50% partial at 1.2R |

Trades are evaluated **once per new bar** (not every tick). Open positions are managed every tick for BE / trail / partial.

---

## Recommended pairs & timeframe

| Priority | Symbol | Timeframe | Notes |
|----------|--------|-----------|--------|
| **Primary** | **GBPUSD** (or GBPUSDm) | **H1** | Best backtest result on 2025–2026 sample (~break-even to slight profit) |
| Secondary | EURUSD (or EURUSDm) | H1 | Near break-even; usable with defaults |
| Cautious | USDJPY (or USDJPYm) | H1 | Weaker on the same sample; use only after your own forward test |
| Optional | Same majors | H4 | Fewer trades; can be cleaner for EUR/JPY |

**Not recommended as primary:** crypto (e.g. BTCUSDm), low-liquidity crosses, or M1–M15 with these defaults (filters were tuned for H1 majors).

**Broker:** Works with standard and “m” (micro) suffixes. Keep `MaxSpreadPoints` realistic for your symbol (default 100).

---

## Input variables

### Risk
| Input | Default | Description |
|-------|---------|-------------|
| `RiskPercent` | 0.4 | Risk per trade as % of account balance |
| `MaxLot` | 0.50 | Maximum lot size |
| `MinLot` | 0.01 | Minimum lot size |
| `MaxPositions` | 1 | Maximum open positions for this EA/symbol |

### Session
| Input | Default | Description |
|-------|---------|-------------|
| `TradeOnWeekends` | false | Allow trading Saturday/Sunday |
| `MaxSpreadPoints` | 100 | Skip new entries if spread exceeds this (points) |
| `UseTimeFilter` | true | Restrict entries to hour range |
| `StartHour` | 8 | First allowed server hour |
| `EndHour` | 17 | Last allowed server hour (exclusive) |
| `CooldownBars` | 5 | Minimum bars between new trades |

### Bollinger Bands
| Input | Default | Description |
|-------|---------|-------------|
| `BBPeriod` | 20 | Bollinger period |
| `BBDeviation` | 2.0 | Bollinger deviation |
| `MinBBWidthATR` | 1.1 | Minimum BB width in ATR units (skip tight ranges) |

### Trend
| Input | Default | Description |
|-------|---------|-------------|
| `FastMAPeriod` | 20 | Fast SMA period |
| `SlowMAPeriod` | 50 | Slow SMA period |
| `ADXPeriod` | 14 | ADX period |
| `MinADX` | 22.0 | Minimum ADX to allow entries |
| `UseH4Filter` | true | Require price vs H4 MA alignment |
| `H4_MAPeriod` | 50 | H4 SMA period for bias |

### RSI
| Input | Default | Description |
|-------|---------|-------------|
| `RSIPeriod` | 14 | RSI period |
| `RSI_BuyMax` | 58.0 | No buys if RSI above this |
| `RSI_SellMin` | 42.0 | No sells if RSI below this |

### Candle
| Input | Default | Description |
|-------|---------|-------------|
| `RequireStrongCandle` | false | If true, require strong body or hammer; if false, any directional bar is enough |

### Stop loss / take profit
| Input | Default | Description |
|-------|---------|-------------|
| `SL_ATR_Mult` | 2.0 | Stop distance = ATR × this |
| `TP_RR` | 3.0 | Take-profit distance = SL × this (3R) |
| `UseBreakeven` | true | Move SL to break-even after profit threshold |
| `BreakevenATR` | 1.2 | Profit in ATR before BE is applied |

### Trailing stop
| Input | Default | Description |
|-------|---------|-------------|
| `UseTrailing` | true | Enable ATR trailing stop |
| `TrailStartATR` | 1.8 | Start trailing after this much profit (ATR) |
| `TrailDistATR` | 1.5 | Trail distance behind price (ATR) |
| `TrailStepATR` | 0.5 | Minimum SL improvement before modify (ATR) |

### Partial take-profit
| Input | Default | Description |
|-------|---------|-------------|
| `UsePartialTP` | true | Close part of the position at a first target |
| `PartialTP_RR` | 1.2 | First target in R multiples of SL |
| `PartialPct` | 50.0 | Percent of volume to close at partial TP |

### Exits
| Input | Default | Description |
|-------|---------|-------------|
| `ExitOnTrendFlip` | false | Close if Fast/Slow MA cross against the position |
| `ExitOnOppBand` | false | Close profitable trade at opposite Bollinger band |

### Debug
| Input | Default | Description |
|-------|---------|-------------|
| `ShowDebug` | false | Print filter/signal details to the Journal |

---

## Risk & usage notes

- Default risk is **0.4% per trade**, one position max — conservative for H1.
- Always confirm **Journal** shows `Bully Bear AI v2.40` after compile.
- Backtests on one period are not a guarantee of future results; forward-test on demo before live.
- Best practical deployment from current testing: **GBPUSDm H1** with defaults; treat EUR/JPY as secondary after your own validation.


おすすめのプロダクト
Trifecta Confluence Trifecta Confluence — Trade Only When the Market Truly Agrees Most Expert Advisors fire on a single signal — one moving average cross, one oscillator spike, one candle pattern — and get chopped apart the moment the market goes quiet or erratic. Trifecta Confluence was built on a different premise: a trade is only worth taking when three independent, mathematically distinct dimensions of price behavior all point the same direction at the same time. The Three-Engine Core Every
TrendPulse RSI Gold Expert 概要 TrendPulse RSI Gold Expertは、XAUUSD(金)専用に設計された完全自動のエキスパートアドバイザーです。この戦略は、移動平均線を用いた長期トレンドの識別とRSIベースのエントリー/エグジットシグナルを組み合わせ、市場トレンドの方向に沿った押し目買いと売り買いを行います。 このEAはM1時間足に最適化されており、手動操作なしで体系的な金取引を行いたいトレーダー向けです。 戦略の仕組み このエキスパートアドバイザーは、市場の方向性を判断するために2つの単純移動平均線(SMA)を使用します。 200 SMA 400 SMA 買い条件 200 SMAが400 SMAを上回っている。 RSI(14)が売られすぎ水準を下回って終値をつける。 確認後、直ちに買いポジションを建てます。 売り条件 200 SMAが400 SMAを下回っている。 RSI(14)が買われすぎ水準を上回って終値をつける。 確認後、直ちに売りポジションを建てます。 ポジション構築 EAはシーケンシャルエントリーに対応してい
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
EA Builder PRO
Arthur Hatchiguian
4.56 (9)
EAビルダーは、独自のアルゴリズムを作成し、自分の取引スタイルに合わせることができるツールです。 古典的な取引、グリッド、マーチンゲール、個人的な設定による指標の組み合わせ、独立した注文またはDCA、可視または不可視のTP/SL、トレーリングストップ、損失カバーシステム、損益分岐点システム、取引時間、自動ポジションサイズなど、様々なものがあります。 EAビルダーには、あなたの完璧なEAを作るために必要なものがすべて揃っています。独自のアルゴリズムを構築することで、無限の可能性を秘めています。創造力を発揮してください。 Guide on my blog post:  https://www.mql5.com/en/blogs/post/740705 ️   This EA is not recommended to beginner or new MT5 user. It's a tool to create your algorithm, it is not supposed to be used with the default settings. You need to full
Ilan
Andrey Khatimlianskii
4.71 (7)
Ilan for MetaTrader 5 Due to using the virtual trades, trading in both directions (buy and sell) simultaneously became possible. This allows users to adapt the popular strategy for the net accounting of positions applied by MetaTrader 5.  Expert Advisor Settings The Expert Advisor setup is simple. However, all the important settings of the strategy are available for adjusting. Available tools: Unique  MagicNumber  for identification of trades; Trade direction option ( Trade direction ): buy onl
TSM Breakout
Ludovic Marc Marie Moncla
TSM Breakout is a fully automated Expert Advisor implementing time-series momentum - the most extensively documented market anomaly in the academic literature (Moskowitz, Ooi & Pedersen; the classic Turtle rules) - combined with a daily trend filter. HOW IT TRADES - Buys when the close breaks above the highest high of the last 55 bars; sells on a break of the lowest low - Initial stop loss proportional to volatility (2 x ATR) on every single trade - no exceptions - Exit on a break of the opposi
Trend Falcon PRO
Channaphat Yamuangmorn
Trend Falcon PRO: Complete System Overview Trend Falcon PRO is an advanced, fully automated Expert Advisor (EA) designed to execute high-probability trades by combining Multi-Timeframe (MTF) trend analysis with precise Price Action triggers. It is built for traders who want a smart, adaptive system with institutional-grade risk management. Here is a detailed breakdown of how the EA works: 1. Smart Trend Filtering (Multi-Timeframe Analysis) The EA does not guess the market direction; it follows t
The EA identifies divergences in two correlated currency pairs and trades in the direction where they converge back. Working timeframe: M30 Input parameters MagicNumber - identification number for the EA. OrdersComment - comment to order, automatic if an empty value is set. Lots - lot size. DepoPer001Lot - automatic lot calculation (specify the balance per 0.01 lot) (if 0, the value from 'Lots' parameter is used). TimeFrame - working timeframe. Symbol #2 - correlated currency. Symbol #2 reverse
OverSeer:Your Thoughtful Trading Ally OverSeer isn’t just another Expert Advisor—it’s a carefully crafted companion for traders looking to navigate the complex world of index trading with a steady, conservative approach. Built through years of experimentation and learning, OverSeer helps you gain exposure to global markets while keeping your strategies grounded in realism. Why Choose OverSeer? OverSeer bridges thoughtful trading strategies and practical decision-making. Instead of trying to pr
Apex Smash は、サポート・レジスタンスなどのプライスアクション(価格の値動き)に基づき、ゴールド(XAUUSD)のブレイクアウトを厳格にトレードします。 長期的に有効性が証明されたロジックをベースに、独自のアルゴリズムで最適化されています。 10万ドル リアル口座: https://www.mql5.com/en/users/sagen520/seller MQL5 公式チャンネル: https://www.mql5.com/en/messages/03dd8ac5c8a4dc01 【期間限定】特別価格 $99(残り10本限定、終了後は $199 に値上げ) 【1本購入でもう1本無料】 Apex Smash ご購入後、メッセージをいただければ当ポートフォリオの別EAを1本無料でプレゼント! ※ ご購入後は、最適な .set(プリセット)ファイルおよび取扱説明書をお送りしますので、ダイレクトメッセージ(DM)にてご連絡ください。 ロジックの特徴 明確な決済ロジック: 全てのポジションに明確な撤退ルールを設定。トレンド反転を期待して無限にポジションを保有することはありません。
Gold Extreme Furious
Aercio Dos Santos Da Silva
Here’s the full English translation of your text: --- ### **Operating Principle** The **Golden Extreme Furious EA** is an intelligent buy recovery and accumulation system (BUY Recovery Grid) specially developed for **XAUUSD (Gold)**. It combines advanced technical analysis (using Bill Williams’ AO and AC indicators) with a smart order management system that always aims to close trading cycles in profit — even after adverse market movements. The robot operates exclusively with **buy (BUY)**
Hamster Scalping mt5
Ramil Minniakhmetov
4.72 (243)
Hamster Scalpingは、マーチンゲールを使用しない完全に自動化された取引アドバイザーです。夜のスキャルピング戦略。 RSIインジケーターとATRフィルターが入力として使用されます。アドバイザには、ヘッジ口座タイプが必要です。 実際の作業の監視、およびその他の開発については、https:// www.mql5.com/en/users/mechanic/sellerを参照してください 。 一般的な推奨事項 最小デポジット$ 100、最小スプレッドのECNアカウントを使用し、eurusd M5 gmt +3のデフォルト設定。 入力パラメータ EAは、4桁と5桁の両方の引用符で機能します。入力パラメータでは、5文字の値をポイントで示し、すべてを4文字で自動的に再計算します。 NewCycle-モードがオンの場合、アドバイザーは停止せずに動作します。モードがオフの場合、一連の取引の完了後、アドバイザーは新しい注文を開きません。 期間インジケーター1-最初のインジケーターの期間。 アップレベル-アドバイザーが売りを開始する最初のインジケーターの上位レベル。 ダウンレベル
Fundamental Robot MT5
Kyra Nickaline Watson-gordon
Fundamental Robot is an Expert Advisor based on Fundamental Signals Indicator. The Fundamental Signals Indicator has a powerful calculation engine that can predict market movement over 30000 points. The indicator is named fundamental because it can predict trends with large movements, no complicated inputs and low risk.  The EA works with low margin levels and thus has low risk. Using EA : The EA is very simple and without complicated input parameters. These are main parameters must be set
XAUUSD Averaging EA   is an automated grid trading system designed specifically for XAUUSD (Gold) trading on the MetaTrader 5 platform. This Expert Advisor implements a professional averaging strategy with martingale position sizing, utilizing dynamic spacing based on market volatility through ATR (Average True Range) analysis. The system combines multiple grid modes with technical filters including Moving Average crossover signals, RSI confirmation, and ADX trend strength filtering. It feature
AI Equity Protector - プロップファーム(資金調達)口座向けクオンツEA 自動売買システムの開発は非常に困難な作業です。世の中の標準的なEAの多くは、バックテストでは完璧に見えても、実際の市場のボラティリティに直面した瞬間に崩壊してしまいます。私は、単純なニュースイベントでロボットが口座を飛ばすのを見るのにうんざりし、この「AI Equity Protector」を開発しました。試行錯誤を重ね、資金を守ることに特化させたシステムです。プロップファームの審査に挑むトレーダーや、実際に資金運用を行っている方々にとって、資金保護がいかに重要であるかは言うまでもないでしょう。 Exness   Live Signal >>>> 戦略の仕組み システムの優位性を守るため、中心となる計算式やエントリーロジックは非公開としています。いわば「ブラックボックス」です。しかし、裏側で何が行われているかをお伝えします。このEAはリアルタイムで機関投資家の出来高急増を監視し、市場のノイズを無視します。早く入りすぎるのではなく、明確なブレイクアウトを待ち、厳格な日次トレンド(Daily Bi
Oxi – Mean Reversion DCA Riser (MT5 Expert Advisor) Oxi is a fully automated MetaTrader 5 Expert Advisor that combines advanced Mean Reversion logic with strategic Dollar-Cost Averaging (DCA) to help you grow your account steadily. Designed to work across multiple currency pairs using adaptive analysis and smart trade management, Oxi offers a high win rate, flexible controls, and reliable recovery—perfect for traders who want performance with peace of mind. Key Features: ️ Plug & Pla
Introduction to GOLD h2 moon – Automated EA Based on Ichimoku Strategy Introduction GOLD h2 moon  is an Expert Advisor (EA) programmed in MQL5 , designed to execute automated trading based on the Ichimoku Kinko Hyo strategy. This EA is optimized for multiple currency pairs and timeframes but works best on XAU/USD (Gold)  in the  H2 timeframe . Technical Requirements: Trading Pair: XAUUSD (Gold) only Main Timeframe: H2 - this is what you must run on - XAUUSD H2 Recommended Starting Balance: $1,0
Phoenix Midas
Alvaro Albillos Gutierrez
Phoenix Midas is an order-flow Expert Advisor built specifically for XAUUSD (Gold) on the M15 timeframe. It reads market structure through synthetic order-flow analysis — volume delta, volume profile (POC / value area) and liquidity behaviour — to time entries on two complementary setups, and it manages every trade with a fixed, pre-defined risk. Built-in news filtering and prop-firm risk controls make it suitable for both personal accounts and funded-challenge environments. WHAT IT IS NOT
MultiSAR PRO v2.2 — Dual-Logic Multi-Currency Expert Advisor Профессиональный мультивалютный EA на двойном SAR с фильтром H4, логикой XAUUSD и встроенным новостным календарём.   MultiSAR PRO — это полностью автоматический мультивалютный Expert Advisor для MetaTrader 5, построенный на двух независимых торговых логиках: Logic A для кросс-пар (21 инструмент) и Logic B для мажоров и XAUUSD (8 инструментов). Советник использует двойной фильтр Parabolic SAR на таймфреймах H1 и H4 как основной ме
Alpha Bullish Engine MT5 Overview Alpha Bullish Engine(No Martingale, no Grid) is a professional Expert Advisor for MetaTrader 5 designed to identify and trade high-quality market bullish opportunities while maintaining a strong focus on risk management and capital preservation. Built with a combination of trend analysis, momentum assessment, and intelligent trade management, the EA is designed to operate in favorable market conditions while avoiding unnecessary exposure during less suitable env
SmartRisk MA Pro Strategy Overview: SmartRisk MA Pro is an optimized, risk-oriented automated trading strategy (Expert Advisor) developed for the MetaTrader 5 platform. It is designed to identify trading opportunities based on price deviations from moving averages and incorporates a comprehensive capital management system. The Expert Advisor operates on a "new bar" logic, ensuring stability and predictability in trade signal execution. Operating Principles and Trading Logic: At its core, the st
Impulse Hadge
Dilmurad Zamitov
5 (1)
English Version: ImpulseHedger XAU Tame the Gold Market with Mathematical Precision. Are you tired of "Grid" EAs that blow your account during long gold trends? Most grid systems fail because they lack a solid exit strategy for explosive moves. ImpulseHedger was specifically designed to turn Gold’s high volatility into a calculated advantage using a hybrid "Impulse Grid" and "Smart Shield" system. Key Features: Extended 7-Level Grid: A conservative lot progression ( $0.01$ to $0.03$ ) designed
Obimba EA
Khoirush Sholih Ridihiwaana Akbar
OBIMBA EA – スマートオーダーブロック & インバランス取引アルゴリズム OBIMBA(Orderblock with Imbalance)は、市場構造を理解し、戦略を正確に実行したいトレーダー向けに設計された高度な取引アルゴリズムです。信頼性が高く、柔軟で強力なツールとして、よりスマートなトレードをサポートします。 主な特徴: スマートなマルチタイムフレーム分析 – OBIMBAは、選択した時間枠に基づいて高確率ゾーンとエントリーの確認を自動的に識別し、トレーダーが戦略を細かく調整できるようにします。 柔軟なリスク管理 – 保守的なトレーダーでも、積極的なリスクテイカーでも、OBIMBAはあなたのスタイルに適応します。適切なリスク管理を行うために、最大レベル = 1 で設定されたSL(損切り)とTP(利確)を使用することもできますし、高リスク・高リターンを狙うならグリッド・マーチンゲール戦略を活用することも可能です。 リスクコントロール機能搭載 – 高リスク取引を行う場合でも、OBIMBAは以下のような安全対策を提供します。 利益バスケット管理 日次
Smart Radar
Alex Amuyunzu Raymond
Overview Smart Radar is a professional automated trading system built on Inner Circle Trader (ICT) concepts, designed to identify and execute high-probability setups based on institutional order flow analysis. This Expert Advisor combines liquidity sweeps, Fair Value Gaps (FVGs), and market structure analysis to capture strategic entry points during key trading sessions. Core Trading Methodology Smart Radar operates on proven ICT principles: Liquidity Analysis : The EA identifies areas where ins
IlanisMT5
Mikhail Sergeev
3.86 (7)
Ilanis is an Expert Advisor for stock trading, it can be used for trading on Forex and other markets, including commodities, metals and index markets. To determine the market entry, the EA uses the modern and ultra-light adaptive indicator FourAverage. Principle of position maintaining is similar to that of the popular Forex robot Ilan, using averaging. But unlike Ilan, Ilanis uses an accurate entry into the market. The robot pays a lot of attention to position control, if the price goes in the
Scalping bot for the gold/dollar pair (XAU/USD) — a powerful and versatile solution for traders, designed to deliver maximum efficiency in a dynamic market. This bot is specifically engineered for scalping: it analyzes price changes and places trades even before significant market movements begin. This allows it to secure advantageous positions early and capitalize on even the smallest market fluctuations. Key Features: Flexibility: Adapts to any market conditions and suits your trading strategy
Bober Real MT5
Arnold Bobrinskii
4.88 (16)
Bober Real MT5 is a fully automatic Forex trading Expert Advisor. This robot was made in 2014 year and did a lot of profitbale trades during this period. So far over 7000% growth on my personal account. There was many updates but 2019 update is the best one. The robot can run on any instrument, but the results are better with EURGBP, GBPUSD, on the M5 timeframe. Robot doesn't show good results in tester or live account if you run incorrect sets. Set files for Live accounts availible only for cu
EA351 – Multi-Entry Momentum Scalper (MT5) EA351 is an automated trading system designed for high-frequency scanning and multi-position entries on M5 timeframe , optimized for 0.01 lot trading. The EA continuously scans the market; when all conditions are met, it can open multiple positions (pyramiding) to maximize momentum moves. When profit grows, the EA manages the trade using trailing protection , and it can exit on reversal to protect gains. Key Features Timeframe: M5 (recommended) Default
This robot operates based on the Parabolic SAR indicator. Verion for MetaTrader4 here . The advanced EA version includes the following changes and improvements: The EA behavior has been monitored on various account types and in different conditions (fixed/floating spread, ECN/cent accounts, etc.) The EA functionality has been expanded. Features better flexibility and efficiency, better monitoring of open positions. Works on both 4 and 5 digits brokers. The EA does not use martingale, grid or arb
What is MaxSuperTrend?   MaxSuperTrend is a fully automated,   long-only Expert Advisor   based on a   controlled DCA (Dollar Cost Averaging) logic : it enters the market when price is oversold, then adds a limited number of Safety Orders at predefined intervals to improve the average entry price. Unlike classic martingale systems, the lot size is   fixed and never doubled , and every addition is capped by strict risk limits. How it works Initial Entry . A buy order is opened when the low of th
このプロダクトを購入した人は以下も購入しています
Quantum Titan MT5
Bogdan Ion Puscasu
4.77 (35)
Quantum Titanは、Quantumエコシステムに機関投資家レベルの取引機能をもたらし、精度、規律、そして実績のあるライブマーケットパフォーマンスにおいて新たな基準を打ち立てます。 GOLDエキスパートアドバイザーにさらなる性能を求めるトレーダーのために開発されたTitanは、Quantumトレーディングテクノロジーの次なる進化を象徴するものです。 全世界で生涯ライセンスは1,000個限定です。 1,000部すべてが完売次第、Quantum Titanは入手できなくなります。 発売記念特別割引価格。最終価格1999ドル。 初期投資5万ドルでLive Signalに参加しよう:   こちらをクリック Quantum Titan MQL5 公開チャンネル:   こちらをクリック ***Quantum Titan MT5 を購入すると、Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum Valkyrie、Quantum OmniGold、Quantum Athena X、Quantum
Quantum Commander
Bogdan Ion Puscasu
4.64 (11)
クォンタム・エコシステムは新たな戦場へと突入し、新たな司令官が指揮を執ります。US30指数専用に開発されたクォンタム・コマンダーは、世界で最もダイナミックな市場の一つである米国市場向けに構築された、完全自動化されたエキスパートアドバイザーです。 数多くのゴールドEAが溢れる世界において、Quantum Commanderは際立った存在です。 これまでGOLDに特化したリリースを何度か行ってきた後、私たちはUS30という新たな領域へと踏み出します。これは新しい金融商品であり、異なる戦略に基づき、量子エコシステムに真の多様化をもたらす強力な機会となるでしょう。 発売記念特別割引価格。最終価格1999ドル。 ライブ信号:   こちらをクリック Quantum Commander MQL5 公開チャンネル: こちらをクリック ***Quantum Commander MT5 を購入すると Quantum Emperor、Quantum King、Quantum Bitcoin、Quantum Baron、Quantum OmniGold、Quantum Athena X、Quan
MoonDog EA
James Vito Armin Bianchini
4.5 (30)
MoonDog EA は、MetaTrader 5 上の XAUUSD 向けに特別に開発された、複数戦略型のブレイクアウト Expert Advisor です。 このシステムは、異なるブレイクアウト条件や価格拡大の局面を検出するために設計された、5つの独立したブレイクアウト戦略を組み合わせています。 MoonDog は、マーチンゲール、Recovery モード、Grid Recovery、ロット倍率の増加、損失ポジションのナンピンを使用しません。 すべての取引は、あらかじめ設定された独自の Stop Loss と Take Profit を持って開始されます。損失が発生した後に、より大きなロットで回復を狙う取引を行うことはありません。 Break-even、Trailing、MoonLock は、既存ポジションを保護するための管理機能です。これらは保護レベルを調整できますが、ロットサイズを増やしたり、過去の損失を回復するための追加ポジションを開いたりすることはありません。 公式ライブシグナル MoonDog の実際の取引状況は、公式 MQL5 Signal で確認できます。 https
Quantum Queen X MT5
Bogdan Ion Puscasu
5 (52)
伝説は続く。女王は進化する。 Quantum Queen Xへようこそ。これは、Quantum Queenの実績ある成功を基盤とした、伝説的なゴールド取引システムの次世代版です。 Quantum Queen Xは、Quantum Queenと同じ実績のあるコアエンジンをベースに構築されており、トレーダーがどの戦略を有効または無効にするかを正確に選択できる強力な新しいカスタムモードが導入されています。 すべての戦略は個別にレビュー、改良、最適化され、さまざまな市場状況においてさらに優れたパフォーマンスと適応性を発揮します。デフォルトのプリセットも強化され、7つの戦略ではなく厳選された9つの戦略を組み合わせることで、より広い市場範囲とより多くの取引機会を提供すると同時に、Quantum Queen XをMQL5で最も成功したGOLDエキスパートアドバイザーにした規律ある取引哲学を維持しています。 IMPORTANT! After the purchase please send me a private message to receive the installation manual
The Gold Reaper MT5
Profalgo Limited
4.48 (105)
小道具会社準備完了!( セットファイルをダウンロード ) 警告: 現在の価格で販売できるのは残りわずかです! 最終価格:990ドル EAを1つ無料でゲット(3つの取引アカウント分)→購入後ご連絡ください 究極のコンボセット   は   こちらをクリック 公開グループに参加する: こちらをクリック   ライブシグナル クライアントシグナル YouTubeレビュー 最新マニュアル ゴールドリーパーへようこそ! 非常に成功を収めたGoldtrade Proをベースに開発されたこのEAは、複数の時間枠で同時に動作するように設計されており、取引頻度を非常に保守的なものから極めて変動の激しいものまで設定できるオプションを備えています。 このEAは、複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ出し、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットが設定されていますが、リスクを最小限に抑え、各取引の潜在的な利益を最大化するために、トレーリングストップロスとトレーリングテイクプロフィットも使用されます。 このシステムは、非常に人
Iron Stops
Fajar Dicky Firmansyah
4.11 (63)
100K Real Signal:  https://www.mql5.com/en/signals/2386516 ギミックなし。空虚な主張なし。 Iron Stopsは、1つの重要な側面に焦点を合わせたトレーダーに対応しています:一貫性。プロップチャレンジに取り組んでいるか、顧客資金を管理しているかに関わらず、このEAは設定された境界内で活動し、信頼性のある結果を提供します。 ポジションは 36 時間 以内に決済。 一つのチャートで実行: XAUUSDにM30タイムフレームを使用して適用するだけです。それが必要なすべてです。一つのチャート。一つの強力なツール。 正しい設定が正確なバックテストに不可欠です! 詳細な指示とともに、私の.iniファイルを取得するために連絡してください。 注意:このEAの現在の価格は580です。30ライセンスが購入されると、価格は629に上昇します。現時点で29部が販売されています。価格変更の前にお見逃しなく。 ブログリンク =  https://www.mql5.com/en/blogs/post/763583 チャンネルリンク =  https:
重要 : この商品は、ごく少数の数量のみ、現行価格で販売されます。    価格はまもなく1999ドルになります!   300 以上の戦略を収録 !さらに追加予定! ボーナス : 私の他のEAの中から5つ  を無料で 選んでください!   すべての設定ファイル + 完全なセットアップおよび最適化ガイド ビデオガイド ライブシグナル レビュー(第三者による) 新登場 - 44種類の戦略ライブシグナル 究極のブレイクアウトシステムへようこそ! この度、8年の歳月をかけて綿密に開発された、洗練された独自のエキスパートアドバイザー(EA)である「アルティメット・ブレイクアウト・システム」をご紹介できることを嬉しく思います。 このシステムは、MQL5市場で高いパフォーマンスを発揮するEAの基盤となっており、その中には高く評価されているGold Reaper EAも含まれています。 7か月以上にわたり1位の座を維持したほか、Goldtrade Pro、Goldbot One、Indicement、Daytrade Proもランクインした。 Ultimate Breakout Systemは
Aikon MT5
William Brandon Autry
5 (3)
AIKON — トレーディングシステムに、あなたが望むことを伝える。 多くのExpert Advisorでは、まずユーザーがその仕組みを学ばなければなりません。 Aikonでは、システムに何をしてほしいかをそのまま伝えられます。 設定を作成する。リスクを変更する。ゴールドを分析する。イベントを調査する。特定の条件を監視する。資金を保護する。ポジションを決済する。自動化を作成する。現在何をしているのか説明させる。同じシステムをスマートフォンから操作することもできます。 どの入力項目、メニュー、サブシステムがその機能を担当しているのかを知る必要はありません。 依頼する。確認する。承認する。Aikonが実行する。 あなたの戦略。あなたの資金。あなたのルール。あなたのコントロール。 ASK AIKON — ここが違います。 Ask Aikonは、システムの中心となる操作インターフェースです。 Expert Advisorに追加された単なるチャットボットではなく、BUYまたはSELLの予測だけに限定されません。 トレード、設定、口座、ポートフォリオ、市場環境、リスク、分散、経済イベント、プロップ
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ghost Scalper MT5
Thomas Christoph Lipka
4.6 (10)
Ghost Scalper MT5 Ghost Scalper MT5 は、 MetaTrader 5 の XAUUSD / Gold 向けに開発された完全自動のエキスパートアドバイザーです。 Ghost は、ゴールド市場の選択的な ブレイクアウトとモメンタムの動き を狙うために開発されています。EA は内部の市場条件が整うまで待機し、常にトレードを行うわけではありません。 価格モデル: 10件販売されるごとに100 USDずつ価格が上昇 し、最終価格は 1,499 USD です。 ライブシグナル Ghost は複数のリアル口座および異なるブローカーで公開追跡されています。さらに、複合ポートフォリオのライブシグナルも利用できます。ライブ結果は随時変動し、将来の成績を保証するものではありません。 Ghost Scalper MT5 TMGM – ライブシグナルを見る Ghost Scalper MT5 VT Market – ライブシグナルを見る Ghost Scalper MT5 Vantage – ライブシグナルを見る Ghost Scalper MT5 Future Lab Ult
Quantum Athena X
Bogdan Ion Puscasu
5 (13)
よりスマートな制御。洗練された精度。 Quantum Athena Xへようこそ。Quantum Athenaの精度、効率性、そして規律ある実行力を基盤とした、次世代の集中型金取引システムです。 Quantum Athena Xは、Quantum Athenaと同じ合理化されたコアエンジンと、厳選された6つの戦略に基づいて構築されています。各戦略は、現在の金市場の状況に合わせて個別に改良および最適化されており、新しい強力なカスタムモードでは、トレーダーがどの戦略を有効または無効にするかを正確に選択できます。 完全に準備されたプラグアンドプレイ体験を好むトレーダー向けに、最適化された元の構成は引き続き利用可能です。一方、カスタムモードでは、独自の戦略の組み合わせを作成したいトレーダー向けに、より高い柔軟性が提供されます。 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. 割引価格
Quantum King EA
Bogdan Ion Puscasu
4.96 (221)
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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
Lizard
Marco Scherer
4.14 (50)
Lizard とは Lizard は MetaTrader 5 の XAUUSD(ゴールド)専用の全自動エキスパートアドバイザーです。複数戦略によるスイングブレイクアウトシステムを採用し、チャート上の重要な構造レベルを検出して、算出したエントリーポイントに逆指値のペンディングオーダーを設置します。 マーチンゲールなし、グリッドなし、含み損のナンピンなし。 すべての取引は明確なストップロスとテイクプロフィットを伴って発注され、その後は多層のイグジットシステムが二十四時間、手動操作なしで管理します。 サポート 当チームでは役割を分担しており、開発担当と顧客サポート担当が分かれています。ご購入後のインストール、設定、その他のご質問は、モデレーターの Zolia までご連絡ください: https://www.mql5.com/ja/users/zolia ライブシグナル Normal Standard: https://www.mql5.com/ja/signals/2372821 動作の仕組み Lizard は一時間足の XAUUSD チャートを継続的に監視し、意味のあるスイングハイとスイン
金市場を支配するために作られた。 公式情報 出品者プロフィール 公式チャンネル ユーザーガイド 期間限定価格 — $799 Aura Gold Pro Edition は9月末まで $799 でご購入いただけます。 10月1日から価格は $999 に値上がりします — 値上げ前にぜひご購入ください。 ライブ取引シグナル  Roboforex   https://www.mql5.com/en/signals/2366593 FPMarkets   https://www.mql5.com/en/signals/2358523 ICTrading   https://www.mql5.com/en/signals/2380859 説明 Aura Gold PRO Editionは、金市場向けに綿密に設計された信頼性の高い取引アルゴリズムです。長期的な安定性と資本保護に重点を置き、不当なリスクを回避するシステムを構築しました。EAのライブシグナルは優れた結果と着実な成長を示しており、その基盤となるロジックの有効性を証明しています。このシステムの最大の強みの一つは、高い回復力です。これにより
TwisterPro Scalper
Jorge Luiz Guimaraes De Araujo Dias
4.37 (138)
取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 ライブシグナル モード 2 Twister Pro EA は、XAUUSD(ゴールド)のM15タイムフレーム専用に開発された高精度スキャルピングEAです。取引回数は少なめ——しかし、取引する時は必ず目的を持って行います。 すべてのエントリーは注文が出される前に5つの独立した検証レイヤーを通過し、デフォルト設定では極めて高い勝率を実現します。 2つのモード: • モード1(推奨)— 非常に高い精度、週数回の取引。資金保護と規律ある取引のために設計。 • モード2(ショートSL)— ストップロスが大幅に短く、モード1より多くの取引。個々の損失は最小限。リスクを管理しながら市場への露出を増やしたいトレーダーに最適。 仕様: シンボル:XAUUSD | タイムフレーム:M15 最低入金:$100 | 推奨:$250 RAW SPREADアカウントは必須 VPS強く推奨 グリッドなし!すべての取引にTPとSLあり! 推奨ブローカー: Exness Raw | Vantage | Fusion Markets 購入後、以下
更新情報:次期価格:699ドル、最終価格:999ドル もしあなたが、誠実さと、単に見た目は完璧な直線的なバックテスト結果だけで口座を破綻させるようなものではなく、実際の取引のために構築された真のトレーディングシステムを重視するなら、これはあなたにぴったりかもしれません。 マーチンゲール法なし/グリッド法なし 22ヶ月間ライブ信号 ライブ成長率+300% 【ライブシグナル】    |  【FTMO実績】    |  【メインポートフォリオ】  |  【バックテストガイド】 Range Breakout EAがこれほど安定している理由とは? Range Breakout EAは、よく知られた市場の動向、すなわち取引セッション間のボラティリティの変化に基づいています。 通常、アジアセッション中はボラティリティが低く、価格レンジが狭くなります。ロンドンセッションが始まるとボラティリティが上昇し、価格はこのレンジを突破して ブレイクアウト方向に動き続けることがよくあります。 このシステムはこのブレイクアウトをトレードし、ボラティリティが低下し始めた時点でポジションを決済します。
Adaptive Gold Scalper Important Pre-notice: This strategy requires a long period of practical verification, and favorable trading returns cannot be guaranteed in the short run. Traders must select brokers with ultra-low order latency, minimal slippage and zero/low stop level requirement; poor broker conditions will lead to disastrous trading results. I have over 14 years of professional trading experience. With proper brokerage conditions and sufficient running time, this fully automated scalpi
Cortex IDX
Vladimir Mametov
4 (8)
これは、MetaTrader 5 向けに開発された完全自動型の Expert Advisor(EA)で、 US30 指数 の取引に特化して設計されています。取引ロジックは、主要株価指数に見られる強い方向性のある値動き、日中の押し目・戻り、そして高ボラティリティ局面といった市場特性を考慮して構築されています。EA は、約定スピード、規律ある取引、効率的なポジション管理が重要となる環境で、自動売買を実行します。 本システムは、規律あるトレード管理、市場変化への素早い対応、そしてコントロールされた決済に重点を置いています。基本的な考え方はシンプルです。利益が出ているポジションは Trailing Stop によってできるだけ伸ばし、一方で損失中のポジションは、M1 時間足で反対シグナルが発生した場合に早期決済できるようにします。 https://www.mql5.com/en/signals/2376781 基本コンセプト この Expert Advisor は、明確で実用的なポジション管理システムを備えた US30 自動売買ソリューションを求めるトレーダー向けに設計されています。 EA は
Gold Bomb
Aleksandr Makarov
5 (2)
このアドバイザーは私の  独自インジケーター  に基づいています。  AI  やその他のナンセンスなものは一切使用していません。 インジケーターの組み合わせ、レベル、価格アクションのみです。 危険な取引手法は使用せず、   XAUUSD M1   通貨ペアでも! 常に   ストップロス   と   テイクプロフィット   を設定します。 リアルシグナル: https://www.mql5.com/en/signals/2388322 購入後は必ず私に連絡して、アドバイザーを有効化するために取引口座番号を送ってください!私の許可なしに使用しないでください! -------------------------------- Installation instructions:   Click 特別ローンチ価格:現在の価格は最初の10コピーのみ有効です。10コピー販売後は価格が  999$ に値上がりします 技術仕様: 取引シンボル:   XAUUSD   時間足:   M1 推奨最小入金   200 $( できれば500$) レバレッジ:   1:500 口座タイプ:   任意
Scalping Index Pro is a professional trading system designed specifically for fast and precise scalping on US30 and DE40 using the M1 timeframe . The system has been developed specifically for the unique behavior of major stock indices, focusing on short term price movements, rapid momentum changes, market volatility, and selective grid based trade management techniques to identify high probability trading opportunities . Scalping Index Pro is optimized for traders who prefer dynamic trading wit
My AI Gold
Vitalii Kosov
5 (1)
AI駆動型ゴールドトレーディング革命 -------------------------------------------------------------------------------- My AI Gold は単なる自動売買ツールではありません。高度なニューラルネットワーク技術、独自のカスタムアーキテクチャ、そして実際の市場環境における厳格な最適化を結集して開発されたシステムです。GitHub 上の最先端リポジトリと最新の機械学習フレームワークを活用し、ゼロから構築された My AI Gold は、ディープデータ分析によって XAUUSD(ゴールド)市場の複雑な動きを解析します。 十分な検証を行わずに急いでリリースされた製品とは異なり、My AI Gold は実際の市場サイクルを通じて徹底的なテスト、検証、改善を重ねています。安定し、検証可能なパフォーマンスを確認した後にのみ正式リリースされています。 リアル運用実績 +1000% https://www.mql5.com/en/signals/2389616 IC Markets ライブモニタリング — 10,000
XG Gold Robot MT5
MQL TOOLS SL
4.34 (113)
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
SomaGold
Andrii Soma
5 (10)
SomaGold は MetaTrader 5 専用のマルチストラテジー・ブレイクアウト型エキスパートアドバイザーで、ゴールド(XAUUSD)のみに対応しています。1 枚のチャートに 1 つの EA で、32 の独立戦略が単一の分散ポートフォリオとして同時に稼働します。 ライブシグナル。 MQL5 で公開する初の EA です。ローンチ時に手に取りやすくするため、透明性のある段階的価格モデルを採用しています: ローンチ価格:100 USD 10 ライセンス販売ごとに価格が 100 USD 上がります 早期購入者は、製品のライフサイクル全体を通じ最安価格を確保できます。 コンセプト 単一のセットアップで狭い市場レジームに過剰適合しがちなのではなく、SomaGold は厳選された 32 のプリチューン戦略を 1 枚のゴールドチャート上の単一 EA で並列実行します。 各戦略は独自のマジックナンバー、コメント、時間足、スイング検出パラメータ、決済、ニュース距離、ロット刻みを持ちます。実行エンジンは共通ですが取引は独立しており、多数のチャートを管理せずに時間足とブレイクアウト幅にわたる真の分散が
Gold Snap
Chen Jia Qi
4.57 (23)
Gold Snap — ゴールド向け高速利益獲得システム Gold Snap v2.1リリース記念キャンペーン:先着10本限定(残り7本)で、無期限ライセンスを1本599米ドルでご提供します。さらに、個人利用向けの自社開発EAを無料でプレゼントします。限定数に達し次第、キャンペーンは終了します。通常価格は999米ドルです。 EAの初期導入費用を抑えられるよう、月単位のレンタルをご用意しました。最初から無期限ライセンスを購入する必要はありません。取引回数、ドローダウン、実際の約定状況を総合的に評価するため、3か月以上を目安に運用状況を観察することをおすすめします。短期的な利益や損失だけでは、長期的なパフォーマンスを判断することはできません。 ライブシグナル: https://www.mql5.com/en/signals/2362714 ライブシグナル2: https://www.mql5.com/en/signals/2372603 実績シグナル 3: https://www.mql5.com/en/signals/2379945 購入後、ユーザーガイド、推奨設定、インストールおよび
Now $399 — Only 10 Copies Available Secure your copy at $399 before the next price increase to $599. DeMoore Expert Advisor is a high-precision scalping Expert Advisor developed exclusively for XAUUSD (Gold) on the M5 timeframe. The De Moore Expert Advisor performs market analysis based on trend-following and price action concepts. The analysis is also based on multi-timeframe analysis. Live Signal        My Setfile on ICM How De Moore EA Works for You Buy the EA on MQL5 Market Install on MetaTr
Scalper speed with sniper entries. Built for Gold. Limited sale - 399 USD only instead of 499 USD Tired of all the fake EAs that eventually disappear? Most authors just create another EA when it fails - I wanted to do it differently. Wave Rider is my personal project built out of passion - honest, transparent EA without any fake AI or manipulated back-test that's been continuously updated for more than 6 months, that I am using myself from very first day. Check the Manual  or  Broker performance
Prop Firm Gold EA
Jimmy Peter Eriksson
4.58 (33)
金(XAUUSD)におけるプロップファームの課題に対応するために構築されました 簡単な  プラグアンドプレイセットアップ リスクのないマーチンゲール/グリッド ライブシグナル  |    FTMOの結果  |  公開コミュニティ 警告 :現在の価格で入手できる在庫はごくわずかです!最終価格: 990ドル 戦略 Prop Firm Gold EAは、MT5プラットフォーム上で金(XAUUSD)専用に設計されたマルチストラテジー取引システムです。 このシステムは、ブレイクアウトベースのコンセプトと日中価格パターンを組み合わせることで、日中の主要な方向性を捉える複数のロジックを統合しています。 これにより、単一の設定に依存するのではなく、さまざまな日中市場状況に適応できます。 この戦略は、インジケーターや固定時間枠に基づかず、カーブフィッティングを減らし堅牢性を向上させるために最小限の最適化を使用しています。Prop Firm Gold EAは、分散取引ポートフォリオの一部として効果的に機能するように設計されています。日中取引に特化したロジックにより、異なるアプローチを使用する
Boring Pips MT5
Thi Thu Ha Hoang
4.77 (53)
ほとんどのエキスパートアドバイザーがバックテストのパフォーマンスは完璧でも、実際の取引では効果的でない理由について考えたことはありますか? 最もありそうな答えは過学習です。多くのEAは利用可能な過去のデータに完璧に適応するように作成されていますが、構築されたモデルに一般化能力がないため、将来を予測することができません。 一部の開発者は、過学習の存在を知らないか、知っていても防止する方法を持っていません。他の人はそれをバックテスト結果を美化するためのツールとして利用し、統計的な有意性を考慮せずに数十の入力パラメータを追加し、取引戦略を過去のデータに過度に合わせ、自分の EA が将来において同様のパフォーマンスを達成できると他の人に納得させようとします。 もし興味があって、過学習についてより深く理解したい場合は、こちらの私の記事を参照してください。 Avoiding Over-fitting in Trading Strategy (Part 1): Identifying the Signs and Causes Avoiding Over-fitting in Trading St
Quantum Bitcoin EA
Bogdan Ion Puscasu
4.78 (130)
Quantum Bitcoin EA   : 不可能なことは何もありません。やり方を見つけ出すだけの問題です。 トップ MQL5 販売業者の 1 つによる最新の傑作、   Quantum Bitcoin EA で ビットコイン 取引の未来に足を踏み入れましょう。パフォーマンス、精度、安定性を求めるトレーダー向けに設計された Quantum Bitcoin は、不安定な暗号通貨の世界で何が可能かを再定義します。 重要! 購入後、インストールマニュアルとセットアップ手順を受け取るために私にプライベートメッセージを送信してください。 10 回購入するごとに価格が 50 ドル上がります。最終価格 1999 ドル 残り100部のうち80部のみ Quantum Bitcoin/Queen チャンネル:       ここをクリック ***Quantum Bitcoin EA を購入すると、Quantum StarMan を無料で入手できます!*** 詳細についてはプライベートでお問い合わせください! Quantum Bitcoin EA は H1 時間枠で成功し、市場の勢いの本質を捉
Market Anomalies EA
Jimmy Peter Eriksson
4.71 (17)
最新情報:現行価格での販売は数量限定です! 完璧な直線を描くような偽のバックテストを行うために作られたものではありません。 実際の長期取引のために作られました。 マーチンゲール法なし/グリッド法なし/くだらないことなし ライブ結果:  ライブシグナル  |  メインポートフォリオ  | FTMO結果  |  パブリックコミュニティ 不動産会社設立準備完了! マーケットアノマリーEAとは何ですか? Market Anomalies EAは USDJPY 専用に設計されており 、 MT5 プラットフォーム向けに構築されています。 複数の戦略を組み合わせたアプローチを採用し、ブレイクアウトロジックを適用してその日の主要な日中トレンドを捉えるとともに、日中の価格パターンも考慮に入れています。 このシステムは指標や固定された時間枠に基づいておらず、曲線フィッティングを減らすために最小限の最適化のみを使用しています。 MQL5市場は競争が激しく、ほとんどのシステムが金(XAUUSD)に焦点を当てているが、USDJPYをベースとした戦略は、トレーディングポートフォリオ内の分散化を向上させる非常
フィルタ:
レビューなし
レビューに返信