Nexus Quant Matrix

  • 程序库
  • Syarief Azman Bin Rosli
    Syarief Azman Bin Rosli
    您好,欢迎访问我的官方 MQL5 个人主页!
    我是 Syarief Azman Bin Rosli,一名专注于 MetaTrader 5 和 MetaTrader 4 的量化交易软件工程师与算法系统开发者,拥有十余年的自动化交易系统架构设计经验。
    我的开发理念基于严谨的数学风险模型、动态波动率自适应与长期资金安全保护。我的交易系统不依赖僵化过拟合的历史参数,而是通过实时市场波动率基准(例如平均真实日波幅 ADR 自适应算法)与多周期技术指标共振,在趋势与震荡行情中稳健运行。
    核心专业领域:
    • MQL5 与 MQL4 自动化智能交易系统(EA)架构设计
  • 版本: 1.0
  • 激活: 5
Nexus Quant Matrix MT5

Nexus Quant Matrix 是专为 MetaTrader 5 原生打造的机构级量化计算与流式统计分析库。专为量化交易开发者、系统化对冲基金与程序化策略架构师设计,无需依赖任何外部 Python、C++ 或 DLL 动态链接库,直接在 MQL5 原生运行环境中提供极速数值计算支持。

该库具备严格的 O(1) 计算复杂度,依托预分配环形缓冲区与 Welford 增量算法原理,彻底消除了动态内存重新分配带来的性能开销。系统整合了自适应一维卡尔曼滤波(Kalman Filter)、滚动双变量皮尔逊相关系数(Pearson Correlation)、最小二乘法线性回归(OLS)、经厚尾修正的 Cornish-Fisher 在险价值(VaR)、预期亏损(CVaR / Expected Shortfall)以及受保证金严格约束的凯利公式(Kelly Criterion)头寸管理。

核心功能架构

  1. 流式统计矩引擎 (CStreamingStats) 实时计算滑动窗口内的均值、样本方差、标准差、偏度(Skewness)与峰度(Kurtosis),并支持秒级 Z-Score 标准化,零内存碎片。

  2. 自适应 1D 卡尔曼滤波引擎 (CKalmanFilter1D) 利用状态空间离散递归滤波,从高频微观结构噪音与买卖盘跳动中精准提炼出真实的资产价格轨迹,支持动态测量噪音方差 (R) 调节。

  3. 滚动皮尔逊相关性与线性回归 (CRollingCorrelation) 实时追踪当前标的与基准资产(如股指期货或宏观代理品种)的相关度,动态输出相关系数 (r)、决定系数 (R^2)、回归斜率 (Beta) 与标准误差。

  4. Cornish-Fisher VaR 与尾部风险度量 (CRiskMetrics) 提供 90%、95%、99% 置信度下的参数在险价值(VaR)、修正 Cornish-Fisher VaR、条件在险价值(CVaR)以及年化历史波动率(HV %)。

  5. 机构级头寸规模与保证金哨兵 (CPositionSizer) 内置全凯利、半凯利与四分之一凯利资本分配算法,并在报单前通过 OrderCalcMargin() 执行严格的 Article 2555 保证金验算,防止 Error 134 报错。

  6. 统一主控接口与 C 兼容导出层 (CNexusQuantMatrix) 支持在 Nexus_Quant_Matrix.mqh 中以面向对象方式直接调用,同时在 Nexus_Quant_Matrix.ex5 中导出高频 C 风格动态函数。

  7. 配套演示智能交易系统 (Demo_Nexus_Quant_Matrix) 附带完整的演示 EA,内置深色黑曜石风格的图表 HUD 量化面板,支持实时监控与最小化折叠。

技术指标规格

  • 运行平台: MetaTrader 5 (MT5)
  • 产品分类: 开发者函数库 / 量化数学引擎
  • 支持架构: MQL5 面向对象类库 (.mqh) 与编译二进制 (.ex5)
  • 支持资产: 全品类 MT5 资产(外汇、指数、大宗商品、加密货币、个股)
  • 外部依赖: 无(100% 原生 MQL5,严禁 DLL)
  • MQL5 官方验证标准: 100% 通过(0 错误,0 警告)


Integration Example

#include <Nexus_Quant_Matrix.mqh>

CNexusQuantMatrix quant(100, 0.001, 0.05);

void OnTick()
{
   double price = SymbolInfoDouble(_Symbol, SYMBOL_BID);
   quant.ProcessPriceTick(price);

   double filtered_price = quant.GetKalmanEstimatedPrice();
   SQuantMoments moments = quant.GetCurrentMoments();
   SQuantRiskSummary risk = quant.GetRiskProfile(0.99);

   PrintFormat("Kalman: %.5f | Z-Score: %+.2f | VaR(99%%): %.4f",
               filtered_price, moments.z_score, risk.cornish_fisher_var);
}


推荐产品
MyTradingHistory
Max Timur Soenmez
一个易于使用的库,为开发者提供关键交易统计数据的便捷访问,适用于其MQL5 EA。 库中的可用方法: 账户数据和收益: GetAccountBalance() : 返回当前账户余额。 GetProfit() : 返回所有交易的净利润。 GetDeposit() : 返回总存款金额。 GetWithdrawal() : 返回总取款金额。 交易分析: GetProfitTrades() : 返回盈利交易的数量。 GetLossTrades() : 返回亏损交易的数量。 GetTotalTrades() : 返回执行的总交易数。 GetShortTrades() : 返回卖空交易的数量。 GetLongTrades() : 返回多头交易的数量。 GetWinLossRatio() : 返回盈利与亏损交易的比例。 GetAverageProfitTrade() : 返回每笔盈利交易的平均利润。 GetAverageLossTrade() : 返回每笔亏损交易的平均亏损。 GetROI() : 计算投资回报率。 GetLargestProfitTrade() : 返回单笔交易的最大利润。 Get
SimpleLotCalculator
Itumeleng Mohlouwa Kgotso Tladi
SimpleLotCalculator: Professional Multi-Symbol Risk Manager Library Stop guessing your lot sizes and start trading with institutional precision. SimpleLotLogic is a high-performance MQL5 developer library designed to solve the number one problem for algorithmic and manual traders: Risk Management. Instead of writing complex math for every new EA, simply plug in this library to calculate the perfect lot size based on your account equity and stop-loss distance. Why Choose SimpleLotLogic? Precis
TradeGate
Alex Amuyunzu Raymond
TradeGate – Product Description / Brand Story “The gatekeeper for your trading success.” Overview: TradeGate is a professional MT5 validation and environment guard library designed for serious traders and EA developers who demand safety, reliability, and market-ready performance . In today’s fast-moving markets, even a small misconfiguration can cause EAs to fail initialization, skip trades, or be rejected by MQL5 Market. TradeGate acts as a smart gatekeeper , ensuring your EA only operates un
BitMEX Trading API
Romeu Bertho
5 (1)
Cryptocurrency analysis has never been easier with Crypto Charts for MetaTrader 5. Now, trading on BitMEX has never been easier with BitMEX Trading API for MetaTrader 5. BitMEX Trading API library was built to be as easy to use as possible. Just include the library into your Expert Advisor or Script, call the corresponding methods and start trading! Features Trade on BitMEX and BitMEX Testnet. Build and automate your strategies. Concern more with the trading strategy logic and less with the co
Terminator Genisys
Itumeleng Mohlouwa Kgotso Tladi
TERMINATOR GENISYS HFT (High Frequency Trading - Ai Algorithm Robot) Extreme-design for EURUSD on the 5Min charts for max profit. (other pairs incluse GBPUSD, EURJPY and other pairs with similar time-frames ) Introducing the ' Terminator Genisys ' Expert Advisor   The   Terminator Genisys  expert advisor stands at the pinnacle of automated trading systems, designed to deliver great performance in today's dynamic financial markets. Developed by a team of experienced traders and algorithmic expe
This lightweight utility library provides essential functions for MQL5 developers to streamline and simplify expert advisor (EA) and indicator development. Whether you’re building trading algorithms or managing chart resources dynamically, this library offers clean and reusable building blocks to enhance your code quality and reduce repetition. Key Features Price Access Functions ASK(string symbol) – Get the current Ask price. BID(string symbol) – Get the current Bid price. Account Information
FREE
LSTM Library
Thalles Nascimento De Carvalho
LSTM Library - MetaTrader 5的高级神经网络 专业算法交易神经网络库 LSTM Library为您的MQL5交易策略带来递归神经网络的强大功能。这个专业级实现包括LSTM、BiLSTM和GRU网络,具有通常只在专业机器学习框架中才能找到的高级功能。 "交易机器学习成功的秘诀在于正确的数据处理。 垃圾进,垃圾出 –您的预测质量永远不会超过您的训练数据质量。" — 马科斯·洛佩兹·德·普拉多博士, 金融机器学习进展 主要特点 完整实现LSTM、BiLSTM和GRU 递归Dropout实现更好的泛化 多种优化算法(Adam, AdamW, RAdam) 高级归一化技术 全面的指标评估系统 训练进度可视化 支持通过类权重处理不平衡数据 技术规格 纯MQL5实现 - 无外部依赖 为交易应用程序优化 全面的错误处理和验证 完全支持保存/加载训练模型 详尽的文档 集成说明 要将LSTM Library集成到您的Expert Advisor中,请按照以下步骤操作: 1. 完整库导入 #import "LSTM_Library.ex5"    // 库信息    void Get
这是一个可以定时自动交易的EA。根据你设定的时间,精确到秒,可以设置最多下几单。下单buy或者Sell.可以设置值止盈止损点。并且可以设定在下单后多久平仓。一般都是用来做事件。祝你好运。 请看图片自己根据设定来使用。每一次使用请重新加载EA。不用的时候记得关闭EA按钮。 我来举个例子。比如英国央行利率决议。你在最后两秒下单(设置的是你本机的时间)。因为可能瞬间点差扩大,你可能不敢直接下最大手数,所以你可以选择小手分批从最后5秒开始进场。我相信做过的人知道我说的意思。因为我专业做这个已经十年。最近才做出了这个自动化EA。并且这里面有个检测就是你点击开始之后如果超过了你设定的时间十秒他就不会执行了。保证你的安全。你自己用DEMO账户测试几次你就知道我这个有多好用了!
Friends, join us! Ask questions and connect with like-minded traders: MetaCOT Public Group MetaCOT Information Channel: news, CFTC reports, and signals: MetaCOT Channel Here’s to successful trading and new profitable signals for us all! Attention! Recently, certain countries have been blocking access to the cftc.gov website. As a result, users in these countries are giving the product low ratings. MetaCOT has always adhered to the highest quality standards and is in no way associated with th
Binance Library
Hadil Mutaqin SE
5 (1)
The library is used to develop automatic trading on Binance Spot Market from MT5 platform. Support all order types: Limit, Market, StopLimit and StopMarket Support Testnet mode Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header   file and EA sample   https://drive.google.com/uc?export=download&id=1kjUX7Hyy02EiwTLgVi8qdaCNvNzazjln Copy Binance.mqh to folder \MQL5\Include Copy  BinanceEA-Sample.mq5 to folder \MQL5\Experts 3. Allow WebRequest from MT5
Important: This product is a Library for developers . It is suitable only for users who can write/modify MQL5 code and integrate a compiled library into their own EA/Script. It is not a “drag & run” notifier. Telegram SDK helps you send Telegram messages and photos from MetaTrader 5 in a simple and reliable way. Use it when you want Telegram notifications inside your own automation tools. If you need the MetaTrader 4 version, it is available separately in the Market:   Telegram SDK M T4 . Main f
Introducing "TG Risk Service Manager" — your comprehensive toolkit for swift and precise risk management and lot size calculations in the dynamic world of trading. Designed to streamline development processes and enhance trading strategies, this indispensable library equips developers with essential tools for optimizing risk assessment and trade profitability. Metatrader4 Version |  All Products  |  Contact   Key Features: Efficient Lot Size Calculation : Harness the power of precise lot size c
TrendCore Adaptive FX — Smart Expert Advisor for Confident and Adaptive Forex Trading TrendCore Adaptive FX   is a powerful, fully automated trading robot designed for consistent performance in the Forex market. It combines trend-based technical analysis, adaptive lot management, and solid capital protection strategies to ensure robust and efficient trading under real market conditions. Whether you're a professional trader or a long-term investor, this EA offers an intelligent solution to a
Hello everyone! I am a professional MQL programmer , Making EAs, Indicators and Trading Tools for my clients all over the world. I build 3-7 programs every week but I seldomly sell any ready-made Robots. Because I am fastidious and good strategy is so few...  this EA is the only one so far I think its good enough to be published here.  As we all know, the Ichimoku indicator has become world popular for decades, but still, only few people knows the right way of using it, and if we check the clo
UZFX - 删除图表上的所有图形和对象是一个简单而功能强大的Metatrader 5(MT5)脚本,旨在立即从活动图表中删除所有绘图对象。该脚本对于需要从技术分析图,趋势线,斐波那契工具,文本标签和其他对象中快速清除图表的交易者很有用,而无需手动删除它们。 特征: 在活动图表上删除所有对象和图纸。 立即使用单个执行。 显示成功和失败删除的确认消息。 帮助交易者保持清洁无杂乱的图表以进行更好的分析。 用法: 将脚本连接到要删除所有对象的图表上。 脚本将自动循环遍历所有对象并删除它们。 专家选项卡中的一条消息将确认成功删除对象。 注意:此脚本不会影响图表上运行的开放订单,指标或专家顾问,而仅删除仅图形对象。 开发人员:Usman Zabir -UZFX 版本:1.00 年:2025年 网站:https:// www.mql5.com/en/users/forextycoons
FREE
本 EA 专为震荡 / 横盘行情设计。 在设定区间内自动补单交易 EA 仅在 预先设定的价格区间内运行 。 当订单平仓、成交、取消后(单数量少了),EA 会自动补充新的订单,以维持交易策略的持续运行。 您可以通过 Max Orders 来控制最大订单数量。 示例: 最大订单数(Max Orders):8 当前持仓订单:2 单 挂单 Sell Limit:6 单 在这种情况下,EA 不会继续下新单。 只有当订单 平仓、成交 、 取消 后,EA 才会 自动补单 ,持续捕捉 震荡行情 中的利润。 注意: Sell Limit   订单 只会挂在当前市场价格的上方 。 产品参数说明 Trade Symbol : 交易品种  XAUUSD、USDJPY、BTCUSD 等等... 区间设置 Zone Low :区间下边界 Zone High :区间上边界 说明: 例如,您将BTCUSD的交易区间设定为: Zone Low : 92000 Zone High : 94500 EA 只会在该价格区间内挂单并自动交易。 当价格突破区间范围时,EA 将停止交易。 当价格回到区间内,EA 会自动恢复
适用于 MT5 的 Crypto_Forex 指标“HTF 布林带”。 - 使用适用于 MT5 的专业指标“HTF 布林带”升级您的交易方法。HTF 代表“更高时间框架”。 - 布林带是市场上最优秀的指标之一,是完美的交易工具。 - 大约 90% 的价格波动发生在两个布林带之间。 - HTF 布林带指标非常适合多时间框架交易系统,可设置价格波动入场点,或与其他指标结合使用。 - 此指标允许您将更高时间框架的布林带附加到您当前的图表中。 ............................................................................. Click here to see high quality Trading Robots and Indicators! 这是仅在 MQL5 网站上提供的原创产品。
Auto trading so strong mt5 trading script so rich and running amazing auto trading trades with so high quality performance and results Look that is the best trading script that will help you to make good results like in screenshots i built that strategy depend on Envelopes indicator to make that script trading in that area excellent scalping trades and gain maximum good results per trade so i built that strategy manually then I make it auto trading  so to start use that script add to scripts aft
Molo kumalo
James Ngunyi Githemo
Trading Forex with our platform offers several key advantages and features: Real-time Data : Stay updated with live market data to make informed decisions. User-Friendly Interface : Easy-to-navigate design for both beginners and experienced traders. Advanced Charting Tools : Visualize trends with interactive charts and technical indicators. Risk Management : Set stop-loss and take-profit levels to manage your risk. Multiple Currency Pairs : Access a wide range of forex pairs to diversify your tr
本 EA 专为震荡 / 横盘行情设计。 在设定区间内自动补单交易 EA 仅在 预先设定的价格区间内运行 。 当订单平仓、成交、取消后(单数量少了),EA 会自动补充新的订单,以维持交易策略的持续运行。 您以通过 Max Orders 来控制最大订单数量。 示例: 最大订单数(Max Orders):8 当前持仓订单:2 单 挂单 Buy Limit:6 单 在这种情况下,EA 不会继续下新单。 只有当订单 平仓、成交 、 取消 后,EA 才会 自动补单 ,持续捕捉 震荡行情 中的利润。 注意: Buy Limit 订单 只会挂在当前市场价格的下方 。 产品参数说明 Trade Symbol : 交易品种  XAUUSD、USDJPY、BTCUSD 等等... 区间设置 Zone Low :区间下边界 Zone High :区间上边界 说明: 例如,您将黄金的交易区间设定为: Zone Low :4420 Zone High :4455 EA 只会在该价格区间内挂单并自动交易。 当价格突破区间范围时,EA 将停止交易。 当价格回到区间内,EA 会自动恢复交易。 订单设置
Static Text display
Muhammad Saad Khan
静态文本显示 是一个轻量且用户友好的 MetaTrader 5 专家顾问(EA),旨在通过在您的图表上直接显示激励性交易提示来启发和教育交易者。凭借优雅的居中黑色背景和等宽字体白色文本,该 EA 以轮换片段形式提供简洁、可操作的建议,帮助您专注于纪律交易。适合初学者和经验丰富的交易者,它倡导风险管理、耐心和策略开发等关键原则。 主要功能: 动态提示显示 :将用户定义的交易提示分割为 50-60 个字符的可读片段,每隔几秒轮换一次(持续时间可自定义)。 专业设计 :在图表顶部中心显示提示,带有黑色背景,确保可读性和均匀填充。 响应式定位 :在图表大小调整或切换时自动调整文本和背景对齐。 可自定义设置 :根据您的偏好调整字体大小、文本颜色、背景颜色和显示持续时间。 开关控制 :无需移除 EA 即可轻松启用或禁用显示。 轻量高效 :资源占用极低,不影响平台性能。 为什么选择静态文本显示? 无论您是想提升交易纪律还是寻求每日动力,此 EA 始终将核心交易智慧置于显眼位置。默认提示强调风险管理、策略测试和情绪控制,但您可以自定义文本以匹配您的交易理念。适合重视教育和一致性的交易者。 输入参数:
FREE
CRingBuffer
Christian Stern
CRingBuffer - Numeric ring buffer with lightweight high-performance statistics engine CRingBuffer is a powerful MQL5 library for numeric rolling-window analysis. After each insertion it immediately provides mean, variance, standard deviation, percentiles, z-scores, min/max tracking and normalized values - all in O(1) to O(n log n). Table of contents: Application area Two operating modes Basic statistics Welford statistics (numerically stable, recommended for large price levels) Percentiles Z-s
FREE
Binance Library MetaTrader 5 connects your Expert Advisors, indicators, and scripts to Binance.com and Binance.US directly from MetaTrader 5. It is a developer library for building custom Binance integrations inside MT5, not a standalone trading robot or copier. The library helps you add Binance instruments to Market Watch, read symbol specifications, load current and historical market data, check wallet balances, manage orders, and track open positions. It supports Spot, USD-M futures, and COI
BlitzGeist Telegram Notifier – Stay Connected to Your Trades Anywhere! BlitzGeist Telegram Notifier is a powerful tool that instantly connects your MetaTrader 5 account with Telegram . No matter where you are – you will always receive real-time notifications about your trading activity directly on your phone, PC, or any device with Telegram installed. Perfect for traders who want professional trade reporting, transparency, and risk management monitoring . ️ Key Features Easy Configuratio
Turn your manual trades into fully automated profit machines! This powerful MT5 EA takes over the moment you open a position — no delays, no stress. It instantly places Stop Loss and Take Profit, activates customizable trailing, and locks in profits while protecting your capital Perfect for scalpers: Every trade is immediately secured, giving you the freedom to focus on sniping the best entries while the EA handles all the management work in the background. Auto SL/TP Full trailin
FREE
Smart Adaptive Trend Flow MT5 Professional adaptive trend, market structure, price levels and flow analysis indicator for MetaTrader 5. Would you like to test it before purchasing? You can request a fully functional trial version by sending us a private message through the MQL5 messaging system . This allows you to evaluate the indicator and all its features before making a purchase decision. A Complete Market View in a Single Chart Smart Adaptive Trend Flow MT5 has been developed to provide a
Gold Hyper Cold
Chahine Merini
GOLD HYPER 3333333333333333333333333333333333333333 款专为 XAU/USD 打造的系统化突破引擎,基于多周期区间扩展和严格的固定风险执行。 使用挂单逻辑进入关键突破区域 — 不追单、不情绪化、不手动入场 每笔交易都有固定的、数学化定义的风险和回报 — 无需猜测,无需随意设置仓位大小 智能移动止损逻辑在交易顺势时锁定利润 自适应仓位管理在盈利时增加仓位,在回撤时自动减小 — 内置资金保护机制 适用于 XAU/USD 所有时间周期,专为 M15 优化并验证 推荐设置 强烈建议使用 VPS 最低余额:$200 选择点差最低的账户类型以获得最佳表现 免责声明 过往表现不代表未来结果。任何EA都不保证盈利。
NATS (Niguru Automatic Trailing Stop) will help you achieve more profits, by setting the trailing stop automatically. Pair this NATS application with EA, or can also be used as a complement to manual trading. A trailing stop is a powerful tool in trading that combines risk management and profit optimization.  A trailing stop is a type of market order that sets a stop-loss at a percentage below the market price of an asset, rather than a fixed number. It dynamically adjusts as the asset’s pric
FREE
Edkt
Pitiphum Noikhieo
ตัวชี้วัดการกลับตัวของราคาแบบมืออาชีพสำหรับ MetaTrader 5 PA Reversal Sniper เป็นตัวชี้วัดแบบกำหนดเองสำหรับ MT5 ที่ออกแบบมาโดยเฉพาะสำหรับ XAUUSD ในกรอบเวลา M5 โดยเน้นที่การเคลื่อนไหวของราคา โครงสร้างการกลับตัว การกวาดสภาพคล่อง การแตกหักของโครงสร้างตลาด สภาวะโมเมนตัม และการยืนยันความผันผวน ตัวชี้วัดนี้ให้สัญญาณซื้อและขายที่ชัดเจน พร้อมด้วยจุดเข้าซื้อ จุดหยุดขาดทุน และจุดทำกำไรหลายระดับ คุณสมบัติหลัก XAUUSD M5 ปรับแต่งแล้ว การตรวจจับการกลับตัวของราคา การตรวจจับแท่งเทียน Pin Bar ขาขึ้นและขาลง การตร
Quant Apple Scavenger
Frank Michel Noughue Lemoupa
量子清道夫蘋果系列 EA 簡介:股票交易的革命性改變 概述: 定量清道夫蘋果系列 EA 是一款創新的智能交易系統 (EA),專門用於股票/外匯交易,在蘋果上表現最佳。它利用定量分析作為識別價格行動和趨勢的基礎,提供全新的視角,並改變您的交易方式。此 EA 採用最先進的演算法交易技術和單一資產組合管理開發,不僅能贏得交易,還能優化您交易帳戶的增長和效率。 主要功能:     定量分析: EA 利用先進的定量分析技術識別差價合約的模式、趨勢和最佳進出场點。這種數據驅動的方法可以增強決策能力,提高交易信號的準確性。     演算法交易: EA 採用最先進的演算法,根據預定義的規則和策略自動執行交易。這消除了情緒偏差,確保交易的一致性和紀律性。     單一資產組合管理: EA 專注於管理單一資產,允許集中和專門的交易方法。這使您能夠利用特定的市場動態並獲得最大回報。     支援的經紀人 FBS,但您可以進行回溯測試,看看您的經紀人  您的經紀商表現如何。這是因為 不同的經紀商在此數量策略中會產生巨大的差異。 優點:     增強交易洞察力: Quant Scavenger
该产品的买家也购买
ModernUI Library
Levi Dane Benjamin
适用于 MetaTrader 5 的 ModernUI 库 ModernUI 是一个用于 MetaTrader 5 的图表内用户界面库。它可以帮助 MQL5 开发者在 MT5 图表环境中构建更清晰的 EA 面板、仪表盘、设置窗口、表单、表格、对话框、抽屉式面板以及紧凑型交易风格界面。 它适合希望获得比零散图表对象更专业的界面层,同时仍然完全掌控自己 EA、指标或工具逻辑的开发者。 Modern UI - 用户指南   | EA 示例演示 你可以构建什么 ModernUI 并不局限于某一种面板类型。它为你提供了一个可复用的界面层,几乎可以用于任何你想在 MetaTrader 5 图表中构建的工具。 你可以用它创建简单的设置界面、紧凑型交易面板、完整仪表盘、数据视图、控制面板、账户工具、流程界面、监控界面、实用工具窗口、商业 EA 前端界面等等。 随附的演示展示了几个实用示例,但它们只是起点。如果你的 MQL5 项目需要按钮、输入框、表格、对话框、标签页、抽屉面板、图表、状态区域,或需要一种更清晰的方式在图表上展示信息,ModernUI 都可以为你提供构建模块。 主要功能 适用于 Me
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
The library is used to develop automatic trading on Binance Futures Market from MT5 platform. Support Binance Futures USD-M and COIN-M Support Testnet mode Support all order types: Limit, Market, StopLimit, StopMarket, StopLoss and TakeProfit Automatically display the chart on the screen Usage: 1. Open MQL5 demo account 2. Download Header file and EA sample https://drive.google.com/uc?export=download&id=17fWrZFeMZoSvH9-2iv4WDJhcyxG2eW17 Copy BinanceFutures.mqh to folder \MQL5\Include Copy  Bina
EA Toolkit
Esteban Thevenon
EA Toolkit   is a library that allows any developer to quickly and easily program Advisor experts. It includes many functions and enumerations such as trailing stop, lot, stop loss management, market trading authorisations, price table updates, trading conditions and many more. Installation + Documentation : You will find all the information to install this library and the documentation of its functions on this GitHub : https://github.com/Venon282/Expert-Advisor-Toolkit WARNING : The installat
Applying these methods, I managed to arrive at a nuanced conclusion that is crucial to understanding the importance of unique strategies in contemporary trading. Although the neural network advisor showed impressive efficiency in the initial stages, it proved to be highly unstable in the long run. Various factors such as market fluctuations, trend changes, external events, etc. cause its operation to be chaotic and eventually lead to instability. With these experiences, I accepted the challenge
OpenAI Library MT5
VitalDefender Inc.
该库旨在提供一种尽可能简单的方法,直接在MetaTrader上使用OpenAI的API。 要深入了解库的潜力,请阅读以下文章: https://www.mql5.com/en/blogs/post/756098 The files needed to use the library can be found here: Manual 重要提示:要使用EA,需要添加以下URL以允许访问OpenAI API  如附图所示 要使用该库,需要包含以下Header,您可以在以下链接找到:  https://www.mql5.com/en/blogs/post/756108 #import "StormWaveOpenAI.ex5" COpenAI *iOpenAI(string); CMessages *iMessages(void); CTools *iTools(void); #import 这就是您需要的所有信息,以便轻松使用该库。 以下是如何轻松使用该库并与OpenAI的API交互的示例 #include <StormWaveOpenAI.mqh>       //--- 包含用于AP
Kaseki
Ben Mati Mulatya
The Hybrid Metaheuristic Algorithm (HMA) is a cutting-edge optimization approach that combines the strengths of genetic algorithms with the best features of population-based algorithms. Its high-speed computation ensures unparalleled accuracy and efficient search capabilities, significantly reducing the total time required for optimization while identifying optimal solutions in fewer iterations. HMA outperforms all known population optimization algorithms in both speed and accuracy. Use Cases AO
近段时间买家运行良好,但同时也有朋友担心: 1、EA测试回测数据的真实性; 2、回测效果好不代表实测效果好,而免费演示版的可测试时间太短,无法判断EA的实用性。 针对以上问题,现推出一个完美的解决方案,直接给到限定时间的测试版本,需要的可以私信留言,或者聊天窗口找我,看到后会发送测试版本过来。 此外,为了方便部分已购买源代码的客户熟悉了解代码,进一步优化和提升空间,并且让更多的有意向的客户了解这个EA的编辑逻辑,特将代码拆解,不定期的讲解基本思路,跟着走即便是小白也可以快速上手,以便后续购买源代码后快速上手优化! 知乎专栏: Day01:初始MQL5量化系统 - quanter的文章 - 知乎 https://zhuanlan.zhihu.com/p/1969031679428530490 Wordpress个人网站: https://quanter001.wordpress.com/ 如有任何问题,欢迎邮件沟通:quanter001@163.com ****************************************************************
该产品已经开发了 3 年,它是 MQL5 编程语言中最先进的人工智能和机器学习代码库。它已被用于创建多个基于 AI 的交易机器人和指标,适用于 MetaTrader 5。 这是一个高级版,基于免费开源的 MQL5 机器学习项目,链接如下:  https://github.com/MegaJoctan/MALE5 。免费版本功能较少,文档较少,维护不足,仅适用于小型 AI 模型。 该高级版包含您编写 AI 交易机器人的所有必需工具。 为什么要购买此库? 非常易于使用,代码语法友好,类似于 Python 的流行 AI 库,如 Scikit-learn、TensorFlow 和 Keras。 文档齐全,提供丰富的视频、示例和文档,帮助您快速上手。 计算优化,性能优越,运行方式类似普通 EA。  无需额外依赖,无需 DLL 文件,所有内容可编译为单一 .EX5 文件,便于测试和分发。 全天候技术支持,我将提供帮助,确保您正确使用,并在问题出现时协助修复。  谁适合使用此库? 具有基本机器学习和 AI 知识的用户。 机器学习爱好者,特别是来自 Python ML 社区的开发者。 MQL5 中级
Shawrie
Kevin Kipkoech
This Pine Script implements a Gaussian Channel + Stochastic RSI Strategy for TradingView . It calculates a Gaussian Weighted Moving Average (GWMA) and its standard deviation to form an upper and lower channel. A Stochastic RSI is also computed to determine momentum. A long position is entered when the price closes above the upper Gaussian band and the Stoch RSI K-line crosses above D-line . The position is exited when the price falls back below the upper band. The script includes commission, cap
Bookeepr
Marvellous Peace Kiragu
Bookeepr is an advanced MQL5 trading bookkeeping software that automates trade logging, tracks real-time P&L, and integrates a ledger-style financial system for deposits, withdrawals, and expenses. It supports multi-currency assets , generates detailed performance reports , and provides risk management tools to help traders optimize their strategies. With secure cloud storage, exportable reports, and seamless MetaTrader 5 integration , Bookeepr ensures accurate, transparent, and hassle-free fina
Ai Prediction MT5
Mochamad Alwy Fauzi
A free indicator for those who purchase the full version This indicator is created by this Ai, with your desired settings Artificial Intelligence at your service Have a complete artificial intelligence and use it in your codes This artificial intelligence is trained to tell you on each candle whether the market is moving up or down. In general, artificial intelligence can be used in all markets, all timeframes and all symbols However, due to the increasing complexity and decreasing accuracy of
快速关仓,无需任何操作。 当前版本的一键关仓主要针对的是来不及手动关仓的情况,目前是不分交易标的类别,是对所有的持仓进行关仓。 未来可能升级的方向: 1、分类别、分标的关仓。 适用场景:开了多个标的的仓位,并且波动不一,快速频繁的波动影响了整体的判断。 2、增加只关闭盈利仓位、只关闭亏损仓位。 适用场景:持仓较多,趋势发生变化。 个人建议:一般建议选择一键全部关仓,因为如果行情与持仓方向一致,只关闭盈利仓位无形就是扩大了亏损。如果行情方向与持仓方向相反,只关闭亏损仓位,当前已盈利的后面又会变为亏损,盈利无法变现。 3、按照仓位顺序由大到小关仓、按照仓位顺序由小到大关仓。 适用 场景:行情发生波动,对于未来行情判断把握不确定的,可根据自己需求选择仓位关仓顺序,由大到小关仓的话,可以避免亏损的进一步扩大。 4、减小仓位量,保持绝对的安全距离。 适用 场景:对未来趋势相对确定,不想错过当前行情,但是认为当前持仓体量又有点大,想降低仓位。
【黄金智能交易EA|风控稳守,盈利突围】 专为黄金波动特性定制的智能交易EA,以硬核交易系统为核心,每笔下单均源自量化模型对行情趋势、支撑压力的精准研判,杜绝主观干扰,让交易决策更客观高效。 搭载多维风控体系,动态止损止盈+仓位智能调控双保险,严格锁定单笔风险阈值,即便面对黄金跳空、黑天鹅行情,也能有效规避大幅回撤,守护本金安全。 更具备浮盈加仓智能算法,趋势明朗时自动放大盈利头寸,让利润在顺势中滚动增长,既不浪费单边行情红利,又通过阶梯式加仓策略平衡风险与收益,实现“风控打底,盈利上不封顶”的交易闭环! 本款EA历经38次修改与测试,每一次升级都境加了EA的稳定盈利能力,才最终确定此为终极版本发布。 本款EA目前只针对现货黄金 交易的长期回测和实盘验证,按照下图设置实现长期的稳定 盈利。如果需要交易期它品种,请根据实际情况更改设置。 本EA为阶梯定价,每卖出10份价格增加10%
SniperkickEA
Mohamed Maguini
Questo Expert Advisor (EA) è stato progettato per offrire un'esperienza di trading automatizzata di alto livello, adatta sia ai trader principianti che a quelli esperti. Utilizzando algoritmi avanzati e tecniche di analisi del mercato, l'EA è in grado di identificare opportunità di trading redditizie con precisione e velocità. L'EA è configurabile per operare su vari strumenti finanziari, tra cui forex, indici e materie prime, garantendo una flessibilità senza pari. Le caratteristiche princip
A complete PostgreSQL client implemented in pure MQL5 over native MetaTrader 5 TCP sockets. The library implements the PostgreSQL client with MD5 and SCRAM-SHA-256 authentication, SSL/TLS, the Simple Query Protocol, and explicit transactions. No DLLs, no external dependencies, no third-party services. Features Direct TCP connection to any PostgreSQL-compatible database MD5 and SCRAM-SHA-256 authentication, auto-detected SSL/TLS via PostgreSQL's SSLRequest flow Full transaction support Typed res
用于 MetaTrader 5 的 DhanHQ v2 API 桥接程序 将 MetaTrader 5 连接到您的 DhanHQ 交易账户,直接通过 MQL5 管理订单、 持仓、资金和投资组合。该库封装了官方 DhanHQ v2 REST API(支持 NSE、BSE、MCX), 让您能够在 Dhan 平台上构建自己的 EA(智能交易系统)、脚本和自动化策略。 功能特性 - 完整的订单生命周期管理:下单、修改、取消、拆单、查询订单簿、按 ID 查询订单、 按关联 ID 查询订单、查询成交记录及按订单查询成交明细。 - 订单辅助功能:市价单、限价单、止损单(Stop-Loss)和止损市价单(Stop-Loss-Market)。 - 超级订单(区间/Bracket 订单):下单、修改子单、取消子单、查询列表。 - 投资组合:持仓资产、持仓明细、转换持仓、平掉所有仓位。 - 资金管理:资金限额查询及保证金计算器。 - 交易控制:紧急停止(Kill Switch)功能。 - 身份验证:使用 access-token 标头(header)及 Dhan 客户 ID。 - 静态 IP 白名单(设
MT5 to Delta Exchange API Bridge EA Connector allows your expert advisor with mq5 file to integrate and communicate with Delta Exchange using API Keys You can place order, check balance and other order managements using Delta Exchange API - Place Limit, SL Limit and Take Profit Limit Orders - Place Market, SL-Market, TP-Market orders - Cancel Order - Query Orders - Change Leverage, margin - Get Position info and many more, details available at demo script Script Documentation 
EX5 Signal Copier
Rajesh Kumar Nait
EX5 信号复制库 — 适用于 MT 的专业交易事件引擎 无需编写复杂的交易跟踪逻辑,即可将任何智能交易系统 (EA) 转换为强大的交易复制器、信号处理器或自动化引擎。 EX5 信号复制库是一个高性能的事件驱动系统,能够捕获 MetaTrader 5 中的所有交易活动,并将其转换为结构化信号,您可以利用这些信号构建: 交易复制器(MT5 → MT5 / MT5 → 外部) 风险管理引擎 分析仪表盘 自定义执行桥接(币安、API 等) 为什么选择此库? 实时交易检测 结构化信号队列 事件分类(开仓、平仓、修改、部分平仓) 内置复制引擎(可选) 通过自定义逻辑实现完全控制 主要特性 实时交易捕获 使用 OnTradeTransaction 即时检测每一笔交易 备份轮询系统确保不遗漏任何信号 完整的交易生命周期支持 捕获所有操作: 买入/卖出 限价/止损单 止损/止盈修改 部分平仓 持仓平仓 反向交易 成交量增加 信号队列系统 线程安全的内部队列 按顺序处理信号 即使在高负载下也不会遗漏任何事件 内置复制引擎
Native Websocket
Racheal Samson
5 (6)
An   easy to use, fast,  asynchronous   WebSocket library  for MQL5. It supports: ws://   and   wss://  (Secure "TLS" WebSocket) text   and   binary   data It handles: fragmented message  automatically (large data transfer) ping-pong   frames  automatically (keep-alive handshake) Benefits: No DLL required. No OpenSSL installation required. Up to 128 Web Socket Connections from a single program. Various Log Levels for error tracing Can be synchronized to MQL5 Virtual Hosting . Completely native t
ModernUI Library
Levi Dane Benjamin
适用于 MetaTrader 5 的 ModernUI 库 ModernUI 是一个用于 MetaTrader 5 的图表内用户界面库。它可以帮助 MQL5 开发者在 MT5 图表环境中构建更清晰的 EA 面板、仪表盘、设置窗口、表单、表格、对话框、抽屉式面板以及紧凑型交易风格界面。 它适合希望获得比零散图表对象更专业的界面层,同时仍然完全掌控自己 EA、指标或工具逻辑的开发者。 Modern UI - 用户指南   | EA 示例演示 你可以构建什么 ModernUI 并不局限于某一种面板类型。它为你提供了一个可复用的界面层,几乎可以用于任何你想在 MetaTrader 5 图表中构建的工具。 你可以用它创建简单的设置界面、紧凑型交易面板、完整仪表盘、数据视图、控制面板、账户工具、流程界面、监控界面、实用工具窗口、商业 EA 前端界面等等。 随附的演示展示了几个实用示例,但它们只是起点。如果你的 MQL5 项目需要按钮、输入框、表格、对话框、标签页、抽屉面板、图表、状态区域,或需要一种更清晰的方式在图表上展示信息,ModernUI 都可以为你提供构建模块。 主要功能 适用于 Me
WalkForwardOptimizer MT5
Stanislav Korotky
3.78 (9)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 5. To use the library include its header file WalkForwardOptimizer.mqh into your EA source code, add call provided functions as appropriate. Once the library is embedded into EA, you may start optimization according to the procedure described in the User guide . When it's finished, intermediate results are saved into a CSV file and some special global variables.
This library will allow you to send your trades using your MT5 EA bot and its very easy to integrate on any EA which you can do yourself with the script code which is mentioned in documentation. This product allows trading operations via API For MEXC chart : Renting   Crypto Charting  for OHLC data or   Crypto Ticks with Order Book Depth  is optional - Supports MEXC API calls - Place Limit, SL Limit and Take Profit Limit Orders - Place Market, SL-Market, TP-Market orders - Modify Limit order - C
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions. Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot (1,3,5,8,13) you can use it in different way calculate when loss=1 ,when profit=0. Mode 2: Multiplier Lot (1,2,4,8,16) you can use it in different way calculate when loss=1 ,when profit=0. Mode 3: Plus Lot (1,2,3,4,5) you can use it in different way calculate when loss=1 ,when profit=0. Mode 4: SL/Risk Lot calculate based on s
This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert's trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the "MQL5\Files" directory. Then it uses these files to automatically build a cluster walk forward report and rolling walk forward reports that refine it (all of them in one HTML file). Using the WalkForwardBuilder MT5 auxiliary script allows building othe
OrderBook History Library
Stanislav Korotky
3 (2)
Order Book, known also as Market Book, market depth, Level 2, - is a dynamically updated table with current volumes of orders to buy and to sell specific financial instument at price levels near Bid and Ask. MetaTrader 5 provides the means for receiving market book from your broker, but in real time only, without access to its history. The library OrderBook History Library reads market book state in the past from archive files, created by OrderBook Recorder . The library can be embedded into you
Teclado trader, é uma BIBLIOTECA que você pode chamar no OnChartEvent para abrir posição de compra/venda/zerar, os botões padrões são: V = venda C = compra Z = zerar posições a mercado S = zerar posições opostas e depois a mercado X = zerar posições opostas Além da função de teclado, é possível mostrar os estados do ExpertAdvisor usando o MagicId, com informação de: lucro mensal, semanal, diario, e posição aberta, para isto use o OnTick, ou qualquer outro evento (OnTimer / OnTrade / OnBookEven
Goliath Mt5
Nicolokondwani Biscaldi
Goliath MT5 - scalper fully automated Expert Advisor for medium-volatile forex markets P roperties: The Library trades 10 currency pairs (USDCHF, EURCHF, EURGBP, AUDUSD, USDCAD, GBPUSD, EURUSD, NZDUSD, CADCHF, EURAUD, EURCAD, AUDJPY) The Library does not use martingale The Library sets a fixed stop loss and take profit for all orders The Library only trades a user input volume The Library can be installed on any currency pair and any timeframe Recommendations: Before using on a real account, t
Gold plucking machine   Gold plucking machine   is an Expert Advisor designed specifically for trading gold. The operation is based on opening orders using the Fast and Slow lines indicator, thus the EA works according to the "Trend Follow" strategy, which means following the trend. Use grid strategy to place orders without stop loss operation, so please make sure the account has sufficient funds. magic number        -  is a special number that the EA assigns to its orders. Lot Multiplier     
作者的更多信息
EA Budak Ubat MT5
Syarief Azman Bin Rosli
EA Budak Ubat MT5 是一款专为 MetaTrader 5 设计的自动化网格马丁格尔(Grid Martingale)交易机器人。该系统结合了技术趋势分析、动态波动率自适应计算以及多层风险控制,可在震荡和单边趋势市场中高效管理仓位。 针对主要外汇货币对和现货黄金(XAUUSD)的 M5 周期进行了全面优化。 ### 核心功能 • 4 种可选入场分析策略:   1. Classic Candle:根据K线反转与动量形态判定方向。   2. SMA20:基于20周期均线交叉判定。   3. Alligator:基于比尔·威廉姆斯鳄鱼线指标开裂趋势。   4. Ichimoku:基于一目均衡表(转换线与基准线)平衡信号(默认推荐)。 • AutoConfig AI 动态波动率引擎:   将当前品种的20日平均日波动幅度(ADR)与EURUSD的365日ADR进行自动对比,智能计算最佳止盈点数(TP)、网格初始间距、递增步长以及最大网格间距。 • H1 周期 RSI 过滤器:   监控一小时级别 RSI,避免在超买区盲目追多或在超卖区盲目做空。在交易黄金(XAUUSD)
EA Budak Ubat
Syarief Azman Bin Rosli
4 (3)
免费试用 EA Budak Ubat 频道 限时特价! 每购买10次后价格将增加10美元! 工作原理 当 EA 激活时,它会根据执行模式参数分析图表。 如果图表上没有现有仓位,EA 将根据参数输入交易。如果趋势是看涨的,它将进入买入交易,如果是看跌的,它将进入卖出交易。如果止损变量大于0,则还会设置距离已打开交易价格一定距离的止损订单。0表示没有止损。 如果图表上存在现有仓位,且最后一个仓位处于亏损状态,EA 将检查当前市场价格与订单之间的距离是否至少为用户设置的最小距离,然后将根据蜡烛图输入交易,仓位大小将使用马丁格尔方法计算,并且将设置离已打开交易价格一定距离的止损订单,如果止损变量大于0。 如果未启用套期保值,EA 一次只会进入一个方向的交易。如果第一个仓位是买入交易,则所有后续的马丁格尔仓位也必须是买入交易。如果第一个仓位是卖出交易,则所有后续的马丁格尔仓位也必须是卖出交易。如果启用套期保值,EA 将进入双向交易。 EA 将修改相同方向的所有仓位的获利点为单一的保本点,再加上用户设置的获利水平。 EA 参数 执行模式: 在每个新 K 线上:当 EA 激活时,它会在每个新的
Indi RBO
Syarief Azman Bin Rosli
Input: Range Start Time : The starting time of the range creation Range End Time : The ending time of range creation Trade End Time : The time where the line of range zone high/low will be extended to Minimum Size : The minimum size of the range in point Maximum Size : The maximum size of the range in point If the range size is between the minimum and maximum, indicator will print the 1st color (blue).
Apex Flow Reversion
Syarief Azman Bin Rosli
# Apex Flow Reversion MT4 Apex Flow Reversion 是一款专为 MetaTrader 4 开发的自动化日内统计均值回归交易系统。该系统监测价格与动态成交量加权平均价(VWAP)基准的偏离程度,并结合标准差通道、相对强弱指数(RSI)动量超买超卖过滤以及真实波幅(ATR)波动率约束来识别价格反转点。 ## 策略概述 该算法在用户设定的时间窗口内,根据分笔跳动量(Tick Volume)计算滚动日内 VWAP 曲线。系统以该中轨为中心,通过标准差计算生成统计上下轨。 当市场价格跌破下轨且 RSI 显示超卖衰竭时,系统评估多头入场条件;当价格突破上轨且 RSI 显示超买衰竭时,系统评估空头入场条件。交易目标为价格回归至动态 VWAP 中轨或设定的固定点数止盈。 ## 核心功能特点 - 严格符合 MQL5 市场规范:原生 MQL4 代码编写,完全不依赖任何外部 DLL。 - 动态经纪商环境适配:在下单或修改订单前,系统自动校验并满足最低停损距离(StopLevel)、冻结距离(FreezeLevel)以及点差上限。 - 稳健的订单执行机制:
Vortex Confluence Radar
Syarief Azman Bin Rosli
Vortex Confluence Radar MT4 Vortex Confluence Radar 是专为 MetaTrader 4 平台开发的多震荡指标共振评分引擎。该指标融合了相对活力指数(RVI)、顺势指标(CCI)与威廉指标(Williams %R)三大经典技术震荡工具,生成统一步伐的动量柱状图、平滑信号线以及交叉预警信号。 指标架构与可视化信号 该指标在独立的副图窗口中运行,包含以下核心图表组件: 统一共振动量柱状图 归一化评分机制:RVI、CCI 和 Williams %R 的数值均被独立归一化映射至 [-100, +100] 区间,并通过用户自定义权重进行加权平均计算。 多头动量(草绿色柱线):当综合共振分值大于零时显示,代表多方动能占优。 空头动量(红色柱线):当综合共振分值小于零时显示,代表空方动能占优。 平滑信号线(金色曲线) 基于综合共振评分计算的指数移动平均线(EMA)。 有效过滤单个震荡指标的高频杂波,提供明确的均线交叉转折时机。 阈值边界水平线(天蓝色与橙红色线条) 超买阈值线(默认 +60.0):标识多头动能进入过度饱和的区域。 超卖阈值线(默认 -6
Kinetix Speed Commander
Syarief Azman Bin Rosli
Kinetix Speed Commander MT4 Kinetix Speed Commander   是一款专为 MetaTrader 4 平台打造的机构级图表一键交易控制台、动态仓位手数计算器及风险回报率订单管理工具。专为自营交易考核交易员(Prop Firm Traders)、敏捷超短线交易者(Scalpers)以及日内系统化交易者设计,Kinetix Speed Commander 全面消除人工计算延迟、下单输入失误以及过度杠杆风险。 该工具运行于高响应、深色主题的图表面板(HUD)之上,不依赖任何外部动态链接库(DLL)。程序在后台以毫秒级精度持续分析账户余额、净值与交易品种的点值,提供毫秒级一键下单、图表交互式可视化风险线调整,以及由 250 毫秒硬件定时器驱动的自动移动止损与保本引擎。 核心架构与功能特性 一键极速交易控制台   直接在图表界面上一键完成买入(Buy)与卖出(Sell)市价开仓。开仓时自动附加精确计算的手数、预设止损及止盈防护。内置滑点控制与实时点差过滤器,在点差异常扩大或市场剧烈波动时自动阻止开仓,保护资金安全。 自动动态仓位手数计算器   在订单提
Prism Candle Forge
Syarief Azman Bin Rosli
Prism Candle Forge — MT4 蜡烛形态识别引擎 Prism Candle Forge 是一个原生的 MQL4 库,利用基于 ATR 加权的几何分析来检测并验证 20 多种日本蜡烛图形态。它提供形态识别、方向置信度评分、蜡烛形态分类以及趋势上下文验证 — 全部通过 8 个导出函数实现,可供任何 Expert Advisor、指标或脚本调用。无需 DLL,无外部依赖,纯 MQL4 高性能计算。 以编译二进制文件 (Prism_Candle_Forge.ex4) 形式分发。本说明文档是您的完整 API 参考手册。 安装说明 从 MQL5 Market 下载 Prism_Candle_Forge.ex4。 将其放置在:MQL4/Libraries/ 将下面的 #import 代码块添加到您的 .mq4 源文件中。 编译您的 EA 或指标。全部 8 个函数现已可用。 导入声明(即拷即用) #import "Prism_Candle_Forge.ex4"    int     PCF_DetectPattern( const double &open[], const doub
Sigma Squeeze Reactor
Syarief Azman Bin Rosli
Sigma Squeeze Reactor 布林带与肯特纳通道挤压突破 MetaTrader 4 智能交易系统 (EA) Sigma Squeeze Reactor 是一款专为 MetaTrader 4 平台打造的高性能波动率突破量化 EA。它利用布林带(Bollinger Bands)收缩进入肯特纳通道(Keltner Channels)所形成的经典挤压(Squeeze)结构,并在挤压释放瞬间结合动量振荡器确认,精准捕捉强劲的单边突破行情。 本策略搭载了 双引擎突破系统(Dual-Engine Breakout Architecture) ,兼顾低波动静止筹码的蓄势爆发与强趋势下的通道扩张突破,并配备直接渲染在图表中央的机构级交互式量化驾驶舱(Cockpit HUD)。 核心工作原理 波动率挤压机制 (Squeeze Mechanism) 当基于标准差的布林带完全收缩在基于真实波幅(ATR)的肯特纳通道内部时,市场进入低波动蓄势期。这一挤压状态反映了机构订单的沉淀与筹码集中,往往是爆发性单边行情的先兆。 双引擎突破逻辑 引擎 A(挤压释放突破):   监测布林带自肯特纳通道内部向外扩
Spectra Trend Ribbon
Syarief Azman Bin Rosli
# Spectra Trend Ribbon MT5 Spectra Trend Ribbon 是一款专为 MetaTrader 5 开发的原生多层级趋势方向与波动率扩张指标。该指标结合了自适应平滑趋势基准线、动态波动率包络通道以及自动化动量突破信号。 ## 图表视觉信号解析 指标在图表上呈现五种核心视觉元素: 1. 中央自适应基准线(变色线) - 绿色线条:表示市价运行于基准线上方且基准线斜率向上,代表当前处于强势多头趋势。 - 红色线条:表示市价运行于基准线下方且基准线斜率向下,代表当前处于强势空头趋势。 - 灰色线条:表示斜率走平或处于横盘整理阶段,方向动量呈中性。 2. 上下动态波动率通道(皇家蓝线) - 以外部真实波幅(ATR)乘以设定倍数并叠加于中央基准线计算所得的包络带。 - 价格在通道内运行时处于正常波动区间。 - 通道显著收窄时预示市场正在经历波动率压缩(Squeeze 挤压)。 3. 多头扩张箭头(绿色箭头) - 当 K 线突破并收盘于上轨之外,且中央基准线保持多头斜率时,在 K 线下方显示绿色箭头。 - 标志着价格从收敛整理状态中恢复动量,顺应主升趋
Aegis Risk Sentinel
Syarief Azman Bin Rosli
Aegis Risk Sentinel MT5 Aegis Risk Sentinel   是一款专为 MetaTrader 5 开发的机构级实时净值保护与风控管理实用工具。专为自营交易公司(Prop Firm 挑战者)、职业资产管理经理和日内交易者打造,旨在通过量化规则规范交易行为,避免重大回撤、情绪化报复性交易以及高杠杆爆仓风险。 本工具配备超流畅的图表 HUD 仪表盘,100% 采用原生 MQL5 架构编写,不含任何外部 DLL。后台以亚秒级频率持续监控账户净值,并提供一键紧急平仓与订单管理操作。 核心功能 每日最大亏损上限保护   实时监控相对于每日开盘初始净值的变动(平台经纪商时间每日午夜自动重置)。一旦日内回撤达到设定的最大阈值(如 4.0%),Aegis 可自动清空所有持仓、撤销所有挂单,并锁定账户直至下一个交易日。 每日目标利润锁定   在达到设定的日内目标利润时及时锁住收益,避免在市场后期震荡中回吐利润。 账户最大总回撤防护   针对账户余额监控总浮动回撤,防止触及严格的净值底线,非常适合通过 FTMO 等自营机构风控考核。 预付款比例安全哨兵   实时审计账户 Ma
Stratos Momentum Engine
Syarief Azman Bin Rosli
Stratos Momentum Engine MT5 Stratos Momentum Engine 是专为 MetaTrader 5 平台开发的全自动多时间框架动量突破智能交易系统(EA)。该系统将较高时间框架(H1)的宏观结构趋势判定与较低时间框架(M15)的高精度动量择时及通道突破确认深度结合。 本系统采用最小二乘法线性回归斜率算法精确捕捉市场主导趋势方向,结合平滑随机震荡指标(Stochastic)识别回调结束后的动量恢复节点,并通过唐奇安通道(Donchian Channel)极值突破进行入场确认。风险管理方面集成了基于 ATR 的自适应动态止损与止盈、Chandelier Exit 吊灯移动止损、开仓前保证金计算校验以及账户级每日最大回撤熔断保护。 产品概述 Stratos Momentum Engine 严格基于三层分析架构执行交易决策: 宏观趋势方向:在 H1 时间框架上通过 50 周期线性回归斜率进行评估。仅当斜率绝对值超过设定阈值时才允许顺势交易,有效过滤震荡行情。 动量择时确认:在 M15 时间框架上利用 Stochastic(14, 3, 3)指标监控超买超卖
筛选:
无评论
回复评论