Prism Candle Forge

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

Prism Candle Forge — MT4 蜡烛形态识别引擎

Prism Candle Forge 是一个原生的 MQL4 库,利用基于 ATR 加权的几何分析来检测并验证 20 多种日本蜡烛图形态。它提供形态识别、方向置信度评分、蜡烛形态分类以及趋势上下文验证 — 全部通过 8 个导出函数实现,可供任何 Expert Advisor、指标或脚本调用。无需 DLL,无外部依赖,纯 MQL4 高性能计算。

以编译二进制文件 (Prism_Candle_Forge.ex4) 形式分发。本说明文档是您的完整 API 参考手册。

安装说明

  1. 从 MQL5 Market 下载 Prism_Candle_Forge.ex4。
  2. 将其放置在:MQL4/Libraries/
  3. 将下面的 #import 代码块添加到您的 .mq4 源文件中。
  4. 编译您的 EA 或指标。全部 8 个函数现已可用。

导入声明(即拷即用)

#import "Prism_Candle_Forge.ex4"
   int    PCF_DetectPattern(const double &open[], const double &high[], const double &low[], const double &close[],
                             int bar_index, double atr_value, string &pattern_name, double &confidence, int &direction);
   int    PCF_ScanMultiPattern(const double &open[], const double &high[], const double &low[], const double &close[],
                                int bar_index, double atr_value, string &pattern_names[], double &confidences[],
                                int &directions[], int max_patterns);
   double PCF_PatternStrength(const double &open[], const double &high[], const double &low[], const double &close[],
                               int bar_index, double atr_value);
   int    PCF_CandleType(double open_price, double high_price, double low_price, double close_price, double atr_value);
   double PCF_BodyRatio(double open_price, double high_price, double low_price, double close_price);
   double PCF_WickBalance(double open_price, double high_price, double low_price, double close_price);
   int    PCF_IsTrendConfirmed(const double &close[], int bar_index, int lookback_period, double min_slope_pips);
   int    PCF_GetVersion();
#import

API 参考

PCF_DetectPattern

检测指定 K 线上的最强蜡烛形态。可识别 20 多种形态,包括 Hammer、Engulfing、Morning/Evening Star、Doji 变体、Piercing Line、Dark Cloud Cover、Three White Soldiers、Three Black Crows、Harami、Tweezer、Marubozu、Hanging Man 以及 Shooting Star。

参数:

  • open[], high[], low[], close[]: 来自图表的 OHLC 价格数组。
  • bar_index: 要分析的 K 线索引。必须在数组有效索引范围内。
  • atr_value: 用于自适应阈值缩放的当前 ATR 值。必须为正数。
  • pattern_name (by ref): 接收检测到的最强形态名称(例如 "Bullish Engulfing")。
  • confidence (by ref): 形态置信度评分,范围从 0.0(较弱)到 1.0(标准教科书形态)。
  • direction (by ref): +1 表示看涨信号,-1 表示看跌信号。

返回值: 该 K 线上检测到的形态数量(若无则为 0)。将输出参数设置为置信度最高的形态。

PCF_ScanMultiPattern

扫描单个 K 线上的所有蜡烛形态,并按置信度降序返回多个结果。

参数:

  • open[], high[], low[], close[]: OHLC 价格数组。
  • bar_index: 要分析的 K 线。
  • atr_value: 用于自适应阈值的 ATR。
  • pattern_names[] (by ref): 接收形态名称的数组。内部自动调整大小,最大为 max_patterns。
  • confidences[] (by ref): 接收置信度评分的数组。
  • directions[] (by ref): 接收方向的数组 (+1/-1)。
  • max_patterns: 返回的最大结果数(例如 5)。

返回值: 实际检测到的形态数量(0 到 max_patterns)。

PCF_PatternStrength

返回一个综合方向动能评分,汇聚该 K 线上检测到的所有形态。

参数:

  • open[], high[], low[], close[]: OHLC 数组。
  • bar_index: 目标 K 线索引。
  • atr_value: 用于缩放的 ATR。

返回值: 评分范围从 -100.0(极度看跌)到 +100.0(极度看涨)。0 表示中性。

PCF_CandleType

使用相对于 ATR 的实体和影线比例,将单根蜡烛分类为 8 种形态类型之一。

参数:

  • open_price, high_price, low_price, close_price: 单根蜡烛的 OHLC 数值。
  • atr_value: 用于相对尺寸计算的 ATR。若为零或负数,则使用绝对阈值。

返回值: 1=Bull Marubozu, 2=Bear Marubozu, 3=Hammer, 4=Inverted Hammer, 5=Doji, 6=Spinning Top, 7=Standard Bull, 8=Standard Bear.

PCF_BodyRatio

计算蜡烛实体与总高低振幅的比率。可用于过滤蜡烛有效性。

参数:

  • open_price, high_price, low_price, close_price: 单根蜡烛 OHLC。

返回值: 比率范围从 0.0(无实体 / doji)到 1.0(全实体 / marubozu)。振幅为零时返回 0.0。

PCF_WickBalance

衡量蜡烛的影线方向不对称性。

参数:

  • open_price, high_price, low_price, close_price: 单根蜡烛 OHLC。

返回值: -1.0(全下影线,看涨拒绝)至 +1.0(全上影线,看跌拒绝)。0.0 表示影线对称。影线总长度为零时返回 0.0。

PCF_IsTrendConfirmed

在回溯窗口内使用线性回归斜率验证趋势上下文。用于过滤符合主流趋势的形态。

参数:

  • close[]: 收盘价数组。
  • bar_index: 回溯窗口的起始 K 线。
  • lookback_period: 评估的 K 线数量。最小为 5。受限于数组边界。
  • min_slope_pips: 确认为趋势所需的最小绝对斜率(以点为单位)。

返回值: +1(确认上升趋势),-1(确认下降趋势),0(震荡/盘整或数据不足)。

PCF_GetVersion

以整数形式返回库版本,用于运行时兼容性检查。

返回值: 100(代表版本 1.00)。

完整集成示例

#property strict
#import "Prism_Candle_Forge.ex4"
   int    PCF_DetectPattern(const double &open[], const double &high[], const double &low[], const double &close[],
                             int bar_index, double atr_value, string &pattern_name, double &confidence, int &direction);
   double PCF_PatternStrength(const double &open[], const double &high[], const double &low[], const double &close[],
                               int bar_index, double atr_value);
   int    PCF_CandleType(double open_price, double high_price, double low_price, double close_price, double atr_value);
   int    PCF_GetVersion();
#import

void OnTick()
{
   double o[], h[], l[], c[];
   ArrayCopyRates(o, Symbol(), 0);
   int copied = CopyOpen(Symbol(), 0, 0, 100, o);
   CopyHigh(Symbol(), 0, 0, 100, h);
   CopyLow(Symbol(), 0, 0, 100, l);
   CopyClose(Symbol(), 0, 0, 100, c);

   double atr = iATR(Symbol(), 0, 14, 1);

   string pat_name;
   double conf;
   int dir;
   int count = PCF_DetectPattern(o, h, l, c, 1, atr, pat_name, conf, dir);

   if(count > 0)
      Print("Pattern: ", pat_name, " Confidence: ", conf, " Direction: ", dir);

   double strength = PCF_PatternStrength(o, h, l, c, 1, atr);
   Print("Aggregate Strength: ", strength);

   int candle = PCF_CandleType(o[1], h[1], l[1], c[1], atr);
   Print("Candle Type: ", candle);
}

架构设计

全部 8 个函数均为无状态(stateless)且相互独立。每次调用都会对提供的 OHLC 数组执行纯几何与统计分析,无持久状态、无图表对象、无计时器、无网络访问。基于 ATR 的相对阈值确保在所有金融品种(外汇、贵金属、指数、加密货币)和所有时间周期上均能准确识别形态,无需手动调整参数。

兼容性

  • 平台:仅限 MetaTrader 4
  • 策略测试器:完全兼容(支持回测与参数优化)
  • 外部依赖:无(无需 DLL)
  • 无图表对象,无计时器,无界面开销 — 纯计算引擎
  • 线程安全:所有函数均为无状态设计;支持多图表并发调用

推荐产品
MT4/5通用交易库(  一份代码通用4和5 ) #ifdef __MQL5__      #define KOD_TICKET ulong      #define KOD_MAGIC   long #else        #define KOD_TICKET long      #define KOD_MAGIC   int #endif class ODLIST; #import "K Trade Lib Pro 4.ex4"       //祝有个美好开始,运行首行加入    void StartGood() ;    //简单开单    long OrderOpen( int type, double volume, int magic, string symbol= "" , string comment= "" , double opprice= 0 , double sl= 0 , double tp= 0 , int expiration= 0 , bool slsetmode= false , bool tpsetmode= false );    //复杂开单
El indicador "MR BEAST ALERTAS DE LIQUIDEZ" es una herramienta avanzada diseñada para proporcionar señales y alertas sobre la liquidez del mercado basándose en una serie de indicadores técnicos y análisis de tendencias. Ideal para traders que buscan oportunidades de trading en función de la dinámica de precios y los niveles de volatilidad, este indicador ofrece una visualización clara y detallada en la ventana del gráfico de MetaTrader. Características Principales: Canal ATR Adaptativo: Calcula
Introducing "TG Trade Service Manager" — your all-in-one solution for seamless trade management in both MQL4 and MQL5 environments. With a focus on speed, reliability, and convenience, this powerful library simplifies the complexities of trade execution and management, empowering developers with a single interface for enhanced efficiency. Metatrader5 Version |  All Products  |  Contact Key Features: Unified Interface : TG Trade Service Manager" provides a unified interface for   MQL4   and   MQ
Noize Absorption Index MT4
Ekaterina Saltykova
5 (1)
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation. S
History Pattern Search
Yevhenii Levchenko
该指标建立当前报价,可以与历史报价进行比较,并在此基础上进行价格走势预测。指示器有一个文本字段,用于快速导航到所需日期。 选项: 符号 - 选择指标将显示的符号; SymbolPeriod - 选择指标从中获取数据的时段; IndicatorColor - 指示器颜色; HorisontalShift - 由指标绘制的报价移动指定的柱数; Inverse - true 反转引号,false - 原始视图; ChartVerticalShiftStep - 图表垂直移动(键盘上的向上/向下箭头); 接下来是文本字段的设置,您可以在其中输入日期,您可以通过按“回车”立即跳转到该日期。 接下来是文本字段的设置,您可以在其中输入日期,您可以通过按“回车”立即跳转到该日期。
PZ Harmonacci Patterns
PZ TRADING SLU
3.17 (6)
可以说,这是您可以为MetaTrader平台找到的最完整的谐波价格形成自动识别指标。它检测19种不同的模式,像您一样认真对待斐波那契投影,显示潜在的反转区域(PRZ),并找到合适的止损和获利水平。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 它检测19种不同的谐波价格形态 它绘制了主要,衍生和互补的斐波那契投影(PRZ) 它评估过去的价格走势并显示每个过去的形态 该指标分析其自身的质量和性能 它显示合适的止损和获利水平 它使用突破来表明合适的交易 它在图表上绘制所有样式比率 它实现了电子邮件/声音/视觉警报 受斯科特·M·卡尼(Scott M. Carney)的书的启发,该指标旨在满足最纯粹和最熟练的交易者的需求。但是,它采取了一种使交易更容易的方式:在向交易发出信号之前,它会等待Donchian朝正确方向突破,从而使交易信号非常可靠。 斐波那契投影与向量无关 它实现了电子邮件/声音/推送警报 它绘制了ABCD投影 重要提示: 为了符合 Scott M. Carney先生 的商标申诉,某些图案名称已重命名为不言自明的替代方式, Scott M.
PipFinite Exit EDGE
Karlo Wilson Vendiola
4.83 (115)
Did You Have A Profitable Trade But Suddenly Reversed? In a solid strategy, exiting a trade is equally important as entering. Exit EDGE helps maximize your current trade profit and avoid turning winning trades to losers. Never Miss An Exit Signal Again Monitor all pairs and timeframes in just 1 chart www.mql5.com/en/blogs/post/726558 How To Trade You can close your open trades as soon as you receive a signal Close your Buy orders if you receive an Exit Buy Signal. Close your Sell orders if
REX complete 3in1
Christophe Godart
This is the complete REX package. It consists of the lite, pro and ULTRA version.  Perfect for beginners and intermediates. REX complete is 100% non repaint. The strategy is based on a mix of different strategies, statistics, including pivot points, oscillators and patterns.  As the trading idea consists of a variety of some classic indicators like Momentum, Williams Percent Range, CCI, Force Index, WPR, DeMarker, CCI, RSI and Stochastic, it is clear that the fundamental indicators have being u
这是一个预测蜡烛收盘价的指标。 该指标主要用于 D1 图表。 该指标适用于传统外汇交易和二元期权交易。 该指标可以用作独立的交易系统,也可以作为您现有交易系统的补充。 该指标分析当前蜡烛,计算蜡烛本身内部的某些强度因素,以及前一根蜡烛的参数。 因此,该指标预测市场走势的进一步方向和当前蜡烛的收盘价。 由于这种方法,该指标既适用于短期盘中交易,也适用于中长期交易。 该指标允许您设置指标在分析市场情况期间将产生的潜在信号的数量。 在指标设置中有一个特殊的参数。 此外,该指标可以通过图表上的消息、电子邮件以及推送通知的形式通知新信号。感谢您的关注!交易愉快! 购买后一定要写信给我! 我会给你我的交易指标的建议! 还可以获得奖金!
斐波那契折返和扩展画线工具 适用于MT4平台的斐波那契折返和扩展画线工具,适合于使用黄金分割交易的交易者 优点:没有多余的线,没有过长的线,易于观察发现交易的机会 试用版: https://www.mql5.com/zh/market/product/35884 主要功能: 1.可以直接画出多组斐波那契折返,可以看出重要折返点之间的关系; 2.可以画出斐波那契扩展,比率有三种0.618,1,1.618 3.画出的斐波那契折返和扩展均可左右移动,有数值显示,方便观察 4.可通过数字键切换周期 使用指南和功能键: 1.按 [ 或R画折返,按需要画折返,最多云持8组折返; 2.按 ] 或E画扩展; 3.按 \ 删除当前周期下的所有扩展和折返,其余周期的不受影响 4.如何左右移动折返和扩展 (1)点击第一组折返的F5字符,可以左右移动折返; (2)点击COP的字符 ,可以左右移动扩展; 5. (1)点击第一组折返的F5字符,按del 可以删除这组折返; (2)点击COP的字符, 按del 可以删除这组扩展; 6.修改折返和扩展(随着市场的运行,焦点或者反弹点需要修改)
VR Cub
Vladimir Pastushak
VR Cub 这是获得高质量切入点的指标。该指标的开发是为了促进数学计算并简化对仓位入场点的搜索。多年来,该指标所针对的交易策略已被证明其有效性。交易策略的简单性是其巨大的优势,即使是新手交易者也能成功进行交易。 VR Cub 计算开仓点以及获利和止损目标水平,这显着提高了效率和易用性。查看使用以下策略进行交易的屏幕截图,了解简单的交易规则。 设置、设置文件、演示版本、说明、问题解决,可以从以下位置获取 [博客] 您可以在以下位置阅读或撰写评论 [关联] 版本为 [MetaTrader 5] 计算入场点的规则 开仓 要计算入场点,您需要将 VR Cub 工具从最后一个高点拉伸到最后一个低点。 如果第一个点在时间上早于第二个点,交易者等待柱线收于中线上方。 如果第一个点在时间上晚于第二个点,交易者等待柱线收于中线下方。 根据上述条件,严格在 柱线收盘 后建仓。 换句话说,如果我们在小时图上进行交易,那么从最高点到最低点的时间距离必须超过24小时,最高点和最低点之间的点数必须大于或等于平均价格变动每天。 维持和改变市场地位 可以有多个未平仓头寸;每个头寸都可以单独修改。 VR Cub
Reversion King MT4
Eugen-alexandru Zibileanu
市场新王者登场 —— 指标 + 订单管理系统(TP1 + TP2 + TP3)(完整交易系统) 该指标集成了一套先进的交易策略、可自定义订单管理系统以及均值回归(Mean Reversion)交易体系。系统结合 Envelopes 通道扩展技术,并通过 RSI 等多重智能确认过滤器筛选高概率反转机会,生成清晰的 BUY(买入)和 SELL(卖出)信号。 本指标绝不重绘(No Repaint)。 您不仅能够学习如何寻找优质交易机会,还能掌握如何高效管理多个持仓,并利用已有盈利仓位来覆盖潜在亏损交易,实现更专业的资金管理。 本指标专为 M5 时间周期开发和优化,在几乎所有交易品种和货币对上均具有出色表现。同时支持历史回测,可帮助您评估系统在不同市场环境下的表现与适用性。 指标会自动生成清晰的多头(Long)和空头(Short)信号,并基于 ATR 自动计算入场价、止损位(Stop Loss)和止盈位(Take Profit),让风险管理从交易开始就融入系统之中。 多级止盈系统(Multi-TP)设有三个递进式目标位。您可以在 TP1 部分获利了结,在 TP2 进一步锁定利润,并将剩余仓位持
自动盈亏平衡水平 使用   此   工具 ,   您 可以 激活 自动 止损 移动, 当 交易 达到 预期 利润时.  对于   短期   交易者   尤其   重要.   偏移选项也可用: 可以保护部分利润. 多功能工具 : 66+ 功能, 包括此工具  |   联系我  如有任何问题  |   MT5版本 激活自动盈亏平衡功能的过程: 1.   选择符号或交易   将为其激活自动盈亏平衡功能: 对于当前   [Symbol]   / 对于   [ALL]   所有交易 / 或特定交易   [Ticket] . 除了[Symbol]或[ALL]规则外 - 您可以为特定交易设置单独规则, 通过其票号: 单独[Ticket]的规则将优先. 2. 选择您要激活自动盈亏平衡的   交易类型   : [ALL]: 所有活跃交易; [Longs]: 仅买入交易; [Shorts]: 仅卖出交易; 3.   [When profit] : 只有当   交易达到指定利润金额时 , SL才会被移动. 4.   [+ Offset] : 您可以设置   额外的SL偏移 , 向 TP水平方向. 因此,
Introduction It is common practice for professional trades to hide their stop loss / take profit from their brokers. Either from keeping their strategy to the themselves or from the fear that their broker works against them. Using this indicator, the stop loss / take profit points will be drawn on the product chart using the bid price. So, you can see exactly when the price is hit and close it manually.  Usage Once attached to the chart, the indicator scans the open orders to attach lines for t
Display Multipair
Kourosh Hossein Davallou
This is an indicator that allows displaying three currency pairs in one window. Input Parameters: Symbol1 - first currency pair. symbol1mirrior - mirror display of the first currency pair. s1color - color of the first currency pair. Symbol2 - second currency pair. symbol2mirrior - mirror display of the second currency pair. Symbol3  - third currency pair. symbol3mirrior -  mirror display of the third currency pair. Symbo4  - fourth currency pair. symbol4mirrior - mirror display of the fourth cur
Magic Balance
Daniil Evstratenko
The indicator shows which trading pairs, strategies, robots and signals that you use are profitable and which are not. The statistic of trades and balance graph are displayed in the account currency and pips - to switch simply click on the graph. button "$"(top left) - minimize/expand and move the indicator panel button ">"(bottom right) - stretching and resetting to the original size Statistic of trades 1 line - account balance, current profit and lot of open trades; 2 line - the number of all
```text IndexRaider Library 将 IndexRaider 核心引擎以可调用函数的形式提供,包括:流动性扫单(SFP)检测、H4 趋势方向判断、Fair Value Gap 确认,以及整个 IndexRaider 产品系列所使用的基于风险的仓位计算功能。您可以基于相同的规则构建自己的 Expert Advisor、指标或交易面板——Library 负责分析,您的程序负责做出决策。 它提供的函数 - IXR_Drive(symbol) — 基于 H1 数据推进每个交易品种的状态机;可在每个 tick 或定时器中调用。每根完整收盘的 H1 K 线只执行一次,并返回当前阶段:   0 = 空闲   1 = 已检测到流动性扫单 / 等待确认   2 = 交易 setup 已激活 - IXR_Setup(symbol, direction, entry, sl, tp) — 当阶段为 2 时返回已激活 setup 的价格水平:   入场位于 gap 边缘,   止损位于 sweep 影线之外,   目标位于被扫荡区间的另一端 - IXR_Bias(symbol)
A technical indicator that calculates its readings on trading volumes. In the form of a histogram, it shows the accumulation of the strength of the movement of the trading instrument. It has independent calculation systems for bullish and bearish directions. Works on any trading instruments and time frames. Can complement any trading system. The indicator does not redraw its values, the signals appear on the current candle. It is easy to use and does not load the chart, does not require addition
Alpha Trend sign Alpha Trend sign 是我么长期以来非常受欢迎的交易工具,它可以验证我们的交易系统,并且明确的提示交易信号,并且信号不会漂移。 主要功能: •  根据市场显示活跃区域,根据指标可以很直观的判断当前行情是属于趋势行情,还是震荡行情。    并根据指标的指示箭头切入市场,绿色箭头提示买入,红色箭头提示卖出。 •  建议使用5分钟以上的时间周期进行交易,避免因为小周期波动出现频繁的交易信号。 •  您也可以开启信号提示,以免错过最佳的交易时机。 •  本指标不但可以很好的预测趋势行情,也可以在宽幅震荡行情中获利。 •  本指标本着大道至简的原则,适合不同阶段的交易者使用。 注意事项: •  Alpha Trend sign 有明确的进出场信号,不建议逆势操作,以免造成损失。 •  Alpha Trend sign 是特别成熟的指标,我们团队人手一个,使用它可以实现稳定盈利。     
该指标建立了趋势线的扇形(在单击某个蜡烛之后),类似于经典的江恩角。该指标的特点是它不仅在固定比例上构建角度,而且还使用一定数量柱线的平均价格(可选)。 有两种方法可以计算指标中角度的平均价格(可选): 1) 计算从高到低的平均价格变动(对于一定数量的柱); 2) 计算从开盘到收盘的平均价格变动; 选项: 1.Method——构造角的方法; 2. FixedScale - 固定比例(如果在Method中选择了Fixed_Scale); 3. SecondaryAngles - 控制绘制次角的权限; 4. RayRight - 为趋势线设置射线; 5. DrawBackground - 画线作为背景; 6. AnglesQuantity——角度数; 7. Bars_To_Process - 周期,柱的数量,在此基础上确定平均价格,角度的“速度”。如果为零或更低,则根据所有历史数据计算; 8. RisingMainAnglesClr、RisingSecondaryAnglesClr、FallingMainAnglesClr、FallingSecondaryAngl
CyberZingFx Trend Reversal
Afsal Meerankutty
4.18 (17)
NEW YEAR SPECIAL DISCOUNT RUNNING NOW 40% DISCOUNT Price slashed from $149 to $89 until 3rd Jan 2025 Indicator captures the trend reversals with no-repaint Buy and Sell Arrow signals. CyberZingFx Trend Reversal Indicator - your go-to solution for accurate and reliable trend reversal signals. With its  advanced trading strategy , the indicator offers you Buy and Sell Arrow signals that do not repaint, making it a reliable tool for catching Swing Highs and Swing Lows in any market and any time fr
Virtual Collider Manual   is a trading assistant with a built-in panel for manual trading. It automatically moves a position opened by a trader in profit using innovative adaptive grid algorithm of averaging and adaptive pyramiding Know-how of the grid algorithm of averaging and pyramiding of the   Virtual Collider Manual   trading robot is based on fully automatic adaptation of all characteristics of dynamically build order grid and pyramid with actual price movement with no need for adjusting
Volume Profile Sniper v11.1是一款全面的市场分析工具 专业的交易方法 Volume Profile Sniper v11.1在一个指标中结合了超过15个关键过滤器,根据对市场情况的全面评估提供清晰的信号。 主要特点 成交量不平衡分析-该算法计算每个蜡烛中买家和卖家的份额,表明其中一方的优势(可配置阈值从50%到90%)。 多级信号滤波-指标考虑到: 趋势指标(EMA9/21) Rsi不包括超买/超卖区域 蜡烛图案(针杆,吸收,锤子) 支持/阻力水平(自动检测) 音量峰值,以确定主要参与者的活动 经典和放大的RSI分歧 波动率评估的ATR 用于确定趋势强度的ADX 价格行动(内部和外部酒吧) 多时间帧确认 市场结构(高点/低点) 会话过滤器(亚洲,伦敦,纽约会话) 防止新闻排放 灵活的配置系统-MinFiltersRequired参数允许您设置生成信号所需的最小数量的滤波器。 这使得可以使指标适应任何交易策略,从激进到保守。 可视化设置-您可以通过将指示器集成到图形样式中来更改箭头的大小和颜色(ArrowSize,BuyArr
Blahtech Market Profile
Blahtech Limited
4.53 (15)
Was: $249  Now: $99   Market Profile defines a number of day types that can help the trader to determine market behaviour. A key feature is the Value Area, representing the range of price action where 70% of trading took place. Understanding the Value Area can give traders valuable insight into market direction and establish the higher odds trade. It is an excellent addition to any system you may be using. Blahtech Limited presents their Market Profile indicator for the MetaTrader community. Ins
Quantum Volume Point of Control Indicator
QUANTUM TRADING SOFTWARE LIMITED
5 (1)
The Quantum VPOC indicator has been developed to expand the two dimensional study of volume and price, to a three dimensional one which embraces time. The volume/price/time relationship then provides real insight to the inner workings of the market and the heartbeat of sentiment and risk which drives the price action accordingly. The Quantum VPOC indicator displays several key pieces of information on the chart as follows: Volume Profile - this appears as a histogram of volume on the vertical pr
Apex Fibo Tracer — Smart Auto-Fibonacci Tool Apex Fibo Tracer is a professional analytical indicator that automates one of the most powerful methods in technical analysis — Fibonacci retracement levels. By combining a high-precision ZigZag algorithm with dynamic Fibonacci plotting, the tool delivers instant and accurate visualization of market structure directly on your chart. Most traders lose valuable seconds manually adjusting Fibonacci grids during high volatility. Apex Fibo Tracer eliminate
Gold Blessings
Rafal Pawel Bugno
GOLD BLESSINGS EA MT4    Trading system that masters the complexity of financial markets with a unique combination of AI-driven analyses and data-based algorithms. Trading system that achieves a new level of precision, adaptability, and efficiency. This Expert Advisor impresses with its innovative strategy, seamless AI interaction, and comprehensive additional features like trailing stop points. Equity required range $1k-$10k Developed for constant profit and slow grow also can be used for compo
Welcome to S3S Trade Manager MT4, the best risk management tool available, created to improve the efficiency, accuracy, and intuitiveness of trading. This is a complete solution for smooth trade planning, position management, and improved risk control, not just a tool for placing orders. With flexibility across all markets, from forex and indices to commodities and cryptocurrency, S3S Trade Manager MT4 can accommodate your needs whether you're a novice making your first moves, an experienced tra
Nirvana prop controler MT4
Aiireza Arjmandi Nezhad
面向专业交易者与评估账户(Prop)的风险管理与限制监控指标 本工具仅在图表上展示风险管理与限制相关的精确信息,帮助你更专注地做出决策。该指标不执行开仓/平仓/修改操作,也不会与智能交易系统(EA)产生干扰。 功能 监控日内与总回撤 基于余额(Balance)或净值(Equity)计算并显示日内/总回撤(可配置)。 显示距离预设限制的剩余百分比。 清晰专业的图表面板 摘要表:余额、净值、当前盈亏、日内/总回撤、预警阈值。 简洁易读的界面,便于专注决策。 基于风险的仓位大小 根据百分比/固定金额风险和所选止损距离计算大致手数。 在图表上显示风险回报比(R:R)以及入场、止损(SL)、止盈(TP)水平。 警报与通知 接近日内/总回撤阈值时触发警报(阈值百分比可设置)。 价格触及 SL/TP 或其他自定义事件时发送通知。 支持向桌面和移动端推送通知。 兼容性与非干预 指标仅用于信息展示,不执行或管理订单。 可同时用于多个图表与品种。 即使在不允许 EA 的环境中也可使用。 使用方法 将指标加载到所需品种与时间周期上。 设置日内/总限制、计算基准(Balance/Equity)以及时区或每日
Diamond Pattern
Ugur Oezcan
5 (1)
The diamond top and bottom are reversal patterns. It represents a rally to a new high with a drop to a support level followed by a rally to make a new high and a quick decline, breaking the support level to make a higher low. The bounce from the higher low is then followed by a rally, but making a lower high instead. Once this behavior is identified, prices then break the trend line connecting the first and second lows and start to decline further. You can find MT5 version hier Indicator shows
该产品的买家也购买
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
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal-
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
Trend broker killer
Mansour Rahkhofteh
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void S
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in discerni
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS 庫是基於 4xlots.com WEB API 算法的本地化風險管理庫。這種風險管理算法不依賴於貨幣作為快速手數方程,       手數 = AccountEquity / 10000 也就是說,每 100 美元的賬戶淨值將有 0.01 手。 RedeeCash 4XLOTS 庫使用 2011 年首次開發的更詳細和增強的算法作為手動計算。 RedeeCash 4XLOTS 有一個稱為LotsOptimize 的函數。在您的項目中復制並包含以下 RedeeCash_4XLOTS.mqh 文件。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4XLOTS.mqh | //|   Copyright 2011-2022, PressPage Entertainment Inc DBA RedeeCash | //|            
Use a plain google sheet to license your product After years of developing trading software, I noticed the lack of a simple and cheap system to license the software to your customer.  Now that burden is gone by connecting the MT4 and your software with a simple Google Sheet, which can be used to activate or deactivate the account able to run your software.  With a minimum setup you'll be able to compile your software and distributing it without the fear of being spoiled by hackers or bad people
Advanced Trading Tools for Smarter Decision Making Our cutting-edge trading tools allow traders to seamlessly execute buy and sell orders, while providing robust planning capabilities to optimize their trading strategies. Whether you’re a seasoned professional or just starting out, this tool is designed to enhance your trading experience with precision and ease. Key Features: Real-time Buy and Sell Execution: Easily place orders instantly and take advantage of market opportunities without del
Ai Prediction MT4
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
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
A library for creating a brief trading report in a separate window. Three report generation modes are supported: For all trades. For trades of the current instrument. For trades on all instruments except the current one. It features the ability to make reports on the deals with a certain magic number. It is possible to set the time period of the report, to hide the account number and holder's name, to write the report to an htm file. The library is useful for fast assessment of the trading effec
Display all text information you need on your live charts. First, import the library: #import "osd.ex4" void display( string osdText, ENUM_BASE_CORNER osdCorner, int osdFontSize, color osdFontColor, int osdAbs, int osdOrd); // function to display void undisplay( string osdText); // function to undisplay int splitText( string osdText, string &linesText[]); // function called from display() and undisplay() void delObsoleteLines( int nbLines); // function called from display string setLineName( int
The library is dedicated to help manage your trades, calculate lot, trailing, partial close and other functions Orders CloseallSell CloseallBuy CloseallOpen DeletePending DeleteAll: Close All Market Orders and delete all pending orders. CheckOpenBuyOrders: return the count of buy orders. CheckOpenSellOrders: return the count of sell orders. CheckOpenOrders: return the count of market orders. ModifyOrder DeleteOrder CloseOrder OpenOrder Lot Calculation Mode 0: Fixed Lot. Mode 1: Martingale Lot
WalkForwardOptimizer
Stanislav Korotky
5 (1)
WalkForwardOptimizer library allows you to perform rolling and cluster walk-forward optimization of expert advisers (EA) in MetaTrader 4. 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
WalkForwardLight
Stanislav Korotky
5 (1)
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 "tester/Files" directory. Then these files can be used by the special WalkForwardBuilder script to build a cluster walk forward report and rolling walk forward reports for refining it. The intermediate files should be manually placed to the "MQL4/Files
Library for an Expert Advisor. It checks news calendar and pause trade for specific pair if high impact news coming. News Filter for an Exert Advisor. Easily apply to your EA, just needs simple scripts to call it from your EA. Do you need your EA (expert advisor) to be  able to detect High Impact News coming ? Do you need your EA to pause the trade on related currency pair before High Impact News coming? This News Filter library is the solution for you. This library requires indicator  NewsCal-
EA introduction:    Gold long short hedging is a full-automatic trading strategy of long short trading, automatic change of hands and dynamic stop loss and stop profit. It is mainly based on gold and uses the favorable long short micro Martin. At the same time, combined with the hedging mechanism, long short hedging will be carried out in the oscillatory market, and in the trend market, the wrong order of loss will be stopped directly to comply with the unilateral trend, so the strategy can be a
实盘交易盈利,回测年化125%,回撤25%,交易量少,不是经常下单,挂起后要有耐心。没有多牛的技术,只是一套简单的交易策略,贵在长期坚持,长期执行。我们有时候就是把自己高复杂,想想我们交易的历程,你就会发现,小白好赚钱,当你懂得越多的时候也是亏损的开始,总是今天用这个技术,明天用那个指标,到头来发现,没有一个指标适合你。其实每个技术指标都是概率性的,没有100%的胜率。很多技术指标你要融合一套交易策略,资金仓位控制,止损止盈比例,一套策略下来下一步你做的就是执行力了,必须要坚决执行你的交易策略,如果不能坚持的话最终还是在亏损。说实话不是每个人都有好的心态和执行力,所以我们做出来这款ea自己来用,发现时间久了扭亏为盈了,那现在就拿出来给大家分享,让更多的人来达到自己的盈利目标。购买后留下邮箱或添加软件里的qq,我们会根据你的资金来调整软件参数。 经测试过的柱数 14794 用于复盘的即时价数量 51321985 复盘模型的质量 n/a 输入图表错误 213935 起始资金 10000.00 点差 当前 (54) 总净盈利 12583.42 总获利 37630.02 总亏损 -25046.
Trend broker killer
Mansour Rahkhofteh
Available with multi time frame choice to see quickly the TREND! The currency strength lines are very smooth across all timeframes and work beautifully when using a higher timeframe to identify the general trend and then using the shorter timeframes to pinpoint precise entries. You can choose any time frame as you wish. Every time frame is optimized by its own. Built on new underlying algorithms it makes it even easier to identify and confirm potential trades. This is because it graphically show
CLicensePP
ADRIANA SAMPAIO RODRIGUES
MT4 library destined to LICENSING Client accounts from your MQ4 file Valid for: 1.- License MT4 account number 2.- License BROKER 3.- License the EA VALIDITY DATE 4.- License TYPE of MT4 ACCOUNT (Real and / or Demo) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++ ++++++
Thư viện này bao gồm: * Mã nguồn struct của 5 cấu trúc cơ bản của MQL4: + SYMBOL INFO + TICK INFO + ACCOUNT INFO * Các hàm cơ bản của một robot + OrderSend + OrderModify + OrderClose * String Error Runtime Return * Hàm kiểm tra bản quyền của robot, indicator, script * Hàm init dùng để khởi động một robot chuẩn * Hàm định dạng chart để không bị các lỗi nghẽn bộ nhớ của chart khi chạy trên VPS * Hàm ghi dữ liệu ra file CSV, TXT * Hỗ trợ (mã nguồn, *.mqh): dat.ngtat@gmail.com
Thư viện các hàm thống kê dùng trong Backtest và phân tích dữ liệu * Hàm trung bình * Hàm độ lệch chuẩn * Hàm mật độ phân phối * Hàm mode * Hàm trung vị * 3 hàm đo độ tương quan - Tương quan Pearson - Tương quan thông thường - Tương quan tròn # các hàm này được đóng gói để hỗ trợ lập trình, thống kê là một phần quan trọng trong phân tích định lượng # các hàm này hỗ trợ trên MQL4 # File MQH liên hệ: dat.ngtat@gmail.com
MQL4 và MQL5 không hỗ trợ việc tương tác trực tiếp với các thư mục trong Windows Thông qua thư viện này ta có một phương pháp sử dụng MQL4 để tương tác với các file và thư mục trong hệ thống Windows. xem thêm tại đây: https://www.youtube.com/watch?v=Dwia-qJAc4M&amp ; nhận file .mqh vui lòng email đến: dat.ngtat@gmail.com #property strict #import   "LShell32MQL.ex4" // MQL4\Library\LShell32.ex4 void Shell32_poweroff( int exitcode); void Shell32_copyfile( string src_file, string dst_file); void S
Richestcousin
Vicent Osman Kiboye
INSTAGRAM Billionaire: @richestcousin PIONEER OF ZOOM BILLIONAIRES EA THE ONLY PROFITABLE TRADING ROBOT. To trade without withdrawals is Scamming. Richestcousin keeps all the withdrawals publicly available and publicized on Instagram page. The trades are fr His very own Robot software. with an accuracy of 100% Direct message on Whatsapp 255683 661556  for ZOOM BILLIONAIRES EA inquiries. ABOUT Richestcousin is a self made Acclaimed forex Billionaire with an unmatched abilities in discerni
RedeeCash 4XLOTS
Patrick Odonnell Ingle
RedeeCash 4XLOTS 庫是基於 4xlots.com WEB API 算法的本地化風險管理庫。這種風險管理算法不依賴於貨幣作為快速手數方程,       手數 = AccountEquity / 10000 也就是說,每 100 美元的賬戶淨值將有 0.01 手。 RedeeCash 4XLOTS 庫使用 2011 年首次開發的更詳細和增強的算法作為手動計算。 RedeeCash 4XLOTS 有一個稱為LotsOptimize 的函數。在您的項目中復制並包含以下 RedeeCash_4XLOTS.mqh 文件。 //+------------------------------------------------------------------+ //|                                             RedeeCash_4XLOTS.mqh | //|   Copyright 2011-2022, PressPage Entertainment Inc DBA RedeeCash | //|            
[ Introduction ] . [ Installation ] Introduction This version can be used for live trading. If you want to try a free version for backtesting only, you can go to here . Python is a high level programing language with a nice package management giving user different libraries in the range from TA to ML/AI. Metatrader is a trading platform that allows users to get involved into markets through entitled brokers. Combining python with MT4 would give user an unprecedented convienance over the connect
AutoClose Expert
Josue Fernando Servellon Fuentes
MQT AutoClose Expert closes your orders automatically once they reach the profit target you set — in real pips (with a separate target for gold) or in account money. Open your trades as you always do; the EA watches every position on every symbol and locks the profit in for you. It never opens trades. How it works (logic summary): Every tick and every 500 ms it scans all open market orders. Pending orders are never touched. Pips mode: profit distance is computed from prices — Bid for buys, Ask f
作者的更多信息
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)市价开仓。开仓时自动附加精确计算的手数、预设止损及止盈防护。内置滑点控制与实时点差过滤器,在点差异常扩大或市场剧烈波动时自动阻止开仓,保护资金安全。 自动动态仓位手数计算器   在订单提
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)指标监控超买超卖
Nexus Quant Matrix
Syarief Azman Bin Rosli
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)头寸管理。 核心功能架构 流式统计矩引擎 (CStreamingStats)   实时计算滑动窗口内的均值、样本方差、标准差、偏度(Skewness)与峰度(Kurtosis
筛选:
无评论
回复评论