MiniBull Session SR MTF

  • 指标
  • Yusuf Levent Aksun
    Yusuf Levent Aksun
    平台工程师 & AWS 认证专家,拥有超过 20 年的软件开发、云架构和 DevOps 转型经验。
    目前在伦敦 World Wide Technology 公司主导平台工程项目,构建可扩展的基础设施解决方案,
    帮助开发团队更快、更可靠地交付产品。
    🔹 AWS Certified Solutions Architect – Professional
    🔹 AWS Certified DevOps Engineer – Professional
    🔹 数据科学与机器学习(密歇根大学)
  • 版本: 4.20
  • 更新: 31 八月 2026
  • 激活: 5
# MiniBull Session S/R MTF

**Version:** 4.0
**Platform:** MetaTrader 5 (custom indicator, `.mq5`)
**Type:** Visual reference overlay — no trading logic, no signals, no orders
**File:** `MiniBull_Session_SR_MTF.mq5`

## Overview

MiniBull Session S/R MTF is a multi-timeframe support/resistance and session-level
overlay for MT5. It draws the previous trading session's high/low, the current
session's open, the US cash market open, rolling support/resistance from three
higher timeframes (4H / 1H / 15M-intraday), two Kaufman Adaptive Moving Averages
(KAMA), and a compact info panel with % distance to key levels and the Daily
Wilder ATR — all computed automatically, with no manual timezone configuration
required.

It is a from-scratch MQL5 implementation inspired by a "Session & Prev-Day
Levels" style TradingView (Pine Script) tool, adapted and extended for MT5's
object/event model.

## What it draws

| Element | Style | Notes |
|---|---|---|
| Previous session High | Solid green line + label | Anchored at the actual bar that set the high |
| Previous session Low | Solid red line + label | Anchored at the actual bar that set the low |
| Current session Open | Solid white line + label | Drawn at the first bar of the current session |
| US cash open (09:30 NY) | Dashed white line + label | Standard instrument mode only |
| R / S (4H, x120 bars) | Solid, width 3 | ~4 weeks lookback by default |
| R / S (1H, x120 bars) | Dashed, width 2 | ~1 week lookback by default |
| R / S (15M, current day) | Dotted, width 1 | Rebuilt every session, current day only |
| R / S (30M, x120 bars) | Dash-dot, width 1 | **Off by default** — enable from inputs; ~2.5 days lookback |
| R / S (5M, x120 bars) | Dash-dot-dot, width 1 | **Off by default** — enable from inputs; ~10 hours lookback |
| R / S (1M, x120 bars) | Dotted, width 1 (distinct colors) | **Off by default** — enable from inputs; ~2 hours lookback |
| AMA #1 / AMA #2 | Solid lines (white / yellow by default) | Kaufman KAMA, periods configurable (default 200 / 9) |
| Info panel | Top-right corner | % vs Prev High, % vs Prev Low, Daily ATR (Wilder) |

Every S/R line is anchored **at the exact candle that produced the high or low**,
not at the edge of the lookback window — so a level that formed 3 days into a
20-day scan starts exactly 3 days back, not 20. Resistance and support within
the same timeframe are tracked independently, since the bar that set the high is
rarely the same bar that set the low.

Line thickness decreases with timeframe: 4H (3) → 1H (2) → 15M (1), on top of
the existing solid / dashed / dotted style distinction, so the timeframe
hierarchy is visible at a glance even in monochrome.

## Session logic

- **Standard mode**: a new "trading day" begins at **18:00 New York time**
  (the standard forex/CFD rollover), matching how most retail platforms define
  a trading session for FX and metals.
- **Brent mode**: a new "trading day" begins at **00:00 UTC** (fixed), which
  suits energy/futures-style instruments that don't follow the FX rollover.
- Weekend gaps are handled naturally: since no new session boundary occurs
  while the market is closed, the session that was open at Friday's close
  simply continues through the gap into Monday, exactly as a trader would
  expect.

## Timezone handling (fully automatic)

- The broker server → UTC offset is **auto-detected at runtime** by comparing
  `TimeGMT()` (the PC's real UTC clock) against `TimeTradeServer()` (the
  broker's server clock). This works regardless of the trader's own location
  or which broker/server is in use — it only requires the PC's own clock to be
  correctly set, which is standard on any modern OS.
- US Daylight Saving Time is computed from the **actual US DST calendar rule**
  (2nd Sunday of March → 1st Sunday of November), so New York's UTC offset is
  always correct for the current year without ever needing a manual update.
- A manual fallback offset input exists only for edge cases where `TimeGMT()`
  is unavailable, such as the Strategy Tester.

## Inputs

**Session & Prev-Day Levels**
- `InpShowSessionLevels` — show/hide prev high/low + session open
- `InpInstrumentMode` — `Standard` (NY rollover) or `Brent` (00:00 UTC rollover)
- `InpShowCashOpen` — show the 09:30 NY cash-open marker (Standard mode only)
- `InpShowSessionPanel` — show/hide the info panel

**Timezone**
- `InpAutoDetectBrokerOffset` — auto-detect broker↔UTC offset (recommended, default on)
- `InpManualBrokerOffsetHours` — fallback offset, used only if auto-detect is off or fails

**Support/Resistance**
- `InpShowSR4H` / `InpLookback4H` — 4H S/R on/off + lookback in bars (default 120 ≈ 4 weeks)
- `InpShowSR1H` / `InpLookback1H` — 1H S/R on/off + lookback in bars (default 120 ≈ 1 week)
- `InpShowSR15M` — 15-minute intraday S/R on/off (always scoped to the current session)
- `InpShowSR30M` / `InpLookback30M` — **optional, off by default.** Rolling 30-minute S/R, same model as 4H/1H (default lookback 120 ≈ 2.5 days)
- `InpShowSR5M` / `InpLookback5M` — **optional, off by default.** Rolling 5-minute S/R (default lookback 120 ≈ 10 hours)
- `InpShowSR1M` / `InpLookback1M` — **optional, off by default.** Rolling 1-minute S/R (default lookback 120 ≈ 2 hours)

**Adaptive Moving Average**
- `InpShowAMA` — show/hide both AMA lines
- `InpAmaPeriod1` / `InpAmaPeriod2` — KAMA periods (default 200 / 9)
- `InpAmaFastEMA` / `InpAmaSlowEMA` — KAMA smoothing-constant bounds (default 2 / 30)
- `InpAmaColor1` / `InpAmaColor2` — line colors

**Wilder ATR**
- `InpShowATRPanel` — show/hide the ATR row in the panel
- `InpAtrLength` — ATR period (default 14). **ATR is always computed on the
  Daily timeframe**, regardless of the timeframe the chart is currently
  showing.

## Design notes / things fixed along the way

This is a living document of the more subtle correctness issues addressed
during development, kept here for anyone maintaining the code later:

- **Label collision avoidance.** Nearby levels (e.g. a 4H resistance and a
  15-minute "today" resistance a few points apart) are queued and resolved by
  pixel distance before being drawn, so overlapping text is nudged apart. Only
  the printed label moves — the underlying line is always drawn at the exact
  price.
- **Lines drawn in front of candles, not behind.** On a volatile instrument,
  dense candle bodies can fully obscure a "behind the price action" line even
  though the object exists — all reference lines render in front instead.
- **Panel anchoring.** A corner-anchored label with a small offset from the
  edge needs to be *right*-anchored so its text grows inward, or it renders
  mostly off-screen — an easy mistake that makes a working panel look like it
  never rendered at all.
- **"Today" session detection is anchored to the chart's own current time**,
  not to whichever bar a separately-fetched intraday series happens to return
  as "latest" — avoiding a stale/mismatched read locking the day's range to
  the wrong session.
- **KAMA computation is O(n)**, not O(n·period): the volatility sum inside the
  efficiency-ratio calculation is maintained as a sliding window instead of
  being re-summed from scratch for every historical bar, which matters a lot
  with a 200-period AMA over a long history.

## Known limitations

- First load on a fresh chart/timeframe/symbol can take a few seconds while
  MT5 syncs the H4/H1/M15 history series it depends on — this is normal MT5
  history-sync behavior, not indicator overhead, and is faster once those
  timeframes have been opened once for that symbol.
- Designed as a visual aid only. It does not place trades, generate alerts, or
  make any trading recommendation.
- For best readability, enabling **Chart Shift** (right-click chart → 
  Properties → Common) gives labels room to breathe on the right edge instead
  of crowding against the last candle.

## Disclaimer

This indicator is a visual reference tool only. It does not constitute
financial advice, and past levels holding as support/resistance is not a
guarantee they will do so in the future. Use at your own risk alongside your
own analysis and risk management.

推荐产品
Ultimate Double Top & Bottom (Pro Volume Matrix) Stop trading retail breakouts. Start trading Institutional Traps. The   Ultimate Double Top & Bottom   is not a standard, lagging pattern scanner. It is a highly advanced, non-repainting structural engine equipped with a proprietary   3-Leg Volume Matrix . Designed exclusively for Smart Money Concepts (SMC) and order flow traders, this indicator mathematically dissects the tick volume inside M and W patterns to reveal true institutional intent:  
本指标是实践实战交易完善的波浪自动分析的指标 !  案例... 注: 波浪分级用西方叫法不习惯,因受到缠论(缠中说禅)命名方式习惯的影响,我是将基础波浪命名为 笔 ,将二级波段命名为 段 ,同时具有趋势方向的段命名为 主趋段 (以后笔记中都是这种命名方式,先告知大家),但是算法上和缠论关系不大切勿混淆.反映的是本人分析盘面总结的 千变万化纷繁复杂的运行规律 . 对波段进行了标准化定义,不再是不同人不同的浪  ,    对人为干扰的画法进行了排除,在严格分析进场起到了关键的作用 . 使用这个指标,等于将交易界面提升美感,抛弃最原始的K线交易带你进入新的交易层次.如果不是为了交易,在宣传上也将使客户观感提升层次. 指标内容: 1.   基础波浪 (笔) : 首先我们找出了价格波动过程中的基础波动拐点,当然他的有序性低,为下一步的计算提供基础. 2.   二级波段( 段 ) :在基础波浪的基础上,通过算法分析得到层级更明显的二级波段,二级波段为波浪提供了分析基础 3.   波浪( 浪 ): 有着更清晰的趋势,更清晰直观的方向.分析一个波浪是否延续,需要看二级波段的形态,分析二级的构成
Orderflow Super Candles - 简约足迹图指标 平台: MetaTrader 5 (MT5)  (最后一张截图是结合DOM工具配套使用的情况) 1. 产品简介 Orderflow Super Candles 是一款基于底层 Tick 数据分析的专业图表工具,旨在为交易者提供“市场X光”般的深度视角。 通过解析每一根 K 线内部的买卖成交量分布,该指标将隐蔽的市场微观结构可视化。它能帮助交易者透过价格表象,看清机构资金的真实博弈位置,精准识别支撑与阻力位的有效性,从而做出更具逻辑性的交易决策。 2. 核心功能 双重透视模式 买卖量分布 (Buy/Sell Volume): 经典足迹图模式。左侧显示主动卖单,右侧显示主动买单。直观对比每一价格档位的多空力量差异。 净买卖差模式 (Delta Profile): 显示每一价格档位的“买单减去卖单”的净值。绿色代表买方主导,红色代表卖方主导。 自适应缩放技术: 在 Delta 模式下,指标会自动计算当前视野范围内的 Delta 最大绝对值进行动态归一化,确保无论市场波动大小,色块显示都清晰可见。 关键价位自动标注 POC
MFOP Market Forecast
Oscar Josue Pin Bacuzoy
Develop this indicator for periods of 30 minutes or more, focus on getting market trends right and making sure they are met. MFOP v8.1 gets straight to the point: it scans the market and tells you exactly when there is enough strength to enter a trade. This indicator doesn't do magic, it uses mathematical algorithms to filter out market noise, not enter into false breakouts and show you clear BUY (blue arrow) and SELL (red arrow) opportunities. It is designed and optimized specifically to take
CISD Levels Pro automatically draws CISD Buy and Sell levels directly on your chart. It highlights pending levels while they are forming, then marks confirmed levels after the confirmation candle closes. Optional confirmation arrows help you spot the signal quickly. This tool is designed for traders who want clean, simple CISD level visualization without extra indicators or clutter. Key Features Draws Bullish (BUY) CISD levels and Bearish (SELL) CISD levels Shows Pending levels (dashed) and
The indicator is designed to close positions on the market in time. For example: to take profits ahead of schedule if the price has not reached TakeProfit, and the market is turning around. The indicator analyzes the momentum, not the trend. He does not give any information about the trend. The indicator is well suited for finding divergence. The Ershov 38 Parrots indicator dynamically adjusts to the market and detects price movement impulses of medium and high amplitude. It almost does not rea
The indicator determines a special pattern of Joe Dinapoli. It gives very high probability buy and sell signals. Indicator does not repaint. Indicator Usage Buy Signal ''B'' Entry : Market buy order at signal bar close Stop : Low of signal bar Take Profit : First swing high Sell Signal ''S'' Entry : Market sell order at signal bar close Stop : High of signal bar Take Profit : First swing low Indicator Parameters Fast EMA : External Parameter (should be kept as default) Slow EMA: External Param
ENGLISH VERSION (for MQL5 Market) Product Description: RSI Trend & Volatility Dashboard (Multi-Timeframe Filter) This professional dashboard provides traders with an ultimate market overview inside a single chart. It continuously monitors the trend direction across 5 timeframes simultaneously: M5, M15, M30, H1, and D1 [MQL5]. No more tedious chart switching or multi-window clutter – see everything from quick scalping moves to global institutional daily trends in real-time [MQL5]. Key Adva
ToolBox 360 is the swiss knife of all indicators. It is full packed with useful tools to help you with your trading. It can be used to find best entry and exit points and help you to decide if you should open a trade or not. It shows market trends, candlestick formations outside / inside bars and you can sett time based allerts. Main features: Time based Fibonacci lines Choose a start and end time and the indicator shows you Fibonacci lines within the selected time range including range high a
Introduction to Fractal Pattern Scanner Fractal Indicator refers to the technical indicator that makes use of the fractal geometry found in the financial market. Fractal Pattern Scanner is the advanced Fractal Indicator that brings the latest trading technology after the extensive research and development work in the fractal geometry in the financial market. The most important feature in Fractal Pattern Scanner is the ability to measure the turning point probability as well as the trend probabil
Link to our best products: LINK Link to our Trading Dashboard: LINK !!!!!!! Attention, you can find premium discounts by clicking on arrows!!!!!! Setting of this indicator candles mode: Show zones from the beginning Swing number for highs and lows Show background color Color of Premium Color of Discount show level 0% line show level 25% line show level 50% line show level 75% line show level 100% line The Premium and Discount concept is a core principle of Smart Money Concepts (SMC) used to i
XFlow
Maxim Kuznetsov
XFlow shows an expanding price channel that helps determine the trend and the moments of its reversal. It is also used when accompanying transactions to set take profit/stop loss and averages. It has practically no parameters and is very easy to use - just specify an important moment in the history for you and the indicator will calculate the price channel. DISPLAYED LINES ROTATE - a thick solid line. The center of the general price rotation. The price makes wide cyclical movements around the
Neuro Future
Sergey Rozhnov
神经网络指标   具有内置学习功能。 这是一个真正的自主人工智能系统, 由多级可定制感知器和高级训练设置驱动,用于预测未来价格变化。您可以自行在任何金融品种上训练该指标,无需任何机器学习方面的专业知识。您所需的一切都包含在该工具中,并通过自动模式和预设功能轻松实现。 主要更新v2.0-2.5已经发布。 高级输入功能:增加了对指标的支持。 现在,您可以将原始价格数据与三个技术指标结合起来进行更深入的市场分析,或者只使用没有价格的指标。 非阻塞实时训练:智能训练算法在后台异步运行。 您的MetaTrader5终端保持完全响应,允许您在神经网络学习的同时继续交易和分析。 特征: 轻松启动 。简单设置,即可快速启动自动模式。(例如:     设置最大训练周期数 =5000、 最大训练样本数 =1500 以及如下所示的验证设置,然后单击学习按钮)。 直接在 MT5 中训练。 您拥有独一无二的机会,可以在终端内针对任何交易品种和时间范围训练网络,无需使用其他编程语言。最新的 MT5 编译器可高效处理学习过程。 高级预测。 通过可定制的通知系统,获取选定数量的未来价格预测。 智能文件管理。 便捷
Paid release: Andean Oscillator Signals MT5 is a paid MetaCoderStore indicator. Use the product comments for setup questions, feature requests, and feedback for future updates. Andean Oscillator Signals MT5 shows bullish and bearish trend variation as two oscillator components, then marks cross signals when one side takes control with optional confirmation from the signal line. Use cases Read whether bullish or bearish pressure is dominant. Spot bull crosses when the bull component moves above t
HIGH and LOW OTT
Mohammad Taher Halimi Tabrizi
This product is converted form Trading View of Kivanc Ozbilgic to be used on MT5 and below are descriptions of developer on Trading View: Anıl Özekşi's latest development on his precious OTT - Optimized Trend Tracker: In this version, there are two lines of OTT which are derived from HIGHEST price values (HOTT) and LOVEST price values (LOTT) which were originally sourced to CLOSE values on default OTT. Another significant difference is there is no Support Line (Moving Average) in this version
ADR 警报仪表板一目了然地向您显示当前价格相对于其正常平均每日范围的交易位置。当价格超过您选择的平均范围和高于它的水平时,您将通过弹出窗口、电子邮件或推送获得即时警报,以便您可以快速跳入回调和反转。破折号旨在放置在空白图表上,只需坐在背景中并在达到水平时提醒您,因此您无需坐下来观看甚至看! 此处提供 MT4 版本: https://www.mql5.com/en/market/product/62756 新:现在还向您显示平均每周和每月范围,并提醒他们! 获取在您的图表上绘制水平的 ADR 反转指标: https://www.mql5.com/en/market/product/64477 大约 60% 的时间价格在其正常的平均每日范围 (ADR) 内交易并推高这些水平通常是价格急剧波动的指标,通常会出现回调(获利了结)走势。您可以通过交易从每日范围的顶部或底部回落到最近的支撑位或阻力位来利用这些急剧波动。 收集了超过 20 年的历史数据,以找出主要外汇对和一系列交叉盘的价格超出特定 ADR 水平的平均百分比。该数据表明价格仅在 3% 的时间内超过其 ADR 的 200%
Gold Signal Swing Pro XAUUSD with Auto TP SL — 7层过滤器 + RR保证系统的XAUUSD摆动交易完整系统 无重绘。无重画。无延迟。所有信号在确认后锁定。 买家奖励:购买现货许可证可免费获得AI Zone Radar(价值$59)+ PDF手册。购买后在MQL5上向我发送消息。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 MT4版本也已发售: https://www.mql5.com/ja/market/product/177778?source=Site +Market+Product+Page 在活跃的交易社区中被黄金交易者使用和信赖。专为精确度和易用性而构建。 这是为谁设计的 工作或生活太忙无法盯盘M5/M15的交易者 只想交易经过过滤的高质量信号的人 隔夜持仓或离开屏幕时持仓的交易者 想要每个信号获得更大波动的交易者(M30上$8-$25,H1上$15-$40,H4上$30-$150) 厌倦了猜测TP/SL设置位置的人 因低时间框架虚假信号而疲惫的交易者
Smart Volatility Squeeze MT5 Smart Volatility Squeeze MT5 is a volatility compression and momentum expansion indicator for MetaTrader 5. It builds on John Carter's Volatility Squeeze framework and extends the usual single-tier squeeze into three compression tiers, so you can see not only whether the market is compressed but how tightly it is compressed before it expands. The indicator opens in a separate window and draws two elements: a linear regression momentum histogram and a row of coloured
The indicator helps to enter a trade following the trend, at the same time, after some correction. It finds strong trending movements of a currency pair on a given number of bars, and also finds correction levels to this trend. If the trend is strong enough, and the correction becomes equal to the one specified in the parameters, then the indicator signals this. You can set different correction values, 38, 50 and 62 (Fibonacci levels) are better. In addition, you can set the minimum trend lengt
了解价格可能寻找流动性的位置 Liquidity Reaction Map MT5是一款基于图表的市场分析指标。它根据已确认的价格结构识别潜在的买方流动性区域和卖方流动性区域。 该指标将摆动高低点、等高点和等低点、前一日和前一周高低点、交易时段极值以及心理整数价格整合到一个清晰的流动性地图中。相互接近的价位可以合并,并根据强度、与当前价格的距离以及多个来源的一致程度进行排序。 该指标帮助交易者分析价格可能接近、扫过、拒绝或突破流动性区域的位置。它不会开仓或管理交易。 流动性来源 流动性地图可以从以下来源识别流动性: 已确认的摆动高点和低点 等高点和等低点 前一日高点和低点 前一周高点和低点 已完成交易时段的高点和低点 心理整数价格水平 多个可配置时间周期 买方流动性显示在相关高点上方,卖方流动性显示在相关低点下方。 这些区域是根据历史价格结构计算的估计值。该指标不会访问经纪商订单簿或真实的止损持仓数据。 排序后的流动性区域 检测到的价位会根据以下多个因素进行评估: 支持该价位的枢轴点数量 等高点或等低点的聚集程度 多个来源的一致性 时间周期的重要性 与当前价格的距离 价位的新鲜度 相互
Xtrade Trend Detector
Dago Elkana Samuel Dadie
Xtrade Trend Detector is an indicator capable of finding the best opportunities to take a position in any stock market. Indeed, it is a great tool for scalpers but also for Daytraders. You could therefore use it to identify areas to trade, it fits easily on a chart. I use it to detect trends on Big timeframes and take positions on Small timeframes. Don't hesitate to give me a feedback if you test it.
Paid release: Squeeze Momentum Breakout Signals MT5 is a paid MetaCoderStore indicator. Use the product comments for setup questions, feature requests, and feedback for future updates. Squeeze Momentum Breakout Signals MT5 detects volatility compression with Bollinger Bands inside Keltner Channels, then highlights bullish or bearish release bars when momentum expands after the squeeze. Use cases Find markets moving from quiet compression into active expansion. Watch directional momentum after a
Super Scanner
Li Wei Huang
【Super Scanner】Indicator Introduction : The color of the Super Scanner which is green and climbing up means that the price trend is going up.The color of the Super Scanner is red and going down means that the price trend is going down. It is very simple to use it to judge the market trend! What's even better is that the open parameters of the indicators allow investors to adjust. You can adjust【Super Scanner】according to your needs. Adjust it faster to be closer to short-term market fluctuatio
ACB Breakout Arrows Scanner MT5
KEENBASE SOFTWARE SOLUTIONS
这是我们的指标 ACB Breakout Arrows 的多品种、多时间周期扫描器。默认情况下,它可同时在 28 个货币对和 9 个时间周期 上扫描买入/卖出信号,为交易者节省大量查图时间,提高操作效率。  功能特点 可在一个图表中扫描多达 252* 个品种与时间周期的组合,极大地提升监控能力。 点击任一信号即可打开相应图表,并自动加载预设模板,便于快速跟进。 面板可自由拖动并放置于图表上的任意位置。 支持实时提醒功能,包括弹窗提示、声音报警、推送通知和电子邮件提醒,确保不错过任何重要信号。  输入参数 为 ACB Breakout Arrows 设置信号灵敏度,可根据策略需求微调。 Symbols:填写你希望系统扫描的货币对或交易品种。  刷新历史:如发现图表数据缺失或异常,可通过此选项自动下载并更新历史数据。  选择所需扫描的时间周期,可单选或多选。 提醒设置:自定义提醒类型与条件,提升响应效率。 面板颜色与字体大小均可自由调整,支持个性化视觉体验。 
The Propfolio Master Suite is the ultimate all-in-one analytical workstation for professional traders. Combining the power of the Beat The Market Maker (BTMM) methodology, Smart Money Concepts (SND/Liquidity), and Advanced Volume Profile, this suite replaces multiple different indicators with one optimized engine. Monitor up to 14 pairs simultaneously from a single chart, instantly identify market cycles, and seamlessly map institutional footprints with the click of a button. The Command Center
Quantified Trendline Strength (QTS) Overview Quantified Trendline Strength is a technical analysis tool that automatically detects and evaluates trendlines based on price swing structures. It provides a visual and quantitative way to understand how significant each trendline may be, allowing traders to make more structured observations of market behavior. Indicator Type Category: Trend / Level Detection Display: Chart window (overlay indicator) Purpose: Identify and evaluate trendlines, support
Gann S9 Pro Signals and Star
Mohamed Amr Mohamed Osama Abdelwahab
5 (1)
**江恩九方图 2 — 高级价格与时间预测工具** 九方图是 W.D. 江恩最强大的预测工具之一。本指标是 MetaTrader 5 的第二代完整实现, 完全依据帕特里克·米库拉的书籍方法构建。新增:交互式工具栏、交易信号面板、 江恩星形图、通道区域、角度统计、平均区域叠加和 12 语言界面。 从单一锚定价格出发,投射落在基本十字(0、90、180、270 度)与对角十字 (45、135、225、315 度)上的支撑与阻力。还预测时间(可能转折的 K 线), 衡量市场最尊重哪些角度。当价格位与江恩时间计数重合时,触发"价格-时间共振"警报。 纯分析预测工具,不下单。无 DLL,无网络。适用于任何品种与周期。 **功能列表** - 价格水平:基本十字与对角十字,多圈投影,自动缩放 - 信号面板(书本方法):买入/卖出设置,三级汇聚评分,价格-时间共振警报 - 江恩星形图:四条射线,阴影区域,信号角度金色高亮 - 江恩通道:最近 0 水平之间的填充区域 - 11 按钮工具栏,状态自动保存 - 角度统计:每个角度的历史尊重率 - 平均区域:当前圈、全部水平、最优角度 - 时间预测
Introduction This indicator detects volume spread patterns for buy and sell opportunity. The patterns include demand and supply patterns. You might use each pattern for trading. However, these patterns are best used to detect the demand zone (=accumulation area) and supply zone (=distribution area). Demand pattern indicates generally potential buying opportunity. Supply pattern indicates generally potential selling opportunity. These are the underlying patterns rather than direct price action. T
Harmonic Pro
Kambiz Shahriarynasab
Only 5 copies of the EA at $30! Next price --> $45 Find charts and signals based on harmonic patterns, which work great in 1-hour timeframes and up. Buy and sell signs based on different harmonic patterns as follows: 0: ABC_D 1: ABCD_E 2: 3Drive 3: 5_0 4: Gartley 5: Bat 6: Crab 7: Butterfly 8: Cypher 9: NenStar 10: Shark 11: AntiBat 12: AntiGartley 13: AntiCrab 14: AntiButterfly 15: AntiCypher 16: AntiNenStar 17: AntiShark How to use: When there is an opportunity to buy or sell, you have 5:
Harraz Master HUD
Muhammad Azraf Bin Dzul Fauzi
HARRAZ MASTER HUD v4.4 - The Ultimate Neural Trading Command Center ​ Transform your MetaTrader 5 into a professional, institutional-grade trading terminal. Harraz Master HUD is not just an indicator; it is a complete Artificial Intelligence ecosystem designed specifically for XAUUSD (Gold) and major pairs. ​ EXCLUSIVE FEATURES: ​1. Live Neural AI Typewriter (Jarvis Mode) Experience a live, animated Heads-Up Display that types out real-time market sentiment and advice. It acts as your persona
该产品的买家也购买
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Trend Trading System 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Smart Trend Trading System 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Smart Trend 信号转换为自动交易。 Smart Trend Trading System 是一套完整的交易系统,具备不重绘、不回绘、不延迟的特点,专为希望获得更清晰信号、更准确趋势方向以及更有组织交易方式的交易者打造。 Learn Smart Trend Trading System Everything you need to learn, install, and use the product is available here: Online Course:   https://www.mql5.com/en/blogs/post/757466 Visual User Manual — B
Trend Sniper X
Sarvarbek Abduvoxobov
5 (13)
Trend Sniper X 是一款适用于 MetaTrader 5 的多周期趋势跟踪指标,可帮助交易者清晰精准地识别趋势方向和潜在的反转点。 适用于 MT4: https://www.mql5.com/en/market/product/193245 价格信息: 当前价格为促销价,随着未来更新和新功能的发布,价格可能会有所变动。 Code2Profit 频道 通过多时间框架分析掌控市场! 如何使用 Trend Sniper X 最大化您的胜率:核心规则与交易时段技巧 技术规格 平台 MetaTrader 5 指标类型 多时间周期趋势指标 运行时间周期 任何图表时间周期,可独立选择更高的时间周期 (M1–MN1) 主要交易品种 外汇、黄金 (XAUUSD) 及其他差价合约 (CFD) 推荐账户 任何账户类型 可视化 彩色趋势蜡烛 (买入/卖出/微弱/变化) + 买入/卖出箭头 附加模块 交易时段方框 (悉尼、东京、伦敦、纽约) 主要功能 多时间周期趋势分析: 直接在当前图表上投射更高时间周期的趋势方向,提供清晰的宏观视角。 弱势/不确定柱检测: 高亮显示趋势条件不明朗的柱线,让交易者避
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
Unix Scalper
Issam Kassas
UNIX Scalper — Gold Scalping Indicator for MetaTrader 5 UNIX Scalper is a focused Gold scalping indicator designed primarily for XAUUSD on M1, M2, M3, M5, M10 and M15. It gives the trader a clear BUY, SELL or WAIT decision together with the complete trade plan: Entry, Stop Loss, TP1 and TP2 . PRICE UPDATE NOTICE: Currently available for $199. The price will   increase to $399   after the next   30 purchases . The concept is simple: wait for the signal, follow the levels, move the Stop Loss to
Superhero
Ihor Otkydach
5 (3)
SUPERHERO 指標是一款基於「全方位」原則設計的多貨幣交易系統。該指標能獨立分析市場,並提供開倉與平倉的交易訊號。它採用止損與獲利了結訂單,風險報酬比(R:R)為 1:1。 我偶爾會根據這個系統的訊號親自進行交易,以下是我獲得的結果—— 即時訊號 此系統可向您的智慧型手機發送推播通知,讓您無需綁定電腦,即可「隨時隨地」進行交易。這對於自營交易公司而言再適合不過了。 每位顧客皆可享額外好禮: 每位購買此指標的買家,都將收到我贈送的一項特別實用工具,該工具: 自動下達止損與獲利了結訂單 當價格達到目標水準時,系統會自動平倉 支援待執行訂單交易 支援均值交易模式 如果您希望將這款優秀且極為便利的工具作為禮物獲贈,請在購買 SUPERHERO 指標後,立即透過 MQL5 平台的私訊與我聯繫。此外,您還將獲得培訓課程「如何安裝與設定 SUPERHERO 並開始穩定獲利」的存取權限。 關於「超級英雄」策略 SUPERHERO 策略是利用價格回調時,順應趨勢方向進行盤中交易。 「超級英雄」程式碼內含數個強大的技術指標,用以分析價格通道的趨勢方向與波動範圍,並能識別在修正性回調後形成的盤中波段反
M1 Sniper MT5
Oleg Rodin
5 (7)
M1 SNIPER   是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
Divergence Bomber
Ihor Otkydach
4.89 (94)
我偶爾會親自使用這個系統進行交易。 請評估我在真實帳戶上進行的手動 BOMBER 交易—— LIVE SIGNAL 购买该指标的每位用户将额外免费获得以下内容: 原创工具“Bomber Utility”,该工具会自动跟踪每一笔交易,设置止损和止盈点,并根据策略规则自动平仓; 适用于不同交易品种的指标设置文件(Set 文件); 三种不同风险模式下的 Bomber Utility 设置文件:“最低风险”、“平衡风险” 和 “观望策略”; 一套详细的 视频操作手册,帮助您快速完成安装、配置并开始使用本交易系统。 注意: 要获取以上所有赠品,请通过 MQL5 的私人消息系统联系卖家。 我为您介绍原创的自定义指标 “Divergence Bomber”(背离轰炸机),它是一套基于 MACD 背离交易策略 的“全功能”交易系统。 该技术指标的主要任务是识别 价格与 MACD 指标之间的背离,并发出交易信号(包括推送通知),指示未来价格可能的运动方向。平均而言,这些信号的准确率超过 98%。有关该指标如何工作的详细说明,请观看本页面上的视频演示。 该系统使用 止损订单 和 动态回撤平仓机制 来管理
Entry Points Pro for MT5
Yury Orlov
4.51 (150)
传奇回归:Entry Points Pro 10。 这款传奇指标曾 3 年稳居 MQL5 Market 前三,如今全面重启。 数百条热情好评(两个版本合计 589 条),每天有数千名交易者用它交易,演示版下载 31,000+   MT4+MT5  次。 五年来我读过你们的每一条评价——在第 10 版里,我没有给出许诺,而是把答案直接做进了产品。指标作者自 1999 年入市, 珍视诚信、自己的声誉和自己的客户 。 Entry Points Pro 给出的入场信号严格不重绘。 而且这一次不再只是作者的一面之词,而是可验证的事实:确认信号只在 K 线收盘后标出,自动化测试记录到 零重绘 (在 EURUSD、XAUUSD 和 BTCUSD 上共 2,486,568 次不变量检查——0 次违规)。测试方法完全公开——您可以在策略测试器中自行复现。 购买后请务必第一时间给我发私信。 我会发给您 扩展版说明书《交易者圣经》 ——使用本指标交易的完整指南——并告诉您如何免费获得 赠品:市场扫描器 ,它能同时分析多个品种和多个时间周期,并在一个界面上显示 Entry Points Pro 此刻在哪里表现
Atomic Analyst MT5
Issam Kassas
4.44 (54)
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Atomic Analyst 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Atomic Analyst 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Atomic Analyst 信号转换为自动交易。 Atomic Analyst 是一款不重绘、不回绘、不延迟的 Price Action 交易指标,专为手动交易、清晰信号和 EA 自动化而设计。 User manual: settings, inputs and strategy.   &   User Manual PDF . 它分析价格行为、强度、动能、多周期方向和高级过滤器,帮助交易者减少噪音,避免弱势交易机会,并做出更有结构的交易决策。 该指标将复杂的市场计算转换为简单的视觉信号、彩色K线、趋势读数、止损水平和多个止盈区域,使交易者能够快速理解并应用于真实市场环境。 主要交易用途: 剥头皮和日内交易: 专为快速决策、清晰箭头、提醒、K线颜色和
UZFX {SSS} 超短线智能信号 v5.0 MT5 是一款无重绘的高性能交易指标,专为在快速波动的市场中需要精准、实时信号的超短线交易者、日内交易者和波段交易者设计。该指标由 (UZFX-LABS) 开发,融合了价格行为分析、趋势确认和智能过滤技术,可在所有货币对和时间周期内生成高概率的买卖信号、预警信号以及趋势延续机会。 别再对交易犹豫不决了,开始遵循这一专为追求清晰、精准和纪律性市场执行的交易者设计的结构化信号系统吧。 相信我,这是 MQL5 上最优秀的指标之一,所以千万不要错过!!“为睿智交易者打造的智能信号” 最新 5.0 版本现已发布,价格可能会在未事先通知的情况下上涨至 499.99 美元,所以请尽快入手,以免错失良机!! 最终购买前!如果您想获取免费试用版,请通过 WhatsApp 号码 +923030751987 联系我!! 如果您遇到任何问题“或”有任何不明白的地方,请在私聊中向我咨询!!! 主要功能更新 • 自动买入和卖出信号检测 • 先进的反转识别逻辑 • 潜在市场反转前的预警信号 • 趋势延续确认信号 • 内置风险管理功能,包含入场点、止损点、TP1、
Axiom Matrix
Issam Kassas
5 (6)
AXIOM MATRIX MT5 首发价格:$99 Axiom Matrix 现以 $99 的首发价格提供。 前 30 次购买完成后,价格将上涨至 $199。 购买后,请直接私信我,以获取使用说明并领取您的专属赠品奖励。 Axiom Matrix 是一款适用于 MetaTrader 5 的专业多品种、多时间周期市场扫描器和决策仪表板。 它会扫描您的 Market Watch,分析多个时间周期,读取多个证据引擎,比较最强的交易机会,并在一个清晰的矩阵仪表板中显示最佳 BUY、SELL、WAIT 或被阻止的状态。 我开发 Axiom Matrix,是因为我想要一个可以替我完成繁重市场扫描工作的工具。 我不想只单独检查 RSI。 然后单独检查 MACD。 然后检查移动平均线。 然后检查成交量。 然后检查波动率。 然后检查支撑和阻力。 然后还要手动在不同品种和时间周期之间切换,只为了建立一个交易思路。 我想要一个仪表板,可以扫描市场、比较证据、排序最佳机会,并告诉我现在最强的交易设置在哪里。 这就是 Axiom Matrix 背后的核心理念。 AXIOM MATRIX 的功能 Axiom Ma
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2:MT5合成分形结构分析与确认入场 概述 Azimuth Pro 是 Merkava Labs 推出的多层级波段结构指标。四层嵌套波段层级、锚定波段的VWAP、ABC形态识别、三时间框架结构过滤以及收盘确认入场——一个图表,一个从微观波段到宏观周期的完整工作流程。 这不是盲目的信号产品。它是一个以结构为先的工作流程,专为重视位置、背景和时机的交易者打造。 ️ 夏季促销 — 庆祝夏至与 The Oracle Pro 上市:Azimuth Pro 七折优惠,现价 279 美元(原价 399 美元)。限时夏季优惠。 1. V2的变化 合成多时间框架引擎 高时间框架分析从零开始重建,采用与Meridian Pro相同的专有合成架构。更清晰的HTF背景、稳定的实时行为、无经典MTF同步问题。合成引擎还解锁了 固定比率时间框架级联 (x2、x3、x4、x6)——不再在经纪商的固定时间框架之间任意跳转,您可以按图表时间框架的固定倍数分析结构,在每个尺度上保持相同的分形关系。 确认入场箭头 作为稳定且可恢复的执行层而设计的收盘确认箭头。当ABC设置形成且自适应确认逻辑
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需区域用作警报触发器。
Power Candles MT5
Daniel Stein
5 (10)
Power Candles V3 - 自我优化的强度指标 Power Candles V3 把货币与品种的强度直接转化为图表上可执行的交易方案。指标不再仅根据强度给K线着色,而是在后台持续运行实时自动优化,为您正面对的品种给出最佳 Stop Loss、Take Profit 与信号阈值。一键采用,Entry、Stop Loss、Take Profit 线就以精确价格绘制在图表上,提醒消息中直接包含方向。 本工具是 Stein Investments 生态系统的一部分 - 18+ 款工具,加上 Max,您的一对一 AI 交易导师。  随时在线,深入了解每一款指标,在您需要梳理思路的那一刻就在那里。  立即认识他: https://stein.investments 每根收盘K线运行 3,000+ 次交易模拟。9 种强度状态。2 种策略并行测试。一键采用最优配置。 为什么需要这个 大多数强度指标只给您一个数值,然后留下三个问题:相信哪个阈值、用哪个 Stop Loss、走哪个交易方向。Power Candles V3 在每根收盘K线上自动回答这些问题。结果就是一个完整的交易方案 -
KURAMA GOLD SIGNAL PRO(MT5)— 7层过滤 · 自动止盈止损 · 质量评分 · 信号历史保存 | 完整的XAUUSD交易系统 实时不重绘。信号出现的瞬间,箭头、入场、止盈、止损当场锁定,之后绝不移动。你交易的就是这个实时信号。而且在v7.20中,每一个真正发出的信号都会自动保存,并在重启后精确还原。 购买者专属赠品 购买永久授权,即可免费获得 AI Zone Radar(价值$59)+ 完整PDF手册。在产品价格之外,额外附赠价值$59的赠品。购买后在MQL5上给我留言即可。 AI Zone Radar: https://www.mql5.com/en/market/product/175834 在黄金交易者社区中被实际使用,因精度与易用性而广受好评。 你的难题 —— 以及解决方案 黄金一天波动$30–$50。你知道机会就在那里。但这些情况是否似曾相识: - 入场太早,价格逆行$10后才朝你的方向
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
SR Liquidity MT5
Oleg Rodin
5 (2)
SR Liquidity   是一款旨在揭示市场流动性高度集中且价格反应最剧烈的隐蔽区域的交易指标。这些特殊的流动性区域充当着强有力的支撑位与阻力位,为您清晰呈现市场最可能发生反转的位置。 SR Liquidity 指标并非简单地绘制常规的支撑/阻力线,而是通过分析实际的价格行为,识别买卖压力积聚的区域。这些区域实际上是推动市场真实波动的流动性池。通过在图表上直观呈现这些区域,该指标能助您在价格反应发生前预判走势——这意味着它实际上能够预测价格方向可能发生的变化。它将原始的价格行为转化为清晰且具实操价值的市场蓝图,标示出那些可能成为市场转折点的关键价位。 该指标适用于任何交易品种和时间周期——包括外汇、指数、金属、加密货币等。支持任意时间周期。 购买后请联系我,以获取交易指南及免费赠送的优质附加指标!
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
使用 M1 Quantum 的实盘交易信号 : 信号 (交易由 Quantum Trade Assistant 自动 执行,并作为本产品 免费 提供。) 最新消息: 版本 1.64 已发布。现在所有交易的止损都会设置在相应的支撑位/阻力位之后。Smart Close 功能也进行了改进,以提升此版本 EA 的性能。 自 8 月 9 日起,实盘信号一直运行在版本 1.64 上。 价格计划: 当前价格: $169 (早期用户优惠) 下一阶段计划价格: $189 计划零售价: $299 开发者提示: 购买后请联系我,以获取 最新推荐的参数设置文件(Set File) 、交易建议,以及加入 VIP 支持群组 ,与其他 M1 Quantum 用户交流经验。 常见问题 - 设置文件 - 安装指南 M1 Quantum 是一款专业的 M1 交易系统,提供快速且精准的交易信号,并内置止损(Stop Loss)、止盈(Take Profit)以及智能资金管理功能。 M1 Quantum 包含专业的资金管理系统,通过专注于 连续盈利交易 ,帮助交易者更快地增长账户资金。 M1 Quantum 指标 的主
Grabber System MT5
Ihor Otkydach
4.83 (24)
向您介绍一款优秀的技术指标——Grabber,它是一套即开即用的“全包式”交易策略。 在一个代码中集成了强大的市场技术分析工具、交易信号(箭头)、提醒功能和推送通知。 每位购买该指标的用户还可免费获得以下内容: Grabber辅助工具:用于自动管理已开仓位 视频操作指南:逐步教学如何安装、设置和使用该指标进行交易 原创Set文件:可快速自动配置,帮助实现最佳交易效果 忘掉其他策略吧!只有Grabber能够真正激励你在交易中攀登新高峰! Grabber策略的主要特点: 交易周期:从M5到H4 适用资产:任意,但我推荐我亲自测试过的品种(GBPUSD、GBPCAD、GBPCHF、AUDCAD、AUDUSD、AUDSGD、AUDCHF、NZDUSD、NZDCAD、EURCAD、EURUSD、EURAUD、EURGBP、EURCHF、USDCAD、USDSGD) 交易时间:全天候 24/7 交易效果:我分享自己的真实交易结果,并在此教学如何操作: https://www.mql5.com/ru/market/product/134563?source=Site+Market+MT5+Indic
Smart Market Structure Toolkit
Garry James Goodchild
5 (1)
Smart Market Structure Pro by G-Labs — ICT and Smart Money Concepts toolkit with built-in multi-symbol scanner for MetaTrader 5. Break of structure, change of character, order blocks, fair value gaps, liquidity sweeps, premium and discount zones, ICT sessions, confluence scoring, AI trade ideas, and a traffic-light scanner across up to 30 pairs and four timeframes from one chart. Map SMC and ICT on the active chart while the built-in scanner monitors your full watchlist. Each cell shows BUY, S
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Price Action Concepts 目前价格为 $200 。 接下来的 30 次购买 后,价格将上涨至 $299 。 特别优惠: 购买后,请发送私信给我,即可领取 免费赠品 + 礼物 。 首先需要强调的是,这款交易工具是不重绘、不回绘、不延迟的指标,因此非常适合专业交易使用。 [Online course] ,   [User Manual]  ,  [How to Install]  ,   [PDF] Smart Price Action Concepts 指标是一款非常强大的工具,适合新手和有经验的交易者使用。它将 20 多个实用指标整合到一个系统中,结合了 Inner Circle Trader Analysis 和 Smart Money Concepts Trading Strategies 等高级交易理念。该指标专注于 Smart Money Concepts,帮助交易者理解大型机构如何交易,并辅助预测其市场行为。 它特别擅长流动性分析,使交易者更容易理解机
PZ Swing Trading MT5
PZ TRADING SLU
5 (5)
Swing Trading 是第一个旨在检测趋势方向的波动和可能的反转波动的指标。它使用在交易文献中广泛描述的基准摆动交易方法。该指标研究多个价格和时间向量,以追踪总体趋势方向,并检测市场超卖或超买并准备好进行修正的情况。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 市场波动的利润不会被窃取 指示器始终显示趋势方向 彩色价格带代表机会基准 彩色虚线表示可能的反转波动 该指标分析其自身的质量和性能 它实现了一个多时间仪表板 可定制的趋势和波动周期 它实现了电子邮件/声音/推送警报 指示器为非重涂或重涂 什么是摇摆交易 摇摆交易是一种尝试在一天到一周内从证券中获得收益的交易方式,尽管某些交易最终可以保持更长的寿命。摇摆交易者使用技术分析来买入弱点和卖出力量,并有耐心等待这些机会的发生,因为在发生一波抛售浪潮之后购买证券而不是陷入抛售更有意义。 机会基准 关于历史数据的大量研究证明,适合于波动交易的市场倾向于在基线价格带上下交易,基线价格带由图表显示,使用平均真实区间计算得出。波动交易者使用基线,该策略是购买常态和卖出躁狂,或做空常态并掩盖沮丧。在没有疲
SkyHammer Signal Pro
Shengzu Zhong
5 (4)
SkyHammer Signal Pro Professional No-Repaint Trend Signal Indicator with Locked Entry, SL and TP Levels SkyHammer Signal Pro is a structured trend and momentum signal indicator designed for traders who want clear, fixed, and verifiable trading signals. It works best on lower timeframes such as M1 and M5 . The indicator does not try to predict tops or bottoms. Instead, it waits for confirmed market structure, trend direction, momentum strength, volatility quality, and target space before generati
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro:用于 MT5 的合成多周期偏向引擎 ️ 夏季上市优惠 — 早期买家可以 199 USD 获得 The Oracle Pro。价格将随关注度上升;最终价格 399 USD。 The Oracle Pro 是一款面向高要求与专业交易者的 MetaTrader 5 高级多周期 偏向引擎 。它以纪律回答一个问题:当前每个周期的方向偏向是什么、强度如何、各周期之间的一致程度如何?一切仅在已收盘的 K 线上计算——绝不重绘。 The Oracle Pro 是一套多因子共识系统。它将专有指标与优化算法整合为单一而精密的共识向量,并在单个指标实例内,跨当前周期与更高周期的堆栈进行读取——而不是在多个图表上堆叠互不相关的工具。 它是 Oracle 共识方法的专业进化版:完整重建为高级操作控制台,面向希望在一个纪律化工作流中获得深度、多周期背景与背离洞察的交易者。 是偏向引擎,而非信号生成器 The Oracle Pro 明确自身定位。它是一款提供纪律化方向背景的 多周期多因子偏向指标 。它 不是 信号生成器:不承诺入场、出场或盈利。偏向是背景——你在其方向上交易自己的设置
Weltrade Spike Sentinel
Batsirayi L Marango
5 (1)
Introducing Indicator for PainX and GainX Indices Traders on Weltrade Get ready to experience the power of trading with our indicator, specifically designed for Weltrade   broker's PainX and GainX Indices.  Advanced Strategies for Unbeatable Insights Our indicator employs sophisticated strategies to analyze market trends, pinpointing optimal entry and exit points.  Optimized for Maximum Performance To ensure optimal results, our indicator is carefully calibrated for 5-minute timeframe charts on
Gartley Hunter Multi
Siarhei Vashchylka
5 (12)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Spike detector Rider
Francisco Mandomo Simbine
5 (1)
Spike Detector Rider – Intelligent Trading in Volatile Markets Introduction The Spike Detector Rider  is an advanced system for MetaTrader 5 designed to detect explosive price movements in high-volatility assets such as synthetic indices and commodities. It combines volatility filters, trend analysis, and automated risk management to provide intelligent trade confirmations. After purchase, send me a private message to receive the optimized configuration files,  the installation manual and setup
RealTime Swing Sentinel — Non-Repainting Major Trend & Swing Reversal Indicator for MT5 If you've ever watched an arrow appear on your chart, only to realize the "signal" it's showing you happened four or five candles ago — this indicator was built to end that. RealTime Swing Sentinel is a zero-lag, non-repainting Heiken Ashi trend and swing confirmation system engineered for traders who need to know the instant a trend actually turns, not several bars after the fact. Why most swing/HA indicator
SyntheticaFX Scalper Pro Indicator
Hendrik Lodewyk Coetsee
5 (1)
SyntheticaFX Scalper Pro 指标 SyntheticaFX Scalper Pro 指标是一款多功能且用户友好的工具,旨在帮助交易者在多种时间框架和所有货币对中识别高精度的入场点。该指标在图表上提供清晰的视觉信号,并附带推荐的止损(SL)和止盈(TP)水平,使交易者能够更自信地规划交易。其内置仪表板提供实时交易统计数据,帮助交易者监控表现并做出明智决策。 主要功能 多时间框架兼容性 :无缝适用于多种时间框架,包括 M5 and M15,为不同交易风格提供灵活性。 通用应用 :适用于所有货币对,确保交易者可在广泛市场中使用。 高精度信号 :提供可靠的入场信号,注重精度,帮助交易者捕捉潜在市场机会。 推荐的止损和止盈水平 :每个信号都附带根据市场波动性计算的止损和止盈水平,简化交易管理。 视觉提示 :在图表上直接显示清晰的买入和卖出信号,以及止损和止盈线,便于解读。 性能仪表板 :内置仪表板跟踪交易统计数据,如最近指定交易的胜率、亏损次数和胜率百分比。 可定制设置 :提供多种可调整输入选项,允许交易者根据个人偏好定制指标。 用户友好设计 :以简洁为设计理念,适合初
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro 是一款適用於 MetaTrader 5 的趨勢跟隨指標,專為希望在圖表上獲得更清晰訊號、更有結構的交易設定,以及更實用風險管理的交易者而設計。 它不僅僅顯示一個簡單的箭頭,GEM Signal Pro 還能以更清晰、更易讀的方式呈現完整的交易思路。當條件確認完成後,指標可在圖表上顯示進場價、止損價與止盈目標,幫助交易者更有效率地評估交易設定。 運作方式 該指標首先根據其內部邏輯識別有效的初始訊號。 當確認條件滿足後,GEM Signal Pro 會在圖表上顯示完整的交易設定。這讓交易者可以更清楚地看到交易結構,並減少手動分析與計算的工作量。 圖表上的交易價位 對於已確認的訊號,GEM Signal Pro 可顯示: 進場價 止損價 止盈 1 止盈 2 止盈 3 風險報酬比 這讓交易設定更容易理解,也有助於讓圖表分析更有條理。 內建風險管理 風險管理是此指標設計的重要部分。 止損位基於近期市場結構,結合附近的擺動高低點與可選的 ATR 緩衝距離。這能讓交易價位更貼近當前市場條件,而不只是依賴固定距離。 圖表資訊面板 GEM Si
作者的更多信息
多时间框架MA分析器:在一个面板中查看11个时间框架的SMA/EMA/KAMA价格位置。 ### Full Description: ** 告别在多个时间框架图表之间切换!** MiniBull Periscope - 多时间框架移动平均线位置分析器 无需打开多个图表即可纵观全局!MiniBull Periscope 同时显示11个时间框架的当前价格相对于移动平均线的位置 - 从月线(MN1)到1分钟(M1)。 **主要功能:** • 11个时间框架合一:MN1、W1、D1、H12、H8、H4、H1、M30、M15、M5、M1 • 3种MA类型:一键切换SMA、EMA和考夫曼自适应均线(KAMA) • 图表可视化:带有独特颜色的水平MA线 • 距离显示:同时显示点数和百分比距离 • 斜率检测:自动趋势方向箭头指示( →) • 信号系统:BUY(高于MA)/ SELL(低于MA)/ WAIT(中性) • 交互按钮:无需重新加载即可更改MA类型 • 警报系统:弹窗、声音和推送通知 • 简洁面板:在独立窗口显示 • 所有计算基于已收盘K线数据 **工作原理:**
多时间框架综合信号分析器:11个时间框架上的9个指标,评分系统(-9至+9)。 ### Full Description: ** 告别在多个时间框架图表之间切换!** MiniBull MTF Observer - 多时间框架综合信号分析器 终极多指标仪表板!同时分析11个时间框架上的9种不同技术指标,为每个时间框架提供-9到+9的综合评分。 **分析的9个指标:** • RSI(相对强弱指数) • MACD(移动平均收敛散度) • 随机震荡器 • CCI(商品通道指数) • 动量指标 • SMA 5(简单移动平均) • SMA 20 • EMA 21(指数移动平均) • EMA 50 **主要功能:** • 11个时间框架:MN1、W1、D1、H12、H8、H4、H1、M30、M15、M5、M1 • 综合评分:每个时间框架-9至+9 • 信号强度:强(±7-9) / 买卖(±4-6) / 弱(±1-3) / 中性(0) • MA位置信号:可选BUY/SELL/WAIT • 3种MA类型:一键切换SMA、EMA、KAMA • 图表可视化线条 • 点数和百分比距离显
MiniBull Logical v21 — 交易品种与时间框架指南   完整回测结果(222个文件): https://drive.google.com/drive/folders/1-1QefUiJ1lm6Se0HYCpAmYIbERZ8xjR8 策略: MN1/W1趋势 + D1假突破 + 多时间框架MA反转 回测: 2024.07.01 – 2026.02.03 | $10,000 | 1:10 | 26,784笔交易 | 10/20盈利 ️  所有测试均使用EMA(20)。SMA和KAMA未经完整测试。   ️  输入参数 MA类型: EMA ← 已测试 | MA周期: 20 | MA触碰区: 0.5×ATR | 趋势接近警告: 1.5×ATR 评估周期: 5/10
BullBOP13 — 力量平衡 | 黄金 vs 美国指数 BullBOP13 检测黄金 (XAUUSD) 与三大美国股指 (NAS100, US500, US30) 之间的临时偏离。当 4 种资产中有 3 种同向运动而 1 种反向运动时,该异常资产正在经历 " 假动作 " ,往往会反转。 工作原理 — 4 层信号过滤: 1. 阶段过滤 — D1 时间框架市场状态分析(对齐 / 背离 / 强背离) 2. 假动作检测 — 3 对 1 规则: 3 种资产一致, 1 种偏离 = 对异常资产发出信号 3. 比率反转 — 黄金 / 指数比率配合 EMA + 标准差带确认背离正在回归 4. 价格确认 — 假动作资产的 MA 偏离度必须递减 仅当全部 4 层同时一致时才生成信号。 功能特点: • 子窗口比率图表,含 EMA 和 ±1/±2 SD 布林带(颜色编码) • 当所有 4 个条件触发时显示买入 / 卖出箭头 • 交互面板:价格、 MA 偏离、比率 SD 水平、 6 时间框架阶段分析( MN1→M30 ) • 比率切换器:黄金 /NDX 、黄金 /SPX 、黄金 /US30 视图 •
Minibull Sniper Ama
Yusuf Levent Aksun
Minibull AMA Sniper v7.30 是一款专为 NAS100(纳斯达克100指数)优化的专业趋势跟踪智能交易系统,同时兼容 US30(道琼斯)、SPX500(标普500)和 DAX40。EA 能自动识别您经纪商的合约名称,无论其显示为 NAS100、US100、NASDAQ100、USTEC、NQ100、US30、NYA30、NYSE30、SPX500、US500 或其他常见变体,均可正常运行。 策略核心基于日线图(D1)上计算的两条自适应移动平均线 — AMA(200) 与 AMA(9),在每根 H1 K 线收盘时精确触发入场信号。 **策略逻辑** - 做多(BUY):收盘价高于 AMA(200) 和 AMA(9) - 做空(SELL):收盘价低于两条 AMA - 中性:价格位于两条均线之间 — 关闭所有持仓 **风险管理** - 止盈:每笔 2000 USD(面板实时调整) - 止损:每笔 600 USD(面板实时调整) - 灾难止损:1000 USD 账户总保护 - 每日最多 5 笔 · 手数:0.1 **时段过滤** NYSE/纳斯达克 09:30–
Minibull Logical Pro
Yusuf Levent Aksun
# MiniBull Logical Pro: a trend-fade system, tested through real market stress ## What it is MiniBull Logical Pro is a multi-timeframe trend and false-breakout trading system, available as an MT5 Expert Advisor, a cTrader cBot, and a standalone cTrader indicator. The engine is the same across all three: - **Monthly + Weekly trend confluence** sets the directional bias. The system only trades in the direction both higher timeframes agree on — if they disagree, no trend, no trade. - **Daily fa
### BullBOP19 Live EA — 黄金与美股指数"假动作"识别系统 BullBOP19 是一款为 MetaTrader 5 打造的全自动交易顾问(EA),其核心逻辑基于黄金与美国主要股指(纳斯达克100、标普500、道琼斯US30)之间的力量平衡关系。通过对比黄金价格走势与这些指数的关系,该 EA 能够识别缺乏真实动能的"假动作",从而在入场前过滤掉不可靠的信号。 **主要功能** - 适用于任何交易品种和任何时间周期(自动识别黄金/纳斯达克/标普/道琼斯品种,也可手动设置) - 可自定义信号生成所用的均线类型、周期及价格来源 - 基于 ATR(Wilder 平均真实波幅)的安全止损,可在不同波动环境下保持稳定的风险管理 - 止盈、移动止损及保本设置,均以 ATR 倍数定义 - 可选的最大持仓时间限制(以已完成的日线根数计) - 可选自动附加 BullBOP19 副图指标,便于在图表上进行视觉确认 - 图表上的信息面板,位置可自定义 - 可选择在 EA 从图表移除时自动平掉所有持仓 **策略测试结果** 交易品种:US30 | 时间周期:H1 | 测试区间:20
**Minibull AMA Sniper — 不重绘信号指标** Minibull AMA Sniper 是一款趋势定位指标,基于两条考夫曼自适应均线(Kaufman AMA)——AMA200 和 AMA9 构建,并结合独特的斜率确认(Slope Confirm)过滤器,避免你在盘整、方向不明的市场中交易。 **工作原理** 指标追踪价格相对于两条 AMA 的位置: - **BUY(买入)**:价格收盘价高于 AMA200 和 AMA9 - **SELL(卖出)**:价格收盘价低于 AMA200 和 AMA9 - **NEUTRAL(中性)**:价格夹在两条均线之间 仅凭价格位置还不够。斜率确认过滤器会检查 AMA 本身是否真的朝信号方向倾斜——如果 AMA 走平,信号将被取消并回归中性,从而过滤掉容易被扫损的弱信号。 **自动 Swing / Scalp 模式** 指标会根据你所使用的时间周期自动调整斜率过滤器的灵敏度:日线及以上周期使用 Swing(波段)设置(更宽松、回溯周期更长);低于日线的任何周期使用 Scalp(剥头皮)设置(更严格、回溯周期更短、斜率阈值更
**无需切换图表,即可精确掌握价格在每个关键周期中的位置。** MiniBull LOP 是一款多周期仪表盘指标,专为同时关注多个周期的交易者设计。它针对月线(MN)、周线(W)、日线(D)、H8、H4、H1、M30、M15、M5 和 M1,显示:价格相对于上一收盘K线的位置(向上突破/向下突破、区间内偏上/偏下、位于收盘价),基于考夫曼自适应移动平均线(AMA)的趋势判断,以及当前收盘K线的成交量与该周期近期平均成交量的比率。 **主要功能** - 图表上的仪表盘面板,配有真正可点击的 Panel / Lines / AMA 开关按钮。 - 持续显示的价格水平线,会根据价格位置自动变为绿色(支撑)或红色(阻力)。 - 直接绘制在图表上的连续 AMA 线,逐根K线跟随价格。 - 一行式趋势摘要,一次性显示所有被追踪周期的多空状态。 - 直接标记在图表上的突破标记,加载时自动回溯标记历史突破。 **值得信赖的提醒:** 突破提醒(声音+弹窗)可设置为仅在成交量确认后才触发,从而过滤掉缺乏说服力的假突破。 **适合谁使用:** 适合只交易一个周期但希望了解其他周期背景的交易者——
VAMA Signal Simulator 扫描7个时间周期(M1-D1,权重从5%到30%),对每个周期用4条均线和6个振荡指标打分,综合成加权的Strong Buy/Buy/Neutral/Sell/Strong Sell信号。确认信号还必须与波动率自适应的H4均线方向一致(高波动时周期缩短,低波动时周期延长),并且M15和H1趋势方向也要一致。 每个确认信号都会在图表上显示箭头和BUY/SELL标签(按方向着色),并写入CSV日志,包含入场价、ATR、止盈和止损。止损/止盈距离、手数以及可选的重新入场模式(上一笔平仓后立即在同方向开新单,而不是等待反转)均可在Inputs中调整——默认值完全复现原策略的1:1盈亏比,修改则是明确的自主偏离。 面板显示实时的Win/Loss/Pending计数、胜率、按你设置手数计算的模拟盈亏,以及当前方向已持续了多久。 仅信号工具:从不真实下单、修改或平仓。 使用的均线(共4条,每条±1分): SMA(5)、SMA(20)、EMA(21)、EMA(50) 使用的振荡指标(共6个,每个±1分): 指标 参数 信号规则 RSI 周期14 <30→买入
MiniBull Algorithmic Signal Engine 是一款适用于 MetaTrader 5 的多时间周期交易系统,提供指标和智能交易系统(EA)两种形式。系统对7个时间周期(M1-D1)分别用4条均线和6个振荡指标打分,通过波动率自适应的H4趋势均线(VAMA)过滤结果,然后要求M15和H1同时确认方向才会行动——不接受部分确认。 EA提供两种模式:Faithful(固定0.1手,1:1风险回报比,完全复现原始脚本)或Flexible(根据账户净值百分比计算手数,止损/止盈可独立配置,默认1:2.5风险回报比)。图表面板实时显示真实盈亏、胜率和当前信号方向,并提供一键交易开关按钮,可立即暂停新交易。 在SPX500上验证(2024.04-2026.07,回测+前向测试):88笔交易,净利润+12,836美元,平均盈利因子1.53,最大回撤7.9%。参数选择基于样本内外两个阶段的一致表现,而非仅回测结果。
筛选:
无评论
回复评论