BtcUsd Trader AI

  • エキスパート
  • Bohdan Suvorov
    Bohdan Suvorov
    こんにちは! 私はプロのトレーダーであり、MQL5.com 市場での経験を持つトレーディング アドバイザーの開発者です。 私はプログラミング言語 MQL4、MQL5、C、C++ を知っているため、金融市場での自動取引のための高品質で信頼性の高い Expert Advisor を作成できます。
    私の主な利点は、Expert Advisor の自動最適化を高速に実行できることです。これにより、戦略のパラメーターを効果的に調整し、パフォーマンスを向上させることができます。 また、計算や取引の決定に人工知能を積極的に使用しているため、変化する市場状況に適応することができます。
  • バージョン: 2.52
  • アップデート済み: 28 2月 2026
  • アクティベーション: 15

PROP FIRM READY! 


IMPORTANT! After purchasing, please send me a private message to receive installation and setup instructions. You will receive for free another of my expert advisors and installation instructions for MT5 for free, your choice: Market Trader AI Pro, MarketTrader EA MT5, Market Trader StBol MT5

The current price of $7,700 applies to the next 3 copies only. After that, the price will permanently rise to $11,500. I am limiting the number of users to preserve the strategy's efficiency in the live market.


The price will increase by $3500 with every 5 purchases. Final price $27999


1. Executive Summary

BtcUsd Trader AI EA is an automated Expert Advisor for MetaTrader 5 built around a market-neutral hedging strategy. It opens simultaneous Buy and Sell positions of equal lot size, then manages them through ATR-based dynamic stops, session-aware trade filtering, and a profit-cycle reset mechanism.

The EA does not predict market direction. Instead, it profits from volatility — whichever side moves far enough first locks in a trailing stop and eventually closes in profit, while the opposing position is covered by the net cycle target. It is engineered specifically for high-volatility instruments: Gold (XAUUSD) and Bitcoin (BTCUSD) on the H1 timeframe.

2. Strategy Logic

2.1 Entry — The Hedge

When no positions are open and all filters pass, the EA simultaneously opens one BUY at Ask and one SELL at Bid with identical lot sizes. No directional prediction is made. The cycle begins fresh regardless of prior results.

Filters checked before entry:

  • Market session is active ( SymbolInfoSessionTrade — broker schedule)
  • Symbol trade mode is not DISABLED or CLOSEONLY
  • Current spread ≤ Average spread × InpSpreadMultiplier (default ×2.5)
  • Symbol is not EURUSD (excluded by design)

2.2 Stop Loss & Take Profit — ATR Based

Stop Loss and Take Profit are calculated dynamically each tick using the ATR(14) indicator:

SL Distance = ATR(14) × InpATR_Multiplier (default ×1.5) TP Distance = SL Distance × InpRR_Ratio (default ×2.5)

Both values are floored to max(SYMBOL_TRADE_STOPS_LEVEL, SYMBOL_TRADE_FREEZE_LEVEL) + 3 points to prevent [Invalid stops] errors. This minimum is enforced at entry and on every trailing stop modification.

2.3 Trailing Stop

Once a position's floating profit exceeds InpTrailingStart points (default 15 pts), the SL begins trailing:

  • BUY: new SL = Bid − TrailingStart × point. Moves only upward, minimum step = InpTrailingStep (default 5 pts).
  • SELL: new SL = Ask + TrailingStart × point. Moves only downward (toward price), minimum step = InpTrailingStep .

Every modification is preceded by a stops-level check. If the computed SL would violate broker minimums, the modification is skipped that tick and retried on the next valid tick.

2.4 Cycle Reset — Profit Target

Each tick the EA sums POSITION_PROFIT + POSITION_SWAP for all EA positions on the symbol. When total net profit reaches the cycle target, all positions are closed and a new cycle starts immediately:

Cycle Target = (ATR × Multiplier) × InpCycleProfitMult × LotValue + SpreadCost

SpreadCost accounts for the bid-ask spread paid on both the BUY and SELL entry, ensuring the target is always genuinely profitable net of opening costs.

3. Risk Management

3.1 Dynamic Lot Sizing

Lot size is recalculated at the start of every cycle:

Lot = (Balance × InpRiskPercent%) / (SL_Points × TickValue / TickSize)

Result is clamped to:

  • Broker minimum/maximum ( SYMBOL_VOLUME_MIN / SYMBOL_VOLUME_MAX )
  • User limits: InpMinLot = 0.06, InpMaxLot = 10.0

3.2 Hard Loss Limit

If total floating loss across all open positions reaches InpMaxLossMoney (default $100), all positions are closed immediately as an emergency stop. This protects against flash crashes and gap events.

3.3 Session & Spread Filters

Session filter (v2.52): Uses SymbolInfoSessionTrade() to query the broker's actual trading schedule. All trading operations — entry, trailing, close — are blocked outside active sessions. This correctly handles:

  • Weekend closure (Saturday/Sunday)
  • Early Monday pre-market hours (e.g. XAUUSD before 01:00 server time)
  • Late Friday session end

Spread filter: Current spread is compared against a rolling 20-bar estimate. Entry is blocked if CurrentSpread > AvgSpread × 2.5 .

4. Input Parameters Reference

Parameter Default Description
InpRiskPercent 1.0 % of balance risked per cycle
InpMinLot 0.06 Minimum allowed lot size
InpMaxLot 10.0 Maximum allowed lot size
InpATR_Period 14 ATR calculation period
InpATR_Multiplier 1.5 ATR × multiplier = SL distance
InpRR_Ratio 2.5 TP = SL × this ratio (1:2.5)
InpCycleProfitMult 1.0 Cycle closes when profit ≥ SL-distance × this
InpTrailingStart 15 Profit in points before trailing activates
InpTrailingStep 5 Minimum SL move per modification (points)
InpMaxLossMoney 100 Emergency close if loss exceeds this ($)
InpSpreadMultiplier 2.5 Max spread = avg spread × this
InpMagicNumber 123456 Unique EA identifier
InpComment HedgeAuto Order comment label

    7. Installation

    1. Open the .mq5 file in MetaEditor and press F7 to compile — must show 0 errors, 0 warnings.
    2. Place the compiled .ex5 in MQL5/Experts/ inside your MT5 data directory.
    3. Attach to an XAUUSD H1 or BTCUSD H1 chart.
    4. In EA properties: enable Allow Algo Trading. In MT5 toolbar: enable the Algo Trading button.
    5. Account type: Hedging required. Netting accounts cannot hold simultaneous Buy + Sell on the same symbol.

    8. Risk Disclosures

    • Slippage on news: Hedging reduces directional risk but does not eliminate execution slippage during high-impact events (CPI, FOMC, geopolitical shocks). Both positions may close at worse prices than set.
    • Swap costs: Holding both a long and short position overnight generates swap charges on both sides simultaneously. On many brokers swap is negative for both directions. Monitor daily swap for long-running cycles.
    • Broker requirements: Requires low spreads and fast execution. High spreads directly reduce cycle profitability and may prevent entry entirely via the spread filter.
    • Session dependency: The EA relies on SymbolInfoSessionTrade() returning accurate session data from your broker. Verify session times match your broker's actual market hours before live deployment.
    • VPS recommended: For uninterrupted 24/5 (Gold) or 24/7 (Crypto) operation, run on a VPS to avoid gaps caused by internet or power interruptions.
    • Past performance: Strategy Tester results do not guarantee live performance. Market microstructure, execution quality, and broker conditions differ significantly from historical simulation.
    🔗 Also available directly with crypto payment: marketstrader.github.io
    おすすめのプロダクト
    Quantum Crypto PRO リアルなクジラデータを活用したマルチコイン AI トレーディング ローンチ価格。 購入 10 件ごとに価格が 200 ドル上昇します。 重要! 購入後、プライベートメッセージをお送りください。 whalehunt プラットフォームの 45 コイン分析 1 ヶ月無料プレミアムサブスクリプション(任意)とアドバイザーの設定手順をお届けします。ご質問があればお気軽にどうぞ。   重要! アドバイザーは取引所から得られたREAL-Timeデータを使用しているため、完全なバックテストは不可能です。有効性の唯一の真の確認は、Live Signal、アドバイザーが取引する戦略の取引結果です。アドバイザーの平均収益は月間約20〜25%で、標準的なリスクが推奨され、Live Signalで設定されています トレーダーの皆さん、こんにちは。   ほとんどのクリプト EA は標準的なテクニカル指標に依存しています。 Quantum Crypto PRO は 独自の分析プラットフォーム に接続し、分散型取引所における実際のトレーダーの行動をリアルタイムで追跡します
    Nirio : Your reliable conductor in the Forex market Nirio is a high-tech trading bot, designed specifically for forex traders. This innovative tool is equipped with many functions that allow traders to effectively manage their transactions and strategies. The price for the first users will be reduced, and over time will increase. Advantages Nirio: Reliability and stability: Nirio is developed in accordance with the highest reliability and stability standards, which provides confident and saf
    Boris
    ALEKSANDR IVANOV
    Boris- Полностью автоматический ,агрессивный советник основанный на математических расчетах, написанный специально под валютную пару EUR/USD. Период H1. Советник использует свой автоматический виртуальный стоплосс и тейкпрофит !  Ваш брокер не будет видеть ,задерживать модификацию,забыть поставить стоп и так далее. Тестировать рекомендую только с качеством 100% тиков у брокеров дающих реальные котировки. Входные параметры:  Magic=77777; - Магик ордеров  StartHour=1;  - Час начала Торговли  En
    Karla One
    Karla Fekeza
    3 (10)
    In a nutshell Karla One is a product that organically came out from several years of manual trading. My goal was to built a system without the necessity of regular updates. Having said that, this Expert Advisors was specifically built for MQL5 customers, so please remember that I am always open to suggestions.   Karla One uses machine learning to find the right entry points but at the same time before placing a trade, there are 7 conditions that have to be met. It relies on Price Action which se
    Version for MT4:  Extremum Save MT4  Community UP Group Join Extremum Save - is a fully automated scalping trading algorithm with the highest possible SL/PT ratio. Extremum Save does not need optimization. The strategy showed great results when tested on historical data with the best possible simulation quality for more than 10 years. Real trading proves the same results. Extremum Save does not use any risky trading methods such as martingale, grid, etc.   Every order is protected with low fix
    AurumEdge Pro — 8-Strategy Gold Intelligence System for XAUUSD AurumEdge Pro is a fully automated Expert Advisor for XAUUSD (Gold) that combines 8 independent breakout strategies into a single intelligent system. Each strategy targets a different market condition — daily S/R levels, session openings, pivot points, multi-timeframe trend confluences — targeting different market structures across sessions. Backtest Results (Strategy Tester) — 01/01/2026 to 24/02/2026 (55 Days) Win Rate: 89.5% on 1,
    LONGWEI DRAGON-SCALE GOLD MECH     Ultra-Fast M5 Micro Scalping Engine  Longwei Dragon-Scale Gold Mech is a highly precise, ultra-fast Micro Scalping Expert Advisor designed specifically for XAUUSD on the M5 timeframe. Inspired by "Longwei", the ancient Chinese golden dragon, this EA strikes with unparalleled speed and precision. While other EAs hold trades for hours or days, Longwei is designed for speed. The average holding time is just 15 to 30 minutes! It gets in, extracts profit, and get
    Description of   Simo : an innovative robot with a unique trading system Simo is a revolutionary trading robot that changes the rules of the game with its unique trading system. Using sentiment analysis and machine learning, Simo takes trading to a new level. This robot can work on any time frame, with any currency pair, and on the server of any broker. Simo uses its own algorithm to make trading decisions. Various approaches to analyzing input data allow the robot to make more informed decis
    Благодаря сбалансированному алгоритму  Prop 007 GOLD приносит стабильную прибыль с минимальными просадками. Этот советник можно использовать на реальном счёте с депозитом 10 000$ и центовом счёте с депозитом 100$. При использовании советника в проп-компаниях, рекомендуемый размер депозита 100 000$. Советник спроектирован для торговли золотом (XAUUSD) на минутном тайм-фрейме. Алгоритм сочетает несколько индикаторных фильтров и систему управления позицией, позволяя советнику адаптироваться к разли
    ULTIMATE PRO TRADING EA Ultimate Pro Trading EA is a professional automated trading system designed for traders who are looking for precision, stability, and advanced market analysis. This Expert Advisor represents the result of more than 15 years of real trading experience in financial markets. Through years of market observation, testing, and development, a complete trading system has been engineered to identify high-probability trading opportunities.   Full User Control The Expert Advis
    BTC Master Pro
    Farzad Saadatinia
    4.58 (12)
    BTC Master Pro — 規律あるビットコイントレードのための信頼できるパートナー。 最新バージョンでは OpenAI の人工知能 を統合し、高ボラティリティな暗号資産市場において、より高度な執行判断と取引フィルタリングを実現します。 本プロフェッショナル向けエキスパートアドバイザーは、 MetaTrader 5 上での Bitcoin(BTCUSD) 取引専用に設計されており、構造化された執行ロジック、エクスポージャー管理、そして高度なリスクマネジメントに重点を置いています。 価格: $499  →  次段階: $699  →  最終価格: $999 LIVE SIGNAL HERE OpenAI搭載・執行フィルター 最新バージョンでは OpenAI 技術を活用し、リアルタイムで市場環境を分析し、質の低いエントリーや不利なセットアップをフィルタリングします。 AIセーフティレイヤー: AIモジュールは取引実行前の第二承認レイヤーとして機能します。これは予測ツールではなく、あくまで執行フィルターとして設計されています。すべての取引は構造化ロジックとインテリジェントな検証プ
    Ksm mt5
    Andriy Sydoruk
    5 (1)
    Ksm: Smart Solution for Automated Forex Trading Ksm is a tool designed for automating Forex trading, using modern methods of time-series data analysis to work with multiple currency pairs across different timeframes. Key Features and Benefits Multi-currency support : Ksm enables trading across multiple currency pairs, helping traders adapt their strategies to various market conditions. New currency pairs can be easily added. Time-series data analysis : Utilizing advanced algorithms, Ksm analyze
    Renko Phantom Breakout EA - Master Edition (v5.0) The Ultimate Pure Renko Ecosystem for Institutional Trading. Welcome to the Renko Phantom Breakout EA, a state-of-the-art algorithmic trading system designed for professional traders who demand precision, speed, and mathematical superiority. Unlike amateur robots that rely on lagging time-based indicators (like M1 or H1 candles), the Phantom operates inside a 100% Pure Time-Independent Ecosystem.  It sees the market purely as distance and
    EA Overview This sophisticated Expert Advisor (Noura86) monitors up to   28 trading instruments   (27 currency pairs + Gold) simultaneously for high-probability trading opportunities. The EA employs a professional   group-based trading approach   with advanced risk management and multi-currency coordination capabilities. Very Important Note :  This strategy has been tested and suggested on M1 time frame (recommended). Depends on different risk management, you can get different results. Minimum
    The bot is a scalpel, and accordingly works with ticks. The bot works on all types of accounts: netting, hedging. For Works with 5 digit quotes. The bot does not use the history stored in the database for work. For his own needs, he uploads historical data online, creating his own database. To achieve good results in real tick mode on the tester, it is necessary to carry out optimization. Custom bot features ORDER_TYPE_FILLIN - Sets the order execution policy. HourLimit - Trade restrictions at
    Gold Crazy EA   is an Expert Advisor designed specifically for trading Gold H1/ EU M15. It use some indicators to find the good Entry. And you can set SL or you can DCA if you want. It can be an Scalping or an Grid/ Martingale depend yours setting. This EA can Auto lot by Balance, set risk per trade. You also can set TP/ SL for earch trade or for basket of trade. - RSI_PERIOD - if = -1, then the default strategy works, if >0, then the RSI strategy works - MAX_ORDERS - to trade with only 1 order,
    ZyloFx Obsidian AI
    Rosa Lina Martinez Jimenez
    IMPORTANT: After purchasing this product, please send me a private message to receive the installation guide, setup instructions, and direct product support. ZyloFx Obsidian AI is a professional Expert Advisor for MetaTrader 5 designed for traders seeking intelligent automation, advanced risk protection, and high-performance execution on XAUUSD (Gold) . Built with a modern multi-layer protection system, Obsidian AI combines adaptive market analysis, volatility filters, and dynamic trade manage
    This is an EA designed for highly liquid instruments. It does not rely on overly complex algorithms, nor does it employ extremely risky strategies like Martingale or grid trading. Instead, it follows short-term trends using an approach that closely mimics human-like logic. ​ Suitable Instruments:​ ​ XAUUSD (Gold) and other highly liquid products ​ Timeframe:​ ​ M1 ​ Minimum Deposit:​ ​ 200 USD ​ Leverage Requirement:​ ​ 1:500 – 1:2000 or unlimited leverage ​ Spread Requirement:​ ​ Low-spread acc
    Welcome to the AETHYR ALGORITHMIC TRADER MT5 Aethyr Algorithmic Trader MT5 is an advanced adaptive momentum trading system developed for MetaTrader 5, engineered to provide intelligent trade execution, dynamic market analysis, and professional-grade risk management across highly volatile instruments. The system has been primarily optimised for BTCUSD trading and has also demonstrated compatibility across additional instruments, including XAUUSD (Gold), under suitable market conditions and bro
    Hatori Flying Nimbus is a professional MetaTrader 5 Expert Advisor built around the classic Ichimoku Kinko Hyo methodology. It identifies trend direction using Price vs. Cloud , confirms momentum with Tenkan/Kijun alignment , validates bias with Future Cloud Color , and strengthens signal quality with Chikou confirmation . To support real trading and marketplace validation, it also includes automatic risk-based lot sizing , margin protection, and a clean on-chart dashboard panel with a Close All
    APE(Alpha Prop Edge)について APE(Alpha Prop Edge)は、 平均回帰(Mean Reversion)戦略 に基づいて構築されたエキスパートアドバイザー(EA)です。市場の過度な価格変動を検出し、あらかじめ定義された条件に基づいて逆張りの取引を行います。 本システムには、日次損失制限や自動決済機能などのリスク管理設定が組み込まれており、アカウントサイズや運用環境に応じて柔軟に調整可能です。 APEは、過去の相場データを用いた広範なバックテストにより、その安定性と構造の一貫性が検証されています。ポジション管理やリスク調整に慣れたトレーダー向けの設計です。 リスク管理機能: 日次ドローダウン制限(任意設定) 純利益到達時の自動決済機能 保守的〜積極的までの複数リスクプロファイル設定 技術的な特徴: 市場の過熱感に基づく逆張りエントリー 資本保護のための内蔵制御機能 評価口座の条件に合わせたパラメータ調整が可能 テスト・研究用途または裁量併用環境に適応 重要な注意事項: 本EAは、特定の条件下でポジションのエクスポージャーが増加する可能性があります。 長
    ADELIO の紹介 概要 ADELIO は   ゴールド (XAU/USD)   を対象とした強力かつ精密な自動取引システムです。 市場のボラティリティとトレンドを活用し、複数のエントリ戦略を通じてリスク管理を行います。 ADELIO EA はトレンドに沿った瞬間的な価格調整やボラティリティを利用してトレードを行い、すべてのトレーダーが簡単に使用できるように設計されています。 ADELIO EA の特徴 : ADELIO EA はゴールドの特有な一方向トレンドの特性を活用するシステムです。 ゴールドは一般的に強いボラティリティを伴い、長期間にわたって一方向に動く傾向がある資産です。 この特性に合わせて、ADELIO は「DEPOSIT NEED」機能を通じて口座の資産を管理し、ポジションを継続的に保持します。 つまり、価格が一方向に大きく動く際に資産をリバランスし、平均取得価格を調整して最適なタイミングで利益を実現する構造となっています。 資産管理において、どれだけ頻繁に MAGIC を付与するかに焦点が置かれています。 3回以上の MAGIC を付与しないように計算されており、そ
    Nasdaq     Smart Collector Automated intraday  trading , not scalping! The trading system is expected to make money both when the market rises and when it declines. I do not offer any gifts or bonuses for purchases or positive feedback! The Nasdaq Smart Collector advisor has been tested in a closed test, showed excellent results, is worthy of respect, and does not require marketing tricks or manipulations. The Nasdaq   index consists of the largest tech companies in the United States and is gro
    Introducing to your attention an innovative expert advisor created specifically for the most juicy and volatility  currency   basket: GBPUSD, XAUUSD and EURJPY. This EA is designed using the main features of this market's movement, making it an ideal choice for dynamic trading on high-trending and medium-volatile pairs. The advisor is focused on minimizing trading risks, aiming to reduce losses to a minimum. Main features: EA is designed to open and close orders at the begginning of trading ses
    このEAは,Meta Trader 5プラットフォーム向けのシンプルな自動取引システムです.パラボリックSARを用いて,市場のトレンドを見極めてロットサイズを自動的に調整し,コツコツと利益を積み上げていきます. 主な特徴 ロットサイズの調整にマーチンゲール法を用いません. 外国為替市場閉場前にポジションを持っている場合,そのポジションは週末に持ち越しされます. このEAは複数のポジションを同時に持つことを前提としているため,利用しているブローカーのMT5口座がヘッジングシステムタイプであることを確認してください. どの執行方式・フィルポリシーであっても対応できる回路をEAに組み込んでいます. 注文価格がストップレベルに違反していた場合には自動調整が行われます. 推奨設定 シンボル:USDJPY タイムフレーム:M5(5分足チャート) デポジット:最低1,000ドル(100,000円)を推奨します すべてのパラメータはデフォルト値に設定することを推奨します.TradeVolumeは証拠金に応じて増やすことができますが,その分リスクも高まります.TakeProfitとStopLoss
    Expert. Automatic and manual trading. Ready-made trading system based on Elliott waves and Fibonacci retracement levels . It is simple and affordable. Display of the marking of Elliott waves (main or alternative option) on the chart. Construction of horizontal levels, support and resistance lines, a channel. Superposition of Fibonacci levels on waves 1, 3, 5, A Alert system (on-screen, E-Mail, Push notifications).    visual panel for opening orders in manual trading. visual panel for setting up
    EA Gold Liquidity is an Expert Advisor for MetaTrader 5 designed for XAUUSD trading on the M5 timeframe . The EA uses price zone filtering, dynamic ATR adaptation, and automated trade management to support a structured trading approach on Gold. Features Designed for   XAUUSD Optimized for   M5 Price zone filtering Dynamic ATR-based market adaptation Automatic pending order management Break-even and trailing stop functions Session-based trading control Backtest Example The screenshots provided in
    Hello, traders! I am   Gold Master 111 IMPORTANT! After the purchase please send me a private message to receive the installation manual and the setup instructions. I don’t enter trades just to stay active in the market. I’m not here to gamble or make random decisions. I observe patiently, study the market carefully, and wait for high-probability setups. When the conditions align, I execute with precision — often transforming one well-timed opportunity into a chain of structured, profitable tr
    Join Deriv link on profile>>> BitCoin MinerX is a special EA tool created to trade the pair called BTC/USD, This robot is created by few indicators which is Donchian Channel and Bollinger Bands.  A Donchian channel is a   trading indicator that shows the highest high and the lowest low of a security over a given period  and  Bollinger Bands are a   technical analysis tool that show the prices and volatility of a financial instrument or commodity over time . We use all this tools because are he
    QuantumScalp is a next-generation automated trading advisor designed to enhance your trading efficiency and profitability                                                                                                        in the dynamic world of financial markets. Leveraging advanced algorithms and real-time data analysis, QuantumScalp automates the scalping strategy, enabling traders to exploit small price movements with unparalleled precision and speed. Basically, the advisor does not use
    このプロダクトを購入した人は以下も購入しています
    Benefit EA Uses only hedging accounts.     Benefit EA is a non-indicative flexible grid adviser with special entry points that provide a statistical advantage, revealed through the mathematical modeling of market patterns. The EA does not use stop loss. All trades are closed by take profit or trailing stop. It is possible to plan the lot increments. The "Time Filter" function is set according to the internal time of the terminal as per the displayed time of the instrument's server, not the oper
    Strategy: 1.This EA is a trend trade, used for USDCHF H1 charts. 2.This EA is  using indicators such as the Bolling band and moving average. 3. The initial amount of this EA is only $1000.This EA has a profit of over $3000. 4.The EA has detailed test data from January 2018 to June 2021, which is stable and profitable. 5.If you just want to put a small amount of money to get double reward, this EA trader is your best choice!
    同時に機能する多くのシンプルな戦略を組み合わせた多通貨エキスパート アドバイザー。各戦略は、ボラティリティの高い市場の瞬間における単純な取引アルゴリズムに基づいています。各戦略は、過去 5 年間にわたって最適化されてきました。 Expert Advisor は、「群衆の正しさ」の統計原理を使用します。異なる戦略からのシグナルを平均化し、好ましい方向に市場ポジションを開きます。 この原則は、相関する取引手段に関する同時作業とともに、不利な市場フェーズへの耐性と成長期間の分布の均一性を大幅に高めることを可能にします。 オプション 予想される最大ドローダウン (%)       -- 予想されるおおよその最大ドローダウン。これにより、ドローダウンが設定値を超えないように、開いているポジションのパラメータが自動的に選択されます。このパラメーターは、過去 5 年間のテスト データに基づいており、今後の作業中に発生する可能性のある実際のドローダウンは、上下の両方で、宣言されたものとはわずかに異なる場合があります。 取引用定期預金     -- 取引に使用する資金の固定額を設定します。開かれたポジ
    This EA has been backtested with real ticks since January 2012 untill March 2025, with no delay in execution, and then with a delay of 1000ms, the backtest showed a drawdown of 30% with a 10k USD backtest account. The EA default parameters are optimised to work best on EURUSD pair, but can work on other currencies and metals like XAUUSD. Before using this EA and in order to not lose all your money make sure you have at least 5000USD in your account. Do not use another EA with this one on the sam
    The UAD-Engine v7.5.5 is a professional-grade Expert dvisor designed for precision trading on XAUUSD (Gold) and BTCUSD (Bitcoin). It combines advanced market logic (Stop Hunt & FVG Detection) with a robust Smart Grid System to manage positions effectively. Key Features: Smart Entry Logic: Utilizes Fair Value Gaps (FVG) and Stop Hunt detection to find high-probability entry points. Weighted Basket Management: Calculates the true Weighted Average Price of all positions a sets dynamic TP/SL points
    TrendCockpit EA
    Michael Kolawole Shodimu
    TrendCockpit EA – Smart Autonomous Trading TrendCockpit EA is an advanced yet user-friendly Expert Advisor designed to automate trend-following strategies with precise risk management. It’s perfect for traders of all levels who want to trade efficiently without constant monitoring. TrendCockpit is a tactical-grade Expert Advisor built for traders who treat execution as a discipline. With cockpit-style controls, dynamic risk logic, and multi-symbol heatmap intelligence, it transforms your chart i
    ONR CORRELATION MASTER PRO | STATISTICAL ARBITRAGE ENGINE STOP GAMBLING. TRADE LIKE A HEDGE FUND. Tired of guessing market direction? Sick of the trend reversing the moment you enter a trade? Stop guessing. Major banks and fund managers don't guess; they use MATH. Now, you have that power too. ONR Correlation Master Pro is not an ordinary indicator bot. It is a professional Statistical Arbitrage (Pairs Trading) system designed to exploit price inefficiencies. It focuses on the relationship
    Smart Hybrid Grid Trading System MT5
    Muhammad Abdulrahman Omar Naima Allah Al-rais
    Smart Hybrid Grid Trading System は、サイクルおよびローソク足に基づくハイブリッドグリッド型エキスパートアドバイザーです。 固定アンカー、厳格な管理、段階的な注文実行を重視して設計されています。 本システムは 前のローソク足のデータのみ を使用してグリッドを構築し、 1ティックにつき最大1つの保留注文 を順序立てて配置します。 サイクル中はグリッドの再計算や再配置は行われません。 本製品は 2つの独立したバージョン で提供されます: MetaTrader 4 (MT4) MetaTrader 5 (MT5) 各バージョンはそれぞれのプラットフォームセクションに公開され、取引ロジックは同一です。 コアコンセプト 前のローソク足に基づくロジック ハイブリッドグリッド構造 サイクル固定ロジック 段階的な注文実行 初期化時のみの復旧処理 主な機能 Limit / Stop注文対応 オプションの資金管理 固定 / 算術 / 幾何ロットモード 最大ロット制限 利益目標達成時に全決済 取引時間フィルター ブローカー制限保護 詳細なステータス表示 MT4バージョン M
    Quantum Queen MT5
    Bogdan Ion Puscasu
    4.98 (645)
    トレーダーの皆さん、こんにちは!私は 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 (56)
    クォンタム・アテナ ― 経験から生まれた精密さ トレーダーの皆さん、こんにちは!私は クォンタム・アテナ です。伝説のクォンタム・クイーンの軽量版で、今日の市場環境に合わせて改良・再設計されました。 私は何でもできる人間になろうとはしない。 私は今、うまくいっていることに集中します。 私の専門分野は?金です。私の使命は?正確さを核とした、鋭く効率的で、インテリジェントに最適化された取引パフォーマンスを提供することです。 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公開チャンネル:       ここ
    Quantum King EA
    Bogdan Ion Puscasu
    4.99 (195)
    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 用に設計されており、安定した制御された成長を望む初心者とプロの両方のために構築されています。
    Quantum Valkyrie
    Bogdan Ion Puscasu
    4.68 (146)
    クォンタムヴァルキリー - 精密、規律、実行 割引   価格。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 にアプローチできるように構築されています。 数ヶ月間、私のアーキテクチャは舞台裏で洗練され続けました。変動の激しいセッシ
    TwisterPro Scalper
    Jorge Luiz Guimaraes De Araujo Dias
    4.34 (87)
    取引は少なく。質は高く。一貫性がすべて。 • ライブシグナル モード1 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 購入後、以下を受け取るためにメッセージを
    Chiroptera
    Rob Josephus Maria Janssen
    4.82 (33)
    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-
    Goldwave EA MT5
    Shengzu Zhong
    4.7 (50)
    リアルトレード口座   LIVE SIGNAL(IC MARKETS): https://www.mql5.com/en/signals/2339082 本 EA は、MQL5 上で検証済みのリアルトレードシグナルと、完全に同一の取引ロジックおよび執行ルールを使用しています。推奨された最適化済み設定を使用し、信頼性の高い ECN / RAW スプレッドのブローカー (例:IC Markets または TMGM) で運用した場合、本 EA のリアルトレード挙動は、当該ライブシグナルの取引構造および執行特性に極めて近い形で設計されています。ただし、ブローカーごとの取引条件、スプレッド、約定品質、ならびに VPS 環境の違いにより、個々の結果が異なる可能性がある点にご注意ください。 本 EA は数量限定で販売されています。現在、残りのライセンスは 2 件のみで、価格は USD 999 です。購入後は、プライベートメッセージにてご連絡ください。ユーザーマニュアルおよび推奨設定をお渡しします。 過度なグリッド手法は使用せず、危険なマーチンゲールも行わず、ナンピン(平均取得単価の引き下げ)も使用
    Pulse Engine
    Jimmy Peter Eriksson
    4.29 (24)
    発売記念価格 – 残りわずか! このシステムの主な目的は、リスクの高いマルチンゲールやグリッドを使用せずに、長期的なライブパフォーマンスを実現することです。 現在の価格での販売部数は非常に限られています。 最終価格: 1499ドル 【ライブシグナル】    |    【バックテスト結果】    |    【設定ガイド】    |    【FTMO結果】 取引への新たなアプローチ Pulse Engineは、インジケーターや特定の時間枠を一切使用しません。MQL5上の他のどのトレーディングシステムも採用していない、非常にユニークなアプローチを採用しています。 この手法は、日中の方向性パターンに基づいて取引を行います。これらのパターンは、私が長年開発・改良を重ねてきた独自のパターン認識ソフトウェアを用いて発見したものです。 このソフトウェアにより、市場が過去に特定の方向に強い動きを示した時間帯を特定することができます。 市場ごと、そして曜日ごとに、それぞれ独自の動きがあります。 この手法が非常に強力な理由は、市場がトレンドにあるのか、反転しているのか、あるいは特定の市場局面にあるのか
    Byrdi
    William Brandon Autry
    5 (12)
    BYRDIをご紹介します ― 生きたメッシュとして構築された分散型トレーディング・インテリジェンス。 ほとんどのトレーディングシステムは孤立して動作します。1つのターミナル。1つの銘柄。一度に1つの判断。他のどこで何が起きているかは一切認識しません。 BYRDIは違います。 MQL5でAI統合型リテール・トレーディングEAを切り開いた開発者によって構築されました。 BYRDIはメッシュノード・ネットワークです。複数のターミナル、ブローカー、口座にまたがって稼働する複数のインスタンスが、リアルタイムで相互に通信します。各ノードは独立して動作する一方で、メッシュ全体としては総エクスポージャー、通貨集中度、ポートフォリオの挙動を完全に把握し続けます。 各ノードは独立して動作する。各ノードは他のノードを認識し続ける。 1人のトレーダー。複数のターミナル。協調するインテリジェンス。統一されたリスク。 AIトレーディングの新カテゴリー 第一世代のAIトレーディングEAは、1つのモデルを1つのターミナルに置きました。1つの頭脳、1つのチャート、一度に1つの判断。 BYRDIはその次のステップです。
    BB Return mt5
    Leonid Arkhipov
    4.52 (121)
    BB Return — ゴールド(XAUUSD)取引のためのエキスパートアドバイザー(EA)です。このトレードアイデアは、以前に 裁量トレード で使用していたものを基にしています。戦略の中核は Bollinger Bands(ボリンジャーバンド) のレンジへの価格回帰ですが、機械的でも毎回のタッチでもありません。ゴールド市場ではバンドだけでは不十分なため、EA には弱い・機能しない相場状況を排除する追加フィルターが組み込まれています。回帰のロジックが本当に妥当な場合にのみ取引が行われます。   取引原則 — 本戦略ではグリッド、マーチンゲール、ナンピン(平均化)を使用しません。EA は 固定ロット または AutoRisk モードで動作します。BB Return はスプレッド、スリッページ、ブローカーの価格配信の違いに影響されにくく、 Standard、ECN、Pro、Raw、Razor など、あらゆるブローカー・口座タイプで使用できます。取引セッションに依存せず、 24時間稼働 します。   $ 359   は最終価格ではありません。 現在の価格で残りは5~7ライセンスのみです。
    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 は複数の確認アルゴリズムを使用して最適なエントリー価格を見つけ、内部で複数の戦略を実行して取引のリスクを分散します。 すべての取引にはストップロスとテイクプロフィットがありますが、リスクを最小限に抑え、各取引の可能性を最大化するために、トレーリングストップロスとトレーリングテイプロフィットも使用します。 こ
    Quantum Bitcoin EA
    Bogdan Ion Puscasu
    4.83 (121)
    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 時間枠で成功し、市場の勢いの本質を捉える トレンドフォロー戦略 を
    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
    重要 : このパッケージは、現在の価格で、非常に限られた数のみ販売されます。    価格はすぐに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もランクインしました。
    NEXORION: Initium Novum — 決定論的ロジックとアルゴリズムの統合 NEXORION は、厳密な流動性処理数学アルゴリズムに基づいた機関投資家レベルの分析コンプレックスです。本プロジェクトの中核概念は「計算の透明性」にあります。このエキスパートアドバイザー(EA)は、混沌とした価格フィードを構造化された幾何学的ゾーンへと変換し、意思決定プロセスを取引チャート上に直接可視化します。 リアルタイム・モニタリング https://www.mql5.com/es/signals/2372338 システム技術仕様 取引銘柄: XAUUSD (Gold) 運用タイムフレーム: H1 手法: 機関投資家流動性分析および決定論的ロジック (Institutional Liquidity Analysis & Deterministic Logic) 意思決定基盤: 流動性プールと均衡レベルの数学的算出 数学的アーキテクチャと可視化 システムの主要な革新は、Dynamic Computation Mapping(動的計算マッピング)にあります。アルゴリズムは単に価格を分析するので
    ArtQuant Gold
    Miguel Angel Vico Alba
    4.2 (15)
    ArtQuant Gold は、 MetaTrader 5 向けのプロフェッショナルな Expert Advisor であり、 Gold / XAUUSD の自動売買専用に開発されています。各ブローカーで使用される一般的なゴールド銘柄名やサフィックスにも対応しています。 このEAは、構造化された マルチモジュール型グリッドベースのトレーディングエンジン を採用しており、エクスポージャー管理、サイクル制御、執行フィルター、仮想的な取引保護を、シンプルかつプロフェッショナルなユーザーインターフェースから管理できるよう設計されています。 ArtQuant Gold は、XAUUSD専用の自動売買システムを求めるトレーダー向けに設計されています。明確なリスク管理、ブローカー別セットアッププロファイル、モジュール活動制御、そして分かりやすい操作パネルを備えています。 このEAはチャートの時間足に依存しません。 任意の時間足チャートに適用でき、内部のトレーディングロジックは独自の作業構造で管理されます。 リアル口座の参考シグナル IC Markets RAW にて、Medium-High リスクプ
    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, and short term volatility to identify high probability scalping opportunities in the gold market. Scalping Robot Pro is optimized for traders who prefer dynamic trading with quick entries an
    Zerqon EA
    Vladimir Lekhovitser
    5 (1)
    リアルタイム取引シグナル 取引活動の公開リアルタイム監視: https://www.mql5.com/ja/signals/2372719 公式情報 出品者プロフィール 公式チャンネル ユーザーマニュアル セットアップ手順および使用ガイド: ユーザーマニュアルを開く Zerqon EA は、XAUUSD 取引専用に設計された適応型エキスパートアドバイザーです。 この戦略は、ONNX を通じて統合された Deep LSTM ニューラルネットワークモデルに基づいており、市場の連続的な動きを処理し、価格変動を構造的に分析することを可能にしています。 モデルは、金価格の動き、ボラティリティ、および時間的条件における特定のパターンを識別することに重点を置いています。 固定的な従来型シグナルを使用する代わりに、EA は学習済みニューラルネットワークフレームワークを通じて市場を分析し、適切な条件が検出された場合にのみ取引を実行します。 Zerqon EA は継続的に取引を行うわけではありません。 まったく取引が行われない期間もあれば、適した XAUUSD 市場局面では短時間に
    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年間のヒストリカルデータで開発・検証し、実際の
    Lizard
    Marco Scherer
    5 (6)
    LIZARDとは? Lizardは、MetaTrader 5のXAUUSD(ゴールド)専用の完全自動エキスパートアドバイザーです。マーチンゲールなし。グリッドなし。ナンピンなし。 すべての取引は多層出口システムによって24時間自動管理されます。 ライブシグナル: https://www.mql5.com/en/signals/2372821   仕組み Lizardは複数の時間軸でスウィングハイとスウィングローを検索します。注文をトリガーするには実際のブレイクアウトが必要です。9つの独立した戦略が同時に稼働します。   主な機能 マルチ戦略アーキテクチャ:9つの戦略が口座残高とリスク設定に基づいて自動的に有効化されます。 動的価格スケーリング:すべてのパラメータが現在のゴールド価格に比例してスケーリングされます。 スマートタイムフィルター:プロフィットファクターが1.0未満の時間帯は自動的にブロックされます。 多層出口システム:ブレイクイーブン、トレーリングSL、トレーリングTP、マジックトレイル、バーチャルSL。 NFPフィルター:NFP発表前後に取引を自動一時停止。 市場クローズ
    Gold Safe EA
    Anton Zverev
    4.38 (8)
    ライブシグナル:   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のようなブローカーを利用するなど、時間軸を活用すること
    金とユーロを取引するよりスマートな方法   Live signal このEAは高度な定量的手法に基づき、2つの主要市場間における一時的な非効率を特定します。価格の動きが通常のダイナミクスから外れる瞬間に利益を得ることを目指します。 システムは市場環境に自動適応し、精密にエントリーとイグジットを管理し、短期的なミスアライメントが発生した際にチャンスを捉えるよう設計されています。 追加のフィルタリング層が一貫性を高め、ノイズを減らすことで、戦略は取引機会の選択においてより厳選されます。 EA入力(設定可能): メイントレード銘柄。 セカンダリ銘柄(参照市場)。 分析時間枠。 計算に使用する履歴データの深さ。 エントリー・イグジット感度。 相関ベースのフィルター。 ポジションサイズ。 ユニークなトレード識別子。 重要事項: 必ず「リアルティック」でテストしてください。 ブローカーによりデータが異なるため、実運用前に確認してください。 高度な戦略理解を持つトレーダー向けであり、初心者には不向きです。 推奨最低残高:300 EUR/USD(レバレッジ1:33) 。
    作者のその他のプロダクト
    PROP FIRM READY!  The Expert Advisor works on double stochastic, bollinger bands and trawl. The Expert Advisor trades simultaneously on 21 standard symbols. The Expert Advisor is for five-digit accounts. Leverage   1:500 Timeframe for trading   H1 Period : 2022.05-2024 IMPORTANT! After purchasing, please send me a private message to receive installation and setup instructions. You will receive for free  another of my expert advisors and installation instructions for MT5 for free, your choice:
    不動産会社準備完了! グリッドやマルチンゲールなどを使用しないEA。 このエキスパートアドバイザーは、ダブルストキャスティクスH1/H4とトレーリングストップに基づいて動作します。エキスパートアドバイザーは、30種類の標準銘柄で同時に取引を行います。 口座タイプ:スプレッドが非常に低いECN、Raw、またはRazor。 ブローカー:IC Markets、Pepperstone、Raw、Razorが最も低いスプレッドを提供 重要: 最良の結果を得るためには、スプレッドの低い口座を使用することが非常に重要です! レバレッジ:最低1:100、推奨1:500 - 低~中リスク、低リスク、および非常に低リスクのレベルでは、少なくとも1:30 アカウントの種類: ヘッジ 取引期間 (H1) 最適化期間:2024年~2025年 グリッドやマルチンゲールなどを使用しないEA。 最低預金額:   10,000ドル 重要!ご購入後、インストールとセットアップの手順をお知らせするために、プライベートメッセージをお送りください。MT5用のエキスパートアドバイザーとインストール手順をもう1つ無料でプレ
    不動産会社準備完了! グリッドやマルチンゲールなどを使用しないEA。 エキスパートアドバイザーはLSTMニューラルネットワークに基づいて動作します。エキスパートアドバイザーは29種類の標準銘柄で同時に取引を行います。 口座タイプ:スプレッドが非常に低いECN、Raw、またはRazor。 ブローカー:IC Markets、Pepperstone、Raw、Razorが最も低いスプレッドを提供 重要: 最良の結果を得るためには、スプレッドの低い口座を使用することが非常に重要です! レバレッジ:最低1:100、推奨1:500 - 低~中リスク、低リスク、および非常に低リスクのレベルでは、少なくとも1:30 アカウントの種類: ヘッジ 取引期間 (H1) 最適化期間:2024年~2025年 グリッドやマルチンゲールなどを使用しないEA。 最低預金額:       10000ドル 重要!ご購入後、インストールとセットアップの手順をお知らせするために、プライベートメッセージをお送りください。MT5用のエキスパートアドバイザーとインストール手順をもう1つ無料でプレゼントいたします。選択肢は、M
    フィルタ:
    レビューなし
    レビューに返信