Nika EA

  • 专家
  • Nik Andersen
    Nik Andersen
    独立算法交易者和EA开发者,常驻丹麦,拥有15年交易经验。
    Nika EA的创建者 —— 一款专业的多策略智能交易顾问,基于自研信号引擎构建,包含12种信号类型、11种均线方法和15层风险管理控制。
    Nika EA源代码经三大领先AI平台独立分析,综合评分9.3/10,位居已审查智能交易顾问前0.5%。专注于构建稳健、可配置的交易系统 —— 无马丁格尔、无网格、无有毒风险。每项功能均为希望完全控制其自动化策略的严肃交易者而设计。
    欢迎就Nika EA配置、任何品种或时间框架的自定义回测以及MT5策略讨论提问。通过MQL5消息或Telegram联系。
  • 版本: 1.38
  • 更新: 10 三月 2026
  • 激活: 5

简介

Nika EA 是一款基于 MetaTrader 5 的多策略智能交易系统,核心采用专有信号引擎,通过线性回归分析价格相对动态中间点的偏差来驱动信号。系统输出三路振荡器数据流——信号线、均线和柱状图,适用于 12 种可配置信号类型、3 个独立规则槽位以及 15 层风险管理体系。

线性回归计算引擎

核心信号计算不直接使用原始价格,而是测量价格相对于动态中间点的偏差,再对该偏差序列应用最小二乘线性回归,提取方向性动量。

每根 K 线的计算步骤如下:

  • 第一步 — 动态中间点:在回望周期内找到最高高点和最低低点,计算其均值,再将该均值与价格的运行 EMA 二次平均,得到能够同时适应震荡和趋势的动态中间点。
  • 第二步 — 偏差序列:将收盘价(或启用时为 Heiken Ashi 收盘价)减去动态中间点,生成中心化偏差值,反映价格在当前结构中的相对位置,而非绝对价格水平。
  • 第三步 — 最小二乘线性回归:在完整回望窗口内,引擎从偏差序列计算 sumX、sumY、sumXY 和 sumX2。斜率 = (N * sumXY - sumX * sumY) / (N * sumX2 - sumX^2),截距 = (sumY - slope * sumX) / N。回归终点值作为信号线输出,可配置偏移量。
  • 第四步 — 比例归一化:在第一根 K 线时计算全局比例乘数,使信号输出范围在不同价格水平的品种(XAUUSD、EURUSD、指数、加密货币)上保持一致。
  • 第五步 — 均线平滑:信号线通过可配置的移动平均处理,生成均线。信号线与均线的交叉构成多种信号模式的主要触发条件。

Heiken Ashi 预处理

在偏差计算之前,可选择应用 Heiken Ashi 变换。每根 K 线的 OHLC 按标准 Heiken Ashi 公式重新计算,所得平滑后的 OHLC 值替代原始价格,用于中间点范围扫描和偏差计算,从而在回归前降低尖峰敏感性。

柱状图模块

并行运行独立的柱状图振荡器。它计算价格(或 Heiken Ashi 收盘价)的 EMA,然后分别测量高点到 EMA 的距离(多头缓冲区)和 EMA 到低点的距离(空头缓冲区)。两个缓冲区均经过独立 EMA 平滑后合并为最终柱状图序列,量化价格极值相对中心 EMA 的垂直振幅。

12 种信号类型

  • Nika 信号线穿越均线
  • Nika 信号线穿越指定水平
  • 柱状图穿越水平
  • 柱状图方向变化
  • 双均线交叉
  • 收盘价相对均线位置
  • 两条 Nika 信号线交叉
  • 两条信号线同时穿越各自均线
  • 信号线穿越两条均线
  • 信号线方向性运动
  • 均线方向性运动
  • 信号线与均线同向运动

模块化规则系统

三个独立规则槽位,每个支持任意 12 种信号类型之一、独立时间框架以及入场触发或入场过滤器的角色分配。入场控制模式 ALL 或 ANY 决定触发条件。

风险管理 — 15 个独立层级

  • 止损 — 固定点数、ATR 倍数或价格千分比
  • 10 级止盈阶梯,每级配置比例部分平仓
  • 保本 — 达到盈利阈值后自动移动止损
  • 止损步进 — 独立于追踪止损的逐步止损推进
  • 追踪止损 — 基于 RRR 步进或固定百分比
  • 每日账户追踪 — 权益曲线追踪止损保护
  • 每日亏损/盈利限制
  • 每周亏损/盈利限制
  • 每日最大入场次数
  • 最大开仓手数 — 按品种或全品种
  • 点差和佣金补偿
  • 方向过滤器 — 仅做多、仅做空或双向
  • 交易冷却期

再入场与加仓系统

交易关闭后,再入场系统可在相同方向自动开仓,系列次数可配置(固定次数、0 关闭或 -1 无限)。加仓系统支持最多 10 个独立级别,每级具有独立的 RRR 触发距离和仓位大小。

附加功能

  • 实时新闻过滤器 — 经济日历集成,按影响级别过滤
  • 交易时段过滤器,支持时区和夏令时
  • 星期过滤器
  • 实时仪表板 — 显示信号状态、盈亏及过滤器状态
  • 推送通知、邮件和声音提醒
  • MT5 策略测试器 6 种自定义优化标准

使用方法

  • 将 EA 挂载到任意 MT5 图表上。
  • 至少启用一个规则槽位并选择信号类型。
  • 配置止损方式和至少一个止盈级别或追踪模式。
  • 上线前至少启用每日亏损限制和最大开仓手数作为基础风险保护。
  • 在 MT5 策略测试器中充分测试后再部署到实盘账户。

注意事项 / 系统要求

需要支持对冲账户类型的 MetaTrader 5。市价单执行方式。兼容经纪商提供的所有品种和时间框架。建议使用连接稳定的 VPS 持续运行。新闻过滤器需要在工具 > 选项 > 智能交易系统中将日历数据 URL 添加到允许列表。

推荐产品
Gold Ambush Breakout Aurum Xauusd Algo 黄金狙击手 | 趋势波段策略 | 稳健增长 Aurum Gold Ambush 是一款专为 XAUUSD (黄金) 设计的专业交易系统,其核心理念是“耐心”与“精准”。与那些每分钟都在频繁开单的高频机器人不同,该算法就像一名 狙击手 (Sniper):它会静静等待完美的形态出现,然后果断出击,以捕捉最大的行情波动。 这款 EA 专为 长期资本增长 而设计,重质量而非数量。 ️ 这款 EA 适合您吗?(请务必阅读)  * 请勿购买:如果您在寻找“刺激”,并希望看到每小时都在开单。  * 请勿购买:如果您在寻找“一夜暴富”的赌博工具。  * 请购买:如果您明白 一笔完美的波段交易 胜过 50 笔微利的剥头皮交易。  * 请购买:如果您希望以专业的风险回报比,稳步实现资本增长。 "Aurum" 的投资哲学 请将此 EA 视为一项 数字资产 (Digital Asset),而不是赌桌上的筹码。 大多数交易者失败是因为他们追求“快钱”。Aurum 是为那些懂得 复利 (Compounding)
Olympus Zenith Sentinel  > "The Ultimate Grid Evolution with Institutional Correlation Shield."  What is Olympus Zenith Sentinel? Olympus Zenith Sentinel is a God-Tier institutional grid system- built to survive the harshest market conditions. Inspired by the flagship EAs in the market, we completely re-engineered the grid mechanics by introducing the "Correlation Shield"- and "Omni-Directional Pending Traps".  Instead of randomly executing market orders, Olympus calculates volatility zone
TrendPilot MT5 – H1/M15 Alignment Scalping Engine TrendPilot MT5 is a trend-following scalping Expert Advisor built around one simple principle: Trade only when the higher timeframe trend and lower timeframe momentum agree. The EA continuously analyzes the H1 market direction and waits for confirmation from the M15 timeframe before entering the market. If both timeframes are aligned, TrendPilot executes trades in the direction of the trend. If alignment is lost, the EA stays flat and patiently
The Catalyst EA
Daniel Naranjo Morales
The Catalyst EA The Catalyst EA 是一款为 MetaTrader 5 平台设计的精密智能交易系统(EA)。它专为在   H1 时间周期 上交易   AUDUSD 货币对 而开发。该EA采用多指标策略,旨在识别并利用潜在的市场反转和回调行情。 其设计的核心重点是稳健的风险管理,具有动态手数计算和多层交易保护功能,可有效管理您的资金。 策略 The Catalyst EA 结合了多种广受认可的技术指标,从多个角度分析市场状况。 它利用 抛物线转向指标 (Parabolic SAR)   来识别潜在的入场和出场点,该指标也作为其动态追踪止损的基础。 动量震荡指标 (Awesome Oscillator)   用于衡量市场动能,并确认潜在走势背后的力量。 RSI 过滤器 帮助评估超买或超卖状况,增加一层额外的确认,以避免在市场极端位置入场。 最后,包含一个 基于ATR的波动率过滤器 ,以确保EA在合适的市场环境中运行,避免在波动性过低或过高的时期进行交易。 该策略的内部参数已针对 AUDUSD 货币对的特定行为进行了仔细校准,使其成为一个专用工具,而非“一刀切”的
The EA uses scalping strategy at night, trading consists of three algorithms and each algorithm works in its own time interval. The EA uses many smart filters to adapt to almost any economic situation. Pending orders are used for the least slippage when trading scalping. The adviser is safe and does not require any settings from the user, just install it on the chart and you are ready. The EA sets a protective stop order, so the trader does not have to worry that the robot will allow significant
NRP Smc Pro
Black Panther AI
NRP SMC PRO EA — Product Description Short Description Professional Smart Money Concepts Expert Advisor engineered for XAUUSD, combining institutional market structure analysis, Fair Value Gaps, liquidity sweeps, and prop-firm-focused risk management. Includes optional news filtering, trading sessions, trade journaling, and advanced capital protection. NRP SMC PRO EA — Institutional Smart Money Automation for MT5 NRP SMC PRO EA is a professional Smart Money Concepts Expert Advisor built around c
Momentum SNI
Wassayos Phuthadthom
Momentum SNI v1.31: Sniper Trading System | Capture Major Trends | Target RR 1:30 "Less loss, more profit." If you're tired of scalping or Martingale EAs that boast a 90% win rate but cause you to lose your entire account in a single day,  Momentum SNI  is the complete opposite. This EA is designed for asymmetric risk , aiming to capitalize on the strongest market momentum to maximize profits with a risk-to-reward (RR) ratio of 1:30. Key features and logic. Strict momentum filter: This EA doesn
Omega AI MT5
Irina Selivanevskaia
1 (4)
Omega AI Neural EA:基于 LLM 共识与交互式上下文分析的 XAUUSD 认知算法系统 实时监控: 系统的认知算法有效性已在真实交易账户中得到确认。您可以通过以下链接独立审核 Omega AI Neural EA 的运营活动、当前统计数据和净值动态:  https://www.mql5.com/ru/signals/2361385 价格动态与限量许可: 该项目以限制访问的形式实施,以维护 AI 基础设施的稳定性。许可成本根据售出的份数自动增加: 前 7 份: $249(特别早期访问) 下一阶段: $349 中间阶段: $699 最终价格: $1999 I. 认知分析与决策架构 Omega AI 基于混合模型,将专有执行算法与由 ChatGPT 神经网络支持的分析核心相结合。与过去几代不同,它专注于市场结构的语义分析: 多模型 LLM 共识: 系统对 ChatGPT 模型(包括 v5.2)的多次迭代执行并行查询,以形成对当前市场阶段的共识。 上下文过滤: AI 识别标准指标无法访问的“市场噪声”和价格异常。 动态神经推理: 仅在数学算法与 AI 分析结论完全一致时才形成
Aurum Sentinel doesn't predict the breakout. It's already standing at the level when it happens. No indicators, no repainting, no discretionary judgment calls at 3 AM. It places real pending Stop orders at genuine standing price extremes and lets the market pull the trigger — then manages risk mechanically from the instant the trade opens. Why Aurum Sentinel 1. It trades levels, not indicators Every hour, Aurum Sentinel recalculates the highest high and lowest low over your chosen lookback windo
Gordian Knot 1
Hidenori Tanaka
This EA is a simple automated trading system for the Meta Trader 5 platform. It uses parabolic SAR to automatically adjust lot size based on market trends. By this, the EA does not take a large amount of risk, but instead steadily accumulates profits. Main Features The EA does not use the martingale method for lot size adjustment. If a position is taken before the forex market closes, the position will be carried over to the weekend. This EA is designed to hold multiple positions at the same t
Quantum bot
Samuel Bedin
quantum bot designed for forex trading. test on eur/usd gives good returns. based on several indicators include risk management. best timeframes 1h; 4h. this bot was backtesting for the past year and gives 2000% return profit. no hidden lost trades in code. settings are customizables to give you better experience of trading. contact me for more details or installation guide
Modern bot
Nadiya Mirosh
The Forex trading advisor Modern bot is an automatic scalping system that opens and closes deals using a special tick analysis algorithm programmed in the code without human intervention. The main task of the ego is to instantly make a deal where a person loses time for analysis and decision making. They also automate trading, removing the emotional burden from a person and allowing you to save time. Scalping is one of the varieties of short-term strategies, moreover, the shortest of them. Usin
Joni Lee Second Forex Robot in the Market CAN RUN WITH ONLY $300 (recomended minimum deposit) LOT size 0.01 if <$2000 else 0.02 Introducing the “Joni Lee First Forex Robot,” a trailblazing innovation in automated forex trading. Developed by the renowned Joni Lee, this robot is the first of its kind, setting new standards in the forex market. Key Features: Can take profit (TP) and cut loss (CL) State-of-the-Art Algorithms:   Employs sophisticated algorithms to analyze market data and execute tra
Rebalance Precision Pro MT5 是一款機構級演算法交易系統,專為智慧投資組合再平衡和基於波動率的網格交易執行而設計。 與盲目追逐強勁動能的傳統網格EA不同,Rebalance Precision Pro採用專有的雙濾波架構,將EMA趨勢基線與不重繪的TMA(三角移動平均線)精確帶相結合,以識別高機率的極端反轉點。 ======================================================= 主要交易亮點 ======================================================= - 雙重濾波精度:利用EMA趨勢對齊和雙重平滑TMA帶過濾雜訊。 - 動態ATR步長引擎:根據即時市場波動自動計算自適應網格間距。 - 混合訂單鎖定(K線+時間):防止在重大新聞事件期間重複快速執行訂單。 - 進階恢復與保護: * 籃子獲利目標:自動進行全域獲利池化和乾淨俐落的部位平倉。 * 智慧型自動避險模式:動態避險分配,有效降低深度回撤風險。 * 硬性停損保護:透過固定美元金額或餘額百分比
DeltaRebate v9
Sinlapachai Satthuchon
ULTRA-GRID SMART TRADER (UGST) - The Ultimate Volume Maximizer & Rebate Hunter ULTRA-GRID SMART TRADER   is a highly aggressive, high-frequency Expert Advisor engineered specifically for massive volume generation and rebate (cashback) farming. If your primary goal is to generate an extraordinary amount of trading lots to claim maximum broker commissions, this is the ultimate tool for your portfolio. How It Works:   UGST utilizes a specialized Hedging and Grid framework combined with high-freque
Gold Scalper King EA
Naveen Kumar Shyam
Gold Scalper King EA is a fully automated MetaTrader 5 Expert Advisor developed exclusively for trading XAUUSD (Gold). The EA follows a systematic breakout strategy that combines market structure analysis, pending order execution, and dual EMA trend confirmation to identify trading opportunities. Rather than predicting market reversals, Gold Scalper King waits for price to confirm a breakout beyond significant swing highs or swing lows before entering a trade. Every position follows predefined t
MIISC PullBack
Adebayo Bisiriyu Adewole
MIISC PullBack is an indicator based STRATEGY which is one of the OFFICIAL "MIISC STRATEGY", the alogrithm takes into consideration a potential PULLBACK for entry.  Important Steps: * The EA should be used on 1H timeframe only. * Leverage the probability of the EA by applying to a minimum of 5 different symbols. * According to your capital, set a reasonable lot size. * The EA uses a fixed and dynamic stop loss. - A fixed stop loss is applied at the time of executing the trade identified by the e
EA Golden HARTLEY is a robust trading strategy designed for XAUUSD or GOLD  and M30 time frame. The EA creates pending stop trade orders using indicators Linear Regression Smoothed Moving Average, BB Range and parameters based on the market environment. It uses fixed SL, PT and exit from the position after time cut off. The EA was tested with several Monte Carlo robustness tests and optimized. Backtest was done on ticks data with a 15-year history 2007-2023. There is no need to set any paramete
Orca Killer Algo  is an automated trading system developed for XAUUSD (Gold), designed to operate on the M5 timeframe. It uses algorithmic logic and data-driven analysis to identify trading opportunities based on predefined rules and systematic market evaluation. Supported Settings Symbol : XAUUSD | NAS 100 Recommended Brokers:   IC Markets, VT Markes, or any broker with ECN / RAW / Low Spread account type Timeframe:   M5 (Recommended) Strategy Type:   Algorithmic / Data-Based / Mean Reversion S
Quantum Candlestick Collider — Institutional-Grade Precision for XAUUSD Quantum Candlestick Collider is a next-generation automated trading system engineered specifically for XAUUSD (Gold) on the M15 timeframe. Built on a proprietary quantitative engine and advanced candlestick intelligence, this EA delivers exceptional entry precision, adaptive market awareness, and institutional-level risk control — designed to perform even under extreme market volatility. Real trading environment Transpa
RSI Stocks Rebound
Alexandru Chirila
4 (1)
RSI Stocks Rebound The Dollar Cost Average with RSI Expert Advisor (EA) combines the power of the Dollar Cost Average (DCA) strategy with the Relative Strength Index (RSI) indicator to optimize entry and exit points for trades. This EA is specifically designed for traders who want to take advantage of market conditions, using the RSI to trigger buy signals during market dips and executing a DCA strategy to accumulate positions when the market continues to move against them. All Products   |   Co
Mac Rider Gold
Ignacio Agustin Mene Franco
MacRider GOLD is a professional grid-based Expert Advisor (EA) specifically designed for XAUUSD (Gold). It combines MACD signal filtering with dynamic trailing stops and advanced money management. The EA uses the MACD indicator to detect trend direction before placing pending orders, filtering out low-quality entries and focusing on high-probability setups. The grid system places BUY STOP and SELL STOP orders at configurable distances, while automatic profit closing and dynamic trailing stops
# CyberTrade Gold Trend Pro MT5 ### The Institutional-Grade 4-Line EMA Breakout & Dynamic Cycle Engine for XAUUSD CyberTrade Gold Trend Pro is an advanced, fully automated algorithmic trading system engineered exclusively for Gold (XAUUSD). By combining a high-precision 4-Line Exponential Moving Average (EMA) Alignment Matrix with a mathematical, cycle-based Risk-to-Reward (R:R) Money Management engine, this Expert Advisor captures explosive trend expansions while keeping drawdown strictly cap
Dragon wing
Shinichi Ikeda
EAの概要 MACDとストキャス を使用したEA MACDとストキャス をベースにトレーディンストップ、 テイクプロフィットレベル などの設定及び機能を搭載しています。 特徴 新規エントリーをサーバー時間でトレードをタイムコントロール出来る機能を搭載しています。 利確幅、ロスカット幅を任意に設定可能です。 MT5であればブロカー関係なく、暗号資産(仮想通貨)、FX、CFD、株式等の使用可能なEAとなっております。 EAを稼働させる上での注意事項 当サイトでご提供しているEAは、利用者の収益を保証するものではありません。 当サイトで掲載しているロジック、損益シミュレーションと同じ結果になることを保証するものでもありません。利用者の環境等で結果が異なることもございます。 実際にEAを利用するか中止するかの判断は、必ずご自身で決定してください。
First Scalper MT5
Kyra Nickaline Watson-gordon
5 (4)
First Scalper is an Expert Advisor based on Scalping, Using the best and safest scalping EA on market. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA  doesn't need any professional information or Forex Trading Knowledge. First Scalper can trade on all symbols and all time frames, using a special and unique strategy developed by the author. Using EA : General Options Trade Type : Long/Short/Both Stop
PythonX SwissCore USDCHF Precision Market Structure Trading Engine PythonX SwissCore USDCHF is a professional-grade Expert Advisor built around one of the most respected concepts in modern trading: market structure. By combining Break of Structure (BOS) and Change of Character (CHOCH) with EMA-based trend filtering, the system is designed to execute trades with discipline, clarity, and consistency. Why This System Stands Out Most automated systems rely heavily on lagging indicators. PythonX Swi
Doperman Scalper
Shamsan Yahya Muhammad Ali Masad
DOPERMAN SCALPER V1.0 - 专业交易系统 革命性智能剥头皮EA,配备AI驱动的风险管理 为什么DOPERMAN SCALPER脱颖而出? DOPERMAN SCALPER V1.0   不仅仅是另一个交易机器人,而是 结合马丁格尔原则与军工级风险管理的先进交易系统 。专为要求稳定盈利且 提供最大保护的 专业交易者设计。 独家功能与优势 智能马丁格尔系统 智能仓位加倍 :在最佳时机以数学精度自动加倍仓位 5种不同马丁格尔策略 :指数型、固定手数型、累加型、乘法型或自定义模式 基于步长的激活 :仅在价格对您不利时按预定步长开设额外仓位 利润锁定技术 :达到集体利润目标时自动平仓 军工级风险管理 自动回撤保护 :在1%回撤时停止交易(可调至5%) 最大订单控制 :限制同时持仓数量,防止账户过度暴露 保证金安全系统 :保证金水平低于安全阈值时自动减少手数 权益保护 :24/7监控账户权益,必要时采取紧急措施 专业交易控制 双魔术编号系统 :为买入和卖出仓位分配独立魔术编号(78747/78741) 完整时间控制 :仅在您偏好的交易时间内进行交易,
Dynamic TP XAU Scalper
Thanaporn Janbuala
EA Name: Dynamic Hybrid Scalper (XAU Specialist) "A Synergistic Blend of Trend Following and Smart Grid Logic for Consistent Gold Trading" Key Highlights Multi-Timeframe Analysis: Triple-layer trend analysis that monitors the High Timeframe (HTF) trend down to the specific entry Signal Timeframe for maximum precision. 5-Factor Signal Confirmation: A sophisticated filtering system using five core metrics: EMA Trend, RSI, MACD, ADX Strength, and Price Action Breakout. Dynamic Lot Managemen
Ksm: Smart Solution for Automated Forex Trading Ksm is a tool designed for automating Forex trading, using modern methods of time-series data analysis to work with multiple currency pairs across different timeframes. Key Features and Benefits Multi-currency support : Ksm enables trading across multiple currency pairs, helping traders adapt their strategies to various market conditions. New currency pairs can be easily added. Time-series data analysis : Utilizing advanced algorithms, Ksm analyzes
该产品的买家也购买
Scalping Robot Pro MT5
MQL TOOLS SL
4.37 (157)
Scalping Robot Pro is a professional trading system designed specifically for fast and precise scalping on XAUUSD using the M1 timeframe. The system is built to capture short term market movements with accurate execution and controlled risk management. It focuses on real time price behavior, momentum shifts, short term volatility, and selective grid based trade management techniques to identify high probability trading opportunities in the gold market. Scalping Robot Pro is optimized for traders
Ultimate Breakout System
Profalgo Limited
5 (48)
重要的 : 此套装仅以当前价格限量发售。    价格很快就会涨到1999美元!   已包含 300 多种策略 ,更多策略即将推出! 额外福利 :  从我的其他 EA 中免费 选择 5 款!   所有设置文件 + 完整设置和优化指南 视频指南 实时信号 第三方评论 新增 - 44 种策略实时信号 欢迎来到终极突破系统! 我很高兴地向大家介绍终极突破系统,这是一款经过八年精心开发的复杂且专有的智能交易系统 (EA)。 该系统已成为MQL5市场上多款表现优异的EA的基础,其中包括备受赞誉的Gold Reaper EA。 它曾连续七个多月位居榜首,此外还有 Goldtrade Pro、Goldbot One、Indicement 和 Daytrade Pro。 终极突破系统并非仅仅是另一款EA(电子交易系统)。 它是一款专业级工具,旨在帮助交易者在任何市场和时间框架内创建无限数量的突破策略。 无论您是专注于波段交易、超短线交易还是构建多元化投资组合,该系统都能提供无与伦比的灵活性和定制化功能。 可能性无穷无尽! 对于自营交易公司的交易员来说:   有了这个系统,您终于可以创建自己独
XG Gold Robot MT5
MQL TOOLS SL
4.34 (113)
The XG Gold Robot MT5 is specially designed for Gold. We decided to include this EA in our offering after extensive testing . XG Gold Robot and works perfectly with the XAUUSD, GOLD, XAUEUR pairs. XG Gold Robot has been created for all traders who like to Trade in Gold and includes additional a function that displays weekly Gold levels with the minimum and maximum displayed in the panel as well as on the chart, which will help you in manual trading. It’s a strategy based on Price Action, Cycle S
Big Forex Players MT5
MQL TOOLS SL
4.76 (141)
We proudly present our cutting-edge robot, the  Big Forex Players EA  designed to maximize your trading potential, minimize emotional trading, and make smarter decisions powered by cutting-edge technology. The whole system in this EA took us many months to build, and then we spent a lot of time testing it. This unique EA includes three distinct strategies that can be used independently or in together. The robot receives the positions of the  biggest Banks  (positions are sent from our database t
Pulse Pro MT5
Mian Rameez Ali
Two lines, always circling — 21 and 49. Most of the time they say nothing. Then they cross, and the system stops waiting. It closes what it was holding, opens what the cross demands, and sets its stop and target without asking twice. Risk is sized off the account itself, not fixed guesses — one bad calculation and it simply declines to trade at all. No indecision, no averaging in. Every new bar gets exactly one verdict. Built for any symbol, any timeframe. Fast against slow — the rest is ari
Waka Waka EA MT5
Valeriia Mishchenko
4.13 (40)
8+ years of live track record with +12,000% account growth: Live performance MT 4 version can be found here Waka Waka is the advanced grid system which already works on real accounts for years. Instead of fitting the system to reflect historical data (like most people do) it was designed to exploit existing market inefficiencies. Therefore it is not a simple "hit and miss" system which only survives by using grid. Instead it uses real market mechanics to its advantage to make profit Supported cu
Mad Turtle
Gennady Sergienko
4.44 (125)
交易品种 XAUUSD(金/美元) 时间周期 (周期) H1-M15(任意) 支持单仓位交易 是 最低入金 500 美元 (或其他货币等值) 兼容任何经纪商 是(支持两位或三位小数报价,任何账户货币、符号名称和 GMT 时间) 无需预先配置即可运行 是 如果您对机器学习感兴趣,请订阅频道: 订阅! Mad Turtle 项目的主要特点: 真正的机器学习 此智能交易系统 (EA) 不会连接到任何 GPT 网站或类似服务。 模型通过内置于 MT5 的 ONNX 库部署。在首次初始化时,您将看到一个系统消息,这是无法伪造的。 CLICK 参见:ONNX(开放神经网络交换格式)。 资金安全性 不使用日切前交易、微型剥头皮或基于低统计样本的窄幅交易; 不使用高风险策略,例如网格或马丁格尔; 也不使用任何可能长时间运行并在一天内失去全部利润甚至全部资金的策略。 独特性 EA 基于我独特的 特征工程 ,采用自定义的奖励与惩罚训练方法,结合元模型级联筛选与多种集成方法。 模型在完整的 24 小时交易格式下于大型 H4 时间框架上训练,可持仓数小时到数天。 它们以点数(pips)而非
YZH AlgoCore
Yusuf Ziya Hazeral
5 (2)
YZH AlgoCore — 一台机器人,六种交易品种 智能算法,精准执行。 市面上充斥着成千上万的“黄金机器人”。但有多少机器人能够无需任何配置更改,就能在 XAUUSD、EURUSD、GBPUSD、GBPJPY、USDJPY 和 BTCUSD 五种交易品种上运行同一套引擎呢? YZH AlgoCore 现已成为真正的多品种交易系统。只需将其添加到图表,它便能自动识别:机器人会自动检测交易品种并加载其内置的专属配置文件。时间周期、指标配置、缩放行为——所有参数均已针对每种交易品种进行内部定义。六种交易品种,只需一个许可证——无需为六个不同的机器人支付费用。 为什么选择 YZH AlgoCore? 大多数交易系统失败并非因为策略糟糕,而是因为执行不一致。大多数网格机器人盲目地以固定的时间间隔开仓,并在第一个强劲趋势出现时就交出账户。 YZH AlgoCore 旨在解决以下两个问题: 选择性入场:每个仓位序列都从基于策略的信号开始。只有在算法确认市场状况后才会进行加仓。 精心设计的防御机制:多层智能恢复模块经过测试,能够应对真实的崩盘场景。交易前保证金验证会检查每一笔订单
Syna
William Brandon Autry
5 (27)
Syna 7 - 全程陪伴交易的 AI 大多数交易系统在入场之后就停止思考了。 Syna 不会。 Syna 7 是一个 AI 交易助手,也是一套自主交易系统,从分析到离场全程参与。 它可以监控当前行情、记住交易的来龙去脉、评估新闻与波动、管理持仓、协调账户,并在订单成交之后继续重新审视自己的决策。 交易不会在入场时结束。 智能也不该如此。 从分析到离场,一以贯之的智能。 频道与社区 关注频道,获取更新、信号、发布消息和产品演示。加入公开群组,提问并与其他交易者交流。 关注我的 MQL5 频道 加入我的 MQL5 公开群组 什么是 Syna? Syna 的设计目标,是充当整个交易运作的智能层。 它可以配合: 自身的自主交易策略 由其他 EA 开出的持仓 手动交易 多个 MetaTrader 5 终端 多个经纪商与账户 不同的品种、策略和风险配置 你可以把 Syna 当作自主交易者、AI 助手、持仓管理器、投资组合协调者,或者四者兼具。 AI 的优势不再局限于单一入场信号或某个孤立的 EA。 Syna 为何改变你的交易方式 传统 EA 遵循预先设定的逻辑,只能沿着开发者事先编写好的路径做
AiQ
William Brandon Autry
4.87 (38)
AiQ Gen 2 – 更快。更智能。前所未有的强大。 我们在2024年末用Mean Machine开启了这一变革。它是最早将真正的前沿AI引入实盘零售交易的系统之一。 AiQ Gen 2是这条路线上的下一次进化。 AiQ Gen 2为完全不同层次的速度而生。挂单是其优势的核心,使其能够在动能扩展之前精准定位,然后让自适应智能接管。 大多数AI工具回答一次就忘记一切。 AiQ Gen 2不会。 它记住每一个挂单设置、每次下单或调整背后的推理、为什么触发或为什么等待,以及市场的确切反应。每个会话的完整上下文。随时间不断累积的持久智能。 这不是另一个为了营销而添加AI的EA。 这是一个围绕精准挂单执行构建的高速专业智能。 传统EA仍然困在固定逻辑中。AiQ Gen 2从真实结果中学习,磨练其选择能力,优化执行时机,并持续改进在实盘条件下的响应方式。 它不会重置。它不会过时。它不会被淘汰。 AiQ Gen 2作为一个强大的独立系统运行,干净、精准且快速。对于希望进行可选生态系统集成的交易者,它也可以无缝接入Syna作为专属Agent,共享持久记忆并将其高速挂单优势贡献给更广泛的投资组合。
GoldOil
Babak Alamdar
LAUNCH PROMO: ONLY A FEW COPIES LEFT! OPEN BLACK BOX: ONE EA, MANY STRATEGIES — CREATE NEW SETS, CONTRIBUTE YOUR IDEAS, AND POTENTIALLY TURN THEM INTO COMMERCIAL EAs UNDER AGREEMENT. Gold Is The Target. Oil Is The Driver. GoldOil Watches What Drives Gold. VERY LIMITED COPIES AT CURRENT PRICE Final Price: $2499 Exclusive:   After purchase, send me a direct message to receive VIP set files, setup instructions, and access to the private GoldOil Telegram group. PROP FIRM READY! Buy not just a back
Aura Black Edition MT5
Stanislav Tomilov
4.32 (53)
Aura Black Edition 是一款完全自动化的 EA,仅用于交易黄金。专家在 2011-2020 年期间在 XAUUSD 上表现出稳定的结果。没有使用危险的资金管理方法,没有马丁格尔,没有网格或剥头皮。适用于任何经纪商条件。使用多层感知器神经网络 (MLP) 训练的 EA 是一类前馈人工神经网络 (ANN)。术语 MLP 的使用含糊不清,有时松散地指任何前馈 ANN,有时严格指由多层感知器组成的网络(具有阈值激活)。多层感知器有时被通俗地称为“原始”神经网络,尤其是当它们只有一个隐藏层时。MLP 由至少三层节点组成:输入层、隐藏层和输出层。除了输入节点之外,每个节点都是使用非线性激活函数的神经元。MLP 利用一种称为反向传播的监督学习技术进行训练。多层结构和非线性激活使 MLP 与线性感知器区别开来。它可以区分非线性可分的数据。 此价格还剩 1 份,之后价格将上涨至 3000 美元 如何设定及参数说明 (阅读这里) Live results:   https://www.mql5.com/en/signals/2313678 More Signals:   Check my
Perceptrader AI MT5
Valeriia Mishchenko
4.67 (6)
80 consecutive months in profit with low drawdown: Live performance MT4 version can be found here Perceptrader AI is a cutting-edge grid trading system that leverages the power of Artificial Intelligence, utilizing Deep Learning algorithms and Artificial Neural Networks (ANN) to analyze large amounts of market data at high speed and detect high-potential trading opportunities to exploit. Supported currency pairs: NZDUSD, USDCAD, AUDNZD, AUDCAD, NZDCAD, GBPCHF Timeframe: M5 Features: Trend , Mome
NextGen PRO
Muhammad Maaz
NextGen PRO NextGen PRO is an automated Expert Advisor designed for trading XAUUSD (Gold) on MetaTrader 5. It uses a trend-following approach with Buy Stop and Sell Stop pending orders, grid-based order placement, batch lot progression, money-based risk management, daily limits and weekend trading restrictions. Strategy The EA determines the market direction using the closed M5 candle and two moving averages. When the market is identified as an upward trend, the EA places Buy Stop orders above
Dragon Fire Algo
Muhammad Awais
Dragon EA – Institutional Grade Breakout & Profit-Side Pyramiding System Developer Profile & Background With over 14 years of hands-on manual and algorithmic trading experience in the Forex market since 2010, Dragon EA is the culmination of my single most successful manual trading strategy—fully automated and refined into an institutional-grade expert advisor. Core Strategy & Key Highlights Dynamic Percentage-Based Engine: Operates entirely on proportional risk percentage allocation rather than
GoldFlow Pro1
Minh Tu Nguyen
5 (2)
An order-flow Expert Advisor built for one market only: XAUUSD. GoldFlow Pro reads the live GOLD market tick by tick — price movement, momentum, and liquidity behavior — and acts only when its conditions are met. Precise entries. Defined risk. Disciplined management on every position. MQL5 Signal — Live Monitoring https://www.mql5.com/en/signals/2384830 Introducing GoldFlow Pro GoldFlow Pro was developed around a single idea: instead of reacting to lagging indicators, read what the market is act
Golden Pickaxe MT5
Valeriia Mishchenko
3.56 (9)
EA has high-performance live track records of different set files: Live performance MT 4 version can be found here Golden Pickaxe is a mean-reversion grid trading system that uses machine learning technology to place high-profit potential trades on the Gold market. It uses real market inefficiencies to its advantage to have an edge over the market. The EA has 5 predefined set files, which are essentially 5 different trading systems on gold . You may choose the default option (XAU Risky) or have
Night Hunter Pro MT5
Valeriia Mishchenko
3.92 (37)
EA has a live track record with many months of stable trading with  low drawdown: All Pairs 9 Pairs Night Hunter Pro is the advanced scalping system which utilizes smart entry/exit algorithms with sophisticated filtering methods to identify only the safest entry points during calm periods of the market. This system is focused on a long-term stable growth. It is a professional tool developed by me years ago that is constantly updated, incorporating all the latest innovations in the trading area.
Foli Pivots MT5
John Folly Akwetey
Expert advisor trades by pivot levels, support and resistance levels based on pivot levels. Also expert advisor takes into account volatility filter, uses standard Martingale and anti-Martingale systems, drawdown protection, standard trailing stop, trading time and trading Trade Order   – direction of trading (only buy, only sell or buy and sell) Use Volatility Filter   – enabling/disabling of volatility filter using Volatility Filter   – value of volatility filter Count Of Days For Volatility F
Velora MT5
Ahmad Aan Isnain Shofwan
The Intelligent Grid EA — A Team of Smart Modules Following the 5-star success of its MT4 predecessor, Velora has been completely rebuilt for MT5 with a fundamental shift in design. Most grid EAs are one engine doing many jobs. Velora is different. Inside Velora, there is a team. Four smart modules, each with one specialty, working together so the system stays adaptive at every stage of a trade — from the moment of entry, to scaling decisions, to the exit. Meet the team: VSE — Velora Smart Entr
X Gold Nexus — AI-Powered Next-Generation Gold Trading Execution System X Gold Nexus is an advanced AI-powered quantitative trading execution system specifically engineered for the gold market (XAUUSD). By integrating cutting-edge artificial intelligence technologies, adaptive market analysis, dynamic risk management, and intelligent order execution algorithms, the system is designed to provide stable and disciplined trading performance across varying market conditions. During the special offer
Quant Gold HFT Expert Advisor for XAUUSD on M15 timeframe. Main Features: ATR-based trailing stop and breakeven Daily Pivot levels filter Entry cooldown system Blocked hours during high volatility periods No martingale, no grid Backtest Results (Pepperstone, real tick data): 2 Years: Profit Factor 1.22, Max Drawdown 9.4% 1 Year: Profit Factor 1.27, Max Drawdown 9.2% 4 Months: Profit Factor 1.36 $500 account run on 0.01 lot The EA was tested on different time periods with stable results. Importa
Saiko Scalper v5
Samir Saleh Mohammed Hassan
SAIKO Scalper – 高精度Tick动量交易机器人 SAIKO Scalper 是一款先进的算法交易机器人,专门用于通过 Tick 动量分析识别并利用真实的市场动量。与仅依赖传统技术指标的系统不同,该机器人实时监控连续的价格变动,并在检测到强劲的方向性价格冲动时自动开仓。这种方法可以捕捉快速的市场机会,同时减少由正常市场波动产生的错误信号。 该机器人内置多层智能盈利保护机制。当交易开始盈利时,系统会自动通过动态跟踪保护、严格的盈利保护规则以及智能利润锁定机制来保护收益。这些功能旨在确保盈利交易得到有效保护,并减少市场突然反转带来的影响。 SAIKO Scalper 还包含先进的风险控制系统,例如早期亏损保护、自适应止损设置以及严格的资金保护逻辑。算法持续监控市场行为,并能够快速响应市场条件的变化。 该机器人适合希望使用高速、纪律性强并具备智能风险管理功能的自动化剥头皮交易系统的交易者。
XAUUSD TEMPORAL INTERFERENCE AITemporal Interference Scanner - The absolute pinnacle of Multi-Timeframe convergence. XAUUSD Temporal Interference AI - is the absolute pinnacle of market timing, built upon the groundbreaking "Cross-Temporal Interference" theory. By scanning the fractal noise across 9 different timeframes, the AI detects precise moments where market waves collide, cancel out, or amplify each other. When these temporal waves perfectly align in a localized singularity, the AI execu
Scalp Master 专家顾问(EA)是一种完全自动化的交易系统,专为趋势市场中的剥头皮策略设计。它用于在高流动性市场中识别短期交易机会,同时重点关注交易质量和风险控制。该EA适合偏好系统化、规则化交易且不进行手动操作的交易者。 它在低点差和高流动性的品种上表现最佳,包括: XAUUSD(黄金) EURUSD GBPUSD USDJPY BTCUSD USTEC(美国科技指数) 其他主要和次要货币对(低点差且执行稳定) 该策略专为趋势市场设计,旨在避免震荡或不可预测行情等低质量交易环境。 主要特点: 完全自动化交易系统,无需手动操作 移动平均线与RSI过滤器,提高胜率并避免低概率交易 集成新闻过滤器,在重大经济事件期间降低风险 高级移动止损系统,动态管理持仓 专注风险控制与回撤降低 Scalp Master 会在交易前和交易过程中持续评估市场条件,确保交易符合系统逻辑。趋势、动量和波动率过滤器的结合有助于提升交易质量。 该EA适用于提供稳定执行、低点差和高流动性的经纪商。适合初学者和希望使用结构化剥头皮策略的专业交易者。 最低入金:$100 推荐入金:$1000 输入设置: 请不要
Stealth 150 DE40
Szymon Jan Szarowski
4 (1)
对于高达340%年化收益率,我们深感抱歉! 没错,您没看错:这些年化340%的回测结果,几乎好得有些“不正经”。但请不要误会——这不是营销噱头,而是干净编程和真实回测的结果。当然,这样的梦幻收益不可能长期持续,因为任何EA在回测几年后都会遇到手数(lot size)的上限。不过,Stealth 150 DE40 展示了当算法“自由发挥”时可以达到什么高度。 所以,对不起收益太高——现在让我们来说说这个专家顾问(EA)本身: Stealth 150 DE40——专为DAX(DE40, .DE40Cash, GER40)打造的突破型专家顾问 隐形。不可阻挡。绝对透明。 Stealth 150 DE40 有什么功能? Stealth 150 DE40 是一款专为DAX(DE40, .DE40Cash, GER40)指数设计的全自动交易机器人,主打盈利性的剥头皮+趋势跟踪(突破)策略。 5.5年历史回测 年化收益率 >150%(复合年增长率,见上面说明) 不使用马丁格尔,不使用网格,不加仓补仓 防止经纪商操纵: 系统内置有紧急止损(SL)和止盈(TP)保护技术风险。但实际的交易管
PivotStorm
Li Yin Fang
PivotStorm - 自适应 XAUUSD 市场结构突破交易 EA MetaTrader 5 专业自动交易系统 PivotStorm 是一款面向黄金(XAUUSD)市场的专业 MetaTrader 5 Expert Advisor。 该系统针对喜欢结构化突破交易的交易者设计,通过市场结构分析、智能挂单执行以及多层风险管理,实现纪律化的自动交易。 不同于简单的突破机器人,PivotStorm 不追逐每一次价格波动,而是等待经过确认的重要市场结构,并在风险可控的条件下执行交易。 为什么选择 PivotStorm? 黄金市场具有明显趋势行情,同时也存在大量假突破。PivotStorm 遵循核心理念:等待有意义的市场结构,然后进行受控风险执行。 EA 不尝试预测所有市场走势。系统通过识别关键价格区域,构建突破交易场景,并按照预设风险规则管理交易执行。 查看MQL5 信号: 点击这儿 核心技术 1. 市场结构突破引擎 PivotStorm 分析确认后的市场结构,并识别重要交易水平。 系统分析: 确认后的摆动高低点 突破区域 价格运动有效性 市场动量状态 帮助系统过滤短期噪声,关注更有意义
SPARTAN GOLD SNIPER AI - V7.2 ULTIMATE The All-In-One Gold Solution: Smart Scalping and Professional Swing Trading. Spartan Gold Sniper is not just an EA; it is a complete trading system designed specifically for XAUUSD (Gold). Version 7.2 introduces the Smart Adaptive Engine, making it the most flexible bot on the market for both small accounts and large Prop Firm capitals. Critical Requirements Latency: You must use a VPS with less than 20ms latency (Recommended: MQL5 Built-in VPS). Account:
XAU SOVEREIGN QUANTUM AI  God-Tier MTF S/R + Grid Recovery Engine XAU Sovereign Quantum AI  is an entirely new breed of trading engine, born from the fusion of two proven institutional strategies: Multi-Timeframe Support and Resistance Analysis- and Institutional Volume Spike Detection. While the vast majority of Expert Advisors use lagging price indicators to chase entries, Sovereign waits patiently at the exact price zones where the biggest money moves happen, and only strikes when confirmed
CaicaiLS Pro - Advanced Pair Trading & Statistical Arbitrage (Version 9.0) The CaicaiLS Pro is a quantitative Expert Advisor designed for Long & Short operations (Pair Trading) using Statistical Arbitrage . Developed for traders seeking precision, it tracks correlation and cointegration anomalies across multiple asset pairs simultaneously, seeking performance in both mean reversion and momentum breakouts. Its advanced architecture features the introduction of Shadow Execution technology. The mat
作者的更多信息
HTF Candles Nika 可将任意更高时间框架的完整K线直接叠加显示在MetaTrader 5的当前图表上,无需切换图表即可获得多时间框架视角。 主要功能 - 在当前图表上以矩形加影线的形式绘制高时间框架K线 - 支持标准K线和平均K线(Heiken Ashi)两种显示模式 - 实时倒计时,显示当前高时间框架K线距关闭的剩余时间 - 多头和空头K线颜色可自定义 - 自动或手动控制K线宽度 - 可配置影线宽度、字体、字号及文字位置偏移 - 适用于任何品种和时间框架组合 - 自动检测交易时段间隙并调整渲染 - 轻量级 — 仅使用图表对象,无指标缓冲区 输入参数 显示设置 - Max Lookback — 绘制的高时间框架K线数量(默认:500) - Timeframe — 要显示的高时间框架(默认:H1) - Bars Mode — K线或平均K线模式 颜色设置 - Up Color — 多头K线颜色(默认:DodgerBlue) - Down Color — 空头K线颜色(默认:Red) - Frame Color — 时间框架标签颜色(默认:Red) - Count
FREE
<h2>Candles Size Stats</h2><p><strong>Candles Size Stats</strong> 是一款轻量且强大的指标,可以测量并可视化每根 K 线的大小(High − Low 的幅度),以皮折为单位,帮助您即刻了解任意品种和周期上的价格波动性状况。</p><h3>功能介绍</h3><p>该指标在独立窗口中以彩色柱状图显示每根 K 线的完整幅度。当当前 K 线大于上一根时显示为绿色,小于时显示为深绿色,波动性的扩大与收缩一目了然。</p><p>在柱状图上方,可叠加最多五条统计参考线,基于所选长度的滚动回望计算:</p><ul><li><strong>平均値</strong> — 过去 N 根 K 线幅度的简单算术平均値</li><li><strong>中位数</strong> — 排序分布的中间値,对极端値不敏感</li><li><strong>P90 / P70 / P50</strong>(或任意自定义百分位数)— X% 的 K 线幅度低于此局常参考大小线</li></ul><h3>图表信息面板</h3><p>可选的悬浮面板实时显示最新已关闭 K
FREE
NIKA QUANT ANALYZER — MT5策略测试器专业优化分析工具 停止猜测哪些优化结果是真实的,哪些是过度拟合的陷阱。 Nika Quant Analyzer读取MT5策略测试器XML导出文件,利用QM+评分即时对每个参数组合进行排名——一个融合了盈利因子、夏普比率、恢复因子、最大回撤、Return/DD和交易数量的综合指标。 现已支持多文件全局排名:放入多个XML文件,分析器将所有参数组合合并为跨品种和时间周期的统一排行榜。 主要功能 - QM+综合评分 — 一个数字做决策。可调权重公式。 - 多文件全局排名 — 加载多个XML,所有参数组合合并为一个排行榜。切换GLOBAL RANK和BY FILE模式。 - 品种和时间周期显示 — 每行显示该参数组合的品种和时间周期。 - QM分布直方图 — 对数尺度直方图,按质量等级(弱/中/强/精英)展示分布。 - 权益走势图 — 每行内嵌入小型权益曲线。 - 双页指标面板 — 第1页:PF、Sharpe、DD%、交易次数、RF。第2页:一致性分数、R2平滑度、收益%、RetDD、自定义标准。 - 鲁棒性检测 — RO
FREE
Spread Times Histogram and Stats是MetaTrader 5的点差监控指标。它实时绘制经纪商点差的彩色直方图,追踪滚动24小时平均值,并在点差超过可配置的动态阈值时发出智能提醒。 主要功能 - 彩色直方图:点差收窄时显示绿色,扩大时显示红色 - 滚动24小时平均线,持续提供背景参考 - 交易时段统计:当前时段的最小、最大和平均点差 - 智能提醒系统:当实时点差超过24小时平均值的设定倍数时触发 - 多时间框架聚合:在更高时间框架图表上运行,同时从更低时间框架提取数据 - 在日线及更高时间框架图表上自动降级为H4聚合,防止计算错误 - 可选图表面板,实时显示点差、平均值、阈值和时段统计 - 状态显示依次为:预热中、正常、点差飙升 提醒选项 - MT5弹窗提醒(视觉和声音) - 推送通知至MT5移动应用 - 通过MT5邮件设置发送邮件提醒 - 可配置冷却计时器,防止提醒频发 输入参数 核心设置 - Max Lookback — 处理的历史K线数量 - Aggregation Timeframe — 用于点差计算的时间框架(必须小于或等于图表时间框架
FREE
Nika Session Spread Intelligence 是一款轻量级图表指标,直接在图表上以简洁的深色面板显示市场开盘时间、距离收盘的剩余时间以及所有交易时段。 与普通时段指标不同,此工具通过 de>SymbolInfoSessionTrade 读取您经纪商的 实际交易时段 ,因此显示的时间始终准确——无论是外汇、指数、商品还是加密货币。 主要功能 > 实时开盘/收盘状态 ,颜色指示(绿色 = 开盘,红色 = 收盘) > 倒计时器 — 距离收盘或下次开盘的剩余时间,每500毫秒更新 > 可视化进度条 — 随时段推进填充,接近收盘时变为橙色 > 当日所有时段列表 (服务器时间),活跃时段高亮显示 > 内置提醒 — 在时段开盘或收盘前X分钟通知(可配置,支持声音) > 缩放功能 — 面板上直接使用 + / - 按钮 > 完全可自定义 — 颜色、字体、位置、刷新率和缩放通过输入参数设置 > 适用于任何品种 — 设置自定义品种或留空使用当前图表品种 输入参数概览 > Symbol — 留空则使用当前图表品种 > X / Y Position — 面板在屏幕上的锚点位置 > Color
FREE
Spread Engine Nika — MetaTrader 5 实时点差分析工具 Spread Engine Nika 是一款专业的 MetaTrader 5 点差分析指标。它利用历史 Tick 数据为任意交易品种构建统计点差档案,实时展示当前点差状况,并即时判断当前点差是正常、偏高还是危险——所有信息集中显示在图表上的紧凑面板中。 专为剥头皮交易者、日内交易者以及关注执行成本的交易者而设计,将原始点差数据转化为可操作的市场情报。 功能说明 点差档案引擎 — 分析最多 120 天的历史 Tick 数据,并将其划分为时间桶(可配置,默认 15 分钟)。每个桶存储平均值、中位数、75 百分位数、最大值、标准差和跨日标准差。 实时点差显示 — 实时显示当前点差,根据是否在该时间窗口的历史正常范围内以绿色/红色标注。 市场状态识别 — 根据 Z 分数相对于桶分布,将当前市场环境分类(如:低 / 正常 / 偏高 / 高)。 Z 分数与百分位数 — 精确显示当前点差在该时段统计分布中所处的位置。 当前 vs 下一时段对比 — 并排表格显示当前桶和下一个桶的 Avg、Medi
FREE
Telegram Control Center(TCC)是MetaTrader 5的实用工具型EA,将您的交易账户与Telegram连接。它不开仓或管理交易,而是监控账户、发送实时提醒,并允许您通过Telegram命令远程控制持仓。 主要功能 - 实时监控余额、净值、保证金及所有持仓 - 持仓开仓、平仓或修改时即时发送Telegram提醒 - 可配置阈值的净值回撤提醒 - 内置MT5经济日历新闻过滤器,提前预警重要事件 - 通过Telegram命令远程管理持仓,需密码验证 - 可按需发送任意品种的图表截图至Telegram - 图表状态栏实时显示连接状态和新闻过滤器状态 - 通过全局变量TCC_NEWS_WINDOW_ACTIVE与其他EA集成 - 单图表挂载即可监控整个账户的所有品种和魔法数字 - 可选魔法数字过滤器,仅监控特定EA Telegram命令 - status — 账户概览(余额、净值、保证金、持仓) - positions — 列出所有持仓详情 - news — 近期及即将发生的高影响力新闻事件 - closeall [密码] — 平掉所有持仓 - close
FREE
TrendDrift Oscillator — 适用于 MetaTrader 5 的双重平滑均值偏差振荡器。 它测量价格与其指数移动平均线 (EMA) 的偏离程度,然后应用两层 EMA 平滑来过滤噪音,产生清晰可操作的趋势信号。 工作原理: 1. 计算所选价格来源的 EMA 2. 测量价格与 EMA 之间的偏差 3. 对偏差应用第一层 EMA 平滑 4. 应用第二层 EMA 平滑(TrendDrift 线) 5. 生成信号线(TrendDrift 的 EMA) 颜色编码信号: - 深绿色:强买入(TrendDrift 在零之上且上升) - 黄绿色:普通买入(TrendDrift 上升但在零之下) - 橙红色:普通卖出(TrendDrift 下降但在零之上) - 红色:强卖出(TrendDrift 在零之下且下降) 输入参数: - 价格来源:Close, Open, High, Low, Median, Typical 或 Weighted - EMA 周期(默认 32):基础均值周期 - 第一平滑(默认 5):第一层 EMA 平滑 - 第二平滑(默认 5):第二层 EMA 平滑 -
TrueFlow AD
Nik Andersen
<p>TrueFlow AD 是一款适用于 MetaTrader 5 的成交量加权累积/派发指标,采用真实波幅(True Range)替代普通的最高-最低价区间,从而提供更精准的资金流向分析。</p><p>问题所在:<br>传统的累积/派发线(A/D Line)仅使用当前 K 线的最高-最低价区间来计算资金流向。这种方法完全忽略了 K 线之间的跳空缺口以及隔夜价格波动,导致资金流向读数失真——在重大新闻事件、交易时段开盘以及高波动市场中尤为明显。</p><p>解决方案:<br>TrueFlow AD 以真实波幅(True Range)取代普通价格区间,在计算中纳入前一根 K 线的收盘价。这样能够捕捉跳空缺口活动以及经典 A/D 线完全忽略的 K 线间价格运动。最终形成更精准的累积成交量流向读数,真实反映多空双方的买卖压力。</p><p>适用人群:<br>适合依赖成交量分析来确认趋势方向、提前发现背离信号、以及在重大价格波动之前侦测机构资金吸筹或派发动向的波段交易者和趋势交易者。对于任何希望以更智能方式替代经典 A/D 线的交易者同样具有重要价值。</p><p>工作原理:<br>1. 计
Daily Range — NikaQuant(每日区间 — NikaQuant) Daily Range — NikaQuant 是一款专为 MetaTrader 5 设计的高精度交易时段分析指标。它自动在可配置的时间窗口(默认纽约时间 19:30–20:30)内确定每日交易区间,向前投射六条统计偏差水平线直至收盘时段(默认纽约时间 16:00),并基于历史统计数据在每根K线上生成实时交易决策信号。 交易时段区间框 自动捕捉区间时间窗口内最高与最低的5分钟收盘价。区间框绘制于图表背景层,一目了然地标示出当日核心参考区域。 6条偏差水平线 — 双向 从区间结束时刻向前投射六对水平线(分别为区间的 ×1、×2.5、×5、×8、×13、×19 倍),延伸至收盘时段结束。每条水平线独立配色——近端为蓝绿色,中段为橙色,远端极值为红色。 可选区间标准化 使用 N 日平均区间(默认500日)代替今日实际区间进行水平线投射。在高波动或低波动日保持水平线间距的一致性,提升参考价值。 标签位置切换 可将偏差水平线的标签显示在线段的左端(延伸起始处)或右端(延伸结束处),根据个
NIKAQuant ML 核回归指标 Adaptive Kernel Smoother NIKAQuant 基于 Nadaraya–Watson 核回归的非参数机器学习趋势工具。与僵硬的均线不同,每根K线都通过高斯加权回溯窗口估计,形成一条随市场结构自然弯曲的趋势线。 工作原理 高斯核根据回溯距离为历史K线加权。可选的 ATR 自适应带宽在波动加剧时扩大核,在平静时收窄——响应快又不抖动。 残差西格玛通道 「价格 − 核值」的滚动标准差构建动态通道。收盘突破上轨 = 多头状态,跌破下轨 = 空头状态。状态持续到反向突破。 三种可视化模式 Bands: 中线 + 上下通道 + 填充 Single Line: 仅中线,按状态着色 Trail: 反向通道作为跟踪止损 七款主题 Classic、Cyber Aqua、Crimson Pulse、Royal Purple、Emerald Night、Minimal Mono、Classic Emerald。 ️ 无重绘 所有状态均在确认柱上计算。 ️ 内置仪表板 显示信号、核值、上下轨、西格玛和当前带宽。 参数概
筛选:
无评论
回复评论