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
Rizwan Akram
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
Ultimate Retest
Nguyen Thanh Cong
5 (6)
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
Ronnie Ferreira Silva
4 (4)
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
MACD Sniper Pro
Noppawat Tumjai
MACD Sniper Pro is an advanced automated trading system designed for traders seeking high-precision entries and robust risk management. By combining the classic momentum of MACD Crossover with a strict ADX Volatility Filter and Dynamic ATR Management , this EA completely eliminates emotional trading and filters out dangerous flat/sideways markets. Unlike standard MACD indicators that suffer during consolidation, MACD Sniper Pro verifies trend strength before entering and protects your capital us
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. What Pip ST Chart Does Renko ch
FREE
VWAP Fibo Bands RSJ
JETINVEST
4.83 (12)
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
Maksim Tarutin
4.4 (5)
Haven Stop Loss Hunter 2.0 - 流动性分析的新维度 欢迎体验全新升级版 — Haven Stop Loss Hunter 2.0 !这是一款用于识别流动性池和虚假突破(Sweeps/扫荡)的专业工具,现已具备更高的灵活性和功能性 [1]。在此版本中,我们实现了完整的多时间框架(MTF)分析以及先进的气泡/推送提示系统,让您能够及时掌握基于聪明钱概念(Smart Money Concept)的机构资金意图,而无需频繁切换图表 [1]。 我的其他产品 - > 点击这里 。 流动性扫荡(Liquidity Sweep)是市场大资金针对散户交易者止损的猎杀行为。2.0 版本让您不仅能在当前工作图表上,还能同时在更高时间框架(H1, H4, D1)上直观看到这些关键的价格行为,从而对当前的市场环境有更深入的理解 [1]。 2.0 版本有哪些新功能? 多时间框架(MTF)分析 — 现在您可以在当前图表上直接查看来自高时间框架的流动性扫荡 [1]。这有助于您与全局趋势保持一致,即使您在 M5 或 M15 等小周期上进行交易 [1]。 先进的提示系统 — 我们为当前时间框架和
FREE
SuperTrend AI Clustering EA
Michael Prescott Burney
SuperTrend AI Clustering 自动聚类趋势跟随智能交易系统(MetaTrader 5) SuperTrend AI Clustering 是一款用于 MetaTrader 5 的自适应趋势跟随智能交易系统,旨在根据不断变化的市场环境自动调整自身参数。系统并非只使用单一固定的 SuperTrend 倍数,而是同时评估多个倍数因子,衡量其近期表现,通过 K-Means 聚类算法将其分组,并选择当前表现最优的一组因子。这样就形成了一个动态的 SuperTrend 模型,可以在不同波动率阶段和市场结构下自我适应,而无需频繁手动重新配置。 该系统适合希望采用自动化趋势跟随方式,并且重视自适应能力、结构化风险控制以及透明图表信息展示的交易者。它可用于外汇交易品种、贵金属、指数、加密货币、商品及其他在 MetaTrader 5 中可交易的品种。智能交易系统兼容多种周期,从短周期的日内交易到长周期的波段和中长期趋势交易均可应用。 核心交易理念 该智能交易系统的逻辑基础是 SuperTrend 指标,它使用基于 ATR 的波动通道来识别市场的多头和空头阶段。较低的倍数因子会形成更紧的
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智能区域 - 免费版 MetaTrader 5 (MT5) 公允价值缺口检测指标   您是否在寻找真正的交易工具,而不仅仅是另一个随机指标? FVG智能区域 - 免费版通过自动检测公允价值缺口(FVG)并在图表上直接高亮显示高概率交易区域,为您提供专业的市场洞察。   专为以下交易者打造: 聪明资金概念(SMC) ICT交易概念 价格行为 供需分析 机构交易策略 该指标帮助您专注于真正重要的事情:价格可能做出反应的区域。 主要特点: 智能区域检测: 自动检测看涨和看跌缺口 清晰、专业的视觉区域 智能过滤以消除弱相关或不相关的缺口 高级确认: 更高时间框架(HTF)汇合验证 当价格填补时智能移除无效区域 活动区域与已填补区域之间的清晰视觉区分 优化性能: 轻量快速 - 不会拖慢您的图表 兼容所有货币对和时间框架 真实交易条件下的平稳运行 完全自定义: 完全可调整的颜色和视觉风格 完美适用于外汇、黄金(XAUUSD)、指数和加密货币 适合日内交易、波段交易和剥头皮交易
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
BTC Master Pro
Farzad Saadatinia
4.58 (12)
BTC Master Pro —— 您值得信赖的比特币纪律化交易伙伴。 全新版本现已集成 OpenAI 人工智能技术 ,在高波动的加密市场环境中,实现更智能的执行与更精准的交易过滤。 本专业级交易机器人专为 Bitcoin (BTCUSD) 在 MetaTrader 5 平台上的交易而设计,专注于结构化执行、风险暴露控制以及智能化风险管理。 当前价格: $499  →  下一阶段: $699  →  最终价格: $999 LIVE SIGNAL HERE 基于 OpenAI 的执行过滤系统 最新版本集成 OpenAI 技术,用于实时分析市场环境并过滤低质量或弱势交易信号。 AI 安全层(AI Safety Layer): 人工智能模块作为交易执行前的第二层审核机制。其功能严格限定为执行过滤工具(而非市场预测工具)。每一笔交易都必须通过结构化逻辑与智能验证流程,以减少不必要的回撤并避免低质量入场。 为什么选择 BTC Master Pro? 加密货币市场——尤其是比特币——具有高度波动性。情绪化决策往往导致不稳定的交易结果。本系统旨在帮助交易者在快速市场变化中保持结构化、纪律性与
Points of control
Martin Slacka
5 (1)
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。图表可以位于主窗口和底部窗口中。两种显示模式:蜡烛图和条形图。显示的数据量(条形图和蜡烛图)和图表大小是可调的。 要使用迷你聊天,您必须首先将所需的指标放在常规图表上,然后将其保存为模板并通过适当的参数为迷你图表应用模板,例如,对于第一个图表,参数称为“模板名称 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 - 显示时间/价格比例 Charts in background mode - 后台模式 Columns count - 列数
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
The Dynamic Market Profile allows you to analyze the volume of any specific chart region manually and instantly. No more being restricted to fixed daily or weekly profiles: you choose the exact move, consolidation, or trend leg you want to analyze . The indicator lets you draw up to 5 independent areas at the same time using interactive rectangles . How It Works on a Daily Basis Create the zone: Press keys 1, 2, 3, 4, or 5 on your keyboard (or use the on-screen buttons) to plot a rectangle . A
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后,图表上将出现一个便捷的买入/卖出市场订单开单面板。该面板与标准MT5快速交易面板类似,但支持所有自定义交易品种。 订单和仓位管理 按住 CTRL 键可轻松拖动SL/TP水平线。 按住 SHIFT 键可移动挂单开仓水平线。 使用弹出按钮快速关闭/删除订单或取消SL/TP。 直观的订单选择功能 当图表上仓位较多时,可使用 TAB 键和鼠标滚轮依次选择。所选订单的详细参数会显示在图表上,方便识别和操作。用户可以仅修改选中的仓位,而不
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,可按符号或魔术号筛选 此EA允许您通过直接价格值(例如EURUSD的1.12345)来设置和应用精确的止盈(TP)和止损(SL)水平。无需点数或Pips。为所有订单或按图表/魔术号筛选实现干净、精准的交易管理。 主要功能: 通过精确价格即时修改TP和SL 应用于所有订单、当前图表或特定魔术号 ️ 输入0以移除TP或SL 连接到任意图表后自动运行 兼容所有交易品种 适用于: 想快速控制TP/SL的手动交易者 需要覆盖默认退出逻辑的EA用户 管理多订单或复杂头寸的交易者 有问题或建议吗? 请留言提出您的问题或功能想法。 您的反馈将帮助我们改进未来版本。 Keywords: 按价格设置TP SL, MT5 TP SL管理, 自动SL TP MT5, 修改SL TP MT5, 交易管理EA, 专家顾问SL TP, 设置止盈价格, 设置止损价格, 应用TP SL MT5, MT5工具EA, SL TP覆盖,
Optch Gold
Oh Cheonghun
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] 它将 10 多种交易工具 整合到一个系统中,包括趋势检测、反转区域、Smart Cloud、移动止损逻辑、支撑与阻力、K线着色、提醒以及多周期分析。 该系统旨在帮助您应对不同的市场环境: 趋势市场: 识别主要趋势,发现回调,跟随
Trend Sniper X
Sarvarbek Abduvoxobov
5 (11)
Trend Sniper X 是一款适用于 MetaTrader 5 的多时间周期趋势跟踪指标,帮助交易者以清晰、精确的方式识别趋势方向和潜在的反转点。 价格信息: 当前价格为促销价,随着未来更新和新功能的发布,价格可能会有所变动。 Code2Profit 频道 通过多时间框架分析掌控市场! 如何使用 Trend Sniper X 最大化您的胜率:核心规则与交易时段技巧 技术规格 平台 MetaTrader 5 指标类型 多时间周期趋势指标 运行时间周期 任何图表时间周期,可独立选择更高的时间周期 (M1–MN1) 主要交易品种 外汇、黄金 (XAUUSD) 及其他差价合约 (CFD) 推荐账户 任何账户类型 可视化 彩色趋势蜡烛 (买入/卖出/微弱/变化) + 买入/卖出箭头 附加模块 交易时段方框 (悉尼、东京、伦敦、纽约) 主要功能 多时间周期趋势分析: 直接在当前图表上投射更高时间周期的趋势方向,提供清晰的宏观视角。 弱势/不确定柱检测: 高亮显示趋势条件不明朗的柱线,让交易者避开震荡区域。 买入/卖出信号箭头: 在确认趋势变化后的柱线上自动绘制箭头,支持警报、推送和电子邮件通
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
SuperScalp Pro
Van Minh Nguyen
4.61 (31)
SuperScalp Pro – 专业多层共振剥头皮交易系统 SuperScalp Pro 是一款专业的多重共振剥头皮交易系统,旨在帮助交易者识别更高概率的交易机会,提供更清晰的入场确认、基于 ATR 的止损(Stop Loss)和止盈(Take Profit)水平,以及适用于 XAUUSD、BTCUSD 和主要外汇货币对的灵活信号过滤功能。 获取适用于 XAUUSD、BTCUSD、Forex 货币对和指数的优化设置文件: [Set Files] 支持通过 SuperScalp Pro Auto Trader EA 进行自动交易: [Auto Trader] 关注 SuperScalp Pro 官方 MQL5 频道,获取产品更新、新闻和公告: [Official Channel] SuperScalp Pro 集成了 Supertrend、VWAP、EMA、RSI、ADX、成交量分析、布林带(Bollinger Bands)以及 MACD 背离分析,用于过滤低质量交易机会,减少虚假突破信号,并提高入场精准度。 SuperScalp Pro 专为 XAUUSD、BTCUSD 以及主
SMC Intraday Formula
Kareem Abbas
5 (22)
让我们先坦诚一点。 没有任何一个指标可以单独让你实现盈利。如果有人告诉你可以,那他是在向你兜售一个梦想。任何显示完美买卖箭头的指标都可以被做得看起来毫无瑕疵——只需要放大历史中的某一段并截取成功交易的截图。我们不会这样做。 SMC Intraday Formula 是一个工具。 它为你读取市场结构,标记出概率最高的价格区域,并用简单直白的语言准确告诉你当前智能资金的行为轨迹。你仍然需要做决定。你仍然需要执行交易。但现在,你是带着精确性执行,而不是靠希望。 我们已经在黄金(XAUUSD)以及主要外汇货币对的日内剥头皮交易中使用该指标将近三年。这是我们在 M1、M5、M15 和 M30 上的日常主力工具。它之所以有效,是因为它不试图预测未来——它展示的是当前正在形成的高概率交易机会,并解释 为什么 。 它与其他所有指标有什么不同? 大多数交易指标只做一件事。移动平均线交叉。振荡指标触及某个水平。出现一个箭头。你进场交易。你亏损。你责怪指标。重复。 SMC Intraday Formula 将多个机构级概念整合为一个统一的市场解读: - 斐波那契共振引擎 不只是普通的斐波那契水平——该指标
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
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
Divergence Bomber
Ihor Otkydach
4.89 (94)
我偶爾會親自使用這個系統進行交易。 請評估我在真實帳戶上進行的手動 BOMBER 交易—— LIVE SIGNAL 购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理
Entry Points Pro for MT5
Yury Orlov
4.51 (148)
传奇回归:Entry Points Pro 10。 这款传奇指标曾 3 年稳居 MQL5 Market 前三,如今全面重启。 数百条热情好评(两个版本合计 589 条),每天有数千名交易者用它交易,演示版下载 31,000+   MT4+MT5  次。 五年来我读过你们的每一条评价——在第 10 版里,我没有给出许诺,而是把答案直接做进了产品。指标作者自 1999 年入市, 珍视诚信、自己的声誉和自己的客户 。 Entry Points Pro 给出的入场信号严格不重绘。 而且这一次不再只是作者的一面之词,而是可验证的事实:确认信号只在 K 线收盘后标出,自动化测试记录到 零重绘 (在 EURUSD、XAUUSD 和 BTCUSD 上共 2,486,568 次不变量检查——0 次违规)。测试方法完全公开——您可以在策略测试器中自行复现。 购买后请务必第一时间给我发私信。 我会发给您 扩展版说明书《交易者圣经》 ——使用本指标交易的完整指南——并告诉您如何免费获得 赠品:市场扫描器 ,它能同时分析多个品种和多个时间周期,并在一个界面上显示 Entry Points Pro 此刻在哪里表现
M1 Sniper MT5
Oleg Rodin
5 (6)
M1 SNIPER   是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
Zoryk Gold
Reda El Koutbane
5 (6)
折扣将在 24 小时后结束——下一价格为 69 美元 ZORYK — MetaTrader 5 专用高级 XAUUSD 黄金信号系统 你一定熟悉这种感觉。 你花了很多时间分析黄金,等待合适的入场机会。终于开仓后,价格却立刻朝相反方向移动。你过早平仓、移动止损,或者只犹豫了几秒钟。随后,市场却在没有你的情况下到达了你原本预期的目标。 问题并不总是方向判断错误。 真正的问题是缺乏确定性。 你不知道准确的入场位置在哪里。 你不知道什么时候交易逻辑已经失效。 你不知道应该先锁定较近的利润,还是继续等待更大的行情。 你也不知道当前信号是否足够强,还是自己只是在强行寻找交易机会。 黄金市场变化非常快。一个没有明确计划的好想法,可能在几秒钟内变成错误的交易决定。 ZORYK 正是为了解决这个问题而开发。 什么是 ZORYK ZORYK 是一套完整的 XAUUSD 黄金信号与交易计划系统,专门为 MetaTrader 5  和 M5 时间周期 开发。 它不是一个只显示 BUY 或 SELL 箭头,然后让你独自决定其余所有内容的简单指标。 每个确认后的信号都可以在图表上显示完整的可视化交易计划,包
Atomic Analyst MT5
Issam Kassas
4.44 (54)
本产品已针对 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 . 它分析价格行为、强度、动能、多周期方向和高级过滤器,帮助交易者减少噪音,避免弱势交易机会,并做出更有结构的交易决策。 该指标将复杂的市场计算转换为简单的视觉信号、彩色K线、趋势读数、止损水平和多个止盈区域,使交易者能够快速理解并应用于真实市场环境。 主要交易用途: 剥头皮和日内交易: 专为快速决策、清晰箭头、提醒、K线颜色和
GoldenX Entry MT5
Kareem Abbas
5 (16)
GoldenX Entry 是一款用于 MT5 的指标,包含自适应 Smart Entry Trend 算法、信号评分系统、市场状态识别器以及波动率过滤器。每个信号都包含计算得出的入场位、三个止盈位(TP1、TP2、TP3)以及止损位。它基于多个分析层构建,旨在适应不同市场条件,将多层分析系统与内置优化器及统计跟踪系统相结合。该指标基于风险收益比(RR)指标和历史交易行为提供量化分析。 开始使用非常简单——在所选时间周期上运行优化器,然后在图表上开始使用该指标。 核心功能 GoldenX Entry 将信号引擎与内置交易管理及历史统计跟踪整合在同一图表中: - 内置优化器: 优化器可在图表上单击运行。它通过两阶段搜索流程测试200种参数组合——先进行探索,再进行优化——并在完成后自动应用选定配置。结果会按时间周期缓存,因此当返回已优化的周期时,会立即恢复相同设置。 - 黄金品种自动周期识别: 将指标加载到任何 XAUUSD 图表(M1 到月线)。系统会自动识别当前周期并加载对应预设。共包含9个时间周期配置文件,专为黄金在标准周期上优化设计。切换周期时,参数会自动调整。 - 资金参考面
Superhero
Ihor Otkydach
5 (2)
SUPERHERO 指標是一款基於「全方位」原則設計的多貨幣交易系統。該指標能獨立分析市場,並提供開倉與平倉的交易訊號。它採用止損與獲利了結訂單,風險報酬比(R:R)為 1:1。 我偶爾會根據這個系統的訊號親自進行交易,以下是我獲得的結果—— 即時訊號 此系統可向您的智慧型手機發送推播通知,讓您無需綁定電腦,即可「隨時隨地」進行交易。這對於自營交易公司而言再適合不過了。 每位顧客皆可享額外好禮: 每位購買此指標的買家,都將收到我贈送的一項特別實用工具,該工具: 自動下達止損與獲利了結訂單 當價格達到目標水準時,系統會自動平倉 支援待執行訂單交易 支援均值交易模式 如果您希望將這款優秀且極為便利的工具作為禮物獲贈,請在購買 SUPERHERO 指標後,立即透過 MQL5 平台的私訊與我聯繫。此外,您還將獲得培訓課程「如何安裝與設定 SUPERHERO 並開始穩定獲利」的存取權限。 關於「超級英雄」策略 SUPERHERO 策略是利用價格回調時,順應趨勢方向進行盤中交易。 「超級英雄」程式碼內含數個強大的技術指標,用以分析價格通道的趨勢方向與波動範圍,並能識別在修正性回調後形成的盤中波段反
UZFX {SSS} 超短线智能信号 v4.0 MT5 是一款无重绘的高性能交易指标,专为在快速波动的市场中需要精准、实时信号的超短线交易者、日内交易者和波段交易者设计。该指标由 (UZFX-LABS) 开发,融合了价格行为分析、趋势确认和智能过滤技术,可在所有货币对和时间周期内生成高概率的买卖信号、预警信号以及趋势延续机会。 别再对交易犹豫不决了,开始遵循这一专为追求清晰、精准和纪律性市场执行的交易者设计的结构化信号系统吧。 我的建议* 最佳时间周期:15分钟及以上。 {H1} 是我的最爱。而且效果令人惊叹……!! 更新后的主要功能 • 自动买入和卖出信号检测 • 先进的反转识别逻辑 • 潜在市场反转前的早期预警信号 • 趋势延续确认信号 • 内置风险管理功能,包含入场点、止损点、TP1、TP2和TP3水平 • 完全可自定义的风险回报比 • 实时警报、声音提醒和移动端推送通知 • 带交易建议的专业信息面板 • 适用于所有MT5交易品种和时间周期 • 界面简洁、轻量且用户友好 为什么交易者选择 UZFX SSS? 大多数交易者亏损的原因在于入场过晚、平仓过早,或者缺乏明确的交
Gann Made Easy MT5
Oleg Rodin
5 (9)
Gann Made Easy   是一个专业且易于使用的外汇交易系统,它基于使用先生理论的最佳交易原则。 W.D.江恩。该指标提供准确的买入和卖出信号,包括止损和获利水平。您甚至可以使用推送通知在旅途中进行交易。 购买后请联系我,即可免费获得交易指导和超棒的额外指标! 您可能已经多次听说过江恩交易方法。通常 Gann 的理论不仅对于新手交易者而且对于那些已经有一定交易经验的人来说都是非常复杂的东西。这是因为江恩的交易方法在理论上并不那么容易应用。我花了几年时间来完善这些知识,并将最好的原则应用到我的外汇指标中。 该指标非常易于应用。您所需要的只是将其附加到您的图表并遵循简单的交易建议。该指标不断进行市场分析工作并寻找交易机会。当它检测到一个好的入口点时,它会为您提供一个箭头信号。该指标还显示止损和获利水平。 换句话说,当您像先生一样进行交易时,该指标会为您提供最佳江恩建议。江恩亲自告诉你此时此刻该做什么。但最好的部分是您不需要了解任何有关江恩交易原则的知识,因为该指标会为您完成整个市场分析工作。
Axiom Matrix
Issam Kassas
5 (6)
AXIOM MATRIX MT5 首发价格:$99 Axiom Matrix 现以 $99 的首发价格提供。 前 30 次购买完成后,价格将上涨至 $199。 购买后,请直接私信我,以获取使用说明并领取您的专属赠品奖励。 Axiom Matrix 是一款适用于 MetaTrader 5 的专业多品种、多时间周期市场扫描器和决策仪表板。 它会扫描您的 Market Watch,分析多个时间周期,读取多个证据引擎,比较最强的交易机会,并在一个清晰的矩阵仪表板中显示最佳 BUY、SELL、WAIT 或被阻止的状态。 我开发 Axiom Matrix,是因为我想要一个可以替我完成繁重市场扫描工作的工具。 我不想只单独检查 RSI。 然后单独检查 MACD。 然后检查移动平均线。 然后检查成交量。 然后检查波动率。 然后检查支撑和阻力。 然后还要手动在不同品种和时间周期之间切换,只为了建立一个交易思路。 我想要一个仪表板,可以扫描市场、比较证据、排序最佳机会,并告诉我现在最强的交易设置在哪里。 这就是 Axiom Matrix 背后的核心理念。 AXIOM MATRIX 的功能 Axiom Ma
FiboSniper Pro
Van Minh Nguyen
5 (2)
FiboSniper Pro – 专业多重过滤 Fibonacci 网格交易系统 FiboSniper Pro 是一套先进的技术交易指标系统,将 Fibonacci Envelopes 与 ADX、EMA、RSI、ATR 和时间过滤器等多层过滤条件相结合,用于帮助识别经过过滤的潜在入场机会,并根据 ATR 波动率自动计算止损和止盈水平。该系统专为专注于 M5 剥头皮交易策略的交易者设计。 购买后,请联系我获取使用 Auto Trader X 自动交易 FiboSniper Pro 信号的操作说明。 通过 Auto Trader X 实现自动交易: [Auto Trader X] 查看用户指南并下载推荐的设置文件: [Click here] 加入 FiboSniper Pro MQL5 官方公开频道,获取产品更新和新闻: [Click here] 该系统使用 5 个 Fibonacci 水平(23.6%、38.2%、50%、61.8% 和 100%)识别动态支撑和阻力区域,这些水平基于 Moving Average 与 ATR 的组合计算。当价格触及或突破这些水平时,系统会生成 Buy
SkyHammer Signal Pro
Shengzu Zhong
5 (4)
SkyHammer Signal Pro Professional No-Repaint Trend Signal Indicator with Locked Entry, SL and TP Levels SkyHammer Signal Pro is a structured trend and momentum signal indicator designed for traders who want clear, fixed, and verifiable trading signals. It works best on lower timeframes such as M1 and M5 . The indicator does not try to predict tops or bottoms. Instead, it waits for confirmed market structure, trend direction, momentum strength, volatility quality, and target space before generati
Power Candles MT5
Daniel Stein
5 (9)
Power Candles V3 - 自我优化的强度指标 Power Candles V3 把货币与品种的强度直接转化为图表上可执行的交易方案。指标不再仅根据强度给K线着色,而是在后台持续运行实时自动优化,为您正面对的品种给出最佳 Stop Loss、Take Profit 与信号阈值。一键采用,Entry、Stop Loss、Take Profit 线就以精确价格绘制在图表上,提醒消息中直接包含方向。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 每根收盘K线运行 3,000+ 次交易模拟。9 种强度状态。2 种策略并行测试。一键采用最优配置。 为什么需要这个 大多数强度指标只给您一个数值,然后留下三个问题:相信哪个阈值、用哪个 Stop Loss、走哪个交易方向。Power Candles V3 在每根收盘K线上自动回答这些问题。结果就是一个完整的交易方案 -
Trend Catcher ind mt5
Ramil Minniakhmetov
5 (18)
趨勢捕捉指標 趨勢捕捉指標結合了作者獨有的客製化自適應趨勢分析指標,用於分析市場價格趨勢。它透過過濾掉短期噪音,並專注於潛在的動能強度、波動性擴張和價格結構行為,來識別真實的市場方向。此外,它還結合了平滑和趨勢過濾等客製化指標,例如移動平均線、相對強弱指標 (RSI) 和波動率過濾器。 您可以在這裡查看實際運行情況以及我的其他產品: https://www.mql5.com/en/users/mechanic/seller 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。 重要提示!購買後請立即聯繫我,以獲取使用說明和額外獎勵! 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。
Crystal Heikin Ashi Signals
Muhammad Jawad Shabir
5 (3)
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
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro 是一款適用於 MetaTrader 5 的趨勢跟隨指標,專為希望在圖表上獲得更清晰訊號、更有結構的交易設定,以及更實用風險管理的交易者而設計。 它不僅僅顯示一個簡單的箭頭,GEM Signal Pro 還能以更清晰、更易讀的方式呈現完整的交易思路。當條件確認完成後,指標可在圖表上顯示進場價、止損價與止盈目標,幫助交易者更有效率地評估交易設定。 運作方式 該指標首先根據其內部邏輯識別有效的初始訊號。 當確認條件滿足後,GEM Signal Pro 會在圖表上顯示完整的交易設定。這讓交易者可以更清楚地看到交易結構,並減少手動分析與計算的工作量。 圖表上的交易價位 對於已確認的訊號,GEM Signal Pro 可顯示: 進場價 止損價 止盈 1 止盈 2 止盈 3 風險報酬比 這讓交易設定更容易理解,也有助於讓圖表分析更有條理。 內建風險管理 風險管理是此指標設計的重要部分。 止損位基於近期市場結構,結合附近的擺動高低點與可選的 ATR 緩衝距離。這能讓交易價位更貼近當前市場條件,而不只是依賴固定距離。 圖表資訊面板 GEM Si
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro:用于 MT5 的合成多周期偏向引擎 ️ 夏季上市优惠 — 早期买家可以 199 USD 获得 The Oracle Pro。价格将随关注度上升;最终价格 399 USD。 The Oracle Pro 是一款面向高要求与专业交易者的 MetaTrader 5 高级多周期 偏向引擎 。它以纪律回答一个问题:当前每个周期的方向偏向是什么、强度如何、各周期之间的一致程度如何?一切仅在已收盘的 K 线上计算——绝不重绘。 The Oracle Pro 是一套多因子共识系统。它将专有指标与优化算法整合为单一而精密的共识向量,并在单个指标实例内,跨当前周期与更高周期的堆栈进行读取——而不是在多个图表上堆叠互不相关的工具。 它是 Oracle 共识方法的专业进化版:完整重建为高级操作控制台,面向希望在一个纪律化工作流中获得深度、多周期背景与背离洞察的交易者。 是偏向引擎,而非信号生成器 The Oracle Pro 明确自身定位。它是一款提供纪律化方向背景的 多周期多因子偏向指标 。它 不是 信号生成器:不承诺入场、出场或盈利。偏向是背景——你在其方向上交易自己的设置
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5合成分形结构分析与确认入场 概述 Azimuth Pro 是 Merkava Labs 推出的多层级波段结构指标。四层嵌套波段层级、锚定波段的VWAP、ABC形态识别、三时间框架结构过滤以及收盘确认入场——一个图表,一个从微观波段到宏观周期的完整工作流程。 这不是盲目的信号产品。它是一个以结构为先的工作流程,专为重视位置、背景和时机的交易者打造。 ️ 夏季促销 — 庆祝夏至与 The Oracle Pro 上市:Azimuth Pro 七折优惠,现价 279 美元(原价 399 美元)。限时夏季优惠。 1. V2的变化 合成多时间框架引擎 高时间框架分析从零开始重建,采用与Meridian Pro相同的专有合成架构。更清晰的HTF背景、稳定的实时行为、无经典MTF同步问题。合成引擎还解锁了 固定比率时间框架级联 (x2、x3、x4、x6)——不再在经纪商的固定时间框架之间任意跳转,您可以按图表时间框架的固定倍数分析结构,在每个尺度上保持相同的分形关系。 确认入场箭头 作为稳定且可恢复的执行层而设计的收盘确认箭头。当ABC设置形成且自适应确认逻辑
Reversion King Indicator
Eugen-alexandru Zibileanu
5 (6)
全新王者降临 - 指标 + 订单管理提示(TP1 + TP2 + TP3)+ 可选 Telegram 信号发送器 INCLUDED(免费) (完整交易与信号系统) 我们最强的黄金 EA: Gold Slayer 该指标包含先进的交易策略、可自定义订单管理系统,以及结合 Envelope 扩展的均值回归系统,并通过 RSI 等多重智能确认过滤器进行验证,以捕捉高概率反转入场机会,提供 BUY 与 SELL 信号。 你不仅能够学习如何交易,还能学会如何高效管理多个仓位,并利用之前盈利的持仓来覆盖亏损交易。 专为 M5 周期打造并优化,在 BTCUSD 和 XAUUSD 上表现尤为出色,因为这些市场的流动性能够让信号更加干净、可靠。 该指标会自动生成清晰的多头(Long)与空头(Short)信号,同时基于 ATR 自动计算入场位、止损位和止盈位,让风险管理从一开始就融入系统之中。 多 TP 系统设有三个渐进式目标位,你可以在 TP1 锁定部分利润、在 TP2 继续持仓,并在更大的行情中将仓位持有至 TP3,而这正是平均风险回报比真正开始大放异彩的地方。 默认参数开箱即用,已经针对稳定表现进行
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Price Action Concepts 目前价格为 $200 。 接下来的 30 次购买 后,价格将上涨至 $299 。 特别优惠: 购买后,请发送私信给我,即可领取 免费赠品 + 礼物 。 首先需要强调的是,这款交易工具是不重绘、不回绘、不延迟的指标,因此非常适合专业交易使用。 [Online course] ,   [User Manual]  ,  [How to Install]  ,   [PDF] Smart Price Action Concepts 指标是一款非常强大的工具,适合新手和有经验的交易者使用。它将 20 多个实用指标整合到一个系统中,结合了 Inner Circle Trader Analysis 和 Smart Money Concepts Trading Strategies 等高级交易理念。该指标专注于 Smart Money Concepts,帮助交易者理解大型机构如何交易,并辅助预测其市场行为。 它特别擅长流动性分析,使交易者更容易理解机
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
Ace Trend
Mikhail Sergeev
5 (3)
我们为您呈现一个革命性的指标,它改变了趋势交易世界的游戏规则。 该指标旨在重新思考性能并将您的交易体验提升到前所未有的高度。 我们的指标拥有先进功能的独特组合,使其有别于竞争对手。 "真实定价因素"的先进技术即使在最困难和最不稳定的市场条件下也能确保无与伦比的稳定性。 告别不稳定的模式,破碎的指标,欢迎有意识的,受控的交易。 该指标不仅仅是一个美丽的画面! 指标应该将赔率转移到交易者身边,从而赚取利润。 熟悉基于指标信号的交易结果(全自动模式): https://www.mql5.com/zh/signals/2339244 AceTrend在根据RBTI版本的趋势指标排名中排名第一。 AceTrend-最大的盈利能力和交易控制. 我们的指标根据当前市场报价而不是历史来突出盈利能力。 加入革命-释放您的交易经验的潜力! 指标不会在已形成的柱上重绘。 如果柱形已形成,指标读数保持不变。 该指标适用于从M1到MN的任何时间框架。 标准是H1时间框架。 您的反馈非常重要! 您有任何问题,建议,或只是想分享您的意见? 写评论或发送消息-我总是保持联系! 指标参数: PreSets - 如果选择
Quant Direction MT5
Georgios Kalomoiropoulos
Quant Direction 是一款三维市场分析工具。它通过同时计算多个维度上的精确百分比偏差,提供完全客观的、基于算法的市场分析视角。该算法采用先进的人工智能建模工具开发,并经过全面测试,旨在以独特的精准度解读市场。它可以分析您平台上的任何货币对或金融工具。 无论您是短线 交易者、日内 交易者还是波段交易者,Quant Direction 都是您的理想之选。 交易者的真正优势 Quant Direction 的真正优势在于彻底消除情绪、屏幕疲劳和过度思考。它无需手动点击十几个图表来寻找方向并反复质疑自己的偏好,引擎即可在几毫秒内即时处理 8 个时间周期(从 5 个月到月线)。它能准确告诉你任何时刻谁在掌控市场,确保你始终朝着概率最高的方向进行交易。 市场分析的三个维度 该算法将市场分为三个不同的交易维度,为您提供完整的宏观和微观视角: 超短线交易分析: 捕捉即时、快速的动量变化和较低时间框架的执行点。 日内分析: 识别真实的、潜在的每日方向性偏差。 波动分析: 专注于宏观趋势,确保您不会与大盘机构的走势背道而驰。 独家评分引擎 Quant Direction 的底层采用了一套
FX Volume MT5
Daniel Stein
4.79 (24)
FX Volume:从经纪商视角洞察真实市场情绪 简要概述 想要提升您的交易策略? FX Volume 可提供零售交易者和经纪商的持仓实时数据——远早于诸如 COT 之类的延迟报告。不论您希望获得持续稳定的收益,还是想在市场中多一分制胜的砝码, FX Volume 都能帮您识别重大失衡、确认突破以及完善风险管理。立即开启体验,让真实的成交量数据为您的交易决策带来革新! 1. 为什么 FX Volume 对交易者格外有用 极具准确度的早期预警 • 快速捕捉有多少交易者正在买入或卖出某个货币对——比大多数人提前一步。 • FX Volume 是 唯一 能够整合多家零售经纪商真实成交量数据并以简洁方式呈现的工具。 强力风险管理 • 及时识别多头或空头仓位的巨大不平衡,这往往预示着潜在的趋势反转,帮助您更自信地设置止损和目标位。 • 独家而真实的数据让每一次交易决策更具可靠性。 优化进场与出场点 • 发现“过度集中”的交易(大多数交易者都在同一方向),并通过真实成交量来确认突破。 • 避免依赖常见指标可能带来的误导信号,而是利用真实的实时成交量。 适配各种交易策略 • 将 FX
作者的更多信息
NeuroScalper
Thomas Bradley Butler
5 (1)
更新!箭头被添加到 100 和 200 级别。 该指标可准确访问极端情况,并主要支持 1 分钟时间范围内的买入头寸。可以使用其他时间范围,但级别不同。它是一个更好的振荡器,并与其他振荡器进行比较以查看差异。 使用神经网络概念的日间交易。该指标使用神经网络的基本形式来生成买卖信号。在 1 分钟图表上使用该指标。指示器不会重新绘制。下载并使用 1 分钟图表或其他使用不同级别的图表在测试仪上运行,分析交易以亲自查看。剥头皮市场的许多机会。可用于更高的时间范围,但应根据您的判断更改水平。较高的时间范围具有较高的范围。 使用此模型要考虑的概念和事项: 使用了多个指标,应用了权重,最大值和最小值为 2 个数据点。该指标主要用于交易上升趋势在振荡器的设置(见图)100 和 200 中添加级别,如果使用不同的时间框架,则添加其他级别。
ForexReversal
Thomas Bradley Butler
4 (1)
耐心是无压力剥头皮的关键。 当您看到它通过 200 移动平均线时交易箭头,并通过扩大或从没有移动平均过滤器的最后一个摆动点形成趋势。 适用于 1 分钟时间框架,捕捉日内动量走势。 使用追踪止损轻松获得 20 个点或为更大的趋势停留更长时间。 查看该指标中真正大笔交易的照片中的示例。 1 分钟的时间框架效果最好。 缩小以查看趋势。 箭头不会重新绘制或重新计算。 附加到 1 分钟的时间框架并研究交易,看看它是否可用于您的策略。 一世 规则: 买蓝色 红色出售 远离横盘整理 交易量大,交易动量 使用止损 耐心是无压力剥头皮的关键。 当您看到它通过 200 移动平均线时交易箭头,并通过扩大或从没有移动平均过滤器的最后一个摆动点形成趋势。 适用于 1 分钟时间框架,捕捉日内动量走势。 使用追踪止损轻松获得 20 个点或为更大的趋势停留更长时间。 查看该指标中真正大笔交易的照片中的示例。 1 分钟的时间框架效果最好。 缩小以查看趋势。 箭头不会重新绘制或重新计算。 附加到 1 分钟的时间框架并研究交易,看看它是否可用于您的策略。 一世 规则: 买蓝色 红色出售 远离横盘整理 交易量
VolumeDayTrader
Thomas Bradley Butler
僅限股票(差價合約)的日間交易。 交易需要工作。 沒有捷徑或指標可以告訴您所有的進入和退出。 利潤來自心態。 指標是與資金管理和成功心理學結合使用的工具。 查找音量配置文件中的不平衡。 貿易價格量不平衡。 許多不平衡發生在收盤、開盤和新聞中。 查看股票中的買家與賣家。 使用 5 分鐘到 1 小時來查看誰可以控制價格並發現價格不平衡。 更大的股票是 15 分鐘及以上。 將鼠標懸停在顏色音量條上以查看過去條的數量。 當前條形圖的音量寫在右上角。 找出交易量的不平衡,看看價格在一段時間內可能走向何方。 跟隨主導趨勢以獲得最佳結果 如果趨勢發展尋找交易趨勢。 使用追踪止損並留意大量反轉不平衡。 交易 Apple、SPY、GOOLE、TESLA。 所有你最喜歡的股票
GoldBuyBackScalper
Thomas Bradley Butler
4 (1)
该指标仅适用于 XAU/USD,1 分钟图表。 每对都有独特的特征和价格走势。 使用该指标交易 V 形反转。 头皮使用追踪止损购买并避免新闻,因为它们更加极端并且可能导致突然抛售。 在回测中附加到 1 分钟的时间范围并查看反转购买。 指标从不重新绘制或重新计算。 仅在营业时间内交易 该指标仅适用于 XAU/USD,1 分钟图表。 每对都有独特的特征和价格走势。 使用该指标交易 V 形反转。 头皮使用追踪止损购买并避免新闻,因为它们更加极端并且可能导致突然抛售。 在回测中附加到 1 分钟的时间范围并查看反转购买。 指标从不重新绘制或重新计算。 仅在营业时间内交易 该指标仅适用于 XAU/USD,1 分钟图表。 每对都有独特的特征和价格走势。 使用该指标交易 V 形反转。 头皮使用追踪止损购买并避免新闻,因为它们更加极端并且可能导致突然抛售。 在回测中附加到 1 分钟的时间范围并查看反转购买。 指标从不重新绘制或重新计算。 仅在营业时间内交易
TrueSupplyandDemand
Thomas Bradley Butler
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
ScalpingMaster
Thomas Bradley Butler
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
DayTradeKing
Thomas Bradley Butler
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. 
SuperArrowScalper
Thomas Bradley Butler
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
Levels Trading
Thomas Bradley Butler
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
ForexReversalEA
Thomas Bradley Butler
https://www.mql5.com/en/market/product/57345 该 EA 基于外汇反转指标。 如果您更喜欢手动交易系统,请下载指标并试用。 EA 将跟随趋势并相应地开仓。 结果显示具有较低回撤的稳定收益,但在回测器、优化器和时间框架中进行试验,看看什么有效。 显示的所有结果都是假设的。 注意:这不是鞅或网格。 该指标确实具有对冲能力 此 EA 具有以下功能,并根据您的风险进行更改。 EA根据可用保证金添加,根据参数买卖。 通过输入控制风险。 inp 5 是卖 inp 7 是购买 固定止损手数 固定获利   可用保证金百分比 该 EA 基于外汇反转指标。 如果您更喜欢手动交易系统,请下载指标并试用。 EA 将跟随趋势并相应地开仓。 结果显示具有较低回撤的稳定收益,但在回测器、优化器和时间框架中进行试验,看看什么有效。 显示的所有结果都是假设的。 注意:这不是鞅或网格。 该指标确实具有对冲能力 此 EA 具有以下功能,并根据您的风险进行更改。 EA根据可用保证金添加,根据参数买卖。 通过输入控制风险。 inp 5 是卖 inp 7
HFTHacker
Thomas Bradley Butler
由於優化過程的複雜性和用戶的混亂,這已經回到了簡單版本而沒有恢復 在測試和使用之前優化 EA。僅在優化後才購買。這適合那些知道如何優化並希望憑藉自身優勢獲利的交易者。 您設定您的風險參數。如果您選擇不成功的交易,則可透過停損獲得高勝率。降低長壽風險。 這適用於所有帳戶,是一個風險管理工具,請閱讀所有評論、描述和 MT5版本: https://www.mql5.com/en/market/product/74421 此智慧交易系統 (EA) 會自動執行買賣交易,同時根據交易者的帳戶餘額調整部位規模。其核心功能是動態調整交易規模,確保隨著帳戶的成長或收縮,風險與可用資本保持成比例。這有助於保持一致的交易策略,而不會在任何特定交易中過度槓桿化或風險過低。我不提供文件。透過購買和使用此 Expert Advisor (EA),您承認您已在策略測試器上徹底測試了 EA,並了解自動交易中涉及的相關風險。您進一步承認,過去的表現並不能保證未來的結果,並且使用此 EA 存在固有風險,包括潛在的投資資本損失。 設定: 輸入 int inp1_CompareCount = 0; 輸入雙精度
MarketMaker
Thomas Bradley Butler
自动化供需交易。做一个市场。 这个 EA 的制作和灵感来自于每个人都在销售和模仿的流行供需指标。 EA 继续交易和对冲,做市。也可以在非对冲账户上交易。需要评估风险并使用时间框架、手数、对冲能力。我已经在一个月左右的时间里一次断断续续地交易了多对。 系统概念: EA 交易供需水平。水平发生变化,因此 EA 将继续交易新水平。在手数较低的多对之间进行分配是系统中的一项功能。在保持稳定收益的同时,应避免大幅回撤。 SL 可以使用,但我解释的对冲方面允许这是一种选择。我在多对小手上得到的回撤是 4%,这是没有止损的。较大的地块显示为 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 用于欧元/美元一小时时间框架内的趋势交易。 没有设置文件,但如果使用其他对,则可能需要优化。 关于机器人: 它使用基因生成并使用 ATR 进行交易。 前行期用于防止曲线拟合 EA 在每笔交易中都使用止损。 资金管理是按余额百分比放大 回溯期为 2003-2020 年,前进期为 2020-2022 年。(见图)。 Quant Bot 用于欧元/美元一小时时间框架内的趋势交易。 没有设置文件,但如果使用其他对,则可能需要优化。 关于机器人: 它使用基因生成并使用 ATR 进行交易。 前行期用于防止曲线拟合 EA 在每笔交易中都使用止损。 资金管理是按余额百分比放大 回溯期为 2003-2020 年,前进期为 2020-2022 年。(见图)。
Crypto Net
Thomas Bradley Butler
Crypto Net 用于在  BTCUSD。 它使用基因进化来进化策略。 该 EA 交易趋势遵循 ATR 和 Ichimoku 指标。 这是构建并通过了一系列强大的测试,包括 Monte Carlo 和 Walk Forward。 输入: 最低风险的账户百分比。 最大手数 停止交易的时间 没有其他任何改变。 Crypto Net 用于在 BTCUSD。 它使用基因进化来进化策略。 该 EA 交易趋势遵循 ATR 和 Ichimoku 指标。 这是构建并通过了一系列强大的测试,包括 Monte Carlo 和 Walk Forward。 输入: 最低风险的账户百分比。 最大手数 停止交易的时间 没有其他任何改变。 输入: 最低风险的账户百分比。 最大手数 停止交易的时间 没有其他任何改变。 输入: 最低风险的账户百分比。 最大手数 停止交易的时间 没有其他任何改变。
PropTrader
Thomas Bradley Butler
*使用前优化 EA* 欧元/美元优化外汇交易策略 通过专家顾问 (EA) 在一两年内获得巨额财富是一个不切实际的说法。 回测和真实交易重点关注欧元/美元货币对。 关于该策略: 这代表了我们战略的初始迭代,并有进一步发展的潜力。 经过 100% 质量数据的严格测试,没有 MT4 错误。 该策略按照趋势跟踪的逻辑原则运作。 当趋势看涨时,EA 启动并部署追踪止损,反之亦然。 本质上,这是一种简单的趋势跟踪方法。 主要优点和注意事项: 轻松设置:坚持使用默认设置,仅根据您的喜好修改批量大小。 风险管理:该策略不采用鞅或对冲。 风险缓解:每笔交易都配备了追踪止损和止盈水平,由平均真实波动幅度 (ATR) 确定,有助于更好的风险管理。 趋势识别:此方法旨在帮助交易者识别并利用更持久的趋势。 外汇交易风险免责声明: 外汇交易涉及保证金交易外币,风险较高,可能并不适合所有投资者。 过去的表现并不是未来业绩的保证。
Down Under
Thomas Bradley Butler
Down Under 在 1 小时的时间范围内交易澳元/美元对。 该 EA 交易 ATR 和 OHLC。 它在这个时间范围内为这对格式化。 复合使用分钟。 手数和最大。 批量。 余额的百分比是在获胜交易中复合的。 随着余额波动,手数也会波动。 设置: 毫米风险% 毫米批次 最大手数 没有什么可以改变的。 这没有马丁格尔或对冲能力。 唯一需要更改的其他功能是,如果您交易的是澳元/美元的差价合约。 在经纪人平台上按小数点更改。 风险免责声明 期货、期权和货币交易都有很大的潜在回报,但也有很大的潜在风险。 为了投资这些市场,您必须意识到风险并愿意接受它们。 Down Under 在 1 小时的时间范围内交易澳元/美元对。 该 EA 交易 ATR 和 OHLC。 它在这个时间范围内为这对格式化。 复合使用分钟。 手数和最大。 批量。 余额的百分比是在获胜交易中复合的。 随着余额波动,手数也会波动。 设置: 毫米风险% 毫米批次 最大手数 没有什么可以改变的。 这没有马丁格尔或对冲能力。 唯一需要更改的其他功能是,如果您交易的是澳元/美元的差价合约。 在经纪人平台
Cable Trader
Thomas Bradley Butler
GBP/USD 1hr. 该 EA 交易动量和会话。 这有一个固定的手数组成部分,并将随着它的发展继续修改 TP。 设置: 批量 没有什么可以改变的。 这没有马丁格尔或对冲能力。 唯一要更改的其他功能是,如果您交易的是英镑/美元的差价合约。 在经纪人平台上按小数点更改。 风险免责声明 期货、期权和货币交易都有很大的潜在回报,但也有很大的潜在风险。 为了投资这些市场,您必须意识到风险并愿意接受它们。 Cable Trade 在 1 小时的时间范围内交易 GBP/USD 对。 现场交易前的演示。 该 EA 交易动量和会话。 这有一个固定的手数组成部分,并将随着它的发展继续修改 TP。 设置: 批量 没有什么可以改变的。 这没有马丁格尔或对冲能力。 唯一要更改的其他功能是,如果您交易的是英镑/美元的差价合约。 在经纪人平台上按小数点更改。 风险免责声明 期货、期权和货币交易都有很大的潜在回报,但也有很大的潜在风险。 为了投资这些市场,您必须意识到风险并愿意接受它们。
Euclidean
Thomas Bradley Butler
欧几里得是我 8 年前提出的一种独特的交易算法。 该 EA 是该系统的一部分。 它作为一个封闭系统工作。 当角度正确以捕捉趋势时,EA 将启动买入。 止损是角度的10%。 就是这么简单。 输入: 手数余额百分比 1 微手 1,000 美元 获利水平 = 默认为 50 点 如何和需要考虑的事项: 止损是内置的,并根据价格以 10% 的角度进行交易。 止盈设置为 50 点,但可以是您想要的金额。 在 1 到 5 分钟的小时间范围内进行交易。 在回测器中对此进行测试的错误为零。 不同的平台和经纪人有不同的数据,因此请检查下载数据以进行测试。 外汇交易风险免责声明 欧几里得是我 8 年前提出的一种独特的交易算法。 该 EA 是该系统的一部分。 它作为一个封闭系统工作。 当角度正确以捕捉趋势时,EA 将启动买入。 止损是角度的10%。 就是这么简单。 输入: 手数余额百分比 交易量上限 = 最大手数 获利水平 = 默认为 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
OPTIMIZE BEFORE TEST AND USE TO FIND BEST INPUTS Hey there traders! Want a cutting-edge Expert Advisor for your MT4 platform? Look no further than Evolved Trends! This powerful trading algorithm, created with machine learning technology, focuses on trading GBP/USD on 1 Hour time frames. But hey, feel free to experiment with other assets and time frames for optimization! Just customize the inputs to match your own risk tolerance. With stops based on ATR and the ability to lock in profits and cu
Combine Winner
Thomas Bradley Butler
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
Thomas Bradley Butler
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
Twenty Eight Forex Pairs
Thomas Bradley Butler
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
Thomas Bradley Butler
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
Order Flow Volume
Thomas Bradley Butler
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
High Speed Low Drag
Thomas Bradley Butler
*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.
筛选:
无评论
回复评论