Multi Currency Stocastic Cross Scanner

  • 指标
  • Shin Kojima
    Shin Kojima
    MT4 indicator developer with 10+ years of live trading experience.
    Specializing in alert tools and scanners for ICT-based traders.
    Zero complaints. Reliable tools. Real support.
    MQL4 / MQL5 Development Services
    • Custom Indicator Modifications
  • 版本: 1.0
Stoch Cross 448 Scanner
Scan 64 pairs x 7 timeframes for stochastic golden/dead crosses — all from a single chart.  |  User Manual

------------------------------------------------------------------------
1. Overview
------------------------------------------------------------------------
Stoch Cross 448 Scanner is a MetaTrader 4 indicator that monitors
stochastic cross signals across 64 currency pairs and 7 timeframes
simultaneously, displaying all results in a single panel.

Drop it onto any chart and it instantly scans every selected symbol and
timeframe for stochastic golden crosses and dead crosses — no need to
switch charts manually.

Signal logic:
- Buy signal:
  Stochastic main line crosses the signal line from below to above
  while the stochastic is at or below the buy level.
  Default buy level: 20

- Sell signal:
  Stochastic main line crosses the signal line from above to below
  while the stochastic is at or above the sell level.
  Default sell level: 80

Key specs:
- Signals fire on confirmed (closed) candles only. No repainting.
- Uses built-in MT4 iStochastic calculation. No external custom
  indicator reference is required.
- Works on FX pairs, Gold (XAUUSD), indices, crypto — any symbol in
  your broker's Market Watch.
- Default display: 29 symbols x 7 timeframes.
- Full capacity: 64 pairs x 7 timeframes = 448 combinations.
- Settings are fully adjustable per symbol and timeframe.

------------------------------------------------------------------------
2. Typical Workflow
------------------------------------------------------------------------
Step 1  Find signals with 448 Scanner
        The panel highlights a cell when a stochastic cross signal is
        detected on the latest confirmed bar.

Step 2  Open chart with one click
        Click the timeframe label in the panel to open a new chart
        for that symbol and timeframe instantly.

Step 3  Check the chart context
        Use the opened chart to confirm trend direction, support and
        resistance, higher timeframe bias, and your own entry rules.

Step 4  Restore your chart workspace anytime with AutoLineSaver for 448
        Use AutoLineSaver to save and restore your drawn lines at any time.

------------------------------------------------------------------------
3. Color Guide
------------------------------------------------------------------------
Each cell in the panel represents one symbol x timeframe combination.

Color         Meaning
----------    -------------------------------------------------------
Cyan          Buy condition detected.
Dodger Blue   A new buy signal was just detected on this bar.
              Reverts to Cyan on the next scan cycle.
Red           Sell condition detected.
Magenta       A new sell signal was just detected on this bar.
              Reverts to Red on the next scan cycle.
White/Gray    No signal detected.
Yellow        Signal ended, or symbol is excluded from scan when the
              SymOnOff feature is used.

- When an alert fires, the symbol name turns Red temporarily.
  It returns to its normal color on the next scan cycle.
- The number shown next to each symbol name is the current spread.
  When the spread turns Red, the symbol is skipped due to the
  MaxSpread filter.

------------------------------------------------------------------------
4. Installation
------------------------------------------------------------------------
1. Copy  StochCrossAllSearch.mq4  to your MT4  MQL4/Indicators/  folder.
2. Restart MetaTrader 4, or press F5 in MetaEditor to refresh.
3. Attach the indicator to any chart.
   The timeframe of the host chart does not affect scan results.

This version is a built-in single-file scanner.
AllSearch.mqh is already embedded in the mq4 file, so no Include file
is required.

------------------------------------------------------------------------
5. First Launch Warning
------------------------------------------------------------------------
Immediately after attaching the indicator, symbols that have not been
recently loaded in Market Watch may lack price history.

If this occurs, the following alert may appear:

  "Please load [Symbol][Timeframe] chart once"

Open a new chart for the indicated symbol and timeframe. Once the chart
loads, MT4 downloads the required history and the scanner works normally
from that point on.

------------------------------------------------------------------------
6. How to Specify Symbols (UseSymbols)
------------------------------------------------------------------------
Only symbols visible in MT4's Market Watch window are scanned.
Add any symbol you want to monitor to Market Watch before starting.

There are two ways to enter symbols in UseSymbols:

Method 1 — Currency codes (auto-combination)
  Enter 3-letter currency codes separated by spaces.
  All valid pairs are generated automatically.

  Example: EUR USD JPY  ->  EURUSD, EURJPY, USDJPY

Method 2 — Full symbol names (direct)
  Enter the full symbol name to add it directly.

  Example: XAUUSD  ->  Gold is added to the scan list

You can combine both methods.
  Example: XAUUSD USD EUR JPY  ->  XAUUSD, EURUSD, EURJPY, USDJPY

- Display order follows the order of entry in UseSymbols.
- If your broker adds a suffix to symbol names (e.g. EURUSDm or
  EURUSDPro), enter the suffix in AddSymbol (e.g. AddSymbol = m).

------------------------------------------------------------------------
7. Parameters
------------------------------------------------------------------------
Stochastic Settings
  StochKPeriod          7       Period of the stochastic %K line.
  StochDPeriod          3       Period of the stochastic %D signal line.
  StochSlowing          3       Slowing value of the stochastic.
  StochBuyLevel         20      Lower level used for buy signal detection.
                                A buy signal is detected when the main line
                                crosses above the signal line in this zone.
  StochSellLevel        80      Upper level used for sell signal detection.
                                A sell signal is detected when the main line
                                crosses below the signal line in this zone.
  StochMethod           MODE_SMA
                                Moving average method used for stochastic
                                calculation.
                                0=MODE_SMA  1=MODE_EMA
                                2=MODE_SMMA 3=MODE_LWMA
  StochPriceField       0       Price field used for stochastic calculation.
                                0 = Low/High
                                1 = Close/Close
  bMainLineLevelOnly    true    true: The 20/80 zone is judged by the main
                                  line only.
                                false: Both the main line and signal line
                                  must be inside the 20/80 zone.

Signal Detection Details
  The scanner compares the latest confirmed bar (shift 1) with the
  previous confirmed bar (shift 2).

  Buy:
    main(shift 2) < signal(shift 2)
    main(shift 1) > signal(shift 1)
    and the selected 20-zone condition is met.

  Sell:
    main(shift 2) > signal(shift 2)
    main(shift 1) < signal(shift 1)
    and the selected 80-zone condition is met.

Timeframe Selection — Display ON/OFF
  Controls which timeframes appear in the panel and are scanned.
  Set to false to exclude a timeframe entirely.

  bUseM1        false           Show M1 in the panel and scan it.
  bUseM5        false           Show M5 in the panel and scan it.
  bUseM15       true            Show M15 in the panel and scan it.
  bUseM30       true            Show M30 in the panel and scan it.
  bUseH1        true            Show H1 in the panel and scan it.
  bUseH4        true            Show H4 in the panel and scan it.
  bUseD1        true            Show D1 in the panel and scan it.
  bUseW1        true            Show W1 in the panel and scan it.

Alert Settings — Alert ON/OFF (independent from display)
  Display and alerts are controlled separately.
  A timeframe can be visible in the panel but fire no alert.
  Example: bUseH1=true + bAlertH1=false
           H1 is shown in the panel, but no alert fires on H1 signals.

  bAlertOnce    true            true: Log detailed messages to Experts tab
                                  and show one summary pop-up.
                                false: Show pop-up alert dialog for each
                                  detected signal.
  bFindAlert    true            Alert when a new cross signal is detected.
  bLostAlert    false           Alert when an existing signal ends.
  bAlertM1      true            Fire alerts on M1 signals.
  bAlertM5      true            Fire alerts on M5 signals.
  bAlertM15     true            Fire alerts on M15 signals.
  bAlertM30     true            Fire alerts on M30 signals.
  bAlertH1      true            Fire alerts on H1 signals.
  bAlertH4      true            Fire alerts on H4 signals.
  bAlertD1      true            Fire alerts on D1 signals.
  bAlertW1      true            Fire alerts on W1 signals.

Spread Filter
  bUseSpread    true            Show the current spread next to each symbol name.
                                Aqua = within the allowed range.
                                Red  = spread exceeds MaxSpread. Symbol is skipped
                                       for that scan cycle automatically.
  MaxSpread     6.0             Spread threshold in pips. Symbols above this value
                                are excluded from scanning until spread drops back
                                below the limit.

Notification Settings
  bMail         false           Send an email when an alert fires.
                                Requires MT4 email settings to be configured.
  bPush         false           Send a mobile push notification when an alert fires.
                                Requires MT4 notification settings to be configured.

Symbol Settings
  UseSymbols    XAUUSD USD EUR JPY GBP CAD AUD NZD CHF
                                Space-separated list. See section 6 for details.
  AddSymbol     (empty)         Suffix appended to every symbol name.
                                Example: enter "m" if your broker uses EURUSDm.

Special Features
  SelfRifresh   false           Controls color update behavior for multi-instance use.
                                false (default): Colors reset each cycle automatically.
                                  DodgerBlue -> Cyan, Magenta -> Red, Yellow -> White.
                                true: Colors set by other indicators on the same panel
                                  are preserved. Use this on secondary instances when
                                  running multiple scanners on the same chart.
  SymOnOff      false           Enables click-to-exclude on symbol names.
                                false (default): Clicking a symbol has no effect.
                                true: Click a symbol name to toggle it Yellow
                                  (excluded from scan). Click again to restore.
                                  Useful for hiding specific symbols temporarily
                                  without editing UseSymbols.
  AddText       (empty)         Prefix added to all chart object names for this
                                instance. Set a unique value (e.g. "A", "B") when
                                running multiple instances on the same chart to
                                prevent object name conflicts.

Display Position Settings
  ATRCorner     1               Corner where the panel is anchored.
                                0 = Upper-Left
                                1 = Upper-Right  (default)
                                2 = Lower-Left
                                3 = Lower-Right
  TxtXBase      0               Horizontal offset of the entire panel from the
                                anchored corner (pixels). Increase to shift the
                                panel away from the chart edge.
  LineMax       30              Maximum symbol rows per column. When the symbol
                                count exceeds this, a new column is added
                                automatically.
  FontSize      10              Font size of all panel text. Changing this value
                                also scales the spacing between columns and rows.
  TxtXPos       5               Horizontal spacing between each timeframe column
                                in the panel (pixels).
  TxtXSpace     5               Additional horizontal padding between timeframe
                                columns. Adjust together with TxtXPos to fine-tune
                                column spacing.
  TxtYPos       5               Vertical spacing between symbol rows (pixels).
                                Increase if rows overlap at larger font sizes.

------------------------------------------------------------------------
8. Tips
------------------------------------------------------------------------
- All signals are based on completed bars only.
  The current open bar is never used for signal generation.
- The scanner uses shift 1 and shift 2 to confirm the stochastic cross.
- Enabling many timeframes with a large symbol list increases CPU load.
  Disable unused timeframes with bUseM1, bUseM5, etc.
- If you want stricter overbought/oversold filtering, set
  bMainLineLevelOnly=false.
- To run multiple instances on the same chart with different settings,
  set a unique value for AddText on each instance.

------------------------------------------------------------------------
9.  All-Currency Monitoring Series
------------------------------------------------------------------------
Tools that monitor all currency pairs at once become an incredibly powerful weapon once mastered ? a trading tool for life.
The key is to match the right tool to your trading strategy.
Here are the hottest tools available right now:

- IFVG All-Currency Scanner
  The most effective tool for catching ICT fake-out moves.
  Especially powerful for targeting AMD movement setups.

- MA + Pin Bar All-Currency Scanner
  A precision tool that finds pin bars bouncing off moving averages to catch pullback entries.
  The ultimate edge comes from knowing [what was swept]. Works perfectly with ICT methodology.

- AutoLineSaver
  An almost essential companion for all-currency monitoring.
  Automatically saves and restores your drawn lines even after closing charts ? an extremely
  convenient tool that dramatically improves the efficiency of multi-pair chart analysis.





推荐产品
Forecast System Gift
Peter Maggen
5 (1)
--- FREE VERSION - WORKS ONY ON EURUSD ------------------------------------------------------------------- This is a unique breakout strategy that is used for determination of the next short term trend/move. The full system is available on MQL5 under the name "Forecast System". Here is the link -->  https://www.mql5.com/en/market/product/104166?source=Site Backtest is not possible, because calculations are done based on the data of all timeframes/periods. Therefore I propose you use the technolo
FREE
Auto Supply and Demand Oscillator is an indicator for MetaTrader 4 and MetaTrader 5 that detects supply and demand zones automatically and displays them as a single oscillator value at the bottom of the chart, instead of drawing rectangles directly on price. Concept Supply zones are price areas where strong selling created a sharp downward move away from a balance area. Demand zones are price areas where strong buying created a sharp upward move. Traditional implementations draw boxes on the
FREE
Free automatic fibonacci
Tonny Obare
4.68 (50)
Free automatic Fibonacci is an indicator that automatically plots a Fibonacci retracement based on the number of bars you select on the BarsToScan setting in the indicator. The Fibonacci is automatically updated in real time as new highest and lowest values appears amongst the selected bars. You can select which level values to be displayed in the indicator settings. You can also select the color of the levels thus enabling the trader to be able to attach the indicator several times with differe
FREE
Candle Countdown — MT4 精确K线倒计时 Candle Countdown 是一个简单且精确的工具,可在图表上显示 当前K线剩余时间 。 当交易入场依赖K线收盘时,即使几秒钟也非常关键。 该指标帮助您看到准确时间,从而在无需猜测或仓促决策的情况下进行交易。 用于精确控制K线收盘时间的工具。 指标显示内容: 当前K线剩余时间 服务器当前时间 点差(Spread) 止损最小距离(Stop Level) 该计时器独立于行情跳动(tick),通过平台内部定时器更新,即使在市场波动较低时也能保持稳定显示。 在低波动环境下依然可以获得平滑且稳定的倒计时效果。 所有信息显示在带背景的区域中,在任何图表配色下都清晰可见,并且不会影响图表分析。 随着K线接近收盘,计时器颜色会发生变化,帮助您快速判断当前状态。 提供 MT5 版本: Candle Countdown MT5 实际应用 使用该计时器可以提高入场时机和交易控制: 等待信号K线收盘 在新K线开始时同步入场 避免过早决策 指标可自然融入图表界面,不影响分析 : 不影响图表对象 切换周期时保持稳定 不会增加终端负担 计划更
FREE
具有多时间框架支持、可自定义视觉信号和可配置警报系统的平均真实波幅(ATR)指标。 免费编程服务、更新及其他 TrueTL 产品请访问 MQL5 个人主页 。 非常感谢您的反馈和评价! 什么是 ATR? 平均真实波幅(ATR)由 J. Welles Wilder 开发,是一种用于衡量市场波动性的技术指标。它计算指定周期内真实波幅(True Range)的平均值。真实波幅是以下三个值中的最大值:当前最高价与当前最低价之间的距离、前一收盘价与当前最高价之间的距离,或前一收盘价与当前最低价之间的距离。 ATR 不显示价格方向 — 它仅衡量波动性。ATR 上升表示波动性增加,ATR 下降则表示波动性减少。交易者使用 ATR 来评估市场状况、设置动态止损(例如基于 ATR 的追踪止损)、确定仓位大小以及识别潜在的突破行情。ATR 值偏高通常出现在快速波动或新闻驱动的市场中,而 ATR 值偏低则表明市场处于平静的整理阶段。 功能特点: 带箭头标记和垂直线的视觉信号标记 具有可配置触发条件的三个独立信号缓冲区 信号检测选项:方向变化、峰值/谷值 每个信号可配置警报功能(邮件、推送、声音、弹窗)
FREE
BoxFibo
Sergei Kiriakov
It is just an alternative fibo lines, because mt4 have is a very strange drawing of fibo lines A simple Box (Rectangle) graphic element with adjustable levels binding: it is possible to specify up to 17 custom levels, all rectangles on the chart with the given prefix in their name are processed. Levels are specified in % of the height of the rectangle. A convenient graphical element for analyzing charts by growth-correction levels. Enjoy your work!
FREE
Silver Bullet MT4
Saksham Solanki
5 (2)
Contact me for any queries or custom orders, if you want to use this in an EA. Key Features: Pattern Recognition : Identifies Fair Value Gaps (FVGs) Spots Break of Structure (BOS) points Detects Change of Character (CHoCH) patterns Versatile Application : Optimized for candlestick charts Compatible with any chart type and financial instrument Real-Time and Historical Analysis : Works seamlessly with both real-time and historical data Allows for backtesting strategies and live market analysis Vi
FREE
KT Horizontal Lines MT4
KEENBASE SOFTWARE SOLUTIONS
在MetaTrader中,绘制多个   水平线   并跟踪各自的价格水平可能非常麻烦。该指标可自动在等间距位置绘制多个水平线,用于设置价格提醒、标记支撑和阻力位以及其他手动操作。 这个指标非常适合刚接触外汇交易的新手,帮助他们寻找买卖机会并实现快速获利。无论市场处于趋势中还是震荡状态,水平线都能帮助交易者识别潜在的进出场区域。 功能特点 可根据输入参数中的预设,瞬间绘制多个水平线。 使用鲜明的色彩主题,区分不同的水平线。 是追踪多个交易时段价格区间的必备工具。 当价格触及某条水平线时会自动发出提醒。 可设置提醒之间的间隔,避免重复提醒造成干扰。 支持完全自定义设置。 说明 该指标根据输入参数中的配置自动绘制水平线。观察价格在这些水平线附近的反应,可以帮助识别关键支撑/阻力位附近的潜在交易机会。 例如,在水平支撑位形成一根看涨Pin Bar,通常意味着价格可能会继续上涨,朝最近的阻力位移动。 若价格以一根看跌K线收盘于支撑位下方,则可能表明刚刚发生了一个下行突破。而在水平线上发生的假突破,则说明价格未能突破关键水平,可能即将反转方向。 一些价格反转形态(如Pin Bar或假突破)对于
FREE
Hi Low Levels Last Day MT4
Igor Vishnevskii
5 (1)
The free version of the Hi Low Last Day MT4 indicator . The Hi Low Levels Last Day MT4 indicator shows the high and low of the last trading day . The ability to change the color of the lines is available . Try the full version of the Hi Low Last Day MT4 indicator , in which additional indicator features are available : Displaying the minimum and maximum of the second last day Displaying the minimum and maximum of the previous week Sound alert when crossing max . and min . levels Selecting an arb
FREE
WH Price Wave Pattern MT4
Wissam Hussein
4.4 (5)
Welcome to our   Price Wave Pattern   MT4 --(ABCD Pattern)-- The ABCD pattern is a powerful and widely used trading pattern in the world of technical analysis. It is a harmonic price pattern that traders use to identify potential buy and sell opportunities in the market. With the ABCD pattern, traders can anticipate potential price movements and make informed decisions on when to enter and exit trades. Send me a  Message and Get A Free Gift : ABCD  Symbol Scanner Dashboard! EA Version : Price
FREE
Ava Dragon Pro Signal
Nirundorn Promphao
1 (1)
The principle of this indicator is very simple: detecting the candlestick pattern in D1 timeframe, then monitoring the return point of graph by using the pullback of High-Low of D1 Candlestick and finally predicting BUY and SELL signal with arrows, alerts and notifications. The parameters are fixed and automatically calculated on each time frame. Example: If you install indicator on XAUUSD, timeframe D1: the indicator will detect the reversal, pullback, price action on this timeframe (for exam
FREE
Wise Men Indicator demo
Bohdan Kasyanenko
3 (2)
The indicator displays signals according to the strategy of Bill Williams on the chart. Demo version of the indicator has the same features as the paid, except that it can work only on a demo account . Signal "First Wise Man" is formed when there is a divergent bar with angulation.  Bullish divergent bar - with lower minimum and closing price in the upper half. Bearish divergent bar - higher maximum and the closing price at the bottom half. Angulation is formed when all three lines of Alligator
FREE
Power Trend Free
Yurij Kozhevnikov
5 (2)
Power Trend Free - the indicator shows the trend strength in the selected period. Input Parameters The indicator has three input parameters: Period - a positive number greater than one, it shows the number of candlesticks used for calculations. If you enter one or zero, there will be no error, but the indicator will not be drawn. Applied Price - the standard "Apply to:" set meaning data used for the indicator calculation: Close - Close prices; Open - Open prices; High - High prices; Low - Low p
FREE
TreendLines
Sajjad Karimi
5 (1)
''Trendlines'' is an Indicator, that every Trader need and shows Trendline and  Support and resistance levels in all  Timeframe's. Also In 1-hour, 4-hour and daily time frames and Current timeframes, support, and resistance levels are specified and trend lines are drawn so that the trader can see all levels on a chart.   In   Properties   it is possible to turn off unnecessary Lines.  In ' Tendency indicator '' , as full package of Predictions that every Trader need, there  is also the Predict
FREE
Perfect for one minutes high trading and scalping. This indicator is very effective for trading on one minutes, in the hour. A combination of moving averages and STOCHASTICS calculation to produce a very convincing signal every hour. Blue colour signals a buy opportunity. Follow the X signs for possible buy points. The Blue average line serves as possible trend direction and support. Red colour signals a sell opportunity. Follow the X signs for possible sell points. The Red average line serves a
FREE
Индикатор "Buy Sell zones x2" основан на принципе "остановка/разворот после сильного движения". Поэтому, как только обнаруживается сильное безоткатное движение, сразу после остановки - рисуется зона покупок/продаж. Зоны отрабатывают красиво. Или цена ретестит зону и улетает в космос, или пробивает зону насквозь и зона отрабатывается с другой стороны так же красиво.  Работает на всех таймфреймах. Лучше всего выглядит и отрабатывает на Н1.    Может использоваться как: индикатор зон, где лучше вс
FREE
Our offer also includes a free panel — Indicator Panel — which allows you to show or hide indicators created by BOToBRACIA. High and Low Points is a practical technical analysis indicator that plots levels corresponding to the highs and lows from previous periods (day / week / month) — levels that, in the Smart Money Concepts (SMC) and ICT approach, are treated as liquidity zones, while in classical technical analysis they serve as potential support and resistance levels. Indicator settings: •
FREE
FlatBreakout
Aleksei Vorontsov
FlatBreakout (Free Version) Flat Range Detector and Breakout Panel for MT4 — GBPUSD Only FlatBreakout is the free version of the professional FlatBreakoutPro indicator, specially designed for flat (range) detection and breakout signals on the GBPUSD pair only. Perfect for traders who want to experience the unique fractal logic of FlatBreakout and test breakout signals on a live market without limitations. Who Is This Product For? For traders who prefer to trade breakout of flat ranges (breakout,
FREE
PZ Three Drives
PZ TRADING SLU
5 (2)
This indicator finds Three Drives patterns. The Three Drives pattern is a 6-point reversal pattern characterised by a series of higher highs or lower lows that complete at a 127% or 161.8% Fibonacci extension. It signals that the market is exhausted and a reversal can happen. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products  |  Get Help ] Customizable pattern sizes Customizable colors and sizes Customizable breakout periods Customizable 1-2-3 and 0-A-B ratios It impl
FREE
Super Auto Fibonacci
Muhammed Emin Ugur
Discover the power of precision and efficiency in your trading with the " Super Auto Fibonacci " MT4 indicator. This cutting-edge tool is meticulously designed to enhance your technical analysis, providing you with invaluable insights to make informed trading decisions. Key Features: Automated Fibonacci Analysis: Say goodbye to the hassle of manual Fibonacci retracement and extension drawing. "Super Auto Fibonacci" instantly identifies and plots Fibonacci levels on your MT4 chart, saving you tim
FREE
枢轴点斐波那契 RSJ 是一个指标,它使用斐波那契汇率追踪当天的支撑线和阻力线。 这个壮观的指标使用斐波那契汇率通过枢轴点创建多达 7 个支撑位和阻力位。 价格如何尊重该支撑和阻力的每个水平真是太棒了,在那里可以感知操作的可能进入/退出点。 特征 多达 7 个支撑位和 7 个阻力位 单独设置级别的颜色 输入 枢轴类型 Pivot Fibo RSJ1 = Fibo ratio 1 计算 Pivot Fibo RSJ2 = Fibo ratio 2 计算 Pivot Fibo RSJ3 = Fibo ratio 3 计算 Pivot Fibo Classic = 经典枢轴计算 最低枢轴级别 旋转 3 个级别 旋转 4 个级别 旋转 5 个级别 枢轴 6 个级别 旋转 7 个级别 如果您仍有疑问,请通过直接消息与我联系: https://www.mql5.com/zh/users/robsjunqueira/
FREE
Trendline indicator
David Muriithi
2 (1)
Are you tired of drawing trendlines every time you're analyzing charts? Or perhaps you would like more consistency in your technical analysis. Then this is for you. This indicator will draw trend lines automatically when dropped on a chart. How it works Works similar to standard deviation channel found on mt4 and mt5. It has 2 parameters: 1. Starting Bar 2. Number of bars for calculation The   starting bar   is the bar which drawing of the trend lines will begin, while the   number of bars for c
FREE
Binary options tester
Vladimir Korotkikh
Binary options tester Trading panel to test your strategies according to the rules of binary options. Scope: Set the percentage of profit from the transaction. Set the expiration time in seconds. Set the bet size Set the Deposit amount. Make several deals in a row. Keep track of the time before expiration. The tick chart with trade levels is duplicated to an additional window for accuracy. It allows you to work both in the testing mode and in the real quotes mode. The program gives an idea of bi
FREE
BinaryFortune
Andrey Spiridonov
3.83 (6)
The BinaryFortune indicator has been developed and adapted specifically for trading short-term binary options. The algorithm of the indicator analyzes numerous factors before generating a signal. The indicator is installed in the conventional way. The indicator consists of an information window, which displays the name of the trading instrument, support and resistance levels, and the signal itself ( BUY , SELL or WAIT ). A signal is accompanied by a sound and a pop-up Alert. Advantages of the in
FREE
Follow The Line
Oliver Gideon Amofa Appiah
3.94 (16)
FOLLOW THE LINE GET THE FULL VERSION HERE: https://www.mql5.com/en/market/product/36024 This indicator obeys the popular maxim that: "THE TREND IS YOUR FRIEND" It paints a GREEN line for BUY and also paints a RED line for SELL.  It gives alarms and alerts of all kinds. IT DOES NOT REPAINT and can be used for all currency pairs and timeframes. Yes, as easy and simple as that. Even a newbie can use it to make great and reliable trades. NB: For best results, get my other premium indicators for more
FREE
Ppr PA
Yury Emeliyanov
4.75 (4)
"Ppr PA" is a unique technical indicator created to identify "PPR" patterns on the currency charts of the MT4 trading platform. These patterns can indicate possible reversals or continuation of the trend, providing traders with valuable signals to enter the market. Features: Automatic PPR Detection:   The indicator automatically identifies and marks PPR patterns with arrows on the chart. Visual Signals:   Green and red arrows indicate the optimal points for buying and selling, respectively. Ar
FREE
Extremum Reverse Bar
Yurij Izyumov
2.8 (5)
This indicator has been created for finding the probable reversal points of the symbol price. A small candlestick reversal pattern is used it its operation in conjunction with a filter of extremums. The indicator is not redrawn! If the extremum filter is disabled, the indicator shows all points that have a pattern. If the extremum filter is enabled, the condition works – if the history Previous bars 1 candles back contains higher candles and they are farther than the Previous bars 2 candle, such
FREE
YK Find Support And Resistance
Peechanat Chatsermsak
5 (1)
The " YK Find Support And Resistance " indicator is a technical analysis tool used to identify key support and resistance levels on a price chart. Its features and functions are as follows: 1. Displays support and resistance levels using arrow lines and colored bands, with resistance in red and support in green. 2. Can be adjusted to calculate and display results from a specified timeframe using the forced_tf variable. If set to 0, it will use the current timeframe of the chart. 3. Uses the
FREE
和谐图案最适合预测市场转折点。和谐图案为您提供高胜率和一天内的高交易机会。 该指标识别了最受欢迎的和谐图案,这些图案预测市场反转点。 基于和谐交易书籍。 重要说明: 该指标不会重绘或滞后(它在D点检测到模式);它不会重新绘制(模式要么有效,要么取消)。 使用方法: 将指标拖放到您的MT5图表上。 将模式检测设置为TRUE(ABCD; Gartley)。 根据您的喜好调整偏差(较大的偏差=更多的模式;较小的偏差=更少的模式)。 根据您的喜好自定义颜色。 根据需要启用或禁用关于入场点、TP和SL的警报。 检测到模式时: 该算法在D点检测到模式。 如果启用了警报,它将通知您检测到的模式。 如果模式无效,则触发一个带有“模式已取消”消息的警报。 成功的模式在蜡烛关闭时触发“入场警报”。 如果价格达到TP1、TP2、TP3、TP4或SL,则会发出带有终端消息的警报。 价格现在为40美元,仅剩下几份副本,最终价格将为70美元。 发展计划: 该指标的当前版本(1.1)将检测Gartley和ABCD模式。 版本1.1将包括Butterfly、Bat和Crab模式。 未来版本将包括其他模式、潜在PRZ检
FREE
Aurum Trend Scout
David Sanchez Clavero
Aurum Trend Scout — Aurum Trend Engine 免费LITE版 Aurum Trend Scout 是 Aurum Trend Engine 智能交易系统的 免费版本 。在H1时间框架上交易黄金(XAUUSD),使用基于Parabolic SAR + 布林带宽度比率的趋势跟踪策略,以BUYSTOP订单在日最高价突破时入场。 此LITE版本包含完整的策略逻辑和基于ATR的止损。使用固定手数,不包含FULL版本中的动态资金管理。 验证性能(真实数据,XAUUSD H1,2014-2025) 点差 20 点: 盈利因子 1.32 | 胜率 63.65% | 最大回撤 2.22% | 净利润 $11,363 | 1,004 笔 点差 30 点: 盈利因子 1.25 | 胜率 62.60% | 最大回撤 2.40% | 净利润 $9,378 | 1,016 笔 LITE版功能 完整策略逻辑(与FULL版相同) 基于ATR的止损 仅做多 — 无马丁格尔,无网格 11年超过1,000笔交易 LITE版限制 仅固定手数(无动态资金管理) 无追踪止损 升级到 Aurum T
FREE
该产品的买家也购买
Gann Made Easy
Oleg Rodin
4.84 (167)
Gann Made Easy 是一个专业且易于使用的外汇交易系统,它基于使用先生理论的最佳交易原则。 W.D.江恩。该指标提供准确的买入和卖出信号,包括止损和获利水平。您甚至可以使用推送通知在旅途中进行交易。 购买后请联系我,即可免费获得交易指导和超棒的额外指标! 您可能已经多次听说过江恩交易方法。通常 Gann 的理论不仅对于新手交易者而且对于那些已经有一定交易经验的人来说都是非常复杂的东西。这是因为江恩的交易方法在理论上并不那么容易应用。我花了几年时间来完善这些知识,并将最好的原则应用到我的外汇指标中。 该指标非常易于应用。您所需要的只是将其附加到您的图表并遵循简单的交易建议。该指标不断进行市场分析工作并寻找交易机会。当它检测到一个好的入口点时,它会为您提供一个箭头信号。该指标还显示止损和获利水平。 换句话说,当您像先生一样进行交易时,该指标会为您提供最佳江恩建议。江恩亲自告诉你此时此刻该做什么。但最好的部分是您不需要了解任何有关江恩交易原则的知识,因为该指标会为您完成整个市场分析工作。
Neuro Poseidon MT4
Daria Rezueva
4.76 (45)
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 all
Scalper Inside PRO
Alexey Minkov
4.68 (69)
Scalper Inside PRO Scalper Inside PRO 是一款日内趋势与剥头皮指标,采用独家的内置算法来评估市场方向和关键目标位。该指标会自动计算进场点、出场点以及多个止盈目标位,并显示详细的绩效统计数据,让您能够看到不同品种和策略在历史数据上的表现。这有助于您选择符合当前市场状况的交易品种。您还可以将自己的箭头指标连接到 Scalper Inside PRO,并快速查看它们的统计数据和历史信号。 Scalper Inside PRO 使用手册及参数说明: 点击阅读 该指标适用于任何品种和时间周期(日内交易推荐使用 M5),并包含多种内置策略。它既可作为独立的剥头皮工具使用,也可作为您交易系统的分析组件。 主要功能 基于独家的新一代趋势检测算法 Next-Generation Trend Detection Algorithm (NG TDA) 进行趋势识别。 自动计算进场点和出场点,并提供多级止盈目标(TP1、TP2、TP3)。 三种内置策略和一个优化器,用于将信号适配到当前品种和时间周期(仅在实时模式下可用)。 提供品种和策略在历史数据上的详细绩效统计。 提
Prop Firm Sniper
Mohamed Hassan
5 (4)
Prop Firm Sniper MT4  is a professional market structure indicator that automatically identifies high-probability BUY and SELL opportunities using BOS and CHoCH analysis. Recommended Timeframes: For backtesting, use the indicator on   M5 or M15   for Gold (XAUUSD), and   M15 or H1   for more volatile Forex pairs such as   GBPUSD, USDJPY, EURGBP , and similar markets. CONTACT ME AFTER PURCHASE TO CLAIM YOUR FREE BONUSES! Prop Firm Sniper  is a professional market structure indicator designed t
PZ Day Trading
PZ TRADING SLU
3.67 (3)
该指标仅使用价格行为分析和donchian渠道以锯齿形检测价格反转。它是专门为短期交易而设计的,根本不需要重新粉刷或补漆。对于精明的交易者来说,这是一个绝佳的工具,旨在增加他们的运作时间。 [ 安装指南 | 更新指南 | 故障排除 | 常见问题 | 所有产品 ] 极易交易 它在每个时间段都提供价值 实施自我分析统计 它实现了电子邮件/声音/视觉警报 基于可变长度的突破和拥挤区域,该指标仅使用价格行为来选择交易并对市场快速做出反应。 显示过去信号的潜在利润 该指标分析其自身的质量和性能 突围的损失突出显示并解决 该指标是不可重涂和不可重涂的 该指标将帮助盘中交易者不要错过单个价格反转。但是,并非所有价格反转都是一样的,也不是具有相同的可行质量。决定要突破哪些突破而忽略哪些取决于交易者的良好判断。 如何解释统计数据 该指标研究其自身信号的质量,并在图表上绘制相关信息。将分析每笔交易,并在图表的左上角显示总体历史结果,这使您可以针对任何给定的工具和时间范围自行优化指标参数。每个乐器和时间表都有其自己的最佳设置,您可以自己找到它们。 最大优惠交易:对于任何给定的交易,MFE都是最好的结
Trend Catcher ind
Ramil Minniakhmetov
5 (10)
趨勢捕捉指標 趨勢捕捉指標結合了作者獨有的客製化自適應趨勢分析指標,用於分析市場價格趨勢。它透過過濾掉短期噪音,並專注於潛在的動能強度、波動性擴張和價格結構行為,來識別真實的市場方向。此外,它還結合了平滑和趨勢過濾等客製化指標,例如移動平均線、相對強弱指標 (RSI) 和波動率過濾器。 您可以在這裡查看實際運行情況以及我的其他產品: https://www.mql5.com/en/users/mechanic/seller 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。 重要提示!購買後請立即聯繫我,以獲取使用說明和額外獎勵! 請注意,我不會在 Telegram 上出售 EA 或任何設置,那是騙局。所有設定都可以在我的部落格上免費取得。
M1 Sniper
Oleg Rodin
5 (25)
M1 SNIPER 是一款易于使用的交易指标系统。它是一个专为 M1 时间框架设计的箭头指标。该指标可以作为独立的系统在 M1 时间框架下进行剥头皮交易,也可以作为您现有交易系统的一部分使用。虽然该交易系统专为 M1 时间框架交易而设计,但它也可以用于其他时间框架。我最初设计此方法是为了交易 XAUUSD 和 BTCUSD。但我发现这种方法在其他市场交易中也同样有用。 指标信号既可以顺势交易,也可以逆势交易。我教授一种特殊的交易技巧,帮助您利用指标信号进行双向交易。该方法基于使用特殊的动态支撑位和阻力位区域。 购买后,您可以立即下载 M1 SNIPER 箭头指标。此外,我还为所有 M1 SNIPER 工具用户免费提供下方屏幕截图所示的 Apollo Dynamic SR 指标!这两个指标的组合可以帮助您更轻松、更准确地利用 M1 时间框架进行交易。 购买后请联系我,免费获取交易提示和奖励指标! 祝您交易成功!
BTMM State Engine Pro MT4
Garry James Goodchild
BTMM State Engine Pro is a MetaTrader 4 indicator for traders who use the Beat The Market Maker approach: Asian session context, kill zone timing, level progression, peak formation detection, and a multi-pair scanner from a single chart. It combines cycle state logic with a built-in scanner dashboard so you do not need the same tool on many charts at once. What it does Draws the Asian session range; session times can follow broker server offset or be set in inputs. Tracks level progression (L
该指标旨在与艾略特波浪理论相结合,提供了两种不同的工作方式: 自动工作: 在此模式下,指标会自动检测图表上的所有五个动机波浪,并为您提供预测和潜在的逆转区域。它还可以提供警报和推送消息。这种自动功能简化了识别和分析艾略特波浪模式的过程。 手动工作: 此选项适用于喜欢手动方法的交易员,用于手动绘制九个不同等级的波浪。每个等级都可以在它们出现后通过调整图表上的绘制线条来单独定义。此功能简化了手动绘制波浪的过程,使其更加高效。需要注意的是,所有绘图数据将保存在平台的数据文件夹中,以备将来参考。 参数: Name: 指标名称。 Use_System_Visuals: 启用或禁用指标主题,以匹配交易平台的整体外观。 Explain_Comment: 允许启用或禁用波浪编号的解释性注释,有助于理解已识别的波浪。 Show_Last_Candle_Counter: 启用或禁用蜡烛计时器,提供有关当前蜡烛收盘的剩余时间的信息。 Candle_Counter_Color: 蜡烛计时器文本的颜色。 Basic_Wave_Color: 用于表示波浪的主要颜色。 Bullish_Wave_Color: 当检测
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
现在优惠 30%! 任何新手或专业交易者的最佳解决方案! 该指标是一款独特、高质量、且价格合理的交易工具,因为我们已经整合了许多专有功能和新公式。 依据此更新,您将能够显示双重时间帧区域。 您不仅可以显示一个较高的时间帧,还可以同时显示图表时间帧,加上更高的时间帧:显示嵌套时区。 供需双方所有交易者都会喜欢它。 :) 重要信息披露 高级供需的最大潜力,请访问 https://www.mql5.com/zh/blogs/post/720245   想象您的交易如何得以改善,是因为您能够精准定位入场或目标位吗? 构建于新的底层算法,它可以更轻松地识别出买卖双方之间的潜在失衡。 这是因为它以图形方式展示供需最强劲区域,及其过去的表现(显示旧区域)。 这些功能旨在帮助您更轻松地发现最佳入场区域和价位。 现在您可以针对您的交易品种和时间帧来优化和编辑区域强度! 高级供需指标适用于所有产品和时间帧。 它是一个新的公式,非常新的功能是两个区域强度函数可由用户输入进行调整! 这在交易中是一大优势。 当您学习如何使用专有功能,例如带有价格游离最小 X 因子的区域强度时,您能够判断该区域强劲与否。 供需
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault 是一个专业的剥头皮系统,为您提供成功剥头皮所需的一切。该指标是一个完整的交易系统,可供外汇和二元期权交易者使用。推荐的时间范围是 M5。 该系统为您提供趋势方向的准确箭头信号。它还为您提供顶部和底部信号以及江恩市场水平。无论您拥有何种交易经验,该系统都易于使用。您只需要遵循简单的规则并每天重复该过程。 建议将此系统用于主要货币对。感谢您的关注! 请注意,该指标在策略测试器中可能无法正常工作。因此,我建议仅在模拟或真实账户的真实交易条件下使用该系统。 指示器提供所有类型的警报,包括推送通知。 购买指标后请与我联系。我将免费与您分享我的个人交易建议和出色的奖励指标! 祝您交易愉快,盈利!
Super Signal – Skyblade Edition 專業級無重繪 / 無延遲趨勢信號系統,擁有卓越勝率 | 適用於 MT4 / MT5 在較低的時間週期上效果最佳,例如 1 分鐘、5 分鐘與 15 分鐘圖表。 核心特色: Super Signal – Skyblade Edition 是一套專為趨勢交易設計的智能信號系統。 其採用多重濾波邏輯,僅篩選出具有明確方向性、動能強勁且波動結構健康的走勢進場點。 本系統 不預測高點或低點 ,只有在同時滿足以下三項條件時才會觸發交易信號: 趨勢方向明確 動能持續增強 波動率結構穩定 此外,系統還結合市場流動性分析,以進一步提升信號的準確性與觸發時機。 信號特性: 所有箭頭信號皆為 100% 無重繪,無延遲 信號一旦出現即固定於圖表,不會閃爍或消失 提供圖表箭頭、資訊面板、彈出通知、聲音提示及推播訊息 支援 EA 呼叫(Buffer 輸出),可整合至自動化交易或信號跟單系統 提供預設參數模板,免調整即可使用,適合新手快速上手 總結: Super Signal – Skyblade Edition 是一款邏輯清晰、穩定高效的專業趨勢型
Ranging Market Detector
Innovicient Limited
5 (2)
Ranging Market Detector scans the market for momentum and price to check whether the price is range- bound and the direction to which it will breakout.  It works with all the  all assets and visually shows you the instances when the market is either ranging or trending. Informs when the price has finished a retracement, an opportune time to re-enter the trend early. This will help you in position management.  It works very well for Scalping, Day trading, and Swing trading. Helpful in all timefra
TPSpro RFI Levels
Roman Podpora
4.86 (28)
俄语说明 /  英文 说明   -  MT5 版本 主要功能: 显示卖家和买家的活跃区域! 该指标显示所有正确的买入和卖出的初始脉冲水平/区域。当这些水平/区域被激活时,即开始寻找入场点的位置,水平线会改变颜色,并填充特定颜色。此外,还会显示箭头,以便更直观地了解情况。 LOGIC AI - 激活模板时显示用于搜索入口点的区域(圆圈) 为了提高视觉清晰度,添加了使用人工智能搜索入口点的显示区域的功能。 显示更高时间范围内的级别/区域(MTF 模式) 新增使用更高时间间隔显示级别/区域的功能。此外,该指标还具有自动趋势检测功能 (   TPSproTREND PRO   )。 独立的专业分步交易算法 该算法专为顺势和逆势的日内交易而设计。每个活动模板均提供详细的说明。 适用于不同的时间范围 TPSpro RFI 水平指标可用于图表上的任何时间间隔,从分钟(M1)到每月(MN)。 图形和声音警报 该指标提供图形和声音提示,让您不会错过交易信号。 此外,还支持手机通知。 简单有效的活性模板扫描器 这是一个非常紧凑的主动模式扫描仪,当在一个方向上的所有时间间隔内激活模式时,它会自动发出警报并
Beast Super Signal
Florian Zuercher
4.73 (89)
正在寻找可以帮助您轻松识别有利可图的交易机会的强大外汇交易指标? Beast Super Signal 就是您的不二之选。 这个易于使用的基于趋势的指标持续监控市场状况,寻找新的发展趋势或跳入现有趋势。当所有内部策略一致且彼此 100% 融合时,Beast Super Signal 会发出买入或卖出信号,无需额外确认。当您收到信号箭头警报时,只需买入或卖出。 购买后给我留言,让我加入我的私人 VIP 群组! (仅限购买完整产品)。 购买后给我发消息以获取最新的优化设置文件。 此处提供 MT5 版本。 在此处 获取 Beast Super Signal EA。 查看评论部分以查看最新结果! Beast Super Signal 根据您偏好的 1:1、1:2 或 1:3 风险回报率建议入场价、止损和获利水平,让您放心交易。这个 Beast Super Signal 是 100% 不可重新绘制的,这意味着它永远不会重新计算或重新绘制,每次都能为您提供可靠的信号。 Beast Super Signal 指标适用于所有时间范围,包括货币对、指数、商品和加密货币对。 Beast Su
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT5 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT5 Version: https://www.mql5.com/en/market/product/171633 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 4 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It projects
ORB Seeker
Marcela Goncalves De Oliveira
特价上市! 仅售 79 美元! 售出 10 件后价格将上涨,最终价格为 199 美元。 购买后联系我,即可获得免费的EA奖励,该EA可以全自动交易突破信号,并拥有优化的设置文件。 自信地捕捉干净利落的比赛片段! ORB Seeker 是一款专业的开盘区间突破 (ORB) 指标,专为追求准确性、简洁性、灵活性和清晰图表结构的交易者而设计。 它能自动绘制任何交易品种的盘前或自定义交易时段区间,然后给出清晰的突破信号,包括入场点、止损点、止盈点以及可选的50%部分止盈位。所有数据均实时计算并直接显示在图表上。 您可以选择交易伦敦开盘、纽约交易时段、亚洲交易时段,或者您自定义的交易时段。ORB Seeker 会根据您选择的交易时段自动调整,让您精准掌握市场波动范围、突破位和交易位的位置。 每次购买均免费赠送 ORB Seeker EA 智能交易系统。该 EA 系统读取指标的突破信号并可自动下单,您可以选择手动交易,也可以让 EA 系统根据指标的信号逻辑自动处理入场。   为什么选择 ORB Seeker 支持多个交易时段 - 您可以自行设置伦敦、纽约、亚洲或自定义交易时段的盘前交易时间和交
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
Smart Trend Trading System
Issam Kassas
4.67 (6)
本产品已针对 2026 年市场进行更新,并针对最新 MT5 版本进行了优化。 价格更新通知: Smart Trend Trading System 目前价格为 $99 。 接下来的 30 次购买 后,价格将上涨至 $199 。 特别优惠: 购买 Smart Trend Trading System 后,请发送私信给我,即可免费领取 Smart Universal EA ,并将您的 Smart Trend 信号转换为自动交易。 Smart Trend Trading System 是一套完整的交易系统,具备不重绘、不回绘、不延迟的特点,专为希望获得更清晰信号、更准确趋势方向以及更有组织交易方式的交易者打造。 Online course , manual and [download presets] . 它将 10 多种交易工具 整合到一个系统中,包括趋势检测、反转区域、Smart Cloud、移动止损逻辑、支撑与阻力、K线着色、提醒以及多周期分析。 该系统旨在帮助您应对不同的市场环境: 趋势市场: 识别主要趋势,发现回调,跟随动能,并通过止损指导和移动止损选项寻找更清晰的入场机会。
Advanced Currency IMPULSE with ALERT
Bernhard Schweigert
4.9 (490)
目前40%的折扣!! 对任何新手或专家交易者来说都是最好的解决方案! 这个指标是一个独特的、高质量的、负担得起的交易工具,因为我们已经纳入了一些专有的功能和一个秘密的公式。只需一张图表,它就能给出所有28种货币对的警报。想象一下,你的交易将如何改善,因为你能够准确地确定新趋势或剥头皮机会的触发点 建立在新的基础算法上,它使识别和确认潜在交易变得更加容易。这是因为它以图形方式显示了一种货币的强势或弱势是否正在加速,并测量了这种加速的速度--把它想象成你汽车中的速度表。当你加速时,事情显然会发生得更快,这在外汇市场上也是一样的,即如果你配对的货币正在向相反的方向加速,你就会发现一个潜在的有利可图的交易。 货币动量的垂直线和箭头将指导你的交易! 动态的市场斐波那契23水平被用作警报触发器,将适应市场活动。如果冲动触及黄色触发线,您将在MetaTrader或您的电子邮件或推送警报中收到警报。然后你就知道作为一个交易员应该做什么。货币对和方向已经给出。只要点击警报按钮,就可以切换到该货币对或打开一个新的图表,以便进一步分析。警报级别可以通过用户输入来改变,可以选择3个敏感度级别。 尽
Neo Wave PRO
Nikolay Raykov
5 (1)
Price & Time Market Structure Indicator A professional market structure tool that analyzes waves through both price and time — not price alone. Main Description NeoWave PRO is a professional market structure indicator for MetaTrader 4 designed for traders who want to move beyond traditional one-dimensional wave tools such as ZigZag, swing indicators, and basic high/low systems. Most wave indicators analyze only one thing: Price. But a real market wave is not only a price movement. A true wave de
Special offer : ALL TOOLS , just $35 each! New tools   will be   $30   for the   first week   or the   first 3 purchases !  Trading Tools Channel on MQL5 : Join my MQL5 channel to update the latest news from me 多时间框架的体积订单块 指标是一个为寻求通过识别重要市场参与者积累订单的关键价格区域来深入洞察市场行为的交易者设计的强大工具。这些区域称为体积订单块,可以作为潜在的支撑和阻力区,为明智的交易决策提供重要的优势。 查看MT5版本:  Volumetric Order Blocks MT5 Multi Timeframe See more products at:   https://www.mql5.com/en/users/ndhsfy/seller 核心功能 1. 自动检测体积订单块 该指标标注了积累买入或卖出订单的重要价格水平,提供两种不同类型: 看涨体积订单块
Atomic Analyst
Issam Kassas
5 (9)
本产品已针对 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线
PRO Renko System
Oleg Rodin
5 (31)
PRO Renko Arrow Based System for trading renko charts.  准确的信号交易任何外汇工具. 另外,我将免费提供系统的附加模块! PRO Renko系统是RENKO图表上高度准确的交易系统。该系统是通用的。 该交易系统可应用于各种交易工具。 该系统有效地中和了所谓的市场噪音,打开了获得准确反转信号的通道。 该指标易于使用,只有一个参数负责产生信号。 您可以很容易地使算法适应您感兴趣的交易工具和renko酒吧的大小。 我很乐意通过提供任何咨询支持来帮助所有客户有效地使用该指标。 祝您交易成功!购买后,立即写信给我! 我将与您分享我的建议和我的renko发电机。 另外,我将免费提供系统的附加模块!
AIO Concept SMC MT4
Robby Suhendrawan
Elevate Your Trading with the Ultimate Institutional Master System Discounted   Price   !!     Secure your lifetime access   now   before it switches to   subscription-only ! This all-in-one indicator displays the real-time market algorithm. Step into the world of institutional trading with the most comprehensive Smart Money Concepts (SMC) and ICT tool available on the market. Instead of cluttering your chart with multiple heavy indicators, we have engineered the core institutional trading metho
Artemis Gold M1 Scalper Artemis Gold M1 Scalper 是一款高级 MT4 指标,专为 XAUUSD 交易者打造,适合希望在 M1 时间周期上以更清晰、更结构化的方式进行黄金剥头皮交易的用户。 它不是普通的箭头信号指标。Artemis 将动态支撑与阻力、趋势确认、动量过滤、基于 ATR 的交易水平、信号质量评分、市场状态分析、交易时段强度、活跃交易保护以及清晰的仪表盘整合到一个专注的剥头皮交易框架中,专门围绕黄金快速波动的特性而设计。 为什么 Gold M1 需要不同的方法 黄金的波动速度和幅度通常比标准外汇货币对更快、更剧烈。在 M1 时间周期上,这种波动性很容易迅速变成噪音信号、滞后入场和低质量交易机会。许多剥头皮指标要么让图表充满箭头,要么只显示信号,却不解释信号背后的市场背景。 Artemis 的理念正好相反:先过滤噪音,再显示带有背景信息的结构化机会。 信号由趋势方向、回调行为、动态支撑与阻力、RSI 动量、ATR 波动率、更高时间周期确认、点差条件、交易时段强度、市场状态和信号质量评分共同支持。这为交易者提供了一个更清晰的框架来解读
------- Official launch price: 65$ for the first 10 copies only . After that, the price will increase to 95$ ------- Liquidity Scalper System   is a next-generation professional trading system that combines spectral market structure analysis, the dynamic   Liquidity Spectrum   liquidity heatmap, and an intelligent market imbalance assessment algorithm. The system continuously analyzes changes in price structure, identifies probable a
Up down v6T
Guner Koca
5 (2)
Thise indicator is up down v6  comes with tradingwiev pinescript. purchased people, after installed on terminal ,contact me on mql5  to get BONUS  TradingView pinescript. up-down indicator is no repaint and works all pairs and lower than weekly time frames charts. it is suitable also 1 m charts for all pairs. and hold long way to signal. dont gives too many signals. when red histogram cross trigger line that is up signal.and price probably will down when blue histogram cross trigger line that i
Scalping Lines System 是一款专为交易黄金 (XAUUSD) 而设计的短线交易系统,适用于 M1-H1 时间框架。 它整合了趋势、波动率和超买/超卖市场分析指标,并将其集成到一个振荡器中,用于识别短期信号。 信号线的主要内部参数已预先配置。 部分参数可供手动调整:“趋势波持续时间”,用于根据趋势移动平均线 (MA) 调整趋势方向上一系列信号的持续时间;以及“信号线平滑处理”,用于调整信号线的生成方式。 该指标在开盘价计算信号线时不会重绘。在其他价格下,信号箭头可能会闪烁。 信号在蜡烛图收盘后出现,并提供多种警报类型。 推荐使用的时间框架:M1-M5-M15-M30-H1。 该指标最初设计用于黄金交易,但也适用于交易波动性高、点差低的资产,例如比特币和加密货币、白银以及股票指数差价合约(如纳斯达克100指数等)。 对于某些其他交易品种(例如欧元/美元、英镑/美元),该指标可用于15分钟及以上的时间框架。 如何使用该指标进行交易。 对于“卖出”信号: 蓝色下降箭头位于顶部。 震荡指标顶部会出现一个蓝色箭头,箭头后的蓝线表示信号支撑持续时间。请跟随
KT Support and Resistance Levels
KEENBASE SOFTWARE SOLUTIONS
KT Auto Support Resistance Levels:适用于 MetaTrader 4/5 的多周期支撑阻力、智能区域与水平仪表盘 摆动高点、Pivot 枢轴点、订单块、前期高低点。每个交易者标记市场的方式都不太一样,最后承受代价的往往是图表本身。把太多方法堆在同一张图上,它就不再是一张清晰的地图,而会变成噪音。 KT Auto Support Resistance Levels 正是为了解决这个问题而设计。它会同时扫描月线、周线、日线以及当前周期,然后自动把真正重要的水平直接绘制到您的 MetaTrader 图表上。当图表开始变得拥挤时,只需点击一次,就可以把这些水平合并成干净的 Smart Zones。实时面板还会持续显示价格上方和下方最近的水平,让您不必在图表上来回寻找。 可以把它看作一位永远不会疲惫的图表分析师,始终帮您标记关键位置。 它能为您做什么 从多个经过验证的来源寻找并绘制水平:摆动点、Pivot 枢轴点、前期价格以及订单块中点,覆盖多个时间周期。 当您想要更简洁的图表时,可以把彼此接近的水平合并成清晰的 Smart Zones。 保持一个实时面板,显示
作者的更多信息
Reverse Elements - Formatted Description Reverse Elements Reverse Elements is a signal-based indicator designed to help identify potential market reversal points directly on the chart. Using a proprietary calculation method, the indicator displays buy and sell signals with arrows. It is built to support discretionary trading by making potential entry areas easier to recognize visually. This is not an Expert Advisor and does not place trades automatically. Main Features Buy and sell arrows displa
================================================================  DispTrade_en.mq4  User Manual ================================================================ OVERVIEW -------- Displays trade history and open positions visually on the MT4 chart using arrows and connecting lines. WHAT IT SHOWS ------------- - BUY Entry Arrow   : Entry point for BUY orders (blue) - SELL Entry Arrow  : Entry point for SELL orders (red) - Exit Arrow        : Close point for historical trades (goldenrod) - Dott
FREE
FREE for the First 100 Users ================================================================================   IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  ?  User Manual ================================================================================ Version : 1.00 Platform: MetaTrader 4 Signal  : IFVG Buy / IFVG Sell arrows on the main chart Zone    : Horizontal rectangle drawn at the confirmed IFVG zone -------------------------------------------------------------------------------- WHAT
FREE
FREE for the First 50 Users ================================================================   ShowKillZones v1.0   - Corrected NY AM end time from 11 to 10, and NY PM end time from 17 to 16 (adjusted to Kill Zone hours) [cite: 321, 326]   - Changed NY AM/PM labels to Kill Zone [cite: 321, 326] v1.0  -  User Manual [cite: 321] ================================================================ [Overview] This indicator displays ICT Kill Zones (session hours) on the chart as background zones an
FREE
First 50 Downloads Free      AutoLineSaver for 448 Save and restore your chart workspace automatically.  |  User Manual 1. Overview AutoLineSaver automatically saves every line you draw on the chart and restores them the next time you open it. No more redrawing your analysis from scratch. Drop AutoLineSaver onto your chart once, and your workspace is always preserved. What it saves: • Horizontal lines • Trendlines • Rays (extended trendlines) • Vertical lines • Rectangles • Fibonacci retra
FREE
================================================================   TradeInfoS_en  -  Trade Statistics Indicator for MT4   Copyright (C) 2014 fx-mt4ea.com ================================================================ OVERVIEW -------- Displays trade history statistics and market info in a separate indicator window. Shows results for All-time, This Month, and This Week in three columns. DISPLAY LAYOUT -------------- [ S ]  T:xx/W:xx/L:xx/R:xx%/PL:xx    <- All-time stats [ M ]  T:xx/W:xx/L:xx
FREE
## 1. Overview Scan up to 64 symbols $FFFD~ 7 timeframes = 448 combinations simultaneously. --- ## 2. All-Currency Monitoring Series Tools that monitor all currency pairs at once become an incredibly powerful weapon once mastered ? a trading tool for life. The key is to match the right tool to your trading strategy. Here are the hottest tools available right now: - IFVG All-Currency Scanner   The most effective tool for catching ICT fake-out moves.   https://www.gogojungle.co.jp/tools/
FREE
RSI Border Search scans up to 64 symbols across 7 timeframes (448 combinations) in real time, detecting when RSI reaches overbought or oversold levels on confirmed bars. KEY FEATURES - Multi-Symbol Scanner: Monitor up to 64 symbols x 7 timeframes = 448 cells simultaneously. - RSI Boundary Detection: Detects when RSI crosses above or below your specified boundary level on confirmed (closed) bars. - No Repaint: Only confirmed bars are evaluated. The forming bar is never used, so signals
FREE
MagicalTouch for MT4 Draw a line. Wait for the alert. MagicalTouch monitors lines you draw on MT4 and fires an alert the instant price touches them. What it does Horizontal lines: Alerts when price hits the specified level. Vertical lines: Alerts when a candle reaches the specified time. Trendlines: Alerts on touch (a unique feature MT4 cannot do natively). Alert Types: Supports Popup, Sound, Email, and Mobile Push Notifications. Quick Start (3 Steps) Apply: Drag MagicalTouch onto any chart. Dr
MA Cross 448 Scanner Scan 64 pairs x 7 timeframes for MA crossovers — all from a single chart.  |  User Manual ------------------------------------------------------------------------ 1. Overview ------------------------------------------------------------------------ MA Cross 448 Scanner is a MetaTrader 4 indicator that monitors moving average crossovers across 64 currency pairs and 7 timeframes simultaneously, displaying all results in a single panel. Drop it onto any chart and it instantly
======================================= 50% OFF for the First 50 Users ======================================= ## 1. Overview  ?  ICT IFVG All-Currency Scanner Detects IFVG (Inverse Fair Value Gap) signals across all currency pairs simultaneously. An IFVG occurs when a candle body fully breaks through a prior Fair Value Gap in the OPPOSITE direction ? a key ICT concept indicating a potential institutional reversal.   BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL si
HigherTF Background Candle draws higher timeframe candlesticks directly on your chart background, giving you instant multi-timeframe context without switching charts. KEY FEATURES - Background HTF Candles: Renders Open/High/Low/Close of any higher timeframe as colored rectangles behind your price action. - Instant TF Switching: Press keys 1-9 to switch between M1, M5, M15, M30, H1, H4, D1, W1, MN1. Press 0 to hide. - Auto-Promotion: If the selected TF is equal to or lower than the cha
Reverse_Elements_AllSearch Reverse_Elements signals multi-symbol / multi-timeframe scanner for MetaTrader 4 ---------------------------------------------------------------------- Important Requirement ---------------------------------------------------------------------- Reverse_Elements_AllSearch requires the main Reverse_Elements indicator. Reverse_Elements_AllSearch is not a standalone signal-generation indicator. It is a scanner that reads signals from the main Reverse_Elements indicator an
筛选:
无评论
回复评论