Quant Lab

Quant Lab — Genetic Strategy Builder for MetaTrader 5

What Quant Lab Is

Quant Lab is a genetic-algorithm-driven strategy builder that runs directly on your MetaTrader 5 chart. Instead of hand-coding an Expert Advisor and guessing at parameters, you let an evolutionary search process discover a combination of entry logic, exit logic, a market filter, and a position-sizing rule that performs well on your chart's real historical data — then export that discovery as a standalone, compilable MQL5 EA.

Quant Lab doesn't invent trading ideas from nothing. It works from a defined set of building blocks and searches the space of ways to combine and parameterize them:

  • Entry module — the signal that triggers a trade: MA Crossover, RSI Mean-Reversion, Donchian Breakout, or Bollinger Band Reversion
  • Exit module — how a trade closes: Fixed Stop-Loss/Take-Profit, Trailing Stop, Opposite-Signal, or Time-Based
  • Filter module — an optional veto layer applied before any entry: None, Trend filter, or Volatility filter
  • Money management module — position sizing that scales with your account balance (compounding), with an evolved cap to prevent runaway sizing

Each candidate strategy is a "chromosome" made of one gene from each of those four modules, plus that module's specific parameters (periods, thresholds, point distances). The genetic algorithm doesn't test every possible combination — it evolves toward good ones through selection, crossover, and mutation, the same way biological evolution favors traits that work.

Step-by-Step: How to Use It

1. Attach it to the right chart. Open the exact symbol and timeframe you actually intend to trade live. Quant Lab pulls real price data directly from this chart — it does not use synthetic or third-party data, so the chart you attach it to determines everything downstream.

2. Reload live data. Click "Reload Live Data." This pulls the number of bars set in InpHistoryBars (3000 by default) directly from the chart via CopyClose / CopyHigh / CopyLow . The dashboard's "Source" label will show you the exact date range loaded — note this range, because you'll need it later to validate results.

3. Review your GA settings before running. Key inputs:

  • InpPopulationSize / InpGenerations — bigger and longer search more thoroughly but take longer to run
  • InpMinTrades — rejects any strategy that doesn't generate at least this many trades over the test window (protects against low-sample-size flukes)
  • InpMaxDrawdownCap — rejects any strategy whose backtested drawdown exceeds this dollar figure
  • InpAccountRef — the starting balance the GA assumes for compounding position sizing. Write this number down — you will need to set MetaTrader's Strategy Tester "Initial Deposit" to this exact figure later.
  • InpSpreadPoints — set this to your actual broker's typical spread on this symbol. Underestimating spread makes the backtest look better than reality will be.

4. Click "Start Evolution." The dashboard updates live: the fitness chart shows the best and average fitness climbing generation by generation, and the "Live Population" panel shows the current top candidates. Let it run to completion — stopping early gives the algorithm less time to converge on a genuinely good combination.

5. Read the result. When evolution finishes, the "Best Strategy" panel shows the winning entry/exit/filter combination, its evolved parameters, and its backtested stats: net %, profit factor, win rate, max drawdown, and trade count. The equity curve chart shows the shape of that backtest.

6. Export the EA. Click "Export .MQ5." This writes a complete, standalone Expert Advisor to MQL5\Files\. Look for the name generated in the Expert Advisor section in toolbox and that is the name of the EA you will find in the IDE. You then open the code, copy it and paste it into a brand new indicator window, then compile it and this is your EA.

7. Compile and test. Open MetaEditor, navigate to the moved file, press F7 to compile, then open it in Strategy Tester.

How to Get the Closest Match Between Backtest and Live Results

This is the part most builders skip, and it's the difference between a strategy that "works" only in Quant Lab's dashboard versus one that behaves the same way when you actually run it.

  • Match the symbol and timeframe exactly. The strategy was evolved on one specific chart. Attaching the exported EA to a different symbol or timeframe means it's trading against different price behavior than what it was optimized for.
  • Match the date range. Quant Lab prints the exact bar range it evolved against (visible on the dashboard and in the Experts log). Set Strategy Tester's "From" and "To" dates to that same range for the most directly comparable test.
  • Match the Initial Deposit. Because position sizing compounds off the account balance, Strategy Tester's starting deposit must equal InpAccountRef exactly. A mismatch here means every lot-size calculation from trade one onward will differ from what the GA scored — and because it compounds, that gap grows with every subsequent trade rather than staying constant. The generated EA checks this on startup and prints a warning to the Journal if the balance doesn't match.
  • Use a tick model close to what the backtest assumed. Quant Lab's engine checks stop-loss/take-profit against each bar's high/low (a realistic intrabar fill), not just its close. In Strategy Tester, "1 Minute OHLC" or "Every tick based on real ticks" will get you closest to this; "Open prices only" will diverge more.
  • Set your spread input honestly. If InpSpreadPoints doesn't reflect your broker's real typical spread on that symbol, the backtest cost model won't match what you actually pay live.

Why Results Will Still Vary — and Why That's Expected, Not a Bug

Even with all of the above matched exactly, don't expect the numbers to be bit-for-bit identical between Quant Lab's internal backtest, MetaTrader's Strategy Tester, and eventual live/demo trading. Several real, unavoidable sources of variation:

  • Broker-to-broker differences. Spread, commission structure, swap rates, execution latency, and requote behavior all differ between brokers — sometimes significantly. A strategy evolved with a 20-point spread assumption will perform differently on a broker whose real spread is 8 points or 35 points.
  • Tick data granularity. Strategy Tester's synthetic tick generation (used to simulate intrabar price movement between OHLC bars) is a statistical approximation, not a perfect reconstruction of what actually happened tick-by-tick in the real market. Two different tick-generation modes in the same tester can produce slightly different fills on the same bar.
  • Slippage and requotes in live/demo trading, which no backtest — Quant Lab's or MetaTrader's — fully captures, since they depend on real-time liquidity conditions at the moment of execution.
  • Lot-size rounding. Different brokers have different minimum lot steps and maximum position sizes; Quant Lab normalizes to your connected broker's actual volume constraints, but a strategy evolved on one broker's lot step will size very slightly differently on another.

None of this means the tool is broken — it means backtesting of any kind, on any platform, from any vendor, is a model of the market, not a recording of it. The goal of matching symbol/timeframe/date range/deposit isn't to eliminate variation, it's to reduce it to the irreducible minimum so you're comparing like-for-like as closely as the platform allows.

Further Optimization You Should Do Before Trusting a Result

Treat Quant Lab's first output as a candidate, not a finished product:

  • Re-run evolution multiple times. Genetic algorithms involve randomness in initialization, mutation, and crossover — running the same settings twice can converge on different (sometimes very different) winning strategies. If a particular entry/exit combination keeps winning across several independent runs, that's a much stronger signal than a single lucky result.
  • Check out-of-sample performance, not just the in-sample fitness score. A strategy that only looks good on the exact bars it was evolved against may be overfit to noise in that specific window. Test the exported EA on a date range outside what Quant Lab trained on.
  • Vary the starting conditions. Try a longer or shorter InpHistoryBars window, a different population size, or a different symbol/timeframe entirely, and see whether similar strategy types keep emerging as winners — consistency across variations is more trustworthy than one strong run.
  • Forward-test on a demo account before committing real capital. No backtest, however carefully matched, substitutes for watching the strategy trade in real market conditions with real (if simulated) fills over weeks or months.
  • Understand what Quant Lab does not do. It runs a single in-sample/out-of-sample split. Further optimization should be done in strategy tester

おすすめのプロダクト
VWAP WAVE [Riz] - MT5 Indicator               Advanced VWAP Divergence Detection System VWAP Wave is a professional-grade Volume Weighted Average Price indicator with built-in divergence detection system. It identifies high-probability reversal and continuation signals by analyzing price-VWAP relationships across multiple timeframes.
FREE
Introduction The "Ultimate Retest" Indicator stands as the pinnacle of technical analysis made specially for support/resistance or supply/demand traders. By utilizing advanced mathematical computations, this indicator can swiftly and accurately identify the most powerful support and resistance levels where the big players are putting their huge orders and give traders a chance to enter the on the level retest with impeccable timing, thereby enhancing their decision-making and trading outcomes.
FREE
Trade Assistance AlgoMatrix v2.0 – Advanced Trade Management Utility for MetaTrader 5 Trade Assistance AlgoMatrix v2.0 is a professional trade management utility for MT5 designed for traders who want better control over positions, exits, and risk directly from the chart. Many traders spend most of their time searching for entries, but long-term consistency often depends on how trades are managed after entry. This utility was created to make that process easier by providing a structured and pract
Watermark Centralized Adds a watermark centered with the asset name and chosen period. It is possible to override the font type, font size, font color and separator character. The watermark is positioned behind the candles, not disturbing the visualization. It has automatic re-centering if the window is resized. Hope this indicator helps you, good trading ;)
FREE
Order Closer Manager for MetaTrader 5 The Order Closer Manager is a powerful and easy-to-use MetaTrader 5 (MT5) Expert Advisor designed to help traders efficiently manage their open orders. This EA is ideal for traders who want precise control over their trades with minimal manual intervention. It features an intuitive dashboard that allows for easy closing of positions, applying breakeven, and other order management functionalities. The EA supports FIFO and LIFO methods for added flexibility, m
GDS Renko Pip ST Chart - Pip-Based Renko Chart Indicator for MetaTrader 5 GDS Renko Pip ST Chart is a pip-based Renko chart indicator for MetaTrader 5. It helps traders build and study cleaner Renko price movement using a practical fixed pip or point-based brick structure. This tool is designed as a Renko chart foundation for manual analysis. It does not predict the market, does not generate buy or sell signals and does not decide whether a trade should be opened. Gold advisor   Golden Delta |
FREE
VWAP Fibo Bands RSJ is an indicator that traces the lines of the daily VWAP and from it creates bands using Fibonacci proportions. This spectacular indicator creates 10 band levels through the selected VWAP period using Fibonacci ratios. It is fantastic how the prices respect each level of the bands, where it is possible to realize that almost every time the price closes above / below a level of the bands he will seek the next one. If close above will seek to reach the level above and if close
FREE
Haven Stop Loss Hunter 2.0 - 流動性分析の新たな視点 大型アップデート — Haven Stop Loss Hunter 2.0 が登場しました!これは、流動性エリアやフェイクブレイクアウト(Sweeps)を分析するためのプロフェッショナル向けツールであり、より柔軟で機能的に進化しました [1]。今回のバージョンでは、マルチタイムフレーム(MTF)分析と高度なアラートシステムを搭載し、チャートを頻繁に切り替えることなく、スマートマネー・コンセプト(SMC)に基づく大口投資家の意図を効率的に追跡できるように設計されています [1]。 私の他の製品はこちら - > こちらをクリック 。 流動性の掃討(リクイディティ・スウィープ)とは、大口市場参加者が個人トレーダーのストップロスを狙う動き(ストップ狩り)を指します。バージョン2.0では、この重要な価格変動を現在の作業チャートだけでなく、上位足(H1、H4、D1)でも同時に監視できるため、市場環境をより深く理解することができます [1]。 バージョン2.0の主な新機能 マルチタイムフレーム(MTF)分析 — 上位時
FREE
MetaTrader 5 用 SuperTrend AI Clustering エキスパートアドバイザー SuperTrend AI Clustering は、変化するマーケット環境に合わせて自動調整されるトレンドフォロー型の MetaTrader 5 用エキスパートアドバイザーです。固定の SuperTrend 乗数を 1 つだけ使うのではなく、複数の係数を同時に評価し、それぞれの直近の成績を測定し、K-Means クラスタリングを適用したうえで、現在もっともパフォーマンスが良い係数グループを選択します。これにより、ボラティリティの regime や相場構造の変化に対応できるダイナミックな SuperTrend モデルが構築され、頻繁な手動再設定なしで環境に順応することができます。 本システムは、適応性・体系的なリスク管理・チャート上の透明な情報表示を重視しながら、トレンドフォローを自動化したいトレーダー向けに設計されています。FX 通貨ペア、貴金属、株価指数、暗号資産、商品など、MetaTrader 5 上で利用可能なシンボルに対応しています。エキスパートアドバイザーは複数の時間足
Renko Maker
Aleksandr Slavskii
5 (1)
Это DEMO версия Renko Maker PRO  к сожалению правила маркета не позволили указать это в названии. Почему то проверка маркета запрещает в названии слово DEMO. Демо версия строит ренко бары только на основе EURUSD из 1000 последних минутных баров. Revolution Renko Maker PRO — Инновационный Конструктор Ренко Графиков для MetaTrader 5   Создавайте идеальные ренко-бары с сохранением тиковых данных и реальных объемов — теперь с полной поддержкой индикаторов, советников и тестера стратегий!  
FREE
Elevate Your Trading with Advanced Anchored Volume Weighted Average Price Technology Unlock the true power of price action with our premium Anchored VWAP Indicator for MetaTrader 5 - the essential tool for precision entries, strategic exits, and high-probability trend continuation setups. Write me a DM for a 7 day free trial.  Anchored VWAP Plus gives traders unprecedented control by allowing custom anchor points for Volume Weighted Average Price calculations on any chart. With support for 4 sim
FREE
Fvg Edge
Ahmad Meftah Abdulsalam Alawwami
5 (3)
FVG Smart Zones – 無料版 MetaTrader 5 (MT5)用 公正価値ギャップ(FVG)検出インジケーター ただのランダムなインジケーターではなく、 本格的なトレーディングツール をお探しですか? FVG Smart Zones – 無料版 は、公正価値ギャップ(FVG)を自動で検出し、チャート上に 高確率トレーディングゾーン をハイライトして、プロフェッショナルな市場の洞察を提供します。 以下のトレーダー向けに設計されています: スマートマネーコンセプト (SMC) ICTトレーディングコンセプト プライスアクション (Price Action) 需給分析 (Supply & Demand) 機関投資家向けトレーディング戦略 このインジケーターは、 価格が反応しやすいゾーン に集中するのを助けます。 主な機能 スマートゾーン検出 上昇・下降FVGの自動検出 クリーンでプロフェッショナルなビジュアルゾーン 弱い、または関連性の低いギャップを除去するインテリジェントフィルター 高度な確認機能 上位時間軸(HTF)
FREE
The Expert Advisor is used to create Renko chart, realtime updates, easy for technical analysis. Backtest your strategy with all indicators with Renko chart in MetaTrader 5. Parameters Box Size : input the number of box size. Show Wicks : if true , draw a candle with high/low. History Start: input the date to creat first candle. Maximum Bars: limit number of bars on renko chart How to use Attach the Expert Advisor to a chart (timeframe M1), for which you want to create a renko. Input box size a
Master Editionは、ボリュームとマネーフローの視点を通じて市場構造を可視化するために設計されたプロフェッショナルグレードの分析ツールです。標準のボリュームインジケーターとは異なり、このツールはチャート上に日足ボリュームプロファイルを直接表示し、価格発見がどこで行われたか、そして「スマートマネー」がどこに位置しているかを正確に確認できます。 このMaster Editionは、明確さとスピードを考慮して設計されており、ロード時にチャートレイアウトを即座に美化するユニークな自動テーマ同期システムを備えています。 主な機能: 真のマネーフロー計算: 標準のティックボリュームを超えます。「Use Money Flow」を有効にすると、ボリュームは価格によって重み付けされ、特定の価格レベルでの実際の資本コミットメントが明らかになります。 バリューエリア (VA) の可視化: バリューエリア(デフォルトではボリュームの70%)を自動的に計算します。 VA Fill: コントロールゾーンを即座に識別するために、バリューエリアの背景をシェーディングします。 主要レベル: コントロールポイン
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モジュールは取引実行前の第二承認レイヤーとして機能します。これは予測ツールではなく、あくまで執行フィルターとして設計されています。すべての取引は構造化ロジックとインテリジェントな検証プ
The POC_Levels indicator calculates and displays the 3 most frequently occurring price levels (Points of Control – POC) based on historical candles. It is useful for identifying areas of high market interest (like support/resistance zones) across any timeframe. How It Works The indicator analyzes the last LookbackBars candles. It counts how many times each price level (based on the selected price type) appears. Then it selects the top 3 most frequent prices and draws horizontal lines at those l
FREE
Mini Charts MT5
Sergey Efimenko
4.79 (24)
インジケーターは、任意の時間枠からの任意のシンボルの最小化されたチャートを表示します。表示されるチャートの最大数は28です。チャートはメインウィンドウと下部ウィンドウの両方に配置できます。 2つの表示モード:キャンドルとバー。表示されるデータ(バーとキャンドル)の量とチャートのサイズは調整可能です。 ミニチャットを使用するには、最初に目的のインジケーターを通常のチャートに配置し、それをテンプレートとして保存し、適切なパラメーターを使用してミニチャートのテンプレートを適用する必要があります。たとえば、最初のチャートでは、パラメータは「テンプレート名1」と呼ばれます。 パラメーター: Charts base corner-ベースコーナー Charts subwindow number-サブウィンドウの番号 Charts X/Y shift-開始X / Yオフセット Charts width/height-ウィンドウの幅/高さ Space X/Y between charts-チャート間のX / Y距離 Charts scale-スケール Show date/price scale-時間/価
FREE
Modern Dark Chart Theme for MT5 Upgrade your MetaTrader 5 chart into a clean, dark, professional trading workspace. Your chart is your trading office. It is where you analyze the market, test Expert Advisors, review setups, record videos, share screenshots, and make trading decisions. If your MT5 chart looks old, bright, noisy, or unprofessional, your trading environment can feel distracted before you even start your analysis. Modern Dark Chart Theme for MT5 helps you create a cleaner, darker,
FREE
VWAP Edge Pro
Krzysztof Karleszko
4.5 (2)
VWAP Edge Pro is a Volume Weighted Average Price indicator for MetaTrader 5 that combines session VWAP, rolling VWAPs, standard deviation bands, daily volume profile, and a live signal reading panel in a single indicator. VWAP (Volume Weighted Average Price) calculates the average price of an instrument weighted by volume. It resets at the start of each session and is used by many intraday traders as a reference for fair value. Price above VWAP suggests buyers are in control. Price below VWAP s
FREE
This indicator creates a Renko-based custom symbol in MetaTrader 5. Renko charts are built using price movement only, not time, making them useful for analyzing trends and filtering noise. Features Customizable brick size in points. Option to calculate brick size using ATR (adaptive). Ability to show or hide wicks. Creates and updates a custom Renko chart symbol. Automatically opens the chart window (optional). Maintains a limited bar history for performance. Inputs BrickSizePoints – brick size
FREE
Candle Perspective Structure Indicator MT5 is a simple indicator that defines and displays the candlestick structure of the market. This indicator will suit both experienced traders and beginners who find it difficult to follow the structure visually. If you want to see more high-quality products or order the development/conversion of your own products, visit my partners' website: 4xDev Get 10% OFF on manual strategies automation services or indicator development/conversion services at 4xDev
FREE
MQL5に投稿する用の、短く実用的な日本語版の説明です: Dynamic Market Profile (DMP) — カスタム・ボリュームプロファイル Dynamic Market Profile は、チャート上の任意の場所の出来高(ボリューム)を、手動かつ瞬時に分析できるインジケーターです。日足や週足といった固定のプロファイルに縛られる必要はありません。分析したい特定の値動き、レンジ(保ち合い)、トレンドの波をピンポイントで自由に選択できます。 インタラクティブな長方形(レクタングル)を使って、最大 5つの独立したエリアを同時に チャート上に描画できます。 普段のトレードでの使い方 エリアを作成: キーボードの 「1、2、3、4、5」 のいずれかを押すか(または画面上のボタンをクリック)、長方形をチャートに表示させます。 チャート上で調整: 長方形の端をドラッグして、分析したい正確な「期間」と「価格帯」を囲みます。 瞬時に分析: インジケーターがそのエリアのボリュームプロファイルを生配信のようにリアルタイムで計算・描画します。 特定のプロファイルを消したい場合は、その長方形を削
FREE
GDS Renko Ghost Free Renko Market Memory Visualization Indicator for MetaTrader 5 GDS Renko Ghost is a free MetaTrader 5 indicator for traders who use Renko charts and want to study how similar Renko structures behaved in the past. The indicator visualizes historical Renko memory: similar past structures, continuation paths, consensus behavior and uncertainty zones. It does not give buy or sell signals. It does not predict price movement. It is a visual research and context tool for manual Renko
FREE
Quick Trade Manager (QTM) は、MT5チャート上で迅速かつ直感的なトレードを可能にするパワフルなツールであり、カスタム(合成)銘柄にも完全対応しています。 QTMは、ワンクリック取引をさらに使いやすくし、チャート上での迅速な取引機能を拡張します。設定されたリスク率に基づいてポジションサイズを自動計算できます。また、すべてのカスタム(合成)シンボルを完全にサポートしています。例えば、QTMは秒足チャートだけでなく、Renkoチャートやその他の任意のカスタムタイプのチャートでの取引にもご利用いただけます。 こちらもお役に立つかもしれません RS Trade Copier - 本格的なグラフィカルインターフェースを備えた超高速ローカル取引コピー機です。設定は約1分で完了し、口座番号を手動で入力する必要はありません。MT5とMT4間のコピーをあらゆる組み合わせでサポートします。 QTMの主な機能 クイックトレードパネル QTMを起動すると、マーケット注文(Buy/Sell)を行うための便利なパネルがチャート上に表示されます。このパネルはMT5の標準クイックトレードパ
FREE
This utility EA will display simple renko, hence the name essential renko. The renko will be shown in a new tab and using custom symbol. Please do note (especially for those who new to Renko), that Renko does not follow timeline as it will follow price movement. That's why it has a lot of potential where you can attach any EA that you want and use any custom indicator in this new custom symbol for renko. Always use M1 timeframe. Most of the time you don't need to change anything. But if you d
FREE
Bohemia Gold MT5
Vladislav Taska
4.75 (4)
Bohemia Gold MT5 is  Trend & Volatility EA trading system designed specifically for Gold (XAUUSD) . It combines higher-timeframe trend filtering , trend detection , volatility-based SL management , and advanced trade management to adapt market conditions. It uses style logic focused on trend strength, volatility, and capital protection. NOTE:   Based on backtests, I found better trading results with the following setup: D1/H4/H2 (Trend/ADX/ATR & trade). The SET file can be downloaded here … bohe
FREE
Barak Mega EA
Jorge Jovanny Hernandez Maldonado
BARAK MEGA EA  is a fully automated trading Expert Advisor designed for traders who demand total control, strategic flexibility, and advanced risk management within a single system. This EA functions as a true strategy builder , allowing you to combine multiple technical indicators and custom rules to adapt to any market, asset, or timeframe. Unlike traditional robots with fixed logic, BARAK MEGA EA features a modular architecture where every component can be independently enabled, disabled, and
FREE
価格でTPとSLを設定 – MT5用自動オーダーモディファイア すべての取引で正確なTPおよびSL価格を自動設定 ️ すべての通貨ペアとEAに対応、シンボルまたはマジックナンバーでフィルタリング可能 このエキスパートアドバイザーは、直接の価格値(例:EURUSDの1.12345)を使用して、取引に正確なテイクプロフィット(TP)とストップロス(SL)レベルを設定および適用します。ポイントもピップスも不要。すべての注文またはシンボル・マジックナンバー別に、シンプルで正確なトレード管理を実現します。 主な機能: 価格を指定して即座にTPおよびSLを変更 すべての注文、現在のシンボル、または特定のマジックナンバーに適用 ️ 0を入力してTPまたはSLを削除 任意のチャートにアタッチすると完全自動で動作 すべての取引商品に対応 おすすめ対象: 素早くTP/SLをコントロールしたい手動トレーダー デフォルトの終了ロジックを上書きしたいEAユーザー 複数のポジションを管理するトレーダー 質問や機能のアイデアはありますか?
Designed to pass the FTMO Challenge. I recommend using under 0.2 lots for a $10K account and under 1 lot for a $100K account. The settings are RSI Length 26, Signal Length 10, RMA, HLCC4. Algorithm Introduction Strategy Description A rules-based XAUUSD trading system that combines key price level detection with trend-following execution. Core Logic: Identifies structural support/resistance zones and confirms directional entries using momentum and ATR volatility filters to control noise during
This Volume Delta Profile is an advanced MetaTrader 5 indicator that visualizes   volume delta (order flow imbalance)   using a volume profile-style histogram. It shows the difference between buying and selling pressure at specific price levels, helping traders identify supply and demand zones. This indicator provides a unique perspective on market dynamics by visualizing the imbalance between buying and selling pressure, offering insights beyond traditional volume analysis. Core Concept Positiv
このプロダクトを購入した人は以下も購入しています
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Smart Trend Trading System は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Smart Trend Trading System を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Smart Trend のシグナルを自動売買に変えることができます。 Smart Trend Trading System は、リペイントなし、再描画なし、遅延なしの完全なトレーディングシステムです。よりクリーンなシグナル、より明確なトレンド方向、そしてより整理された取引方法を求めるトレーダー向けに作られています。   [User Manual]   ,  [PDF]  ,   [Installation manual]   and  [Online course] このシステムは、トレンド検出、反転ゾーン、Smart Cloud、トレーリングス
Trend Sniper X
Sarvarbek Abduvoxobov
5 (12)
Trend Sniper X は、MetaTrader 5 用のマルチタイムフレーム・トレンドフォロー・インジケーターです。トレーダーがトレンドの方向性と反転ポイントを明確かつ正確に特定できるよう支援します。 価格情報: 現在の価格はキャンペーン価格であり、今後のアップデートや新機能のリリースに伴い変更される可能性があります。 Code2Profit チャンネル マルチタイムフレーム分析で相場をマスターしよう! Trend Sniper X で勝率を最大化する方法:重要なルールとセッションのコツ 技術仕様 プラットフォーム MetaTrader 5 インジケータータイプ マルチタイムフレーム・トレンドインジケーター 操作タイムフレーム あらゆるチャートタイムフレームに対応。個別に選択可能な上位タイムフレーム (M1–MN1) を搭載 主要銘柄 FX、ゴールド (XAUUSD)、およびその他のCFD 推奨口座 あらゆる口座タイプに対応 視覚化 色分けされたトレンドローソク足 (買い/売り/弱気/変化) + 買い/売り矢印 追加モジュール セッション市場ボックス (シドニー、東京、ロンドン
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
SuperScalp Pro
Van Minh Nguyen
4.63 (32)
SuperScalp Pro – プロフェッショナル多層コンフルエンス・スキャルピングシステム SuperScalp Pro は、複数のコンフルエンスを組み合わせたプロフェッショナル向けスキャルピングシステムです。より高い確率のトレードチャンスを見つけられるよう設計されており、明確なエントリー確認、ATRに基づくStop LossとTake Profit、さらにXAUUSD、BTCUSD、主要なFX通貨ペアに対応した柔軟なシグナルフィルター機能を提供します。 完全なドキュメントは製品ブログでご覧いただけます: [User Guide] SuperScalp Pro Auto Trader EA による自動売買が利用可能です: [Auto Trader] SuperScalp Pro の公式 MQL5 チャンネルをフォローして、製品のアップデート、ニュース、最新のお知らせをご確認ください: [Official Channel] SuperScalp Pro は、Supertrend、VWAP、EMA、RSI、ADX、出来高分析、ボリンジャーバンド、MACDダイバージェンスを組み合わ
Welcome to ENTRY IN THE ZONE AND SMC MULTI TIMEFRAME Entry In The Zone and SMC Multi Timeframe is a real-time market analysis tool based on Smart Money Concepts (SMC), designed to analyze market structure, price direction, and key trading zones. It supports both Single-Timeframe Analysis and Multi-Timeframe Analysis, providing a clearer view of the overall market structure across multiple timeframes, with real-time BUY / SELL signals that do not repaint. It is designed to help filter trading opp
GoldenX Entryは、MT5向けのインジケーターであり、適応型Smart Entry Trendアルゴリズム、シグナルスコアリングシステム、マーケットレジーム検出機能、およびボラティリティフィルターを備えています。各シグナルには、計算されたエントリーレベル、3つのテイクプロフィット(TP1、TP2、TP3)、およびストップロスレベルが含まれます。本インジケーターは、異なる市場環境に適応するために設計された複数の分析レイヤー上に構築されており、マルチレイヤー分析システムと内蔵オプティマイザーおよび統計トラッキングシステムを組み合わせています。リスク・リワード(RR)指標および過去のトレード履歴に基づく定量分析を提供します。 使い始めは簡単です — 選択した時間足でオプティマイザーを実行し、そのままチャート上でインジケーターを使用します。 コア機能 GoldenX Entryは、シグナルエンジンとトレード管理機能、そして過去統計トラッキングを1つのチャートに統合しています: - 内蔵オプティマイザー: オプティマイザーはチャート上でワンクリックで実行できます。200通りのパラメー
まず正直に言いましょう。 どんなインジケーターも、それ単体であなたを利益化させることはできません。もしそう言う人がいるなら、それは夢を売っているだけです。完璧な売買シグナル(矢印)を表示するインジケーターは、いくらでも“完璧に見せる”ことができます。正しい過去の区間を拡大して、勝ちトレードだけを切り取ればいいだけです。私たちはそれをしません。 SMC Intraday Formula はツールです。 市場構造を読み取り、最も高い確率の価格ゾーンを特定し、今この瞬間のスマートマネーの痕跡をシンプルな言葉で正確に示します。最終判断はあなたが行います。トレードを実行するのもあなたです。しかし今は「希望」ではなく「精度」でエントリーできます。 私たちはこのインジケーターを、ゴールド(XAUUSD)および主要FX通貨ペアで約3年間、日々のスキャルピングに使用してきました。M1、M5、M15、M30の主要ツールです。これは未来を予測しようとするのではなく、今まさに形成されている高確率セットアップを示し、その理由を説明します。 他のすべてのインジケーターと何が違うのか? ほとんどのトレーディングイ
Zoryk Gold
Reda El Koutbane
5 (6)
割引は 24 時間後に終了します — 次の価格は$ 69 ZORYK — MetaTrader 5専用 XAUUSDシグナル・トレードプランニングシステム このような経験はありませんか。 ゴールドを分析し、エントリーを待ち、ようやくポジションを持った直後に価格が逆方向へ動く。 早すぎる決済をしてしまったり、Stop Lossを動かしたり、数秒迷っている間にチャンスを逃したりする。 その後、相場は自分が最初に予想していた方向へ進み、目標へ到達する。 問題は常に方向判断ではありません。 本当の問題は、明確な計画がなかったことです。 どこでエントリーすべきか。 どこでトレードの前提が無効になるのか。 近い利益を確保すべきか、より大きな値動きを待つべきか。 現在のsetupが本当に強いのか、それとも無理にトレードを探しているだけなのか。 ゴールドは非常に速く動きます。 正しい分析でも、明確なプランがなければ数秒で悪い判断に変わることがあります。 ZORYKは、その問題を解決するために開発されました。 ZORYKとは ZORYKは、MetaTrader 5とXAU
時折、私自身もこのシステムを使って取引を行っています。 実口座での私の手動による「BOMBER」トレードをぜひご評価ください - LIVE SIGNAL このインジケーターを購入された方には、以下の特典を 無料 で提供しています: 各トレードを自動で管理し、ストップロスとテイクプロフィットを設定し、戦略ルールに基づいてポジションを決済する補助ツール 「Bomber Utility」 様々な銘柄に合わせたインジケーターの設定ファイル(セットファイル) 「最小リスク」、「バランスリスク」、「待機戦略」 の3つのモードで使用できる Bomber Utility 用の設定ファイル このトレーディング戦略をすぐに導入・設定・開始できる ステップバイステップのビデオマニュアル ご注意: 上記の特典を受け取るには、MQL5のプライベートメッセージシステムを通じて販売者にご連絡ください。 オリジナルのカスタムインジケーター 「Divergence Bomber(ダイバージェンス・ボンバー)」 をご紹介します。これは、MACDのダイバージェンス(乖離)戦略に基づいた 「オールインワン」型のトレーディン
この製品は 2026 年の市場向けに更新され、最新の MT5 ビルドに最適化されています。 価格更新のお知らせ: Atomic Analyst は現在 $99 で提供されています。 次の 30 件の購入 後、価格は $199 に上がります。 特別オファー: Atomic Analyst を購入後、私にプライベートメッセージを送ることで、 Smart Universal EA を無料 で受け取り、Atomic Analyst のシグナルを自動売買に変えることができます。 Atomic Analyst は、リペイントなし、再描画なし、遅延なしの Price Action トレーディングインジケーターで、手動取引、シグナルの明確化、EA 自動化のために設計されています。 User manual: settings, inputs and strategy.   &   User Manual PDF . 価格行動、強さ、モメンタム、マルチタイムフレーム方向、高度なフィルターを分析し、トレーダーがノイズを減らし、弱いセットアップを避け、より構造化された取引判断を行えるようにします。 このイ
SUPERHEROインジケーターは、「オールインワン」方式に基づいて設計された多通貨対応の取引システムです。このインジケーターは市場を独自に分析し、取引の開始および終了のタイミングに関するシグナルを提供します。ストップロス注文とテイクプロフィット注文を使用します。R:R比率は1:1です。 私は時折、このシステムのシグナルに基づいて自ら取引を行いますが、その結果は以下の通りです— ライブシグナル このシステムはスマートフォンにプッシュ通知を送信できるため、PCに縛られることなく「外出先」からでも取引を行うことができます。自己勘定取引を行う企業に最適です。 すべてのお客様への特典: このインジケーターをご購入いただいたすべてのお客様に、私から特別なユーティリティをプレゼントいたします。その内容は以下の通りです: 自動的にストップロス注文とテイクプロフィット注文を発注します 価格が目標水準に達すると、自動的に取引を決済します 指値注文による取引に対応しています 平均化取引モードに対応しています この優れた、しかも非常に便利なユーティリティをプレゼントとして受け取りたい場合は、SUPERHER
伝説が帰ってきました:Entry Points Pro 10。 MQL5 Marketのトップ3に3年間入り続けた伝説的インジケーターの再始動です。 2つのバージョンで合計589件の高評価レビュー、毎日数千人のトレーダーが実際のトレードに使用し、デモのダウンロードは31,000件以上   MT4+MT5 。 私はこの5年間に寄せられたレビューをすべて読み、約束を並べる代わりに、その答えをバージョン10に組み込みました。1999年から相場に携わり、 誠実さ、自らの評判、そして顧客を大切にする 作者による製品です。 Entry Points Proのエントリーシグナルは、リペイント(再描画)を一切行いません。 そして今回初めて、これは作者の言葉ではなく検証可能な事実になりました。確定シグナルはローソク足の終値確定後にのみ表示され、自動テストで リペイントはゼロ と確認されています(EURUSD、XAUUSD、BTCUSDで2,486,568回の不変条件チェック、違反0件)。検証方法は公開されており、ストラテジーテスターでご自身で再現できます。 ご購入後は、必ずすぐにダイレクトメッセージでご
M1 SNIPER は使いやすいトレーディングインジケーターシステムです。M1時間足向けに設計された矢印インジケーターです。M1時間足でのスキャルピングのためのスタンドアロンシステムとして、また既存のトレーディングシステムの一部としても使用できます。このトレーディングシステムはM1時間足での取引に特化して設計されていますが、他の時間足でも使用できます。元々、この手法はXAUUSDとBTCUSDの取引用に設計しましたが、他の市場においても役立つと考えています。 インジケーターのシグナルは、トレンドの方向と逆方向に取引できます。インジケーターのシグナルを利用して両方向に取引するのに役立つ特別な取引テクニックをご紹介します。この手法は、特別な動的なサポートとレジスタンスの価格帯を利用することに基づいています。 ご購入後、M1 SNIPER矢印インジケーターをすぐにダウンロードできます。さらに、M1 SNIPERツールのすべてのユーザーに、以下のスクリーンショットに表示されているApollo Dynamic SRインジケーターを無料で提供しています。この2つのインジケーターを組み合わせることで
Gann Made Easy   は、ミスター・ギャンの理論を使用した取引の最良の原則に基づいた、プロフェッショナルで使いやすい外国為替取引システムです。 W・D・ガン。このインジケーターは、ストップロスとテイクプロフィットレベルを含む正確な買いと売りのシグナルを提供します。 PUSH通知を利用して外出先でも取引可能です。 ご購入後、取引方法の説明と優れた追加インジケーターを無料で入手するには、私にご連絡ください! おそらく、ギャンの取引手法についてはすでに何度も聞いたことがあるでしょう。通常、ギャンの理論は初心者のトレーダーだけでなく、すでにある程度の取引経験がある人にとっても非常に複雑なものです。なぜなら、ギャンの取引手法は理論的にはそれほど簡単に適用できるものではないからです。私はその知識を磨き、最良の原則を私の外国為替インジケーターに組み込むために数年を費やしました。 このインジケーターは非常に簡単に適用できます。必要なのは、それをチャートに添付し、簡単な取引推奨事項に従うだけです。このインジケーターは常に市場分析の仕事を行い、取引の機会を探します。適切なエントリーポイントを検
FiboSniper Pro – プロフェッショナル・マルチフィルター Fibonacci Grid トレーディングシステム FiboSniper Pro は、Fibonacci Envelopes と ADX、EMA、RSI、ATR、時間フィルターなどの複数の市場確認条件を組み合わせた、高度なテクニカル・トレーディングインジケーターシステムです。価格構造、トレンド、モメンタム、ボラティリティを総合的に分析することで、より選択的で質の高いエントリー機会を特定できるよう支援し、さらに ATR に基づく Stop Loss と Take Profit の自動レベルを提供することで、体系的なトレード管理を可能にします。 期間限定特別オファー:$59 通常価格:$99 購入後、Auto Trader X を使用して FiboSniper Pro のシグナルを自動売買する方法について、手順をご希望の場合は私までご連絡ください。 Auto Trader X で FiboSniper Pro のトレードシグナルを自動化: [Auto Trader X] ユーザーガイドと推奨セットファイルはこちら:
UZFX {SSS} スキャルピング・スマートシグナル v4.0 MT5は、変動の激しい市場において正確かつリアルタイムのシグナルを求めるスキャルパー、デイトレーダー、スイングトレーダー向けに設計された、リペイントのない高性能な取引インジケーターです。(UZFX-LABS)によって開発されたこのインジケーターは、価格行動分析、トレンド確認、スマートフィルタリングを組み合わせることで、すべての通貨ペアおよび時間軸において、高確率の売買シグナル、警告シグナル、トレンド継続の機会を生成します。 トレードの判断に迷うのはもうやめましょう。明確さ、正確さ、そして規律ある市場執行を求めるトレーダーのために設計された、体系的なシグナルシステムに従い始めましょう。 私のおすすめ* 最適な時間足:15分足以上。 {H1} が私のお気に入りです。そして、その成果は驚異的です…!! 主な機能の更新 • 自動売買シグナル検出 • 高度な反転認識ロジック • 市場反転の可能性に先立つ早期警告シグナル • トレンド継続確認シグナル • エントリー、ストップロス、TP1、TP2、TP3レベルを備えた組み込み型
トレンドキャッチャーインジケーター トレンドキャッチャーインジケーターは、開発者独自の適応型トレンド分析指標を組み合わせることで、市場価格の動きを分析します。短期的なノイズを除去し、根底にあるモメンタムの強さ、ボラティリティの拡大、価格構造の挙動に焦点を当てることで、真の市場方向性を特定します。また、移動平均線、RSI、ボラティリティフィルターなどの平滑化およびトレンドフィルタリング機能を備えたカスタマイズ指標も使用します。 実際の運用状況のモニタリングやその他の製品については、こちらをご覧ください: https://www.mql5.com/en/users/mechanic/seller ご注意ください。私はTelegramでEAや設定を販売していません。詐欺です。すべての設定はブログで無料で公開しています。 重要!ご購入後すぐにご連絡ください。手順とボーナスをお送りします!
Crystal Heikin Ashi Signals - Professional Trend & Signal Detection Indicator Advanced Heikin Ashi Visualization with Intelligent Signal System for Manual & Automated Trading Final Price: $149 ---------> Price goes up $10 after every 10 sales . Limited slots available — act fast . Overview Crystal Heikin Ashi Signals is a professional-grade MetaTrader 5 indicator that combines pure Heikin Ashi candle visualization with an advanced momentum-shift detection system. Designed for both manual traders
Power Candles V3 - 自己最適化型強弱インジケーター Power Candles V3は 、通貨や銘柄の強さを、適用されたすべてのチャート上で実行可能なトレードプランに変換します。単にローソク足を色分けするだけでなく、バックグラウンドでリアルタイムの自動最適化を実行し、目の前の銘柄に対して最適なストップロス、テイクプロフィット、およびシグナルの閾値を提示します。ワンクリックで実取引に適用でき、エントリーポイント、ストップロス、テイクプロフィットのラインが正確な価格位置にチャート上に表示され、方向性を示すアラートがリアルタイムで発動します。 このツールは、Stein Investmentsのエコシステムの一部です。  18種類以上のツールをすべて閲覧し、AIを活用したセットアップの推奨事項を入手し、  https://stein.investments でコミュニティに参加しましょう クローズしたバーごとに3,000回以上のトレードシミュレーション。9つの強さの状態。2つの戦略を並行してテスト。勝率の高い設定をワンクリックで適用。 なぜこれが必要なのか ほとんどの強
AXIOM MATRIX MT5 ローンチ価格:$99 Axiom Matrix はローンチ価格 $99 でご利用いただけます。 最初の30件の購入後、価格は $199 に上がります。 ご購入後、手順のご案内と限定ギフトボーナスの受け取りのために、直接DMをお送りください。 Axiom Matrix は、MetaTrader 5 用のプロフェッショナルなマルチシンボル・マルチタイムフレーム市場スキャナー兼意思決定ダッシュボードです。 Market Watch をスキャンし、複数の時間足を分析し、複数のエビデンスエンジンを読み取り、最も強いチャンスを比較し、1つのクリーンなマトリックスダッシュボード内で最適な BUY、SELL、WAIT、またはブロック状態を表示します。 私が Axiom Matrix を作った理由は、市場スキャンという重い作業を代わりに行ってくれる1つのツールが欲しかったからです。 RSI だけを確認したくありませんでした。 次に MACD だけ。 次に移動平均線。 次に出来高。 次にボラティリティ。 次にサポートとレジスタンス。 そして、1つのトレードアイデアを作るた
GEM Signal Pro GEM Signal Pro は、MetaTrader 5 向けのトレンドフォロー型インジケーターです。より明確なシグナル、より整理されたトレードセットアップ、そして実用的なリスク管理をチャート上で確認したいトレーダーのために設計されています。 単純な矢印だけを表示するのではなく、GEM Signal Pro はトレード全体の考え方を、より見やすく分かりやすい形で表示します。条件が確認されると、インジケーターはエントリー価格、ストップロス、利確目標をチャート上に表示し、トレードセットアップをより効率的に確認できるようにします。 動作の仕組み このインジケーターは、まず内部ロジックに基づいて有効なシードシグナルを検出します。 確認条件が満たされると、GEM Signal Pro はチャート上に完全なセットアップを表示します。これにより、トレーダーはトレード構造をより明確に把握し、手作業による分析を減らすことができます。 チャート上のトレードレベル 確認済みシグナルに対して、GEM Signal Pro は以下を表示できます。 エントリー価格 ストップロス テ
KURAMA GOLD SIGNAL PRO(MT5版)— 7層フィルター・自動TP/SL・品質スコア・サイン履歴保存搭載 XAUUSD完全トレードシステム リアルタイムでリペイントしません。サインが出た瞬間、矢印・エントリー・TP・SLはその場で固定され、後から動きません。あなたがトレードするのは、この「リアルタイムで出たサイン」です。さらにv7.20では、実際に通知されたサインを自動保存し、再起動後もそのまま復元します。 購入者限定特典 買い切りライセンスをご購入いただいた方に、AI Zone Radar($59相当)+完全PDFマニュアルを無料プレゼント。本体価格に$59相当の特典が付いてきます。購入後にMQL5でメッセージをお送りください。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 ゴールドトレーダーのコミュニティで実際に使用され、精度と使いやすさで高く評価されています。 あな
現在33%オフ 初心者にもエキスパートトレーダーにも最適なソリューション このインジケーターは独自の機能と新しい公式を多数内蔵しており、ユニークで高品質かつ手頃な取引ツールです。このアップデートでは、2つの時間枠ゾーンを表示できるようになります。より長いTFだけでなく、チャートTFとより長いTF(ネストゾーンを表示)の両方を表示できます。すべてのSupply Demandトレーダーの皆さんのお気に召すはずです。:) 重要情報の公開 Advanced Supply Demandの可能性を最大化するには、 https://www.mql5.com/ja/blogs/post/720245 にアクセスしてください。   エントリーまたはターゲットの正確なトリガーポイントを正確に特定できれば取引がどのように改善されるか想像してみてください。新しい基盤となるアルゴリズムに基づいて構築されているため、買い手と売り手の間の潜在的な不均衡をさらに簡単に特定できます。これは、最も強い需要と供給のゾーンと、過去のパフォーマンス(古いゾーンを表示)がグラフィカルに表現されるためです。これらの機能は、最適な
Smc Pro ToolKit
Talal N Z Aljarusha
5 (10)
SMC PRO TOOLKIT — SMART MONEY ANALYSIS & STRUCTURED TRADE PLANNING SMC Pro ToolKit is a professional Smart Money Concepts analysis workspace for MetaTrader 5. It combines market structure, multi-timeframe analysis, institutional price zones, setup evaluation, confirmation tools, volume context, alerts, and risk planning inside one organized chart environment. One workspace. Multiple layers of confirmation. One structured trading plan. OPEN COMPLETE USER GUIDE MULTI-CONDITION SETUP ENGINE At
SkyHammer Signal Pro Entry、SL、TP レベルを固定表示する、プロ仕様のノーリペイント・トレンドシグナルインジケーター SkyHammer Signal Pro は、明確で固定され、検証可能なシグナルを求めるトレーダー向けに設計された、構造的なトレンド・モメンタム系シグナルインジケーターです。 特に M1 と M5 などの短期時間足で最も効果を発揮します。 このインジケーターは、天井や底を予測するためのものではありません。シグナルを出す前に、確認された市場構造、トレンド方向、モメンタムの強さ、健全なボラティリティ、そしてターゲットまでの十分な値幅を確認します。 主な機能 固定シグナルメカニズム シグナルが確認されると、矢印、Entry、Stop Loss、TP1、TP2 の各レベルはチャート上に永久的に固定されます。 その後のローソク足の動きによって、シグナルが消えたり、移動したり、変更されたりすることはありません。 これにより、トレーダーは各シグナルを明確に確認でき、リアルタイム相場中にシグナルが消えるという一般的な問題を避けることができます。 完全な過去シ
Ace Trend
Mikhail Sergeev
5 (3)
私たちはあなたにトレンド取引の世界でゲームのルールを変える革命的な指標を提示します。 指標は、パフォーマンスを再考し、前例のない高さにあなたの取引経験を高めるように設計されています。 私たちの指標は、競合他社とは一線を画す高度な機能のユニークな組み合わせを誇っています。 "実質の価格設定要因"の先端技術は最も困難で、揮発市況の最高の安定性を保障する。 不安定なパターン、壊れた指標に別れを告げ、意識的で制御された取引を歓迎します。 指標は単なる美しい絵ではありません! 指標は、トレーダーの側にオッズをシフトし、それによって利益を得る必要があります。 インジケータ信号(完全自動モード)に基づいて取引結果に慣れる: https://www.mql5.com/ja/signals/2339244 AceTrendは、rbtiバージョンによるトレンド指標のランキングで第一位にランクされています。AceTrend-取引における最大の収益性と制御。 私たちの指標は、歴史ではなく、現在の市場相場に基づいて収益性を強調しています。 革命に参加-あなたの取引経験の可能性のロックを解除! インジケーターは、
Crystal Quantum Pro
Muhammad Jawad Shabir
5 (2)
CRYSTAL QUANTUM PRO Institutional Signal & Trade Intelligence for MetaTrader 5 Final Price: 199 USD ----> Price goes up 10 USD after every 10 sales. Limited launch slots available, act fast. Most indicators give you an arrow and leave you alone. A naked arrow is a gamble. Winning consistently requires CONFLUENCE , a clear STOP and TARGET , and honest PROOF that the system works. Crystal Quantum Pro delivers all three in one clean, no-repaint package. Crystal Quantum Pro is a complete decision sy
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (6)
新たな王者が登場 - インジケーター + 注文管理表示(TP1 + TP2 + TP3)+ オプションのTelegramシグナル送信機能付き(無料) (完全なトレード&シグナルシステム) ゴールド向け最高のEA: Gold Slayer このインジケーターには、高度な戦略、カスタマイズ可能な注文管理システム、そしてエンベロープ拡張を組み合わせた平均回帰システムが搭載されています。さらに、RSIなど複数のインテリジェントな確認フィルターによって、高確率の反転エントリーをBUY・SELLシグナルとして検出します。 単にトレードを学ぶだけでなく、複数ポジションを効果的に管理し、過去に利益を出しているオープンポジションで損失トレードをカバーする方法も学べます。 M5向けに構築・最適化されており、流動性が高くシグナルの精度が安定しているBTCUSDとXAUUSDで優れたパフォーマンスを発揮します。 このインジケーターは、ATRを基に自動計算されたエントリー、ストップロス、テイクプロフィットレベルを備えた明確なLong・Shortシグナルを提供するため、リスク管理が最初から組み込まれています。 マ
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
M1 Quantum を使用したライブトレードシグナル : シグナル (取引は 自動的に Quantum Trade Assistant によって実行され、この製品に 無料 で含まれています。) 最新ニュース: バージョン1.64がリリースされました。現在、すべての取引で、関連するサポート/レジスタンスゾーンの後ろにStop Lossが設定されます。今回のバージョンでは、EAのパフォーマンスを向上させるためにSmart Close機能も改善されました。 8月9日から、ライブシグナルはバージョン1.64で稼働しています。 価格プラン: 現在価格: $169 (早期購入者向けオファー) 次回予定価格: $189 予定小売価格: $299 開発者からのお知らせ: ご購入後、 最新の推奨設定ファイル(Set File) 、運用アドバイス、および他の M1 Quantum ユーザーと交流できる VIPサポートグループ への招待をご希望の場合は、お気軽にご連絡ください。 よくある質問 - 設定ファイル - インストールガイド M1 Quantum は、M1専用のプロフェッショナルトレーディング
Gold Stuff mt5
Vasiliy Strukov
4.88 (193)
Gold Stuff mt5 は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください!  トレンド スキャナーの強力なサポートを利用して、無料のインジケーターを入手し、プライバシーを守ります。あーみー!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通知 - オンオフ。 プッシュ通知。 次に、色域を調整します。 Gold Stuff mt5 は、金専用に設計されたトレンド指標であり、あらゆる金融商品にも使用できます。 インジケーターは再描画せず、遅れません。 推奨時間枠 H1. 設定と個人的なボーナスを得るために、購入後すぐに私に連絡してください!   設定 矢印を描く - オンオフ。 チャートに矢印を描く。 アラート - 可聴アラートのオンオフ。 メール通知 - オンオフ。 電子メール通知。 プチ通知 - オンオ
作者のその他のプロダクト
NeuroScalper
Thomas Bradley Butler
5 (1)
アップデート!矢印が100レベルと200レベルに追加されました。 このインディケータは極値にアクセスするために正確であり、主に1分間の買いポジションをサポートします。他の時間枠を使用することもできますが、レベルは異なります。これは優れた発振器であり、他の発振器と比較して違いを確認します。 ニューロネットワークの概念を使用したデイトレード。このインジケーターは、基本的な形式のニューロネットワークを使用して売買するシグナルを生成します。 1分足チャートのインジケーターを使用します。インジケーターは再描画されません。 1分間のチャートまたはさまざまなレベルを使用する他のチャートを使用してテスターでダウンロードして実行し、取引を分析して自分で確認します。市場を頭皮にする多くの機会。より高い時間枠で使用できますが、レベルはあなたの裁量に応じて変更する必要があります。時間枠が長いほど、範囲が広くなります。 このモデルで考慮すべき概念と事項: 複数のインジケーターが使用され、重みが適用され、最大値と最小値に2つのデータポイントがあります。この指標は主に上昇トレンドを取引するためのものですオシレ
ForexReversal
Thomas Bradley Butler
4 (1)
忍耐はストレスのないスキャルピングの鍵です。 200の移動平均を通過するのを確認したら、矢印をトレードし、移動平均フィルターを使用せずに、最後のスイングポイントから拡大またはトレンドを作成します。 1分間の時間枠に最適で、日中の動きの勢いを捉えます。 トレーリングストップを使用して、簡単に20ピップを取るか、より大きなトレンドのために長く滞在します。 この指標からの本当に大きな取引の写真の例を見てください。 1分の時間枠が最適です。 ズームアウトしてトレンドを確認します。 矢印は再描画または再計算されません。 1分の時間枠に添付して取引を調査し、それが戦略に使用できるかどうかを確認します。 私 ルール: 購入のための青 販売のための赤 横向きの期間を避けてください 大量の取引と勢いの取引 ストップロスを使用する
株式(CFD)のみのデイトレード。 取引には手間がかかります。 すべてのエントリと終了を通知するショートカットやインジケータはありません。 利益は心の状態から来ます。 指標は、お金の管理と成功の心理学と組み合わせて使用されるツールです。 ボリュームプロファイルの不均衡を見つけます。 取引価格のボリュームの不均衡。 多くの不均衡は、クローズとオープンおよびニュースで発生します。 株の買い手と売り手を参照してください。 5分から1時間使用して、誰が価格を管理できるかを確認し、価格の不均衡を見つけます。 より大きな在庫は15分以上です。 カラーボリュームバーの上にマウスを置くと、過去のバーの数が表示されます。 現在のバーの音量は上隅に書かれています。 ボリュームの不均衡を見つけて、しばらくの間価格がどの方向に進むかを確認します。 最良の結果を得るために支配的な傾向に従ってください トレンドが発生した場合は、トレンドをトレードするようにしてください。 トレーリングストップを使用し、大量の反転の不均衡に注意してください。
GoldBuyBackScalper
Thomas Bradley Butler
4 (1)
このインジケーターはXAU / USD、1分足チャートのみを対象としています。 すべてのペアには、独自の特性と価格変動があります。 このインジケーターでV字型の反転をトレードします。 頭皮はトレーリングストップを使用して購入し、ニュースはより極端で突然の売りを引き起こす可能性があるため、ニュースを避けます。 バックテストで1分の時間枠にアタッチし、反転購入を確認します。 インジケーターが再描画または再計算されることはありません。 活動時間中のみの取引 このインジケーターはXAU / USD、1分足チャートのみを対象としています。 すべてのペアには、独自の特性と価格変動があります。 このインジケーターでV字型の反転をトレードします。 頭皮はトレーリングストップを使用して購入し、ニュースはより極端で突然の売りを引き起こす可能性があるため、ニュースを避けます。 バックテストで1分の時間枠にアタッチし、反転購入を確認します。 インジケーターが再描画または再計算されることはありません。 活動時間中のみの取引
This is based on short term strength or weakness and not on moving averages.  Moving averages are used for filter only. Trade supply and demand with arrows. Supply and demand breakouts and strength of the buyers or sellers .  Don't trade buy arrow to sell arrow.  Trade the strength with trendlines or moving averages and use stops.  The arrow can have some strong moves.  Trade on all time frames.  Try it out in the back tester. The pips can be made with this indicator, follow the arrows and make
Master scalping with this indicator.  Trade on any time frame for scalps on buy or sells.  Follow trends using a 200 moving average and stops and targets.  Use with your own system.  This indicator can give pips if following it correctly.  Stick to rules and pick up pips daily.  Use as entries in a trend, scalp for a few pips or exit on opposite signal.  Best to follow higher time frame trends. Indicator doesn't repaint or recalculate. Rules: Don't trade overnight, only trade during active sessi
This indicator is good for small time frames like 1 and 5 minutes and made for day trading. The indicator never repaints or recalculates. The indicator works is for trading swing points in day trading, following bulls or bears.  Its a simple to use, non cluttered indicator with a high success rate.  This indicator works well to capture ranges.  All indicators come with limitations and no indicator or system is always accurate. Use money management for long term trading success.   Place in backte
DTKGold
Thomas Bradley Butler
This is the DayTradeKing for gold on a 1 minute time frame.  It is a different calculation for the range. Use a 200 period moving average as a filter.  Always use stops and avoid news, wait for more conformation.  This looks to capture intraday ranges. Put it in the back tester on 1 minute to see the price action and how it works. Trade with trend Use filter Use stops Alerts are added for pop ups and sound. 
Trade trends with the Super Scalper Use on all time frames and assets it is  designed for scalping trends. Works good on small time frames for day trading.  The arrows are easy to follow.  This is a simple no repaint/no recalculate arrow indicator to follow trends with.  Use in conjunction with your own system or use moving averages.  Always use stops just below or above the last swing point or your own money management system The indicator comes with push notifications, sound alerts and email
This indicator is a simple stripped down version of any advanced support and resistance indicator.  All the support and resistance indicators work from a number of bars that have developed over time. Get rid of clutter and confusing levels.  Find levels according to a number of bars. Look at days, session, numbers of hours, periods of consolidation.  Watch levels develop and use as breakout points, or areas of buyers and sellers.  Features and things to consider This indicator is for a frame of
https://www.mql5.com/en/market/product/57345 このEAは、外国為替反転インジケーターに基づいています。 システムを手動で取引したい場合は、インジケーターをダウンロードして試してみてください。 EAはトレンドに従い、それに応じてポジションをオープンします。 結果は、より低いドローダウンで安定したゲインを示していますが、バックテスター、オプティマイザー、および時間枠でそれを試して、何が機能するかを確認してください。 示されているすべての結果は架空のものです。 注:これはマーチンゲールやグリッドではありません。 インジケーターにはヘッジ機能があります このEAには以下の機能があり、リスクに応じて変更してください。 EAは自由証拠金に従って追加し、パラメーターに従って売買します。 入力を通じてリスクを管理します。 inp5は売りです inp7は購入です ストップロットを修正 固定テイクプロフィット   フリーマージンの%
HFTHacker
Thomas Bradley Butler
最適化における複雑さとユーザーの混乱のため、これは回復することなくシンプル バージョンに戻っています テストおよび使用前に EA を最適化してください。最適化した場合にのみ購入してください。これは、最適化の方法を知っており、自分の実力で利益を上げたいトレーダー向けです。リスク パラメータは自分で設定します。勝率が高く、うまくいかないトレードにはストップをかけます。リスクを減らして長く使い続けましょう。これはすべてのアカウントで機能し、リスク管理ツールです。すべてのコメント、説明、および MT5 バージョン: https://www.mql5.com/en/market/product/74421 このエキスパート アドバイザー (EA) は、トレーダーのアカウント残高に基づいてポジション サイズをスケーリングしながら、売買トレードを自動化します。そのコア機能は、取引サイズを動的に調整し、口座が拡大または縮小しても、リスクが利用可能な資本に比例するようにすることです。これにより、特定の取引で過剰なレバレッジをかけたり、リスクが少なすぎたりすることなく、一貫した取引戦略を維持できま
MarketMaker
Thomas Bradley Butler
需要と供給の取引を自動化します。市場を作る。 このEAは、誰もが販売および模倣する人気のある需要と供給の指標に触発されて作成されました。 EAは取引とヘッジを続け、市場を作ります。非ヘッジ口座でも取引できます。リスクを評価し、時間枠、ロットサイズ、ヘッジ機能を使用する必要があります。一度に複数のペアをオンとオフで合計約1か月間取引しました。 システムの概念: EAは需要と供給のレベルを交換します。レベルが変わるので、EAは新しいレベルを交換し続けます。より低いロットの多くのペアに分散することは、システムの機能です。安定したゲインを維持しながら、大きなドローダウンを回避する必要があります。 SLは使用できますが、これをオプションにするために説明したヘッジされた側面。私が多くのペアで小ロットで得ているドローダウンは4%であり、これはSLなしです。より大きなロットは6%を示しています。したがって、小さいサイズは控えめで、大きいサイズはより積極的です。これらは、残高と比較して取引されるロットを低く保つ理由です。貿易は発展する余地が必要です。 特徴: 取引数 固定ロット ボリュ
Top Trader
Thomas Bradley Butler
Top Trader Indicator This is an arrow reversal indicator. This is with deviations and arrows.  Trade a blue arrow for buy and trade a red arrow for sell.  Change the time period and the deviations of the bands.  This is similar to others but these arrows don't repaint.  Load in back tester and study which periods and deviations work the best.  It works on all time frames.  15 min to 1 hr would give good results for take profits.  Try according to your own risk management.
Quant Bot
Thomas Bradley Butler
Quant Botは、EUR / USDの1時間の時間枠でのトレンド取引用です。 セットファイルはありませんが、他のペアを使用する場合は、最適化が必要になる場合があります。 ボットについて: 遺伝子生成を使用し、ATRを使用して取引します。 カーブフィットを防ぐためにウォークフォワード期間が使用されました EAはすべての取引でストップを使用します。 お金の管理は、バランスの%でスケールアップします バックセット期間は2003年から2020年までであり、前進は2020年から2022年まででした(写真を参照)。 Quant Botは、EUR / USDの1時間の時間枠でのトレンド取引用です。 セットファイルはありませんが、他のペアを使用する場合は、最適化が必要になる場合があります。 ボットについて: 遺伝子生成を使用し、ATRを使用して取引します。 カーブフィットを防ぐためにウォークフォワード期間が使用されました EAはすべての取引でストップを使用します。 お金の管理は、バランスの%でスケールアップします バックセット期間は2003年から2020年までであり、前進は2020年か
Crypto Net
Thomas Bradley Butler
Crypto Netは、1時間の時間枠でBTCUSDを取引するためのものです。 それは戦略を進化させるために遺伝的進化を使用します。 このEAトレードトレンドは、ATRと一目の嘘の指標に続いています。 これは構築され、モンテカルロやウォークフォワードを含む一連の堅牢なテストに合格しました。 入力: 最小リスクであるアカウントの割合。 最大ロット数 取引を停止する時間 他に何も変更されていません。 フォワードのみのトレード。 バックテストはありません。 ブローカーの時間は、戦略が組み込まれたものとは異なります。 Crypto Netは、1時間の時間枠でBTCUSDを取引するためのものです。 それは戦略を進化させるために遺伝的進化を使用します。 このEAトレードトレンドは、ATRと一目の嘘の指標に続いています。 これは構築され、モンテカルロやウォークフォワードを含む一連の堅牢なテストに合格しました。 入力: 最小リスクであるアカウントの割合。 最大ロット数 取引を停止する時間 他に何も変更されていません。
PropTrader
Thomas Bradley Butler
*使用前にEAを最適化してください* EUR/USD向けに最適化された外国為替取引戦略 Expert Advisor (EA) を使用して 1 ~ 2 年以内に多額の富を達成するというのは非現実的な主張です。 バックテストと実際の取引は、EUR/USD 通貨ペアに焦点を当てています。 この戦略について: これは私たちの戦略の最初の反復を表しており、さらなる進歩の可能性があります。 100% 品質のデータを使用して厳密にテストされており、MT4 エラーはありません。 この戦略は、トレンドフォローの論理原則に基づいて機能します。 トレンドが強気の場合、EA が開始してトレーリング ストップを展開します。逆の場合も同様です。 本質的には、これは単純なトレンド追跡アプローチです。 主な利点と考慮事項: 簡単なセットアップ: デフォルト設定をそのまま使用し、好みに応じてロットサイズを変更するだけです。 リスク管理: この戦略ではマーチンゲールやヘッジは使用されません。 リスク軽減: 各取引には、アベレージ トゥルー レンジ (ATR) によって決定されるトレーリング ストップおよび
Down Under
Thomas Bradley Butler
ダウンアンダーは1時間の時間枠でAUD/USDペアを取引します。 このEAはATRとOHLCをトレードします。 この時間枠でこのペア用にフォーマットされます。 複利は分で使用されます。 ロットサイズと最大。 ロットサイズ。 残高のパーセンテージは、勝ちトレードで合成されます。 バランスが変動すると、ロットサイズも変動します。 設定: mmリスク% mmロット 最大ロット 他に変更するものはありません。 これには、マーチンゲールまたはヘッジ機能はありません。 変更する他の機能は、取引している場合、AUD/USDのCFDのみです。 ブローカープラットフォームでこれを小数点以下で変更します。 リスク免責事項 先物、オプション、通貨取引はすべて大きな潜在的な見返りがありますが、大きな潜在的なリスクもあります。 これらの市場に投資するには、リスクを認識し、喜んで受け入れる必要があります。
Cable Trader
Thomas Bradley Butler
GBP/USD 1hr.  このEAは勢いとセッションを交換します。 これには固定ロットコンポーネントがあり、開発中にTPを変更し続けます。 設定: ロットサイズ 他に変更するものはありません。 これには、マーチンゲールまたはヘッジ機能はありません。 変更する他の機能は、取引している場合、GBP/USDのCFDのみです。 ブローカープラットフォームでこれを小数点以下で変更します。 リスク免責事項 先物、オプション、通貨取引はすべて大きな潜在的な見返りがありますが、大きな潜在的なリスクもあります。 これらの市場に投資するには、リスクを認識し、喜んで受け入れる必要があります。 リスク免責事項 先物、オプション、通貨取引はすべて大きな潜在的な見返りがありますが、大きな潜在的なリスクもあります。 これらの市場に投資するには、リスクを認識し、喜んで受け入れる必要があります。
Euclidean
Thomas Bradley Butler
ユークリッドは、私が8年前に思いついたユニークな取引アルゴリズムです。 このEAはこのシステムの一部です。 閉鎖系として機能します。 EAは、トレンドをキャッチするために角度の程度が正しいときに購入を開始します。 ストップロスは角度から10%です。 とても簡単です。 入力: ロット1マイクロロットの残高の%($ 1,000) ボリューム上位ロット=ロットの最大量 利益レベルを取る=デフォルトは50ピップス 方法と考慮事項: ストップロスが組み込まれており、10%の角度で価格に応じて取引されます。 テイクプロフィットは50ピップスに設定されていますが、希望する金額にすることができます。 1分から5分のような短い時間枠で取引します。 バックテスターでこれをテストする際のエラーはありませんでした。 プラットフォームやブローカーが異なればデータも異なるため、テストするデータのダウンロードを確認してください。 外国為替取引のリスク免責事項 証拠金で外国為替を取引することはリスクが高く、すべての投資家に適しているとは限りません。 過去のパフォーマンスは将来の結果を示すものではありま
Pip Scalper
Thomas Bradley Butler
みんなのための指標 Pip Scalperは、スキャルピングトレンド用です。 この指標を使用して、トレンドに長くとどまります。 すべての時間枠とアセットで機能します。 このツールで毎日のピップを拾います。 200の移動平均を使用して取引をフィルタリングします。 より短い時間枠をお勧めします。 デイトレードに使用します。 使用方法と使用方法: Pips Scalperは、長期的なトレンド取引に基づいています。 青で購入 赤で売る フィルターとして200移動平均を使用し、アクティブな期間中に取引します。 Pip Scalperは、スキャルピングトレンド用です。 この指標を使用して、トレンドに長くとどまります。 すべての時間枠とアセットで機能します。 このツールで毎日のピップを拾います。 200の移動平均を使用して取引をフィルタリングします。 より短い時間枠をお勧めします。 デイトレードに使用します。 使用方法と使用方法: Pips Scalperは、長期的なトレンド取引に基づいています。 青で購入 赤で売る フィルターとして200移動平均を使用し、アクティブな期間中に取
Evolved Trends
Thomas Bradley Butler
テスト前に最適化し、最適な入力を見つけるために使用します こんにちは、トレーダーの皆さん! MT4 プラットフォーム用の最先端の Expert Advisor が必要ですか? 進化したトレンド以外に目を向ける必要はありません。 機械学習テクノロジーで作成されたこの強力な取引アルゴリズムは、1 時間の時間枠での GBP/USD の取引に焦点を当てています。 ただし、最適化のために他のアセットや時間枠を自由に試してみてください。 自分のリスク許容度に合わせて入力をカスタマイズするだけです。 ATR に基づくストップ機能と、利益を確定し、損失をカットする機能を備えた Evolved Trends は、あらゆる取引システムに最適な資金管理を保証します。 さらに、独自のリスク スケーリング機能がアカウント残高に基づいて調整されます。 Evolved Trends でトレーディング ゲームを次のレベルに引き上げましょう!
Trade any Forex combine out there.  Many prop firms offer challenge or instant funding combines.  The biggest problem is controlling the loss.  With this indicator you can get a visual system that can limit loss and teach discipline.  This uses the MACD and the strategy is scalping.  You can determine the risk and reward.  Visually follow small trends for scalps.  Trade during active sessions.  It's just a simple system to instill discipline while limiting loss and scalping pips with the paramet
Holy Grail arrow is for scalping.  The period you use will determine the trend.  You can try different time frames and periods to see what works best for your strategy.  Filters can be applied like a moving average or trendlines.  The 1 minute works good for scalps and always trade during active periods and avoid consolidation times.  Using other indicators to determine trends is recommended but this can also be a free flowing scalping system alone with tp and sl. Inputs: Period = trend period
OPTIMIZE EA BEFORE TEST AND USE No EA turns hundreds into millions in a year or 2.  This is a lie if presented this way. Trade Twenty Eight Forex Pairs.  Use this EA to trade the pairs and time frames with tp and sl according to risk.  This comes with advanced money management built in.  It has break evens and take profits on 50% with sl and tp accordingly.  1 hour recommended but try on others for intraday or swing trading.
Fulltrend
Thomas Bradley Butler
Improve trading with this indicator.  Find areas of buys or sells in Fibonacci retracement areas.  Fulltrend is for scalping and making swing trades.  Fib levels are added for take profits and stop losses. This works on any time frame and can be used by itself or together with other systems and indicators for filters. The indicator doesn't repaint.  Alerts are added and can be true or false.  No need to sit glued to the computer, just set on charts and listen or the alerts to come.  Take a posi
Scalping Code is for trend scalping.  It is simple to use and is profitable.  It can work on any time frame and any asset.  This indicator can be used on it's own or together with another system.  The arrow does not repaint or recalculate.   The rules are as follows:   A blue arrow above the moving average is a buy. An exit for the buy above the moving average is a red arrow or target. A red arrow below the moving average is a sell. An exit for the red below the moving average is a blue arrow
OPTIMIZE BEFORE BACKTEST AND USE FOR A YEAR TO FIND BEST VALUES Order Flow is unique in that is trades the volume.  It was built on EUR/USD and is optimized from  11/11/2021 to 10/24/2022 on 1 hour charts.  Optimization inputs for money management are used.  This EA uses strict money management, it is not a get rich quick martingale or EA without a sl. Trading is about risk management, not gambling.   Run on EUR/USD 1 hour chart or if you want to find other assets and time frames to optimize th
AI Signal
Thomas Bradley Butler
AI Signal is an indicator that is a ready to made scalping system that doesn't repaint Instructions: Load indicator.  Use arrows as entries in trends and stay out of sideways markets.  Trade with the larger trend and trade only active volatile hours Buy blue arrow above yellow and exit at red arrow or at discretion.  Sell red arrow below yellow and exit at blue arrow  or at discretion.  Easy to follow and is based on trends.  The indicator works on all time frames and assets. Use at your own d
*OPTMIZE* High Speed Low Drag trades XAU/USD on 1 hour charts.  The EA was made with machine learning and uses RSI and moving averages to trade its logic. By default the take profit is at 150 and stops are at 50 with additional advanced money management like movable stops.  I would suggest this if you have the know how but this is for beginner or advanced as is. The money management system scales the balance so you can figure what % you want to start and then the max lots to trade.
フィルタ:
レビューなし
レビューに返信