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용 정확한 캔들 종료 시간 카운트다운 Candle Countdown은 차트 위에 현재 캔들이 종료될 때까지 남은 시간 을 표시하는 간단하고 정확한 도구입니다. 진입 시점이 캔들 마감에 의존하는 경우, 몇 초의 차이도 중요합니다. 이 인디케이터는 정확한 시간을 보여주어 서두르거나 추측하지 않고 결정을 내릴 수 있도록 도와줍니다. 캔들 종료 시간을 정확하게 제어하기 위한 인디케이터입니다. 표시 내용: 캔들 종료까지 남은 시간 현재 서버 시간 스프레드 Stop Level 타이머는 틱에 의존하지 않고 플랫폼의 내부 타이머를 통해 업데이트되므로, 시장 움직임이 적은 상황에서도 안정적으로 동작합니다. 이로 인해 낮은 변동성 구간에서도 부드럽고 안정적인 카운트다운을 제공합니다. 모든 정보는 배경 블록에 표시되어 어떤 차트 색상에서도 잘 보이며, 차트 분석을 방해하지 않습니다. 캔들 종료 시점이 가까워질수록 타이머 색상이 변경되어 빠르게 상황을 파악할 수
FREE
멀티 타임프레임 지원, 사용자 정의 시각적 신호 및 구성 가능한 알림 시스템을 갖춘 Average True Range(ATR) 지표. 프리랜서 프로그래밍 서비스, 업데이트 및 기타 TrueTL 제품은 제 MQL5 프로필 에서 확인하실 수 있습니다. 피드백과 리뷰는 매우 감사하게 받겠습니다! ATR이란 무엇인가요? J. Welles Wilder가 개발한 Average True Range(ATR)는 시장 변동성을 측정하는 기술 지표입니다. 지정된 기간 동안의 True Range 평균을 계산합니다. True Range는 다음 중 가장 큰 값입니다: 현재 고가에서 현재 저가까지의 거리, 이전 종가에서 현재 고가까지의 거리, 또는 이전 종가에서 현재 저가까지의 거리. 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
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
피봇 포인트 Fibo RSJ는 피보나치 비율을 사용하여 당일의 지지선과 저항선을 추적하는 지표입니다. 이 멋진 지표는 피보나치 비율을 사용하여 피벗 포인트를 통해 최대 7단계의 지지와 저항을 생성합니다. 가격이 작업의 가능한 진입/종료 지점을 인식할 수 있는 이 지원 및 저항의 각 수준을 어떻게 존중하는지 환상적입니다. 특징 최대 7단계 지원 및 7단계 저항 레벨의 색상을 개별적으로 설정 입력 피벗 유형 피벗 피보 RSJ1 = 피보 비율 1 계산 피벗 피보 RSJ2 = 피보 비율 2 계산 피벗 Fibo RSJ3 = Fibo 비율 3 계산 피벗 피보 클래식 = 클래식 피벗 계산 최소 피벗 수준 피벗 3 레벨 피벗 4 레벨 피벗 5 레벨 6단계 피벗 피벗 7 레벨 여전히 질문이 있는 경우 다이렉트 메시지로 저에게 연락하십시오: https://www.mql5.com/ko/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). 원하는대로 편차를 조정하세요 (높은 편차는 더 많은 패턴, 낮은 편차는 더 적은 패턴). 색상을 원하는 대로 사용자 정의하세요. 필요에 따라 ENTRY POINT, TP 및 SL에 대한 경고를 활성화하거나 비활성화하세요. 패턴 감지 시: 알고리즘은 D 지점에서 패턴을 감지합니다. 경고가 활성화되어 있으면 패턴 감지에 대한 알림을 보냅니다. 패턴이 무효화되면 "패턴 취소"라는 메시지가 포함된 경고가 트리거됩니다. 성공적인
FREE
Aurum Trend Scout
David Sanchez Clavero
Aurum Trend Scout — Aurum Trend Engine 무료 LITE 버전 Aurum Trend Scout는 Aurum Trend Engine 전문가 자문의 무료 버전 입니다. H1 타임프레임에서 XAUUSD(금)을 Parabolic SAR + 볼린저 밴드 폭 비율 기반 추세추종 전략으로 거래합니다. 이 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 기반 손절 매수만 — 마틴게일 없음,
FREE
Binary Options Assistant (BOA) BURN Signals Indicator provides signals based on Ana Trader Binary Options Strategy. Indicators: MACD & Stochastic Stop missing trades, stop jumping from chart to chart looking for trade set-ups and get all the signals on 1 chart! U se any of the BOA Signals Indicator with the  Binary Options Assistant (BOA) Multi Currency Dashboard .   All BOA Signal Indicator settings are adjustable to give you more strategy combinations. The signals can be seen visually and
FREE
이 제품의 구매자들이 또한 구매함
Neuro Poseidon MT4
Daria Rezueva
4.8 (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
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity 는 시장 유동성이 집중되고 가격이 가장 강력하게 반응하는 숨겨진 구간을 포착하도록 설계된 트레이딩 지표입니다. 이러한 특수 유동성 구간은 강력한 지지 및 저항선 역할을 하며, 시장 반전 가능성이 가장 높은 지점을 명확하게 보여주는 지도가 되어 줍니다. SR Liquidity는 일반적인 지지 및 저항선을 단순히 그리는 대신, 실제 가격 움직임을 분석하여 매수 및 매도 압력이 집중되는 구간을 포착합니다. 이러한 구간은 실질적인 시장의 흐름을 주도하는 유동성 풀(liquidity pools)에 해당합니다. 이 지표는 해당 구간을 차트에 직접 시각화하여, 가격 반응이 실제로 나타나기 전에 이를 미리 예측할 수 있도록 돕습니다. 즉, 가격 추세가 전환될 가능성을 사전에 파악하게 해주는 것입니다. 결과적으로 이 지표는 가공되지 않은 가격 움직임(price action)을 시장의 핵심 가격대, 다시 말해 추세 전환점이 될 수 있는 지점들을 보여주는 명확하고 실용적인 로드맵
M1 Sniper
Oleg Rodin
5 (27)
M1 SNIPER 는 사용하기 쉬운 거래 지표 시스템입니다. M1 시간대에 맞춰 설계된 화살표 지표입니다. 이 지표는 M1 시간대 스캘핑을 위한 단독 시스템으로 사용할 수 있으며, 기존 거래 시스템의 일부로도 사용할 수 있습니다. 이 거래 시스템은 M1 시간대 거래용으로 특별히 설계되었지만, 다른 시간대에도 사용할 수 있습니다. 원래는 XAUUSD와 BTCUSD 거래를 위해 이 방법을 설계했지만, 다른 시장 거래에도 유용하다는 것을 알게 되었습니다. 이 지표의 신호는 추세 방향과 반대로 거래될 수 있습니다. 저는 지표의 신호를 활용하여 양방향으로 거래할 수 있도록 돕는 특별한 거래 기법을 알려드립니다. 이 방법은 특별한 동적 지지선과 저항선 가격 영역을 활용하는 것을 기반으로 합니다. 구매하시면 M1 SNIPER 화살표 지표를 바로 다운로드하실 수 있습니다. 또한, 아래 스크린샷에 표시된 Apollo Dynamic SR 지표는 M1 SNIPER 도구를 사용하는 모든 사용자에게 무료로
DayTrader PRO MT4
Davit Beridze
5 (1)
DayTrader PRO DayTrader PRO는 존 에러스(John Ehlers)의 Laguerre 필터와 강력한 자동 최적화 엔진을 결합한 고급 트레이딩 지표입니다. 고정된 파라미터를 사용하는 대신, 최근 시장 상황을 바탕으로 최적의 설정을 자동으로 검색하므로 지속적인 수동 조정 없이도 변화하는 시장 변동성에 대응할 수 있습니다. 이 지표는 명확한 매수(BUY) 및 매도(SELL) 신호를 생성하며, 현재 시장 변동성을 기준으로 계산된 적응형 손절매(Stop Loss) 및 익절(Take Profit) 레벨을 제공합니다. 내장된 추세, 효율성 지수(Efficiency Ratio), 변동성 및 캔들 필터 기능은 저품질의 진입 신호를 제거하여 신호의 정확도를 높여줍니다. 실시간 성능 대시보드에서는 현재 최적화된 설정값, 수익 요인(Profit Factor), 승률(Win Rate), 최대 낙폭(Drawdown) 및 기타 트레이딩 통계를 확인할 수 있습니다. 또한 DayTrader PR
Prop Firm Sniper
Mohamed Hassan
4.33 (6)
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
Gann Made Easy
Oleg Rodin
4.84 (171)
Gann Made Easy 는 mr.의 이론을 사용하여 최고의 거래 원칙을 기반으로 하는 전문적이고 사용하기 쉬운 Forex 거래 시스템입니다. W.D. 간. 이 표시기는 Stop Loss 및 Take Profit Levels를 포함하여 정확한 BUY 및 SELL 신호를 제공합니다. PUSH 알림을 사용하여 이동 중에도 거래할 수 있습니다. 구매 후 거래 방법 안내 및 유용한 추가 지표를 무료로 받으시려면 저에게 연락주세요! 아마도 Gann 거래 방법에 대해 이미 여러 번 들었을 것입니다. 일반적으로 Gann의 이론은 초보자 거래자뿐만 아니라 이미 거래 경험이 있는 사람들에게도 매우 복잡한 것입니다. Gann의 거래 방식은 이론적으로 적용하기 쉽지 않기 때문입니다. 나는 그 지식을 연마하고 Forex 지표에 최고의 원칙을 적용하기 위해 몇 년을 보냈습니다. 표시기는 적용하기가 매우 쉽습니다. 차트에 첨부하고 간단한 거래 권장 사항을 따르기만 하면 됩니다. 지표는 지속적으로 시장 분석
Zoryk Gold mt4
Reda El Koutbane
5 (1)
ZORYK — MetaTrader 4용 XAUUSD 전문 신호 및 트레이드 플래닝 시스템 이런 경험이 있을 것입니다. 골드를 분석하고 진입을 기다린 뒤 마침내 포지션을 열었지만 가격이 곧바로 반대 방향으로 움직입니다. 너무 일찍 청산하거나 Stop Loss를 옮기거나 몇 초 동안 망설입니다. 그 후 시장은 내가 없이도 처음 예상했던 목표까지 정확히 움직입니다. 문제는 항상 방향이 아니었습니다. 진짜 문제는 불확실성이었습니다. 정확한 진입 위치를 몰랐습니다. 어느 지점에서 원래의 트레이드 아이디어가 무효가 되는지 몰랐습니다. 가까운 수익을 확보해야 할지 더 큰 움직임을 기다려야 할지 판단하기 어려웠습니다. 현재 setup이 정말 강한지 아니면 단지 새로운 거래를 억지로 찾고 있는지도 확신하기 어려웠습니다. 골드는 매우 빠르게 움직입니다. 명확한 계획이 없다면 좋은 분석도 몇 초 만에 나쁜 결정으로 바뀔 수 있습니다. ZORYK는 이 문제를 해결하기 위해 개발되었습니다.
Dynamic Forex28 Navigator
Bernhard Schweigert
4.43 (7)
Dynamic Forex28 Navigator - 차세대 외환 거래 도구. 현재 49% 할인. Dynamic Forex28 Navigator는 오랫동안 인기 있는 지표의 진화형으로, 세 가지의 힘을 하나로 결합했습니다. 고급 통화 Strength28 지표(695개 리뷰) + 고급 통화 IMPULSE with ALERT(520개 리뷰) + CS28 콤보 신호(보너스). 지표에 대한 자세한 정보 https://www.mql5.com/en/blogs/post/758844 차세대 Strength 지표는 무엇을 제공합니까?  원래 지표에서 좋아했던 모든 것이 새로운 기능과 더 높은 정확도로 강화되었습니다. 주요 기능: 독점적인 통화 Strength 공식.  모든 시간대에 걸쳐 부드럽고 정확한 강도선. 추세와 정확한 진입을 식별하는 데 이상적입니다. 역동적인 시장 피보나치 수준(시장 피보나치).  이 지표에만 있는 고유한 기능. 가격 차트가 아닌 통화 강도에 피보나치가 적용됩니다.
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.81 (21)
현재 30% 할인! 이 대시보드는 여러 기호와 최대 9개의 타임프레임에서 작동하는 매우 강력한 소프트웨어입니다. 주요 지표(최상의 리뷰: 고급 공급 수요)를 기반으로 합니다.   Advanced Supply Demand 대시보드는 훌륭한 개요를 제공합니다. 다음과 같이 표시됩니다.  영역 강도 등급을 포함하여 필터링된 공급 및 수요 값, 영역에 대한/및 영역 내 Pips 거리, 중첩된 영역을 강조 표시하고 모든 (9) 시간 프레임에서 선택한 기호에 대해 4가지 종류의 경고를 제공합니다. 그것은 당신의 개인적인 필요에 맞게 고도로 구성 가능합니다! 당신의 혜택! 모든 트레이더에게 가장 중요한 질문: 시장에 진입하기에 가장 좋은 수준은 무엇입니까? 최고의 성공 기회와 위험/보상을 얻으려면 강력한 공급/수요 영역 내 또는 그 근처에서 거래를 시작하십시오. 손절매를 위한 최적의 장소는 어디입니까? 가장 안전하려면 강력한 수요/공급 구역 아래/위에 정류장을 두십시오.
Super Signal – Skyblade Edition 전문가용 노리페인트 / 노래그 트렌드 신호 시스템, 뛰어난 승률 제공 | MT4 / MT5용 1분, 5분, 15분과 같은 낮은 타임프레임에서 가장 좋은 성능을 보입니다. 핵심 기능: Super Signal – Skyblade Edition은 추세 매매를 위해 설계된 스마트 신호 시스템입니다. 이 시스템은 다중 필터 로직을 활용하여, 명확한 방향성과 실질적인 모멘텀이 수반된 고품질 추세만을 감지합니다. 이 시스템은 고점 또는 저점을 예측하지 않으며 , 다음 세 가지 조건이 모두 충족될 때만 신호를 발생시킵니다: 명확한 추세 방향 강화되는 모멘텀 건전한 변동성 구조 또한, 시장 세션 기반의 유동성 분석을 통해 신호의 신뢰성과 타이밍을 더욱 향상시킵니다. 신호 특성: 모든 화살표 신호는 100% 리페인트 없음 / 지연 없음 신호가 한 번 발생하면 고정되며, 깜빡이거나 사라지지 않음 차트 상의 시각적 화살표, 정보 패널, 팝업 알
Atomic Analyst
Issam Kassas
5 (11)
이 제품은 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 . 가격 움직임, 강도, 모멘텀, 다중 시간대 방향 및 고급 필터를 분석하여 트레이더가 노이즈를 줄이고 약한 세팅을 피하며 더 체계적인 거래 결정을 내릴 수 있도
A. A2SR이란 무엇입니까 ?   * 선행 기술 지표입니다(재도장 없음, 지연 없음). -- 안내 : https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- 및 https://www.mql5.com/en/users/yohana/blog .. MT5 version:  https://www.mql5.com/en/market/product/140111 A2SR에는 지원(수요) 및 저항(공급) 수준을 결정하는 특별한 기술이 있습니다. 우리가 인터넷에서 본 일반적인 방식과 달리 A2SR은 실제 SR 수준을 결정하는 독창적인 개념을 가지고 있습니다. 원래 기술은 인터넷에서 가져온 것이 아니며 인터넷에 게시된 적도 없습니다. A2SR은 거래 스타일에 따라 SR 수준을 자동으로 선택합니다. 시간 프레임을 변경해도 SR 레벨은 그대로 유지됩니다. 사용하는 시간 프레임에서 실제 SR을 얻지 못하기 때문입니다. A2SR은 거래를
ORB Seeker
Marcela Goncalves De Oliveira
한정 특가! 단돈 99달러! 구매 후 저에게 연락 주시면 보너스 ORB Seeker EA와 개인 최적화 설정 파일을 보내드립니다. 깔끔한 세션 브레이크아웃을 자신감 있게 활용하세요! ORB Seeker는 정확성, 단순성, 유연성 및 명확한 차트 구조를 원하는 트레이더를 위해 개발된 전문적인 시가 범위 돌파(ORB) 지표입니다. 이 프로그램은 모든 금융 상품에 대해 장전 거래 또는 사용자 지정 세션 범위를 자동으로 표시하고, 진입, 손절매, 목표 수익 및 선택적으로 50% 부분 목표 수익 수준을 포함한 명확한 돌파 신호를 제공합니다. 모든 계산은 실시간으로 차트에 직접 표시됩니다. 런던 개장, 뉴욕 세션, 아시아 세션 또는 사용자 지정 시장 시간대를 선택하여 거래하세요. ORB Seeker는 사용자가 선택한 세션 시간에 맞춰 작동하므로 시장 범위, 돌파 수준 및 거래 레벨을 정확하게 확인할 수 있습니다. 모든 구매 시 ORB Seeker EA가 무료 보너스로 제공됩니다. 이 EA는
BTMM State Engine Pro MT4
Garry James Goodchild
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 4. Asian session range, London and New York kill zones, level progression (L1/L2/L3), peak formation detection (PFH/PFL), entry signals, and a multi-pair scanner from one chart. Stop scanning charts one pair at a time. The State Engine tracks the BTMM daily cycle automatically — Asian box, room boundaries, level blocks, peak formations, and filtered entries — while the scanner dashboard shows level, peak status,
Advanced Supply Demand
Bernhard Schweigert
4.91 (302)
현재 30% 할인! 초보자나 전문 트레이더를 위한 최고의 솔루션! 이 보조지표는 우리가 다수의 독창적 기능과 새로운 공식을 통합한 독특하고 고품질이며 저렴한 거래 도구입니다. 이 업데이트를 통해 이중 시간대를 표시할 수 있습니다. 더 높은 TF를 표시할 수 있을 뿐만 아니라 차트 TF와 더 높은 TF 모두를 표시할 수 있습니다: 중첩 영역 표시. 모든 Supply Demand 트레이더들이 좋아할 것입니다. :) 중요한 정보 공개 Advanced Supply Demand의 잠재력을 극대화하려면 다음을 방문하십시오. https://www.mql5.com/ko/blogs/post/720245   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이전
Built-in multi-symbol scanner — traffic-light grid for up to 30 pairs across four timeframes. No separate scanner file required. BUY, SELL, WAIT cells with confluence score and recent structure event. Full alignment with AI Trade Idea — current chart cell reads live engine data so scanner, dashboard, and AI panel always show the same verdict, score, and reason. Per-cell explain popup — four-section breakdown of what is happening, how the score was built, what to look for, and what to watch out
IQ Gold Gann Levels
INTRAQUOTES
5 (4)
Presenting one-of-a-kind Gann Indicator for XAUUSD IQ Gold Gann Levels is a non-repainting, precision tool designed exclusively for XAUUSD intraday trading. It uses W.D. Gann’s square root method to plot real-time support and resistance levels, helping traders spot high-probability entries with confidence and clarity. William Delbert Gann (W.D. Gann) was an exceptional market analyst whose trading technique was based on a complex blend of mathematics, geometry, astrology, and ancient calculation
Currency Strength Exotics
Bernhard Schweigert
4.88 (33)
현재 20% 할인! 초보자 또는 전문가 트레이더를 위한 최고의 솔루션! 이 표시기는 Exotic Pairs Commodities, Indexes 또는 Futures와 같은 기호에 대한 통화 강도를 표시하는 데 특화되어 있습니다. 금, 은, 석유, DAX, US30, MXN, TRY, CNH 등의 진정한 통화 강도를 보여주기 위해 9번째 줄에 모든 기호를 추가할 수 있습니다. 이것은 독특하고 고품질이며 저렴한 거래 도구입니다. 우리는 많은 독점 기능과 새로운 공식을 통합했습니다. 새로운 추세 또는 스캘핑 기회의 정확한 트리거 포인트를 정확히 찾아낼 수 있기 때문에 거래가 어떻게 개선될지 상상해 보십시오. 사용 설명서: 여기를 클릭 https://www.mql5.com/en/blogs/post/708876 모든 시간대에 작동합니다. TREND를 빠르게 확인할 수 있습니다! 새로운 기본 알고리즘을 기반으로 설계되어 잠재적인 거래를 더욱 쉽게 식별하고 확인할 수 있습니다. 8개의
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO helps you read the intraday trend and plan a trade before you enter the market. It is built around three exclusive strategies for a sharper read of the market. The moment a signal appears, the indicator evaluates market direction and calculates the key levels, so you see the potential entry, the expected stop-loss and several profit-taking levels in advance. Detailed performance statistics show how different instruments and strategies performed in history and help you pick ass
Level Breakout Indicator is a technical analysis product that works from upper and lower boundaries, which can determine the direction of the trend. Works on candle 0 without redrawing or delays. In its work, it uses a system of different indicators, the parameters of which have already been configured and combined into a single parameter - “ Scale ”, which performs gradation of periods. The indicator is easy to use, does not require any calculations, using a single parameter you need to select
Scalper Vault
Oleg Rodin
5 (38)
Scalper Vault 는 성공적인 스캘핑에 필요한 모든 것을 제공하는 전문 스캘핑 시스템입니다. 이 표시기는 외환 및 바이너리 옵션 거래자가 사용할 수 있는 완전한 거래 시스템입니다. 권장 시간 프레임은 M5입니다. 시스템은 추세 방향으로 정확한 화살표 신호를 제공합니다. 또한 상단 및 하단 신호와 Gann 시장 수준을 제공합니다.  이 시스템은 사용하기가 매우 쉽습니다. 원하는 시장 지역의 화살표만 따라가면 됩니다. 엑시트는 가격이 적정 수준에 도달하거나 시장의 고점 또는 저점 신호가 나타날 때 수행됩니다.  표시기는 PUSH 알림을 포함한 모든 유형의 경고를 제공합니다. 인디케이터 구매 후 연락주세요. 내 개인 거래 권장 사항과 훌륭한 보너스 지표를 무료로 공유합니다! 나는 당신에게 행복하고 유익한 거래를 기원합니다!
Color Trend FX
Alexey Minkov
4.5 (4)
Color Trend FX shows the current trend direction and marks entry points, trailing levels and possible exit points right on the chart. The indicator is built for traders who want to see where to open, get hints on when to close, and check how it performed on history. It can work as a standalone tool, as part of your own system, or as a base for your Expert Advisors. The indicator plots signals as colored dots that follow the trend and also act as trailing levels for open positions. When the move
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
트렌드 캐처 인디케이터 트렌드 캐처 인디케이터는 개발자가 자체 개발한 맞춤형 적응형 트렌드 분석 지표들을 조합하여 시장 가격 움직임을 분석합니다. 단기적인 노이즈를 제거하고 근본적인 모멘텀 강도, 변동성 확대, 가격 구조 움직임에 집중하여 진정한 시장 방향을 파악합니다. 또한 이동 평균, RSI, 변동성 필터와 같은 맞춤형 지표들을 활용하여 가격을 평활화하고 트렌드를 필터링합니다. 실제 운영 모니터링 및 기타 제품은 다음 링크에서 확인하실 수 있습니다: https://www.mql5.com/en/users/mechanic/seller 텔레그램에서는 EA나 설정 파일을 판매하지 않습니다. 사기이니 주의하세요. 모든 설정 파일은 블로그에서 무료로 제공됩니다. 중요! 구매 후 즉시 연락 주시면 사용 방법 및 보너스를 드립니다!
GOLD Impulse with Alert
Bernhard Schweigert
4.67 (12)
이 지표는 Advanced Currency IMPULSE with ALERT  +   Currency Strength Exotics  의 2가지 제품의 슈퍼 조합입니다. 그것은 모든 시간 프레임에 대해 작동하며 8개의 주요 통화와 하나의 기호에 대한 강약의 충동을 그래픽으로 보여줍니다! 이 표시기는 금, 이국적인 쌍, 상품, 지수 또는 선물과 같은 기호에 대한 통화 강도 가속을 표시하는 데 특화되어 있습니다. 금, 은, 오일, DAX, US30, MXN, TRY, CNH 등의 진정한 통화 강도 가속(충동 또는 속도)을 표시하기 위해 9번째 줄에 모든 기호를 추가할 수 있습니다. 새로운 기본 알고리즘을 기반으로 구축되어 잠재적인 거래를 훨씬 더 쉽게 식별하고 확인할 수 있습니다. 이는 통화의 강세 또는 약세가 가속되는지 여부를 그래픽으로 표시하고 가속 속도를 측정하기 때문입니다. 자동차의 속도계처럼 생각하면 됩니다. 가속화할 때 Forex 시장에서 동일한 일이 분명히 더 빠르
Adopt market correlation and indicator resonance Here are some trading recommendations based on the current market conditions: (1) Note: It doesn't mean you have a perfect deal, but rather helps you avoid bad trades (2) Why traditional indicators are prone to distortion. For example, the 10-day moving average is calculated by calculating the average price of the top 10 candlesticks. Result: I prove I want to rise, and the signal is easily distorted. This indicator adopts a self-proof + corrob
Day Trader Master
Oleg Rodin
5 (15)
Day Trader Master 는 데이 트레이더를 위한 완벽한 거래 시스템입니다. 시스템은 두 개의 지표로 구성됩니다. 하나의 지표는 매수 및 매도를 위한 화살표 신호입니다. 얻을 수 있는 화살표 표시기입니다. 2차 지표를 무료로 드립니다. 두 번째 지표는 이러한 화살표와 함께 사용하도록 특별히 설계된 추세 지표입니다. 표시기는 반복하지 않고 늦지 않습니다! 이 시스템을 사용하는 것은 매우 간단합니다. 2색 선으로 표시되는 현재 추세 방향의 화살표 신호를 따라가기만 하면 됩니다. 파란색은 구매 추세입니다. 빨간색은 판매 추세입니다. 파란색 화살표는 매수 신호입니다. 빨간색 화살표는 매도 신호입니다. 추세선의 색상과 일치하려면 화살표의 색상과 신호의 방향이 필요합니다. 화살표 표시기는 주로 시간 간격 M5 및 M15에서 일중 거래를 위해 만들어졌습니다. 그러나 기술적으로 시스템은 다른 시간 간격으로 사용할 수 있습니다. 표시기에는 PUSH 메시지 기능이 있는 팝업 경고가 장착되어 있
ReTest Histogram ms
DMITRII GRIDASOV
MT4용 Crypto_Forex 지표 "재테스트 히스토그램", 리페인트 없음. - ReTest_Histogram 지표는 강력한 지지선/반지선(S/R) 재테스트 후 주요 추세 방향으로 진입 신호를 찾는 데 사용할 수 있습니다. - ReTest 히스토그램은 두 가지 색상으로 제공됩니다. 빨간색은 하락 추세, 녹색은 상승 추세입니다. - 동일한 색상의 히스토그램 열이 일정하게 연속적으로 나타나면 새로운 추세가 시작되었음을 의미합니다. - ReTest 신호는 히스토그램에서 반대 색상의 열 하나와 추세 색상의 다음 열 하나(그림 참조)입니다. - 지표에는 모바일 및 PC 알림 기능이 내장되어 있습니다. 지표 사용 방법: - 매수 신호의 경우: 일정하게 연속된 녹색 히스토그램(상승 추세) + 빨간색 열 하나(재테스트) + 녹색 열 하나(매수 포지션 개시). - 매도 신호: 안정적인 연속 빨간색 히스토그램(하락 추세) + 히스토그램의 녹색 열 1개(재테스트) + 빨간색 열 1개(공매도 포지션)
Mechanism Trend
Vitalii Zakharuk
The Mechanism Trend indicator is a hybrid indicator that shows the moments for entering the market with arrows. This indicator was created on the basis of the original indicators for searching for extreme points, the indicator is well suited for determining a reversal or a large sharp jerk to one side. When the trend changes, the Mechanism Trend indicator uses color signaling: green - when changing from a downtrend to an uptrend, and red - vice versa, to a downtrend. You can use the indicator
KURAMA GOLD SIGNAL PRO (MT4) — 7중 필터 · 자동 TP/SL · 품질 점수 · 시그널 기록 저장 | XAUUSD 완전 트레이딩 시스템 실시간 리페인트 없음. 시그널이 나타나는 순간 화살표, 진입, TP, SL이 그 자리에 고정되어 이후 절대 움직이지 않습니다. 여러분이 거래하는 것은 바로 이 실시간 시그널입니다. 그리고 v7.20에서는 실제로 발신된 모든 시그널이 자동 저장되어 재시작 후에도 정확히 복원됩니다. 구매자 전용 보너스 평생 라이선스를 구매하시면 AI Zone Radar($59 상당) + 완전 PDF 매뉴얼을 무료로 드립니다. 제품 가격에 더해 $59 상당의 보너스가 따라옵니다. 구매 후 MQL5로 메시지를 보내주세요. AI Zone Radar: https://www.mql5.com/en/market/product/175834 골드 트레이더 커뮤니티에서 실제로 사용되며 정확성과
Trend Lines PRO
Roman Podpora
5 (1)
트렌드 라인즈 프로       이 지표는 시장이 실제로 어떤 방향으로 전환되는지 파악하는 데 도움이 됩니다. 실제 추세 반전 지점과 주요 시장 참여자들이 다시 진입하는 지점을 보여줍니다. 보시다시피       BOS 라인       복잡한 설정이나 불필요한 노이즈 없이 더 높은 시간대의 추세 변화와 주요 레벨을 확인할 수 있습니다. 신호는 차트에 다시 그려지지 않고 캔들이 마감된 후에도 계속 표시됩니다. VERSION MT 5   -   RFI LEVELS PRO   표시기   와 결합할 때 최대 잠재력을 발휘합니다. 지표가 보여주는 내용: 실제 변화       추세(BOS 라인) 한 번 신호가 나타나면 그 신호는 계속 유효합니다! 이는 신호를 발생시킨 후 변경될 수 있는 리페인팅 방식의 지표와 중요한 차이점입니다. 리페인팅 방식의 지표는 잠재적으로 자금 손실로 이어질 수 있습니다. 이제 더욱 높은 확률과 정확도로 시장에 진입할 수 있습니다. 또한 화살표가 나타난 후 목표가(익절)
제작자의 제품 더 보기
================================================================  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
## 1. Overview PDSearch is a scanner that instantly shows you, across every symbol and every timeframe, whether price is currently trading at a premium or a discount $2014 on a single chart. Working out an ICT Premium/Discount bias normally means manually finding the swing high and low and drawing a Fibonacci retracement yourself. PDSearch automates this across every symbol and timeframe, so you can see the discount (buy-side) or premium (sell-side) bias at a glance, color-coded. DSearch  448
FREE
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
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 20 Downloads FREE ## 1. Overview $2014 MA Perfect Order All-Currency Scanner Detects "Perfect Order" moving average alignment across all currency pairs simultaneously. A Perfect Order occurs when 3-5 moving averages of increasing periods are stacked in a single, uninterrupted order $2014 proof that price is trending cleanly with no conflicting timeframes.   BUY  signal : Shorter-period MAs are all above longer-period MAs (fast-to-slow stack) -> strong uptrend   SELL signal : Shorte
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
FREE for the First 100 Users   IFVG Signals Indicator  (ICTIFVGmq4_en.mq4)  Platform: MetaTrader 4 Signal  : IFVG Buy / IFVG Sell arrows on the main chart Zone    : Horizontal rectangle drawn at the confirmed IFVG zone IFVG Sing  Guide is Here  -------------------------------------------------------------------------------- WHAT IS AN IFVG? -------------------------------------------------------------------------------- FVG  (Fair Value Gap)  : A 3-bar price gap where Bar[t+2] and Bar[t] do N
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
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
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. IFVG 448 Scanner Guide is Here    BUY  signal : Bear FVG is broken upward   → price likely to rise   SELL signal : Bull FVG is broken downward → price likely to
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
필터:
리뷰 없음
리뷰 답변