CandlestickFinderMaster

## What it does

BCPF is an MT4 on-chart indicator that scans price history for **18 active
candlestick patterns** and labels detected formations directly on the chart.
A compact checklist panel lets you enable or disable each bullish and bearish
pattern independently.

The 18 available patterns are:

- **Bullish:** Hammer, Inverse Hammer, Bullish Engulfing, Morning Star,
  3 White Soldiers, Dragonfly Doji, Bullish Marubozu, Bullish Harami,
  Piercing Line.
- **Bearish:** Hanging Man, Shooting Star, Bearish Engulfing, Evening Star,
  3 Black Crows, Gravestone Doji, Bearish Marubozu, Bearish Harami,
  Dark Cloud Cover.

A separate trend panel shows the current readings of the three trend methods
used by the indicator — MA alignment, ADX directional bias and adaptive
moving-average slope — together with their combined majority vote.

## A practical note on pattern selection

Although BCPF provides all 18 formations, there is no requirement to use all
of them at the same time. The checklist is there precisely because the useful
subset can vary with the instrument, timeframe and trading style.

As a purely informal example, after observing **several dozen XAUUSD
sessions**, the following eight patterns appeared particularly useful to the
author:

- Inverse Hammer
- Morning Star
- Dragonfly Doji
- Bullish Marubozu
- Hanging Man
- Shooting Star
- Evening Star
- Gravestone Doji

This is **not a trading recommendation, a preset claimed to be optimal, or a
universal rule**. It is only a loose practical observation from a limited
sample of sessions. Other instruments, timeframes and market regimes can
naturally favour a different selection.

## How it works

- **Mixed pattern geometry.** BCPF does not use one universal candle formula.
  Depending on the formation, detection uses a combination of ATR-relative
  body/wick thresholds, ratios relative to the candle's own High–Low range,
  and direct OHLC relationships between neighbouring candles. This allows the
  rules to scale across different symbols and timeframes without relying on
  fixed pip-sized candle definitions.

- **ATR-relative body classification.** `ATRPeriod` provides the volatility
  reference for small, large, star and doji body classifications, as well as
  the Marubozu and Doji wick tests.

- **Range-relative wick patterns.** Hammer, Inverse Hammer, Hanging Man and
  Shooting Star use wick and body proportions relative to the candle's own
  total range. The relevant thresholds are `WickMinRatio`,
  `WickMaxBodyRatio` and `WickMaxOppositeRatio`.

- **Trend-context filter.** With `UseTrendFilter = true`, reversal formations
  are checked against the price action that occurred **before** the pattern.
  BCPF uses two different context mechanisms depending on the type of
  formation.

- **Local context for single-candle reversals.** Hammer, Inverse Hammer,
  Hanging Man, Shooting Star, Dragonfly Doji and Gravestone Doji use a short
  local directional move measured over `SwingBars`. The net close-to-close
  movement must exceed `SwingATRFactor × ATR` to be classified as a clear
  local upswing or downswing.

  Hammer/Hanging Man and Inverse Hammer/Shooting Star share the same basic
  candle geometry, so the local move is also used to decide which member of
  each pair is more appropriate. When the local move is ambiguous, candle
  direction is used as a tie-breaker.

- **Broader context for multi-candle reversals.** Engulfing, Morning/Evening
  Star, 3 White Soldiers/Black Crows, Harami, Piercing Line and Dark Cloud
  Cover use the selected trend method across the bars immediately preceding
  the complete pattern.

  `TrendMethod` can be:

  - `0` — three-MA alignment,
  - `1` — ADX directional bias,
  - `2` — adaptive MA / KAMA slope,
  - `3` — majority vote requiring agreement from at least two of the three.

  The prior-context scan uses `PriorTrendBars`. A clear opposite prior trend
  rejects the formation. If the context is flat or ambiguous, the indicator
  deliberately remains permissive and allows the candle pattern itself to be
  shown.

- **Three-MA trend method.** Bullish trend requires Fast MA > Mid MA > Slow
  MA; bearish trend requires the reverse ordering.

- **ADX trend method.** Direction is taken from +DI versus -DI only when ADX
  reaches `ADX_Threshold`. Below that threshold the ADX method returns a flat
  reading.

- **Adaptive MA method.** BCPF computes a native Kaufman-style adaptive moving
  average and evaluates its slope over `AMA_Slope` bars. A small ATR-based
  noise filter prevents tiny fluctuations from being classified as trend.

- **Trend panel.** If `ShowTrendPanel` is enabled, four live readings are
  displayed: `MA3`, `ADX`, `AMA` and `VOTE`, each shown as `UP`, `DOWN` or
  `FLAT`. The panel also identifies which method is currently selected for
  the multi-candle trend filter.

- **Interactive checklist.** Each of the 9 bullish and 9 bearish formations
  can be toggled independently from the on-chart panel. Pattern choices are
  stored in MT4 terminal global variables and restored between sessions.

- **Stable chart labels.** Detected formations are labeled on their candle
  using the candle timestamp as part of the object identity, so labels remain
  attached to the correct candle as bar indexes shift with new data.

- **Confirmed or live detection.** With `ShowOnlyConfirmed = true`, BCPF scans
  only closed candles. If a valid formation is present, it is identified and
  labeled as soon as the indicator processes the newly closed candle — in
  normal MT4 operation, on the first tick/calculation of the new bar. There is
  therefore no additional confirmation delay beyond the candle close itself.

  When `ShowOnlyConfirmed` is disabled, the current forming candle is evaluated
  as well; such a provisional pattern can therefore appear before close and
  disappear again if the candle's shape changes.

- **Alerts and push notifications.** `ShowAlerts` and `SendPushNotif` can
  announce a pattern on the currently monitored candle. Each pattern is
  de-duplicated by candle timestamp so the same formation is not repeatedly
  announced on every tick.

## What you can configure

| Group | Parameters |
|---|---|
| Shape thresholds | `ATRPeriod`, `SmallBodyFactor`, `LargeBodyFactor`, `StarBodyFactor`, `DojiBodyFactor`, `MarubozuWickFactor`, `WickMinRatio`, `WickMaxBodyRatio`, `WickMaxOppositeRatio`, `SoldierCrowWickFactor` |
| Detection behaviour | `ShowOnlyConfirmed`, `MaxBarsBack` |
| Notifications | `ShowAlerts`, `SendPushNotif` |
| Visuals | `BullishColor`, `BearishColor`, `LabelFontSize`, `LabelOffsetPips`, `PanelX`, `PanelY` |
| Trend filter | `UseTrendFilter`, `ShowTrendPanel`, `TrendMethod`, `PriorTrendBars`, `SwingBars`, `SwingATRFactor` |
| Moving averages | `MA_Fast`, `MA_Mid`, `MA_Slow`, `MA_Type`, `MA_Price` |
| ADX | `ADX_Period`, `ADX_Threshold` |
| Adaptive MA (KAMA) | `AMA_Period`, `AMA_FastEMA`, `AMA_SlowEMA`, `AMA_Slope` |

## Default settings

- `ATRPeriod = 14`
- Body factors:
  - `SmallBodyFactor = 0.30`
  - `LargeBodyFactor = 0.70`
  - `StarBodyFactor = 0.30`
  - `DojiBodyFactor = 0.10`
- `MarubozuWickFactor = 0.10`
- Wick/range thresholds:
  - `WickMinRatio = 0.55`
  - `WickMaxBodyRatio = 0.30`
  - `WickMaxOppositeRatio = 0.15`
  - `SoldierCrowWickFactor = 0.30`
- `ShowOnlyConfirmed = true`
- `ShowAlerts = false`
- `SendPushNotif = false`
- Bullish color: **Lime**
- Bearish color: **Red**
- `LabelFontSize = 8`
- `LabelOffsetPips = 5`
- `MaxBarsBack = 500`
- Panel position: `X = 10`, `Y = 20`
- `UseTrendFilter = true`
- `ShowTrendPanel = true`
- `TrendMethod = 3` — majority vote (2 of 3)
- `PriorTrendBars = 30`
- `SwingBars = 8`
- `SwingATRFactor = 0.5`
- Moving averages:
  - Fast = **20**
  - Mid = **50**
  - Slow = **200**
  - type = **EMA**
  - applied price = **Close**
- ADX:
  - period = **14**
  - threshold = **20.0**
- Adaptive MA / KAMA:
  - efficiency-ratio period = **10**
  - fast EMA = **2**
  - slow EMA = **30**
  - slope lookback = **3**

## Interpretation

BCPF is a **pattern-identification and context tool**, not a standalone trading
system.

A candlestick formation is a description of recent price geometry, not a
guarantee of what price will do next. The optional context filters are intended
to reduce obvious mismatches between a reversal pattern and the price action
that preceded it, but they do not turn a candlestick pattern into a certainty.

The checklist is therefore intentionally flexible: the user can decide which
formations are useful for a particular market and ignore the rest.

추천 제품
Better Moving Average
Vincent Jose Proenca
STRUCTURAL TREND LINES - MT4 Indicator Simple indicator that automatically draws trend lines based on market structure. Features: - 3 degrees of structure detection (short, medium, long term) - Configurable swing strength for each degree - Single color per degree for clean visualization - Adjustable number of lines per degree - Customizable colors and line widths How it works: The indicator identifies swing highs and lows based on the strength parameter, then connects these points to create t
FREE
UPD1 Fibo Levels
Vitaliy Kuznetsov
5 (3)
표시기는 지정된 수의 양초를 분석하고 고가를 기준으로 피보나치 수준을 표시합니다. 레벨이 재정렬되기 때문에 범위의 오른쪽에 관심이 있습니다. 가격은 레벨을 자화하고 터치에 반응합니다. 이 도구를 사용하여 수정 후 추세 진입점을 찾습니다. 왼쪽에서 레벨이 완벽하게 상승한 것을 보면 극한 지점에서 움직임의 끝을 발견했다고 가정할 수 있습니다. 모든 선은 버퍼 또는 개체를 통해 그려집니다(선택 사항). 입력 매개변수. Bars Count - 계산 범위. Visual Button - 버튼 표시(활성화/비활성화). Corner - 버튼 앵커 각도. X indent - 픽셀의 수평 패딩. Y indent - 픽셀의 수직 패딩. Label Visual - 디스플레이 레벨 레이블. Label Font Size   - 글꼴 크기. Label Shift Bars   - 비문의 들여쓰기(촛불의 수). Label Tooltip   - 레벨 위의 커서 아래에 텍스트 표시. Draw Lines  
FREE
Doji Bar Finder Indicator
Ahmad Ar Abedalaziz Alazaizeh
This automated DOJI BAR FINDER INDICATOR can be utilized to manage trades and identify potential areas of support and resistance for both buying and selling. It is designed to identify zones for Sell/Buy trades and can be effectively used in conjunction with other indicators, such as order block indicators, and more. Currently designed for MT4, it will later be adapted to function on MT5. We also offer the opportunity to customize the robot according to your trading strategy.
FREE
SRP (Strong Retracement/Reversal Points) is a powerful and unique support and resistance indicator. It displays the closest important levels which we expect the price retracement/reversal! If all level are broken from one side, it recalculates and draws new support and resistance levels, so the levels might be valid for several days depending on the market! Key Features You can use it in all time-frames smaller than daily! Displays closest significant support and resistance levels Update the le
FREE
DR IDR for all sessions
Chi Chun Ho
4.93 (15)
Updates 9/12/2023 - If you are looking for the Spock EA, I don't sell it anymore. DM me for more info. 24/10/2023  -  Check out my other products. Starting to roll out some EAs & indicators based on this range. Currently there is no MT5 version. I am using MT4 myself. So I will spend my time mostly to develop more extensive stats for the Stats version and maybe even an EA. But I might  develop a MT5 version. All depends on the demand. Meaning, the more people request it, the bigger the chan
FREE
Индикатор  уровней поддержки и сопротивления отлично показывает на графике все силовые уровни от всех таймфреймов. Рекомендую торговать уровни старших таймфреймов. Индикатор на текущем таймфрейме обновляться как только на графике  появится новый сетап  The indicator of support and resistance levels perfectly shows all power levels from all timeframes on the chart. I recommend trading higher timeframe levels. The indicator on the current timeframe is updated as soon as a new setup appears on the
FREE
pivot points using by many traders and pivot levels most of the times are very helpfull . this indicator is a custom with internal parameters. it can show two times pivot (weekly and daily). you can choose periods total for each time showing pivots.( 1 week , 2 week ,...1day , 2day ,...) when use weekly and daily pivots , it can show you many support and resistance zones. if have proposal comment too me for upgrading indicator.
FREE
Support resistanses show
Meysam Ghasemi
1 (1)
.....................................hi....................... ................for showing high s and low s and support and resistanses .....................we have a lot of ways............................... it can be helpful for finding trends , higher highs , higher lows , lower highs , lower lows .......................today i write on of thems.......................... ........................you can enter the number of last support and resistanses .........................and it will dra
FREE
Awesome Pivot Indicator
Komang Putra Riswanjaya
The Pivot Indicator is a vital tool for technical analysis used by traders in the financial markets. Designed to assist in identifying potential reversal points or trend changes, this indicator provides valuable insights into key levels in the market. Key features of the Pivot Indicator include: Automatic Calculations: The Pivot Indicator automatically calculates Pivot Point, Support, and Resistance levels based on the previous period's high, low, and close prices. This eliminates the complexity
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
.................................if you need pivot point s levels............................... ............................this is a daily pivot point level creator........................... ...it is for daily pivots and show levels at times period H4 , H1 , M30 , M15 ,M 5... .................................also shows levels for 3 last days.............................. ................can use it with other indicators and see important levels...............
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
Ava Ffx Signal
Nirundorn Promphao
The principle of this indicator is very simple: detecting the candlestick pattern in H1 timeframe, then monitoring the return point of graph by using the pullback of High-Low of H1 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 H1: the indicator will detect the reversal, pullback, price action on this timeframe (for exam
FREE
MQL5 블로그: https://www.mql5.com/en/blogs/post/772494 MT4 버전: https://www.mql5.com/en/market/product/185408 MT5 버전: https://www.mql5.com/en/market/product/185407 RSI 히트맵 [tambangEA]은 상대강도지수(RSI) 신호선, 확정된 교차 로직, 동적 지지/저항 수준, 실시간 시장 정보, 빠른 멀티 심볼 차트 탐색 기능을 결합한 전문 모멘텀 및 시장 구조 지표입니다. 이 지표는 트레이더가 모멘텀 방향을 이해하고, 중요한 반응 수준을 파악하고, 변동성과 거래 비용을 모니터링하고, 차트를 수동으로 다시 열지 않고도 선택한 심볼 간에 빠르게 전환할 수 있도록 설계되었습니다. 외환, 금, 지수, 상품 및 MetaTrader에서 지원하는 기타 금융 상품에 적합합니다. 주요 기능 단순이동평균(SMA) 기반 시그널 라인을 제공하는 RSI 오실레이터 확실한 RSI
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
LineBreakMT4
Nattadecha Tangpakinwat
Key Features: Type of Indicator: Line Break Chart Indicator Usage: Identifying trend reversals and potential market turning points. Input Parameters: The primary input parameter is 'Lines_Break,' which represents the number of lines the price needs to move to create a new line in the opposite direction. How it works: The indicator draws green and red histogram bars to represent the line break chart. Green bars indicate an upward trend, and red bars indicate a downward trend. The indicator calcul
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
Comfort zone signal
Mariusz Piotr Rodacki
The " Comfort Zone Signal " indicator identifies a daily zone that, when broken, has a high probability of the market continuing the established trend . Upon signal, the indicator calculates stop loss and take profit, which can be set by you. You can also set the trend. If the price is above the MA, it looks only for long positions, if below, it looks only for short positions. You can choose to ignore the moving average and display all signals. Additionally, you have the risk percentage displ
FREE
Necessary for traders: tools and indicators Waves automatically calculate indicators, channel trend trading Perfect trend-wave automatic calculation channel calculation , MT4 Perfect trend-wave automatic calculation channel calculation , MT5 Local Trading copying Easy And Fast Copy , MT4 Easy And Fast Copy , MT5 Local Trading copying For DEMO Easy And Fast Copy , MT4 DEMO Easy And Fast Copy , MT5 DEMO The homeopathic indicator is also called the CCI indicator. The CCI indicator was proposed
FREE
Peak Trough Analysis is the great tool to detect peaks and troughs in your chart. Peak Trough Analysis tool can use three different peaks and troughs detection algorithm. The three algorithm include the orignal Fractals Indicator by Bill Williams, the Modified Fractals indicator and ZigZag indicator. You can use this peak and trough analysis tool to detect the price pattern made up from Equilibrium Fractal-Wave process. For further usage, there are good guide line on how to use this peak trough
FREE
MQLTA Bollinger Bands Breakout Alert
MQL4 Trading Automation
3.75 (4)
Bollinger Bands Breakout Alert is a simple indicator that can notify you when the price breaks out of the Bollinger Bands. You just need to set the parameters of the Bollinger Bands and how you want to be notified. Parameters: Indicator Name - is used for reference to know where the notifications are from Bands Period - is the period to use to calculate the Bollinger Bands Bands Shift - is the shift to use to calculate the Bollinger Bands Bands Deviation - is the deviation to use to calculate t
FREE
This is just a simple indicator that show Alert when the Current candle Close Above the Trendline. Previous candle do not affect the Alert.  The indicator is tied to the Trendline so if the Trendline is accidentally deleted, the Alert will not work. The indicator will draw another Trendline if the current Trendline is deleted.  Removing the indicator will removed the Trendline. There are 4 type of Alert to set: Popup Alert, Signal Alert, Push Notification, Comment.
FREE
FusionAlert StochRSI Master is an indicator available for MT4/MT5 platforms, it is a combination of RSI & Stochastic indicator which provide "alerts" when the market is inside "overbought and oversold" regions combined for both indicators, results in more precise and accurate signals to be used as a wonderful tool, in the form of "buy or sell" signals. This indicator comes with many customization options mentioned in the parameter section below, user can customise these parameters as needful. Jo
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
Automatic Fibonacci Pivots
Martin Alejandro Bamonte
Now free. The key Fibonacci pivot levels, drawn for you automatically every day, on any timeframe. Automatic Fibonacci Pivots calculates the daily support and resistance from the Fibonacci sequence and plots them clean on your chart: the daily pivot, S1/S2/S3 below and R1/R2/R3 above. These are the price zones where the market tends to react, bounce or break, and now you see them without drawing a single line. What it does: - Daily Fibonacci pivot levels (pivot, S1/S2/S3, R1/R2/R3), updated
FREE
Double Price Channel   설정에 지정된 특정 수의 바에 대한 가격 채널 표시기. 표시선은 동적 지원 또는 저항 수준을 나타냅니다. 상한선은 특정 기간 동안의 최대 가격이고 하한선은 최소값입니다. 종가를 기반으로 하는 이동 평균과 달리 지표는 작은 변동으로 인해 "산만"하지 않습니다. 경계가 변경되는 경우에만 다시 계산됩니다. 후자가 발생하면 새로운 추세의 접근 방식에 대해 진지하게 생각할 가치가 있습니다. 기간이 다른 두 개의 지표를 한 차트에 한 번에 사용하는 전략이 있습니다. 이러한 경우 기간이 더 짧은 표시기는 두 번째 표시기 내부에 위치합니다. 표시기 설정 설명: Width_Bars - 표시 기간 높이 - 높이(포인트) Double Price Channel   설정에 지정된 특정 수의 바에 대한 가격 채널 표시기. 표시선은 동적 지원 또는 저항 수준을 나타냅니다. 상한선은 특정 기간 동안의 최대 가격이고 하한선은 최소값입니다. 종가를 기반으로 하는 이동 평균과
FREE
StochSignal
Wartono
5 (4)
It works based on the Stochastic Indicator algorithm. Very useful for trading with high-low or OverSold/Overbought swing strategies. StochSignal will show a buy arrow if the two lines have crossed in the OverSold area and sell arrows if the two lines have crossed in the Overbought area. You can put the Stochastic Indicator on the chart with the same parameters as this StochSignal Indicator to understand more clearly how it works. This indicator is equipped with the following parameters: Inputs d
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
WH DrawFib Pro MT4
Wissam Hussein
5 (7)
차트에 수동으로 피보나치 레벨을 그리는 데 지쳤습니까? 거래에서 주요 지지선과 저항선을 식별할 수 있는 편리하고 효율적인 방법을 찾고 계십니까? 더 이상 보지 마세요!   자동   피보나치   수준   을   수행하는 최고의 MetaTrader 4 지표인 DrawFib Pro를 소개합니다.       차트에 그림을 그리고 이러한 수준이 위반되면 적시에 경고를 제공합니다. DrawFib Pro를 사용하면 거래 전략을 강화하고 시간을 절약하며 정보에 입각한 결정을 내릴 수 있습니다. 내 피보나치 기반 지표:   WH Advanced Gartley Pattern MT4   ||  WH Price Wave Pattern MT4 주요 특징들: 자동화       피보나치 그리기. 사용자 정의 가능       매개변수  . 정확한    그리고    믿을 수 있는. 실시간       경고. 사용자   친화적       인터페이스. DrawFib Pro는 효율적이고 신뢰할 수 있으며 사용자 친화적인
FREE
The London Breakout
Elvis Wangai Muriithi
5 (1)
The London breakout is an indicator that is designed to give London moves signals and performance. London session is such a very volatile trading hours and anticipating a breakout from one of the slowest trading sessions (Asian session) can result to potential trading profits. London breakout is a very common trading strategy among retail traders. This indicator will track previous London breakouts, calculate their trade outcome based on an input TP and SL factor and display the results on a sim
FREE
이 제품의 구매자들이 또한 구매함
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 지표에 최고의 원칙을 적용하기 위해 몇 년을 보냈습니다. 표시기는 적용하기가 매우 쉽습니다. 차트에 첨부하고 간단한 거래 권장 사항을 따르기만 하면 됩니다. 지표는 지속적으로 시장 분석
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
M1 Sniper
Oleg Rodin
5 (26)
M1 SNIPER 는 사용하기 쉬운 거래 지표 시스템입니다. M1 시간대에 맞춰 설계된 화살표 지표입니다. 이 지표는 M1 시간대 스캘핑을 위한 단독 시스템으로 사용할 수 있으며, 기존 거래 시스템의 일부로도 사용할 수 있습니다. 이 거래 시스템은 M1 시간대 거래용으로 특별히 설계되었지만, 다른 시간대에도 사용할 수 있습니다. 원래는 XAUUSD와 BTCUSD 거래를 위해 이 방법을 설계했지만, 다른 시장 거래에도 유용하다는 것을 알게 되었습니다. 이 지표의 신호는 추세 방향과 반대로 거래될 수 있습니다. 저는 지표의 신호를 활용하여 양방향으로 거래할 수 있도록 돕는 특별한 거래 기법을 알려드립니다. 이 방법은 특별한 동적 지지선과 저항선 가격 영역을 활용하는 것을 기반으로 합니다. 구매하시면 M1 SNIPER 화살표 지표를 바로 다운로드하실 수 있습니다. 또한, 아래 스크린샷에 표시된 Apollo Dynamic SR 지표는 M1 SNIPER 도구를 사용하는 모든 사용자에게 무료로
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
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,
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
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 골드 트레이더 커뮤니티에서 실제로 사용되며 정확성과
Scalper Inside PRO
Alexey Minkov
4.74 (68)
Scalper Inside PRO helps you read the intraday trend and plan your trade before you enter. It uses exclusive built-in algorithms to evaluate market direction and calculate key target levels the moment a signal appears, so you always see the potential entry, stop-loss and profit targets ahead of time. The indicator also shows detailed performance statistics on historical data, so you can see how different instruments and strategies behaved and choose what fits current market conditions. You can e
Supply and Demand Dashboard PRO
Bernhard Schweigert
4.81 (21)
현재 30% 할인! 이 대시보드는 여러 기호와 최대 9개의 타임프레임에서 작동하는 매우 강력한 소프트웨어입니다. 주요 지표(최상의 리뷰: 고급 공급 수요)를 기반으로 합니다.   Advanced Supply Demand 대시보드는 훌륭한 개요를 제공합니다. 다음과 같이 표시됩니다.  영역 강도 등급을 포함하여 필터링된 공급 및 수요 값, 영역에 대한/및 영역 내 Pips 거리, 중첩된 영역을 강조 표시하고 모든 (9) 시간 프레임에서 선택한 기호에 대해 4가지 종류의 경고를 제공합니다. 그것은 당신의 개인적인 필요에 맞게 고도로 구성 가능합니다! 당신의 혜택! 모든 트레이더에게 가장 중요한 질문: 시장에 진입하기에 가장 좋은 수준은 무엇입니까? 최고의 성공 기회와 위험/보상을 얻으려면 강력한 공급/수요 영역 내 또는 그 근처에서 거래를 시작하십시오. 손절매를 위한 최적의 장소는 어디입니까? 가장 안전하려면 강력한 수요/공급 구역 아래/위에 정류장을 두십시오.
SR Liquidity
Oleg Rodin
5 (1)
SR Liquidity 는 시장 유동성이 집중되고 가격이 가장 강력하게 반응하는 숨겨진 구간을 포착하도록 설계된 트레이딩 지표입니다. 이러한 특수 유동성 구간은 강력한 지지 및 저항선 역할을 하며, 시장 반전 가능성이 가장 높은 지점을 명확하게 보여주는 지도가 되어 줍니다. SR Liquidity는 일반적인 지지 및 저항선을 단순히 그리는 대신, 실제 가격 움직임을 분석하여 매수 및 매도 압력이 집중되는 구간을 포착합니다. 이러한 구간은 실질적인 시장의 흐름을 주도하는 유동성 풀(liquidity pools)에 해당합니다. 이 지표는 해당 구간을 차트에 직접 시각화하여, 가격 반응이 실제로 나타나기 전에 이를 미리 예측할 수 있도록 돕습니다. 즉, 가격 추세가 전환될 가능성을 사전에 파악하게 해주는 것입니다. 결과적으로 이 지표는 가공되지 않은 가격 움직임(price action)을 시장의 핵심 가격대, 다시 말해 추세 전환점이 될 수 있는 지점들을 보여주는 명확하고 실용적인 로드맵
Quantum Breakout Indicator PRO
Bogdan Ion Puscasu
4.96 (26)
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한   Quantum Breakout PRO는   혁신적이고 역동적인 브레이크아웃 영역 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 MT5 버전 :   여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Raw 또는 Razo
Trend Catcher ind
Ramil Minniakhmetov
5 (11)
트렌드 캐처 인디케이터 트렌드 캐처 인디케이터는 개발자가 자체 개발한 맞춤형 적응형 트렌드 분석 지표들을 조합하여 시장 가격 움직임을 분석합니다. 단기적인 노이즈를 제거하고 근본적인 모멘텀 강도, 변동성 확대, 가격 구조 움직임에 집중하여 진정한 시장 방향을 파악합니다. 또한 이동 평균, RSI, 변동성 필터와 같은 맞춤형 지표들을 활용하여 가격을 평활화하고 트렌드를 필터링합니다. 실제 운영 모니터링 및 기타 제품은 다음 링크에서 확인하실 수 있습니다: https://www.mql5.com/en/users/mechanic/seller 텔레그램에서는 EA나 설정 파일을 판매하지 않습니다. 사기이니 주의하세요. 모든 설정 파일은 블로그에서 무료로 제공됩니다. 중요! 구매 후 즉시 연락 주시면 사용 방법 및 보너스를 드립니다!
Super Signal – Skyblade Edition 전문가용 노리페인트 / 노래그 트렌드 신호 시스템, 뛰어난 승률 제공 | MT4 / MT5용 1분, 5분, 15분과 같은 낮은 타임프레임에서 가장 좋은 성능을 보입니다. 핵심 기능: Super Signal – Skyblade Edition은 추세 매매를 위해 설계된 스마트 신호 시스템입니다. 이 시스템은 다중 필터 로직을 활용하여, 명확한 방향성과 실질적인 모멘텀이 수반된 고품질 추세만을 감지합니다. 이 시스템은 고점 또는 저점을 예측하지 않으며 , 다음 세 가지 조건이 모두 충족될 때만 신호를 발생시킵니다: 명확한 추세 방향 강화되는 모멘텀 건전한 변동성 구조 또한, 시장 세션 기반의 유동성 분석을 통해 신호의 신뢰성과 타이밍을 더욱 향상시킵니다. 신호 특성: 모든 화살표 신호는 100% 리페인트 없음 / 지연 없음 신호가 한 번 발생하면 고정되며, 깜빡이거나 사라지지 않음 차트 상의 시각적 화살표, 정보 패널, 팝업 알
Zoryk Gold mt4
Reda El Koutbane
ZORYK — MetaTrader 4용 XAUUSD 전문 신호 및 트레이드 플래닝 시스템 이런 경험이 있을 것입니다. 골드를 분석하고 진입을 기다린 뒤 마침내 포지션을 열었지만 가격이 곧바로 반대 방향으로 움직입니다. 너무 일찍 청산하거나 Stop Loss를 옮기거나 몇 초 동안 망설입니다. 그 후 시장은 내가 없이도 처음 예상했던 목표까지 정확히 움직입니다. 문제는 항상 방향이 아니었습니다. 진짜 문제는 불확실성이었습니다. 정확한 진입 위치를 몰랐습니다. 어느 지점에서 원래의 트레이드 아이디어가 무효가 되는지 몰랐습니다. 가까운 수익을 확보해야 할지 더 큰 움직임을 기다려야 할지 판단하기 어려웠습니다. 현재 setup이 정말 강한지 아니면 단지 새로운 거래를 억지로 찾고 있는지도 확신하기 어려웠습니다. 골드는 매우 빠르게 움직입니다. 명확한 계획이 없다면 좋은 분석도 몇 초 만에 나쁜 결정으로 바뀔 수 있습니다. ZORYK는 이 문제를 해결하기 위해 개발되었습니다.
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   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이전
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
AW Candle Patterns MT4
AW Trading Software Limited
AW 양초 패턴 표시기는 강력한 양초 패턴 스캐너와 결합된 고급 추세 표시기의 조합입니다. 가장 신뢰할 수 있는 30개의 촛대 패턴을 인식하고 강조 표시하는 데 유용한 도구입니다. 또한 색상 막대를 기반으로 하는 현재 추세 분석기입니다.       크기를 조정하고 위치를 지정할 수 있는 플러그인 다중 시간 프레임 추세 패널. 트렌드 필터링에 따라 패턴 표시를 조정하는 고유한 기능. 장점: 캔들 패턴을 쉽게 식별 결과를 다시 그리지 않습니다 내장된 다중 시간 추세 패널 비활성화된 패턴 유형(1, 2, 3 촛불) 패턴 표시 시 트렌드 필터링 조정 MT5 version - >   HERE   / Instructions and description  -> HERE 표시된 패턴 목록: 망치 패턴 핀 업 / 핀 다운 약세 하라미 / 강세 하라미 Bearish Harami Cross / Bullish Harami Cross 피벗 포인트 반전 업 / 피벗 포인트 반전 다운 더 높은 종가와 함께 낮
All in One Trade
Alexey Minkov
4.5 (28)
All-in-One Trade Indicator (AOTI) – Since 2015. The All-in-One Trade Indicator (AOTI) determines daily targets for EURUSD, EURJPY, GBPUSD, USDCHF, EURGBP, EURCAD, EURAUD, AUDJPY, GBPAUD, GBPCAD, GBPCHF, GBPJPY, AUDUSD, and USDJPY. All other modules work with any trading instruments. The indicator includes various features, such as Double Channel trend direction, Price channel, MA Bands, Fibo levels, Climax Bar detection, and others. The AOTI indicator is based on several trading strategies, and
Currency Strength Wizard
Oleg Rodin
4.85 (60)
통화 강도 마법사는 성공적인 거래를 위한 올인원 솔루션을 제공하는 매우 강력한 지표입니다. 표시기는 여러 시간 프레임의 모든 통화 데이터를 사용하여 이 또는 해당 외환 쌍의 힘을 계산합니다. 이 데이터는 특정 통화의 힘을 확인하는 데 사용할 수 있는 사용하기 쉬운 통화 지수 및 통화 전력선의 형태로 표시됩니다. 필요한 것은 거래하려는 차트에 표시기를 부착하는 것뿐입니다. 표시기는 거래하는 통화의 실제 강세를 보여줍니다. 지표는 또한 추세와 거래할 때 유리하게 사용할 수 있는 구매 및 판매 거래량 압력의 극한값을 보여줍니다. 지표는 또한 피보나치에 기반한 가능한 대상을 보여줍니다. 표시기는 PUSH 알림을 포함한 모든 유형의 알림을 제공합니다. 구매 후 연락주세요. 나는 당신과 거래 팁을 공유하고 당신에게 무료로 훌륭한 보너스 지표를 줄 것입니다! 나는 당신에게 행복하고 유익한 거래를 기원합니다!
ECM Elite Channel is a volatility-based indicator, developed with a specific time algorithm, which consists of finding possible corrections in the market. This indicator shows two outer lines, an inner line (retracement line) and an arrow sign, where the channel theory is to help identify overbought and oversold conditions in the market. The market price will generally fall between the boundaries of the channel. If prices touch or move outside the channel, it's a trading opportunity. The ind
Smart Trend Trading System
Issam Kassas
4.71 (7)
이 제품은 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] . 이 시스템은 추세 감지, 반전 구간, Smart Cloud, 트레일링 스톱 로직, 지지와 저항, 캔들
FX Power MT4 NG
Daniel Stein
4.95 (21)
FX Power: 통화 강세 분석으로 더 스마트한 거래 결정을 개요 FX Power 는 어떤 시장 상황에서도 주요 통화와 금의 실제 강세를 이해하기 위한 필수 도구입니다. 강한 통화를 매수하고 약한 통화를 매도함으로써 FX Power 는 거래 결정을 단순화하고 높은 확률의 기회를 발견합니다. 트렌드를 따르거나 극단적인 델타 값을 사용해 반전을 예측하고자 한다면, 이 도구는 귀하의 거래 스타일에 완벽히 적응합니다. 단순히 거래하지 말고, FX Power 로 더 스마트하게 거래하세요. 1. FX Power가 거래자에게 매우 유용한 이유 통화와 금의 실시간 강세 분석 • FX Power 는 주요 통화와 금의 상대적 강세를 계산하고 표시하여 시장 역학에 대한 명확한 통찰력을 제공합니다. • 어떤 자산이 앞서고 있고 어떤 자산이 뒤처지는지 모니터링하여 보다 현명한 거래 결정을 내릴 수 있습니다. 포괄적인 멀티 타임프레임 뷰 • 단기, 중기 및 장기 타임프레임에서 통화와 금의 강세를
Scalper Vault
Oleg Rodin
5 (37)
Scalper Vault 는 성공적인 스캘핑에 필요한 모든 것을 제공하는 전문 스캘핑 시스템입니다. 이 표시기는 외환 및 바이너리 옵션 거래자가 사용할 수 있는 완전한 거래 시스템입니다. 권장 시간 프레임은 M5입니다. 시스템은 추세 방향으로 정확한 화살표 신호를 제공합니다. 또한 상단 및 하단 신호와 Gann 시장 수준을 제공합니다.  이 시스템은 사용하기가 매우 쉽습니다. 원하는 시장 지역의 화살표만 따라가면 됩니다. 엑시트는 가격이 적정 수준에 도달하거나 시장의 고점 또는 저점 신호가 나타날 때 수행됩니다.  표시기는 PUSH 알림을 포함한 모든 유형의 경고를 제공합니다. 인디케이터 구매 후 연락주세요. 내 개인 거래 권장 사항과 훌륭한 보너스 지표를 무료로 공유합니다! 나는 당신에게 행복하고 유익한 거래를 기원합니다!
BUY 1 and GET 1 FREE - Promotion! Buy Trend Reader Indicator with a huge –60% discount and GET 1 FREE EA by your choice! Promo Price: $117 (Regular Price: $297 — You Save $180! Don't Miss!) After purchase contact me to get your GIFT EA! You can also contact me to get the list of available GIFT EAs! Trend Reader Indicator is a revolutionary trading indicator designed to empower forex traders with the tools they need to make informed trading decisions. This cutting-edge indicator utilizes compl
Volatility Trend System - a trading system that gives signals for entries. The volatility system gives linear and point signals in the direction of the trend, as well as signals to exit it, without redrawing and delays. The trend indicator monitors the direction of the medium-term trend, shows the direction and its change. The signal indicator is based on changes in volatility and shows market entries. The indicator is equipped with several types of alerts. Can be applied to various trading ins
Volume Break Oscillator는 가격 움직임을 오실레이터 형태로 볼륨 추세와 일치시키는 지표입니다. 저는 볼륨 분석을 제 전략에 통합하고 싶었지만 OBV, Money Flow Index, A/D, Volume Weighted Macd 및 기타 여러 지표와 같은 대부분의 볼륨 지표에 항상 실망했습니다. 그래서 저는 이 지표를 직접 작성했고, 얼마나 유용한지 만족스러워서 시장에 공개하기로 결정했습니다. 주요 기능: 가격이 볼륨 증가(브레이크)로 지원되는 방향으로 움직이는 단계를 강조합니다. 볼륨 증가가 멈추고 시장이 수축되는 단계를 강조합니다. 특히 시간 프레임(<=15분)이 있는 일중 거래에서 가격이나 볼륨이 움직이지 않아 시장이 향후 상승에 대비하는 단계를 강조합니다. 볼륨 증가로 지원되지 않는 다른 전문가 자문가의 거짓 신호를 걸러냅니다. 추세와 범위 단계를 시각화하는 것이 매우 쉽습니다. 입력 매개변수: 계산 설정: 계산 유형: FAST, NORMAL, S
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 . 가격 움직임, 강도, 모멘텀, 다중 시간대 방향 및 고급 필터를 분석하여 트레이더가 노이즈를 줄이고 약한 세팅을 피하며 더 체계적인 거래 결정을 내릴 수 있도
Color Trend FX
Alexey Minkov
4 (4)
Color Trend FX – Since 2017. The indicator shows on the chart the accurate market entry points, accurate exit points, maximum possible profit of a deal (for those who take profit according to their own system for exiting deals), points for trailing the open positions, as well as detailed statistics. Statistics allows to choose the most profitable trading instruments, and also to determine the potential profits. The indicator does not redraw its signals! The indicator is simple to set up and man
Linear Trend Predictor - 진입 지점과 방향성 지원선을 결합한 추세 지표입니다. 고가/저가 채널을 돌파하는 원칙에 따라 작동합니다. 지표 알고리즘은 시장 노이즈를 걸러내고 변동성과 시장 역학을 고려합니다. 표시기 기능  평활화 방법을 사용하여 시장 추세와 BUY 또는 SELL 주문을 시작하기 위한 진입 시점을 보여줍니다.  모든 기간의 차트를 분석하여 단기 및 장기 시장 움직임을 파악하는 데 적합합니다.  어떠한 시장과 시간대에도 적용할 수 있으며, 입력 매개변수를 통해 거래자는 자신에게 맞게 지표를 독립적으로 사용자 지정할 수 있습니다.  설정된 지표 신호는 사라지거나 다시 그려지지 않습니다. 이는 캔들 마감 시 결정됩니다.  여러 유형의 알림이 화살표와 결합되어 있습니다.  이 지표는 독립적인 거래 시스템으로 사용할 수도 있고, 다른 거래 시스템에 추가하는 용도로도 사용할 수 있습니다.  모든 수준의 경험을 가진 거래자가 사용할 수 있습니다. 주요 매
이 대시보드는 시장 구조 반전 지표와 함께 사용하기 위한 경고 도구입니다. 주요 목적은 특정 시간 프레임에 반전 기회를 알리고 지표가 하는 대로 경고의 재테스트(확인)를 알리는 것입니다. 대시보드는 자체적으로 차트에 배치되고 백그라운드에서 작동하여 선택한 쌍 및 기간에 대한 알림을 보내도록 설계되었습니다. 많은 사람들이 하나의 MT4에서 여러 차트에서 시장 반전 표시기를 실행하는 대신 여러 쌍과 시간 프레임을 한 번에 모니터링하기 위해 대시를 요청한 후 개발되었습니다. M5, M15, M30, H1, H4 및 D1 시간대에 경고합니다. 더 높은 기간은 물론 모든 거래와 마찬가지로 가장 잘 작동합니다. 이 대시보드는 시장 구조 반전 지표용 애드온으로 설계되었습니다. 독립적으로 작동하며 시장 역전 경고 표시기가 제공하는 패턴 및 신호에 대해 경고합니다. 여기에서 시장 반전 경고 표시기를 얻으십시오: https://www.mql5.com/en/market/product/46295 이
제작자의 제품 더 보기
SupandResFinderMaster
Jerzy Krzysztof Bednarski
## What it does SRLF is an MT4 on-chart indicator that identifies and draws probable support and resistance zones as shaded boxes. It combines confirmed swing points, directional tick-volume pressure, and a lightweight market-structure read to estimate areas where support or resistance is more likely to form. The indicator keeps the most recently qualified support and resistance zones active, extends them forward, monitors their interaction with price, and detects confirmed breaks and role re
FREE
필터:
리뷰 없음
리뷰 답변