Wilders Volatility Trend Following Optimised

# Wilders Volatility Trend Following Optimised 지표 문서

## 소개

Wilders Volatility Trend Following Optimised 지표는 MetaTrader 5를 위한 정교한 추세 추종 기술 분석 도구입니다. 이 지표는 시장 상황에 동적으로 적응하는 고급 적응형 추세 추종 시스템을 구현하여 트레이더에게 명확한 진입 및 퇴출 신호를 제공하는 동시에 최적의 이익 실현 및 손절매 수준을 자동으로 계산합니다.

이 지표는 추세 기반 전략을 따르는 트레이더를 위해 설계되었으며, 시장 변동성 변화에 대응하는 적응형 리스크 매개변수를 통해 거래 관리를 최적화하는 것을 목표로 합니다.

## 주요 기능

- **적응형 추세 추종**: 시장 추세를 자동으로 식별하고 추적
- **동적 포지션 관리**: 최적의 진입, 퇴출, 손절매 및 이익 실현 수준 계산
- **변동성 기반 매개변수**: 평균 실제 범위(ATR)를 사용하여 시장 변동성에 적응
- **적응형 가속 요소(AFX)**: 가속 요소 간의 시그모이드 기반 전환 구현
- **부드러운 이익 실현 계산**: 자연스러운 이익 목표 전환을 위한 쌍곡선 탄젠트 함수 사용
- **트레일링 스톱**: 이익을 확보하는 지능형 트레일링 스톱 메커니즘 구현
- **시각적 피드백**: 화살표, 선, 텍스트 주석을 포함한 포괄적인 시각적 요소 제공
- **글로벌 변수 내보내기**: 주요 값을 다른 지표 및 EA에서 사용 가능하게 함

## 기술적 접근 방식

### 추세 추종 방법론

이 지표는 정지 및 반전(SAR) 메커니즘을 사용하는 추세 기반 접근 방식을 따릅니다. 현재 포지션(롱 또는 숏)을 유지하고 현재 포지션에 진입한 이후 가장 유리한 가격을 나타내는 중요 종가(SIC) 값을 추적합니다.

SAR 수준은 다음과 같이 계산됩니다:
```
SAR = SIC - FLIP * ACC * ATR
```
여기서:
- `SIC`는 중요 종가 값
- `FLIP`은 포지션 방향(롱의 경우 1, 숏의 경우 -1)
- `ACC`는 가속 요소
- `ATR`은 평균 실제 범위

가격이 현재 포지션과 반대 방향으로 SAR 수준을 교차할 때, 지표는 포지션을 반전시키는 신호를 생성합니다.

### 적응형 가속 요소(AFX)

이 지표의 가장 혁신적인 측면 중 하나는 적응형 가속 요소(AFX) 계산입니다. 이는 가격 움직임에 기반하여 다른 가속 요소 값 사이의 부드러운 전환을 만들기 위해 시그모이드 함수를 사용합니다:

```
AF_X = af_start + (af_end - af_start) * sigmoid_x
```

시그모이드 함수는 S자 모양의 곡선을 만들어 전환이 갑작스럽지 않고 부드럽게 합니다. 이 적응형 접근 방식은 지표가 다음을 수행할 수 있게 합니다:

1. 거래에 숨쉴 공간을 주기 위해 더 넓은 스톱으로 시작
2. 거래가 유리하게 움직임에 따라 점차 조여짐
3. 특정 임계값을 넘으면 트레일링 메커니즘으로 이익 확보
4. ATR을 통해 시장 변동성에 적응

### 동적 이익 실현 계산

이 지표는 쌍곡선 탄젠트 함수를 사용한 정교한 이익 실현 계산을 구현합니다:

```
profitMultiplier = 1.0 + profitRange * transitionFactor
```

여기서 `transitionFactor`는 사용자 정의 쌍곡선 탄젠트 구현을 사용하여 계산됩니다. 이는 다음과 같은 동적 이익 실현을 만듭니다:

- 최소 수준(SIC_SNAP ± ATR * ACC * PROFIT_MIN)에서 시작
- 최대 수준(SIC_SNAP ± ATR * ACC * PROFIT_MAX)을 향해 점차 증가
- 가격이 기본 수준에서 얼마나 멀리 이동했는지에 기반한 부드러운 전환 사용
- ATR 값을 통해 시장 변동성에 적응

## 주요 구성 요소

### 중요 종가(SIC)

중요 종가(SIC)는 이 지표의 핵심 개념입니다. 현재 포지션에 진입한 이후 가장 유리한 가격 수준을 나타냅니다:

- 롱 포지션의 경우: SIC는 포지션에 진입한 이후 가장 높은 종가
- 숏 포지션의 경우: SIC는 포지션에 진입한 이후 가장 낮은 종가

SIC는 SAR 수준 및 기타 중요한 값을 계산하기 위한 참조점 역할을 합니다.

### 평균 실제 범위(ATR)

이 지표는 ATR을 사용하여 시장 변동성을 측정하고 그에 따라 다양한 계산을 조정합니다. ATR은 스무딩 접근 방식을 사용하여 계산됩니다:

```
ATR = Alpha * TR + (1 - Alpha) * previous_ATR
```

여기서:
- `TR`(실제 범위)는 현재 고가-저가 범위, 현재 고가-이전 종가, 또는 현재 저가-이전 종가의 최대값
- `Alpha`는 스무딩 요소(기본값 1/7)

### 포지션 추적 및 신호 생성

이 지표는 현재 시장 포지션(롱, 숏 또는 없음)을 추적하고 네 가지 조건에 기반하여 신호를 생성합니다:

1. 롱 포지션이고 현재 가격이 손절매 이하인 경우, 숏으로 전환
2. 숏 포지션이고 현재 가격이 손절매 이상인 경우, 롱으로 전환
3. 롱 포지션이고 현재 가격이 SAR 이하인 경우, 숏으로 전환
4. 숏 포지션이고 현재 가격이 SAR 이상인 경우, 롱으로 전환

포지션 변경이 발생하면, 지표는 다음을 수행합니다:
- SIC 및 ATR_SNAP 값 업데이트
- 경계 돌파 플래그 재설정
- 차트에 화살표 및 수직선 그리기
- 모든 시각적 요소 업데이트

### 경계 돌파 메커니즘

이 지표는 상한 및 하한 시스템을 구현합니다:

```
upperBound = SIC_SNAP + ATR_SNAP * ACC
lowerBound = SIC_SNAP - ATR_SNAP * ACC
```

가격이 유리한 방향으로 이러한 경계를 돌파하면, 지표는 유리한 방향으로만 이동하는 트레일링 스톱 메커니즘을 활성화하여 이익을 확보합니다.

## 시각적 요소

이 지표는 차트에 여러 시각적 요소를 생성합니다:

### 화살표 및 선

- **롱/숏 화살표**: 포지션 변경을 나타내는 녹색(롱) 또는 빨간색(숏) 화살표
- **SAR 선**: 현재 SAR 수준을 보여주는 수평선
- **SIC 선**: 현재 중요 종가 수준을 보여주는 수평선
- **상한/하한 선**: 상한 및 하한을 보여주는 수평선
- **이익 실현 선**: 계산된 이익 실현 수준을 보여주는 마젠타색 점선
- **손절매 선**: 계산된 손절매 수준을 보여주는 주황색 점선
- **수직선**: 포지션 변경 지점을 표시하는 점선 수직선

### 텍스트 주석

이 지표는 차트에 다양한 값을 설명하는 텍스트 주석을 추가합니다:

- SAR 수준 및 계산 세부 정보
- SIC 값 및 관련 매개변수
- 상한 및 하한 값
- 이익 실현 및 손절매 수준 계산 세부 정보

## 입력 매개변수

| 매개변수 | 기본값 | 설명 |
|-----------|---------|-------------|
| Timeframe | PERIOD_M1 | 지표를 실행할 시간 프레임 |
| UseATRSnap | true | 계산에 ATR 스냅샷(true) 또는 실시간 ATR(false) 사용 |
| UseGlobalATRTR | false | 글로벌 TF1_ATRTR_TR 및 TF1_ATRTR_ATR 변수 사용 |
| SARLineColor | clrWhite | SAR 선 색상 |
| SICLineColor | clrYellow | SIC 선 색상 |
| ACC | 10.0 | 기본 가속 요소 |
| Alpha | 1.0/7.0 | ATR 스무딩 요소 |
| ArrowSize | 3 | 화살표 기호 크기 |
| LongColor | clrLime | 롱 신호 색상 |
| ShortColor | clrRed | 숏 신호 색상 |
| LongArrowCode | 233 | 롱 화살표 기호 코드 |
| ShortArrowCode | 234 | 숏 화살표 기호 코드 |
| AF_MIN | 1.0 | AFX 계산의 최소 가속 요소 |
| AF_MAX | 15.0 | AFX 계산의 최대 가속 요소 |
| K_Smooth | 3.0 | AFX 계산의 스무딩 매개변수 |
| StopLossColor | clrOrange | 손절매 선 색상 |

## 글로벌 변수

이 지표는 다른 지표나 EA에서 사용할 수 있는 여러 글로벌 변수를 내보냅니다:

| 글로벌 변수 | 설명 |
|-----------------|-------------|
| TF_TF_O_[ChartID]_currentPrice | 현재 가격 |
| TF_TF_O_[ChartID]_TR | 실제 범위 값 |
| TF_TF_O_[ChartID]_ATR | 평균 실제 범위 값 |
| TF_TF_O_[ChartID]_SIC | 중요 종가 값 |
| TF_TF_O_[ChartID]_SIC_SNAP | 포지션 변경 시 SIC 값 |
| TF_TF_O_[ChartID]_ATR_SNAP | 포지션 변경 시 ATR 값 |
| TF_TF_O_[ChartID]_ACC | 가속 요소 |
| TF_TF_O_[ChartID]_afx | 적응형 가속 요소 |
| TF_TF_O_[ChartID]_FLIP | 포지션 방향(1 또는 -1) |
| TF_TF_O_[ChartID]_CurrentPosition | 현재 포지션(롱의 경우 1, 숏의 경우 -1) |
| TF_TF_O_[ChartID]_K | 스무딩 매개변수 |
| TF_TF_O_[ChartID]_SAR | 정지 및 반전 수준 |
| TF_TF_O_[ChartID]_upperBound | 상한 값 |
| TF_TF_O_[ChartID]_upperBoundBreached | 상한이 돌파되었는지 여부를 나타내는 플래그 |
| TF_TF_O_[ChartID]_lowerBound | 하한 값 |
| TF_TF_O_[ChartID]_lowerBoundBreached | 하한이 돌파되었는지 여부를 나타내는 플래그 |
| TF_TF_O_[ChartID]_TakeProfit | 이익 실현 수준 |
| TF_TF_O_[ChartID]_StopLoss | 손절매 수준 |

## 거래 신호 해석

### 진입 신호

- **롱 진입**: 숏 포지션 중 가격이 SAR 수준을 위로 교차할 때, 또는 숏 포지션 중 가격이 손절매 수준을 위로 교차할 때
- **숏 진입**: 롱 포지션 중 가격이 SAR 수준을 아래로 교차할 때, 또는 롱 포지션 중 가격이 손절매 수준을 아래로 교차할 때

### 퇴출 신호

- **롱 퇴출**: 가격이 SAR 수준 또는 손절매 수준을 아래로 교차할 때
- **숏 퇴출**: 가격이 SAR 수준 또는 손절매 수준을 위로 교차할 때

### 리스크 관리

이 지표는 시장 상황에 적응하는 동적 손절매 및 이익 실현 수준을 제공합니다:

- **손절매**: 처음에는 SIC에서 ATR * ACC 거리에 설정되지만, 거래가 진행됨에 따라 AFX 계산을 사용하여 적응
- **이익 실현**: 최소 수준에서 시작하여 거래가 유리하게 움직임에 따라 증가하는 부드러운 전환 함수를 사용하여 계산

## 고급 개념

### 시그모이드 기반 전환

AFX 계산은 가속 요소 값 사이의 부드러운 전환을 만들기 위해 시그모이드 함수를 사용합니다:

```
sigmoid_x = ((1 / (1 + MathExp(-k * (2*normalized_x - 1)))) - (1 / (1 + MathExp(k)))) / t
```

이는 S자 모양의 곡선을 만들어 손절매 수준의 급격한 변화를 피하고, 더 자연스럽고 효과적인 거래 관리를 제공합니다.

### 쌍곡선 탄젠트 스무딩

이익 실현 계산은 사용자 정의 쌍곡선 탄젠트 구현을 사용합니다:

```
CustomTanh(x) = (exp2x - 1.0) / (exp2x + 1.0)
```

이는 이익 실현 수준의 부드러운 전환을 만들어 더 자연스럽고 효과적으로 만듭니다.

### 트레일링 스톱 구현

이 지표는 다음과 같은 지능형 트레일링 스톱 메커니즘을 구현합니다:

1. 상한 또는 하한이 돌파되었는지 추적
2. 경계가 돌파되면 손절매가 유리한 방향으로만 이동하도록 허용
3. 손절매 거리를 결정하기 위해 적응형 가속 요소(AFX) 사용

## 실용적 사용법

### 추세 추종 전략

1. 지표가 롱 또는 숏 신호(화살표)를 생성할 때까지 기다림
2. 신호 방향으로 포지션 진입
3. 지표의 손절매 수준(주황색 선)에 손절매 설정
4. 지표의 이익 실현 수준(마젠타색 선)에 이익 실현 설정
5. 지표가 손절매 및 이익 실현 수준을 업데이트하는 동안 포지션 모니터링
6. 지표가 반전 신호를 생성하면 퇴출

### 다른 도구와의 통합

이 지표는 다른 기술적 분석 도구와 함께 사용할 수 있습니다:

- **지지/저항 수준**: 주요 지지 및 저항 수준으로 신호 확인
- **볼륨 지표**: 볼륨 확인으로 신호 검증
- **오실레이터**: RSI 또는 스토캐스틱과 같은 오실레이터를 사용하여 과매수/과매도 조건 확인

## 결론

Wilders Volatility Trend Following Optimised 지표는 고급 적응 기능을 갖춘 포괄적인 추세 추종 시스템을 제공합니다. 시장 상황에 동적으로 적응하고 명확한 시각적 피드백을 제공함으로써, 최적화된 리스크 매개변수로 추세 기반 거래를 식별하고 관리하는 데 트레이더를 돕습니다.

이 지표의 적응형 가속 요소, 부드러운 이익 실현 수준 및 지능형 트레일링 스톱을 계산하기 위한 정교한 알고리즘은 거래 접근 방식을 최적화하려는 추세 추종자에게 강력한 도구가 됩니다.

---

*Copyright 2025, TradeFlags*



추천 제품
RBreaker
Zhong Long Wu
RBreaker Gold Indicators는 금 선물을 위한 단기 데이 트레이딩 전략으로, 추세 추종과 데이 내 반전의 두 가지 거래 방식을 결합합니다. 추세 장에서 수익을 포착할 수 있을 뿐만 아니라, 시장이 반전될 때 적시에 이익을 확정하고 추세에 맞춰 반대 포지션을 잡을 수 있습니다. 이 전략은 미국 잡지 Futures Truth에서 15년 연속으로 가장 수익성 높은 트레이딩 전략 상위 10위 안에 선정되었습니다. 긴 라이프사이클을 자랑하며, 현재까지 국내외에서 널리 사용되고 연구되고 있습니다. 본 지표는 2026년 금 선물의 움직임을 반영하여 14일 ATR 지표를 기반으로 돌파 계수 A, 관찰 계수 B, 반전 계수 R을 보다 합리적인 값으로 정의했습니다. 매우 훌륭한 지표이며, 안정적인 연간 수익성을 달성했습니다. 강력히 추천합니다~ 위 지표는 변동성이 높은 상품에 적합하며, 매개변수는 금 선물, 주가 지수 선물 등에 적합합니다. 다른 상품이 필요한 경우 돌파 계수 A
Noize Absorption Index
Ekaterina Saltykova
Noize Absorption Index - is the manual trading system that measures the difference of pressure between bears forces and bulls forces. Green line - is a noize free index that showing curent situation. Zero value of index shows totally choppy/flat market.Values above zero level shows how powerfull bullish wave is and values below zero measures bearish forces.Up arrow appears on bearish market when it's ready to reverse, dn arrow appears on weak bullish market, as a result of reverse expectation.
FiveStarFX Gold Reversal Edge Professional automated trading solution designed for structured execution and controlled risk management in the Gold market. Built for traders who value discipline, precision, and consistency. Key Features Fully automated trading One trade at a time (controlled exposure) Fixed Stop Loss and Take Profit Smart Break-Even protection Profit lock with buffer Step-based trailing management Spread protection system Works on any broker Trade Management The E
FREE
This indicator builds a Pivot Anchored Volume Profile (VAP/VPOC approximation using tick volume) and automatically splits the profile into pivot-to-pivot segments , giving you a clean, TradingView-like view of where volume concentrated during each swing. It draws a horizontal histogram for every segment and highlights the Value Area and key levels, making it easy to spot acceptance/rejection zones, high-volume nodes, and potential support/resistance. Key Features Segmented Volume Profile (Pivot-
Liquidity Oscillator
Paolo Scopazzo
3 (2)
A powerful oscillator that provide Buy and Sell signals by calculating the investor liquidity. The more liquidity the more buy possibilities. The less liquidity the more sell possibilities. Please download the demo and run a backtest! HOW IT WORKS: The oscillator will put buy and sell arrow on the chart in runtime only . Top value is 95 to 100 -> Investors are ready to buy and you should follow. Bottom value is 5 to 0 -> Investors are ready to sell and you should follow. Alert + sound will appe
Antique Trend
Nadiya Mirosh
The Antique Trend Indicator is a revolutionary trend trading and filtering solution with all the important features of a trend tool built into one tool! The Antique Trend indicator is good for any trader, suitable for any trader both for Forex and binary options. There is no need to configure anything, everything has been perfected by time and experience, it works great during flats and trends. The Antique Trend indicator is a tool for technical analysis of financial markets, reflecting curren
The new update makes this indicator a complete tool for studying, analyzing and operating probabilistic patterns. It includes: On-chart Multi-asset percentage monitor. Configurable martingales. Twenty-one pre-configured patterns, including Mhi patterns and C3. An advanced pattern editor to store up to 5 custom patterns. Backtest mode to test results with loss reports. Trend filter. Hit operational filter. Martingale Cycles option. Various types of strategies and alerts. Confluence between patter
Overview This Dashboard provides comprehensive market analysis across 9 timeframes (D1 to M1) for ICT-based trading strategies. It identifies Order Blocks, Fair Value Gaps, candlestick patterns, breakouts, trend direction, RSI levels, and volume conditions simultaneously - solving the problem of monitoring multiple timeframes and setups manually. Key Features • Complete 9-timeframe analysis (D1, H4, H1, M30, M15, M5, M1) in one compact dashboard • Precision Order Block detection with rejection
Limitless MT5
Dmitriy Kashevich
Limitless MT5 is a universal indicator suitable for every beginner and experienced trader. works on all currency pairs, cryptocurrencies, raw stocks Limitless MT5 - already configured and does not require additional configuration And now the main thing Why Limitless MT5? 1 complete lack of redrawing 2 two years of testing by the best specialists in trading 3 the accuracy of correct signals exceeds 80% 4 performed well in trading during news releases Trading rules 1 buy signal - the ap
Ichimoku Aiko MTF
Michael Jonah Randriamampionontsoa
Ichimoku Aiko MTF is a collection of technical indicators that show support and resistance levels, as well as momentum and trend direction. It is a multi-timeframe indicator so you don't need to change the chart timeframe when you want to see the ichimoku clouds on a higher timeframe.  eg. The chart timeframe is M15 and you want to see on the M15 timeframe chart the H1 ichimoku indicators (the ichimoku in Metatrader can't do that) that's why you need to use Ichimoku Aiko MTF.
멀티 타임프레임 지원, 맞춤형 시각 신호 및 구성 가능한 알림 시스템을 갖춘 Balance of Power(BOP) 지표. 프리랜서 프로그래밍 서비스, 업데이트 및 기타 TrueTL 제품은 제 MQL5 프로필 에서 이용하실 수 있습니다. 피드백과 리뷰를 대환영합니다! BOP란 무엇인가요? Balance of Power(BOP)는 가격 변화를 바의 범위와 비교하여 매수자 대 매도자의 강도를 측정하는 오실레이터입니다. 지표는 (종가 - 시가) / (고가 - 저가)로 계산된 후 단순 이동 평균(SMA)으로 평활화됩니다. BOP 값은 -1과 +1 사이에서 변동합니다. 양수 값은 매수자가 더 강함을 나타내고(종가가 시가보다 높음), 음수 값은 매도자가 더 강함을 나타냅니다(종가가 시가보다 낮음). 값의 크기는 움직임의 강도를 나타냅니다. BOP는 매수 압력과 매도 압력 사이의 균형을 보여줌으로써 시장 강도와 잠재적인 반전을 식별하는 데 도움이 됩니다. 특징: 화살표 및 수직선을 이용한
FREE
SMC Venom Model BPR 지표는 Smart Money(SMC) 개념 내에서 일하는 트레이더를 위한 전문 도구입니다. 가격 차트에서 두 가지 주요 패턴을 자동으로 식별합니다. FVG (공정 가치 갭)는 3개의 캔들의 조합으로, 첫 번째와 세 번째 캔들 사이에 갭이 있습니다. 이는 볼륨 지원이 없는 레벨 사이에 구역을 형성하여 종종 가격 수정으로 이어집니다. BPR (균형 가격 범위)은 두 개의 FVG 패턴의 조합으로, "브리지"를 형성합니다. 이는 가격이 낮은 볼륨 활동으로 움직일 때 브레이크아웃과 레벨로의 복귀 구역으로, 캔들 사이에 갭을 생성합니다. 이러한 패턴은 거래자가 차트에서 거래량과 가격 역학을 분석하여 주요 지지/저항 수준, 돌파 구역 및 진입 지점을 식별하는 데 도움이 되며, 여기서 대형 시장 참여자와 일반 참여자 간의 상호 작용이 발생합니다. 이 지표는 사각형과 화살표 형태로 패턴을 시각화하며 유연한 경고 설정도 지원합니다. 주요 특징: 패턴 표시 모드
Tma Poc Gold
Ignacio Agustin Mene Franco
POC + TMA SCALPER GOLD - Expert Advisor Professional DESCRIPTION: Automated trading system designed specifically for XAU/USD, combining Point of Control (POC) with Triangular Moving Average (TMA) to identify high-volume and trending zones. It uses advanced risk management with dynamic trailing stops and an intelligent grid system. TECHNICA
MT5 Arrow Indicator   is a momentum-based technical indicator for   MetaTrader 5 , designed to provide   clear buy and sell arrow signals   based on market momentum. The indicator generates   non-repainting signals   and includes a   built-in alert system   to notify traders when new signals appear. Key Features  Non-Repainting Arrow Signals Signals are confirmed after candle close Historical arrows do not change Suitable for backtesting and live trading  Buy & Sell Logic Buy Arrow   appears whe
This trading indicator is non-repainting, non-redrawing, and non-lagging, making it an ideal choice for both manual and automated trading. It is a Price Action–based system that leverages price strength and momentum to give traders a real edge in the market. With advanced filtering techniques to eliminate noise and false signals, it enhances trading accuracy and potential. By combining multiple layers of sophisticated algorithms, the indicator scans the chart in real-time and translates comple
Prizmal Logic
Vladimir Lekhovitser
5 (1)
실시간 거래 신호 거래 활동의 공개 실시간 모니터링: https://www.mql5.com/ko/signals/2353471 공식 정보 판매자 프로필 공식 채널 사용자 매뉴얼 설정 안내 및 사용 지침: 사용자 매뉴얼 열기 이 전문가 어드바이저는 규칙 기반 거래 전략에 기반하여 설계되었습니다. 이 전략은 시장에 지속적으로 노출되기보다는 특정 시장 조건을 식별하는 데 초점을 둡니다. 시스템은 가격 움직임, 변동성 특성 및 시간 요소를 분석합니다. 이 요소들은 현재 시장 환경이 거래 참여에 적합한지 판단하는 데 사용됩니다. 여러 사전 정의된 기준이 동시에 충족될 때만 거래가 실행됩니다. 조건이 충족되지 않으면 전문가 어드바이저는 비활성 상태를 유지합니다. 그 결과 거래 활동은 일정하지 않습니다. 거래가 전혀 발생하지 않는 기간이 있을 수 있습니다. 이는 포지션이 전혀 없는 하루 전체를 포함할 수 있습니다. 반대로 적절한 시장 국면에서는 비교적 짧은 시간에 여러 거
Long&Short Cointegration Analyzer An advanced tool for traders looking to profit from cointegration. Analyzes any asset pair for Long&Short strategies. What does the Long&Short Cointegration Analyzer do? Identifies cointegrated pairs that revert to the mean, ideal for profitable trades. Provides a detailed panel with statistical data for confident decisions. Works with any currency pair, on any timeframe. Find buying and selling opportunities based on cointegration. Minimize risks with a relia
Your Trend Friend
Luigi Nunes Labigalini
5 (1)
The trend is your friend! Look at the color of the indicator and trade on that direction. It does not  repaint. After each candle is closed, that's the color of the trend. You can focus on shorter faster trends or major trends, just test what's most suitable for the symbol and timeframe you trade. Simply change the "Length" parameter and the indicator will automatically adapt. You can also change the color, thickness and style of the lines. Download and give it a try! There are big movements w
Maximum Trend Arrows OT MT5
Mulweli Valdaz Makulana
STRICTLY FOR BOOM INDEX ONLY!!!!! Here I bring the Maximum Trend Arrows OT1.0 MT5 indicator. This indicator is made up of a combination of different trend indicators for entries and exits, for entries an orange arrow will paint on the chart below the current market and a red flag for closing of trades and it produces buy arrows only. When the orange arrow appears, it will appear along with it's sound to notify you. The 1H timeframe is recommended, don't use it anywhere else than on the 1H timefr
All-in-One Chart Patterns Professional Level: The Ultimate 36-Pattern Trading System All-in-One Chart Patterns Professional Level is a comprehensive 36-pattern indicator well known by retail traders, but significantly enhanced with superior accuracy through integrated news impact analysis and proper market profile positioning. This professional-grade trading tool transforms traditional pattern recognition by combining advanced algorithmic detection with real-time market intelligence.  CORE FEATU
FREE
Owl Smart Levels MT5
Sergey Ermolov
4.03 (32)
MT4 버전  |  FAQ Owl Smart Levels Indicator 는 Bill Williams 의 고급 프랙탈, 시장의 올바른 파동 구조를 구축하는 Valable ZigZag, 정확한 진입 수준을 표시하는 피보나치 수준과 같은 인기 있는 시장 분석 도구를 포함하는 하나의 지표 내에서 완전한 거래 시스템입니다. 시장과 이익을 취하는 장소로. 전략에 대한 자세한 설명 표시기 작업에 대한 지침 고문-거래 올빼미 도우미의 조수 개인 사용자 채팅 ->구입 후 나에게 쓰기,나는 개인 채팅에 당신을 추가하고 거기에 모든 보너스를 다운로드 할 수 있습니다 힘은 단순함에 있습니다! Owl Smart Levels 거래 시스템은 사용하기 매우 쉽기 때문에 전문가와 이제 막 시장을 연구하고 스스로 거래 전략을 선택하기 시작한 사람들 모두에게 적합합니다. 전략 및 지표에는 눈에 보이지 않는 비밀 공식 및 계산 방법이 없으며 모든 전략 지표는 공개되어 있습니다. Owl Smart Levels를 사
ROMAN5 Time Breakout Indicator automatically draws the boxes for daily support and resistance breakouts. It helps the user identifying whether to buy or sell. It comes with an alert that will sound whenever a new signal appears. It also features an email facility. Your email address and SMTP Server settings should be specified in the settings window of the "Mailbox" tab in your MetaTrader 5. Blue arrow up = Buy. Red arrow down = Sell. You can use one of my Trailing Stop products that automatical
FREE
Candle Pattern Finder MT5
Pavel Zamoshnikov
4.2 (5)
This indicator searches for candlestick patterns. Its operation principle is based on Candlestick Charting Explained: Timeless Techniques for Trading Stocks and Futures by Gregory L. Morris. If a pattern is detected, the indicator displays a message at a bar closure. If you trade using the MetaTrader 4 terminal, then you can download the full analogue of the " Candle Pattern Finder for MT4 " indicator It recognizes the following patterns: Bullish/Bearish (possible settings in brackets) : Hammer
Gecko EA MT5
Profalgo Limited
5 (1)
NEW PROMO: Only a few copies copies available at 349$ Next price: 449$ Make sure to check out our " Ultimate EA combo package " in our   promo blog ! Gecko runs a simple, yet very effective, proven strategy.  It looks for important recent support and resistance levels and will trade the breakouts.  This is a "real" trading system, which means it will use a SL to protect the account.  It also means it will not use any dangerous techniques like martingale, grid or averaging down. The EA shows its
Bollinger Trend Lines – MT4 & MT5 Bollinger Trend Lines is a professional volatility-based trend indicator designed to clearly identify trend direction and dynamic stop levels using Bollinger Bands. Fuses on one core principle: follow the trend, ignore noise, and let volatility define the stop. How it works The indicator builds trailing trend lines using Bollinger Bands: In an uptrend , the lower band trails price and can only rise In a downtrend , the upper band trails price and can only
Visual Range Directional Force Indicator
AL MOOSAWI ABDULLAH JAFFER BAQER
Range Directional Force Indicator – Designed for You to Optimize! The Range Directional Force Indicator is a cutting-edge tool designed to empower traders by visualizing market dynamics and directional strength. Built to offer insights into market trends and reversals, this indicator is an invaluable asset for traders seeking precision in their strategies. However, it is important to note that this indicator is not optimized, leaving room for you to tailor it to your unique trading preferences.
숫자 시퀀스 중 하나를 "산불 시퀀스"라고 합니다. 가장 아름다운 새로운 시퀀스 중 하나로 인식되었습니다. 주요 특징은 이 시퀀스가 ​​가장 짧은 경우에도 선형 추세를 피한다는 것입니다. 이 지표의 기초를 형성한 것은 이 속성입니다. 금융 시계열을 분석할 때 이 지표는 가능한 모든 추세 옵션을 거부하려고 합니다. 그리고 그가 실패하는 경우에만 그는 추세의 존재를 인식하고 적절한 신호를 제공합니다. 이 접근 방식을 통해 새로운 트렌드가 시작되는 순간을 정확하게 결정할 수 있습니다. 그러나 거짓 긍정도 가능합니다. 숫자를 줄이기 위해 이 표시기에 추가 필터가 추가되었습니다. 새 막대가 열리면 신호가 생성됩니다. 어떤 경우에도 다시 그리기가 발생하지 않습니다. 표시 매개변수: Applied Price   - 적용된 가격 상수. Period Main   - 표시기의 기본 기간, 유효한 값은 5 - 60 이내입니다. Period Additional   - 추가 기간, 이 매개변수의 유효한
Riko Trend mt5
Nadiya Mirosh
The Riko Trend indicator is a revolutionary trend trading and filtering solution with all the important features of a trend tool built into one tool! The Riko Trend indicator is good for any trader, suitable for any trader for both forex and binary options. You don’t need to configure anything, everything is perfected by time and experience, it works great during a flat and in a trend. The Riko Trend indicator is a technical analysis tool for financial markets that reflects the current price f
MTF Candles Overlay MT5
Prafull Manohar Nikam
MTF Candles Overlay - Professional Multi-Timeframe Analysis Tool (Now with Yearly Y1 timeframe!) The MTF  Candles Overlay is a powerful and visually intuitive indicator that allows traders to view candles from higher timeframes directly overlaid on their current chart. This eliminates the need to constantly switch between multiple timeframe charts, enabling faster analysis and better trading decisions. Key Features Complete Timeframe Coverage All Standard Timeframes : M1, M2, M3, M4, M5, M6, M1
PipFinite Breakout EDGE MT5
Karlo Wilson Vendiola
4.81 (93)
The Missing Edge You Need To Catch Breakouts Like A Pro. Follow a step-by-step system that detects the most powerful breakouts! Discover market patterns that generate massive rewards based on a proven and tested strategy. Unlock Your Serious Edge Important information here www.mql5.com/en/blogs/post/723208 The Reliable Expert Advisor Version Automate Breakout EDGE signals using "EA Breakout EDGE" Click Here Have access to the game changing strategy that will take your trading to the next l
이 제품의 구매자들이 또한 구매함
Divergence Bomber
Ihor Otkydach
4.89 (83)
이 지표를 구매하신 분께는 다음과 같은 혜택이 무료로 제공됩니다: 각 거래를 자동으로 관리하고, 손절/익절 수준을 설정하며, 전략 규칙에 따라 거래를 종료하는 전용 도우미 툴 "Bomber Utility" 다양한 자산에 맞게 지표를 설정할 수 있는 셋업 파일(Set Files) "최소 위험", "균형 잡힌 위험", "관망 전략" 모드로 설정 가능한 Bomber Utility의 셋업 파일 이 전략을 빠르게 설치, 설정, 시작할 수 있도록 돕는 단계별 영상 매뉴얼 주의: 위의 모든 보너스를 받기 위해서는 MQL5 개인 메시지 시스템을 통해 판매자에게 연락해 주세요. 독창적인 커스텀 지표인 “Divergence Bomber(다이버전스 봄버)”를 소개합니다. 이 지표는 MACD 다이버전스(괴리) 전략을 기반으로 한 올인원(All-in-One) 거래 시스템입니다. 이 기술 지표의 주요 목적은 가격과 MACD 지표 간의 다이버전스를 감지하고, **향후 가격이 어느 방향으로 움직일지를 알려주는
Azimuth Pro
Ottaviano De Cicco
5 (4)
LAUNCH PROMO Azimuth Pro price is initially set at 299$ for the first 100 buyers. Final price will be 499$ . THE DIFFERENCE BETWEEN RETAIL AND INSTITUTIONAL ENTRIES ISN'T THE INDICATOR — IT'S THE LOCATION. Most traders enter at arbitrary price levels, chasing momentum or reacting to lagging signals. Institutions wait for price to reach structured levels where supply and demand actually shift. Azimuth Pro maps these levels automatically: swing-anchored VWAP, multi-timeframe structure lines, an
Trend Screener Pro MT5
STE S.S.COMPANY
4.84 (101)
트렌드 표시기, 트렌드 트레이딩 및 필터링을 위한 획기적인 고유 솔루션, 하나의 도구 안에 내장된 모든 중요한 트렌드 기능! Forex, 상품, 암호 화폐, 지수 및 주식과 같은 모든 기호/도구에 사용할 수 있는 100% 다시 칠하지 않는 다중 시간 프레임 및 다중 통화 표시기입니다. Trend Screener는 차트에 점이 있는 화살표 추세 신호를 제공하는 효율적인 지표 추세 추종 지표입니다. 추세 분석기 표시기에서 사용할 수 있는 기능: 1. 트렌드 스캐너. 2. 최대 이익 분석이 있는 추세선. 3. 추세 통화 강도 측정기. 4. 경고가 있는 추세 반전 점. 5. 경고가 있는 강력한 추세 점. 6. 추세 화살표 Trend Screener Indicator가 있는 일일 분석 예, 일일 신호 성능...등은 여기에서 찾을 수 있습니다. 여기를 클릭하십시오. LIMITED TIME OFFER : Trend Screener Indicator는 50$ 및 평생 동안만 사용할 수 있습니다.
Grabber System MT5
Ihor Otkydach
4.82 (22)
탁월한 기술적 지표인 Grabber를 소개합니다. 이 도구는 즉시 사용 가능한 “올인원(All-Inclusive)” 트레이딩 전략으로 작동합니다. 하나의 코드 안에 강력한 시장 기술 분석 도구, 매매 신호(화살표), 알림 기능, 푸시 알림이 통합되어 있습니다. 이 인디케이터를 구매하신 모든 분들께는 다음의 항목이 무료로 제공됩니다: Grabber 유틸리티: 오픈 포지션을 자동으로 관리하는 도구 단계별 영상 매뉴얼: 설치, 설정, 그리고 실제 거래 방법을 안내 맞춤형 세트 파일: 인디케이터를 빠르게 자동 설정하여 최고의 성과를 낼 수 있도록 도와줍니다 다른 전략은 이제 잊어버리세요! Grabber만이 여러분을 새로운 트레이딩의 정점으로 이끌어 줄 수 있습니다. Grabber 전략의 주요 특징: 거래 시간 프레임: M5부터 H4까지 거래 가능한 자산: 어떤 자산이든 사용 가능하지만, 제가 직접 테스트한 종목들을 추천드립니다 (GBPUSD, GBPCAD, GBPCHF, AUDCAD, AU
AriX
Temirlan Kdyrkhan
1 (4)
AriX Indicator for MT5 A powerful trend-following and signal-evaluation tool AriX is a custom MT5 indicator that combines Moving Averages and ATR-based risk/reward logic to generate clear buy/sell signals. It visualizes dynamic SL/TP levels, evaluates past trade outcomes, and displays win/loss statistics in a clean on-chart panel. Key features include: Buy/Sell signals based on MA crossovers ATR-based SL/TP1/TP2/TP3 levels with visual lines and labels Signal outcome tracking with real-time stat
OmniSync Projection
Antonio-alin Teculescu
5 (1)
Chronos Fractal Engine is an innovative price projection indicator for MetaTrader 5, designed to transform your technical analysis by intelligently identifying and projecting historical price patterns. Built upon an advanced correlation algorithm and the fractal principles of the market, this powerful tool visualizes potential future price movements, giving you a unique edge in your trading decisions. What is Chronos Fractal Engine? At its core, the Chronos Fractal Engine employs a sophisticat
RFI levels PRO MT5
Roman Podpora
3.67 (3)
이 지표는 추세 반전 지점과 가격 반등 영역을 정확하게 보여줍니다.       주요 투자자들   . 새로운 트렌드가 형성되는 곳을 파악하고 최대한 정확하게 의사결정을 내리며 모든 거래를 완벽하게 통제합니다. TREND LINES PRO   지표와 함께 사용할 때 최대의 잠재력을 발휘합니다.  VERSION MT4 지표가 보여주는 내용: 새로운 추세의 시작 시 활성화되는 반전 구조 및 반전 수준. 최소한의 위험 대비 수익률을 갖는 이익 실현   (TAKE PROFIT)   및   손절매(STOP LOSS)   레벨 표시       RR 1:2   . 지능형 손실 감소 로직이 적용된 손절매 기능. 지정된 지표에서 두 가지 추세 유형에 대한 반전 패턴을 표시합니다. 지표: 트렌드를 따라   트렌드 라인 프로   (글로벌 트렌드 변화) 트렌드 프로   (빠른 트렌드 변화) 간단하고 효과적입니다       스캐너       실시간 추세 (신규). 다중 시간 프레임 도구 필터링. 표시하다  
우선적으로, 이 거래 도구는 전문적인 거래에 이상적인 비-다시 그리기 및 지연되지 않는 지표입니다.  온라인 강좌, 사용자 매뉴얼 및 데모. 스마트 가격 액션 컨셉트 인디케이터는 신규 및 경험 많은 트레이더 모두에게 매우 강력한 도구입니다. Inner Circle Trader Analysis 및 Smart Money Concepts Trading Strategies와 같은 고급 거래 아이디어를 결합하여 20가지 이상의 유용한 지표를 하나로 결합합니다. 이 인디케이터는 스마트 머니 컨셉트에 중점을 두어 대형 기관의 거래 방식을 제공하고 이동을 예측하는 데 도움을 줍니다.  특히 유동성 분석에 뛰어나 기관이 어떻게 거래하는지 이해하는 데 도움을 줍니다. 시장 트렌드를 예측하고 가격 변동을 신중하게 분석하는 데 탁월합니다. 귀하의 거래를 기관 전략에 맞추어 시장의 동향에 대해 더 정확한 예측을 할 수 있습니다. 이 인디케이터는 시장 구조를 분석하고 중요한 주문 블록을 식별하고 다양
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한       퀀텀 브레이크아웃 PRO       혁신적이고 역동적인 브레이크아웃 존 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Raw 또는 Razor 브로커 시간: GMT +3 중개인 :
ARIPoint
Temirlan Kdyrkhan
ARIPoint is a powerful trading companion designed to generate high-probability entry signals with dynamic TP/SL/DP levels based on volatility. Built-in performance tracking shows win/loss stats, PP1/PP2 hits, and success rates all updated live. Key Features: Buy/Sell signals with adaptive volatility bands Real-time TP/SL/DP levels based on ATR Built-in MA Filter with optional ATR/StdDev volatility Performance stats panel (Success, Profit/Loss, PP1/PP2) Alerts via popup, sound, push, or email Cu
RelicusRoad Pro MT5
Relicus LLC
5 (24)
RelicusRoad Pro: 퀀트 시장 운영 체제 70% 할인 평생 이용권 (한정 시간) - 2,000명 이상의 트레이더와 함께하세요 왜 대부분의 트레이더는 "완벽한" 지표를 가지고도 실패할까요? 진공 상태에서 단일 개념 만으로 거래하기 때문입니다. 문맥 없는 신호는 도박입니다. 지속적인 승리를 위해서는 컨플루언스(중첩) 가 필요합니다. RelicusRoad Pro는 단순한 화살표 지표가 아닙니다. 완전한 퀀트 시장 생태계 입니다. 독점적인 변동성 모델링을 사용하여 가격이 이동하는 "공정 가치 로드"를 매핑하고, 단순 노이즈와 실제 구조적 돌파를 구분합니다. 추측은 그만두세요. 기관급 로드 로직으로 거래를 시작하세요. 핵심 엔진: "Road" 알고리즘 시스템의 중심에는 시장 상황에 실시간으로 적응하는 동적 변동성 채널인 Road Algo 가 있습니다. 세이프 라인(평형) 과 가격이 수학적으로 반전될 가능성이 높은 확장 레벨 을 투영합니다. Simple Road: 일반적인 시장을 위
Quantum TrendPulse
Bogdan Ion Puscasu
5 (22)
SuperTrend   ,   RSI   ,   Stochastic   의 힘을 하나의 포괄적인 지표로 결합하여 트레이딩 잠재력을 극대화하는 궁극의 트레이딩 도구   인 Quantum TrendPulse를   소개합니다. 정밀성과 효율성을 추구하는 트레이더를 위해 설계된 이 지표는 시장 추세, 모멘텀 변화, 최적의 진입 및 종료 지점을 자신 있게 식별하는 데 도움이 됩니다. 주요 특징: SuperTrend 통합:   주요 시장 추세를 쉽게 따라가고 수익성의 물결을 타세요. RSI 정밀도:   매수 과다 및 매도 과다 수준을 감지하여 시장 반전 시점을 파악하는 데 적합하며 SuperTrend 필터로 사용 가능 확률적 정확도:   변동성이 큰 시장에서 숨겨진 기회를 찾기 위해 확률적 진동   을 활용하고 SuperTrend의 필터로 사용 다중 시간대 분석:   M5부터 H1 또는 H4까지 다양한 시간대에 걸쳐 시장을 최신 상태로 유지하세요. 맞춤형 알림:   맞춤형 거래 조건이 충족되면
PZ Swing Trading MT5
PZ TRADING SLU
5 (5)
Protect against whipsaws: revolutionize your swing trading approach Swing Trading is the first indicator designed to detect swings in the direction of the trend and possible reversal swings. It uses the baseline swing trading approach, widely described in trading literature. The indicator studies several price and time vectors to track the aggregate trend direction and detects situations in which the market is oversold or overbought and ready to correct. [ Installation Guide | Update Guide | Tro
Btmm state engine pro
Garry James Goodchild
5 (2)
Get the user guide here  https://g-labs.software/guides/BTMM_State_Engine_Welcome_Pack.html BTMM State Engine Pro — the   all-in-one Banks   & Institutions Market Maker indicator for Meta Trader 5. Built for   BTMM traders who follow the Asian   session breakout methodology with Kill Zone timing , level stacking, peak formation detection , and multi-pair scanning — all   from a single chart. Combines   a full BTMM State Engine   with a built-in multi-pair Scanner dashboard, eliminating the need
Easy SMC Trading
Israr Hussain Shah
4 (1)
자동 위험 관리 및 구조 돌파 스캐너를 포함한 구조 추세 분석 버전: 1.0 개요 자동 위험 관리 기능을 갖춘 구조 추세 분석은 가격 움직임과 시장 구조에 의존하는 트레이더를 위해 설계된 종합적인 트레이딩 시스템입니다. 부드러운 추세 필터와 스윙 포인트 감지, 구조 돌파(BOS) 신호를 결합하여 높은 확률의 거래 설정을 생성합니다. 이 도구의 가장 두드러진 특징은 자동 위험 관리 기능입니다. 유효한 구조 돌파가 감지되면 지표는 즉시 위험/보상 영역(1:1, 1:2, 1:3)을 계산하고 표시하며, 가격이 목표에 도달할 때 거래 시각화를 자동으로 관리합니다. 수동으로 차트를 그릴 필요가 없어 트레이더는 실행에만 집중할 수 있습니다. 주요 기능 동적 구조 돌파(BOS) 감지 스윙 고점(HH/LH)과 스윙 저점(HL/LL)을 자동으로 식별합니다. 가격이 주요 구조적 레벨을 돌파할 때 차트에 BOS 라인을 직접 표시하여 추세 방향을 확인합니다. 구조적 핵심 지점을 명확한 텍스트
Trade smarter, not harder: Empower your trading with Harmonacci Patterns This is arguably the most complete harmonic price formation auto-recognition indicator you can find for the MetaTrader Platform. It detects 19 different patterns, takes fibonacci projections as seriously as you do, displays the Potential Reversal Zone (PRZ) and finds suitable stop-loss and take-profit levels. [ Installation Guide | Update Guide | Troubleshooting | FAQ | All Products ] It detects 19 different harmonic pri
" Dynamic Scalper System MT5 " 지표는 추세 파동 내에서 스캘핑 방식으로 거래하도록 설계되었습니다. 주요 통화쌍 및 금에서 테스트되었으며, 다른 거래 상품과의 호환성이 가능합니다. 추가적인 가격 변동 지원을 통해 추세에 따라 단기 포지션 진입 신호를 제공합니다. 지표의 원리 큰 화살표는 추세 방향을 결정합니다. 작은 화살표 형태의 스캘핑 신호를 생성하는 알고리즘은 추세 파동 내에서 작동합니다. 빨간색 화살표는 상승 방향을, 파란색 화살표는 하락 방향을 나타냅니다. 민감한 가격 변동선은 추세 방향으로 그려지며, 작은 화살표의 신호와 함께 작용합니다. 신호는 다음과 같이 작동합니다. 적절한 시점에 선이 나타나면 진입 신호가 형성되고, 선이 있는 동안 미결제 포지션을 유지하며, 완료되면 거래를 종료합니다. 권장되는 작업 시간대는 M1~H4입니다. 화살표는 현재 캔들에 형성되며, 다음 캔들이 이미 시작되었더라도 이전 캔들의 화살표는 다시 그려지지 않습니다. 입
Meta Cipher B
SILICON HALLWAY PTY LTD
Meta Cipher B: MT5용 올인원 오실레이터 스위트 Meta Cipher B 는 인기 있는 Market Cipher B 개념을 MetaTrader 5에 도입하여 속도와 정밀도를 극대화했습니다. 처음부터 성능 중심으로 설계되어 전문가 수준의 신호 를 지연이나 느린 스크롤 없이 제공합니다. 단독으로도 강력하지만, Meta Cipher A 와 자연스럽게 함께 작동하도록 설계되어 완전한 시장 분석과 더 깊은 확인 기능을 제공합니다. 주요 기능 통합된 오실레이터 스택이 파동 모멘텀, VWAP, 자금 흐름, RSI, 스토캐스틱 을 시각화합니다. 조건이 일치하면 명확한 매수 및 매도 점이 표시됩니다. 짧은 시간 프레임에서는 진입 타이밍 조정에, 긴 시간 프레임에서는 시장 구조 분석에 활용할 수 있습니다. 고정밀 신호를 위한 설계 커브 매칭 기법 으로 정밀하게 보정하여 일반적인 시장 상황에서도 원래의 동작을 충실히 재현합니다. 하위 신호들은 부드럽게 동기화되어 파동과 점이 숙련된 트레
Entry Points Pro for MT5
Yury Orlov
4.48 (138)
다시 색을 칠하지 않고 거래에 진입할 수 있는 정확한 신호를 제공하는 MT5용 지표입니다. 외환, 암호화폐, 금속, 주식, 지수 등 모든 금융 자산에 적용할 수 있습니다. 매우 정확한 추정값을 제공하고 매수와 매도의 가장 좋은 시점을 알려줍니다. 하나의 시그널로 수익을 내는 지표의 예와 함께 비디오 (6:22)시청하십시오! 대부분의 거래자는 Entry Points Pro 지표의 도움으로 첫 거래 주 동안 트레이딩 결과를 개선합니다. 저희의   Telegram Group 을 구독하세요! Entry Points Pro 지표의 좋은점. 재도색이 없는 진입 신호 신호가 나타나고 확인되면(시그널 캔들이 완성된 경우) 신호는 더 이상 사라지지 않습니다. 여타 보조지표의 경우 신호를 표시한 다음 제거되기 때문에 큰 재정적 손실로 이어집니다. 오류 없는 거래 게시 알고리즘을 통해 트레이드(진입 또는 청산)를 할 이상적인 순간을 찾을 수 있으며, 이를 통해 이를 사용하는 모든 거래자의 성공률이
TPSpro RFI Levels MT5
Roman Podpora
4.53 (19)
러시아어 설명서  /  영어   설명서  /  MT4 버전 주요 기능: 판매자와 구매자의 활동 영역을 표시합니다! 이 지표는 매수 및 매도에 대한 모든 올바른 첫 번째 임펄스 레벨/존을 표시합니다. 진입점 검색이 시작되는 이러한 레벨/존이 활성화되면 레벨의 색상이 바뀌고 특정 색상으로 채워집니다. 상황을 더욱 직관적으로 파악할 수 있도록 화살표도 표시됩니다. LOGIC AI - 템플릿 활성화 시 진입점 검색을 위한 영역(원) 표시 시각적 명확성을 개선하기 위해 인공지능을 사용하여 진입점을 검색한 영역을 표시하는 기능이 추가되었습니다. 더 높은 시간대의 레벨/존 표시(MTF 모드) 더 높은 시간 간격을 사용하여 레벨/존을 표시하는 기능이 추가되었습니다. 또한, 이 지표는 자동 추세 감지 기능(   TPSproTREND PRO   )을 구현했습니다. 거래를 위한 별도의 전문적인 단계별 알고리즘 이 알고리즘은 추세 방향과 반대 방향으로의 당일 거래 모두에 적합하도록 설계되었습니다. 각
TPA True Price Action indicator reveals the true price action of the market makers through 100% non-repainting signals strictly at the close of a candle! TPA shows entries and re-entries, every time the bulls are definitely stronger than the bears and vice versa. Not to confuse with red/green candles. The shift of power gets confirmed at the earliest stage and is ONE exit strategy of several. There are available now two free parts of the TPA User Guide for our customers. The first "The Basics"
Trend Forecaster
Alexey Minkov
5 (7)
The Trend Forecaster indicator utilizes a unique proprietary algorithm to determine entry points for a breakout trading strategy. The indicator identifies price clusters, analyzes price movement near levels, and provides a signal when the price breaks through a level. The Trend Forecaster indicator is suitable for all financial assets, including currencies (Forex), metals, stocks, indices, and cryptocurrencies. You can also adjust the indicator to work on any time frames, although it is recommen
CGE Trading Suite
Carl Gustav Johan Ekstrom
5 (1)
CGE Trading Suite delivers the analytical edge typically reserved for professional trading desks. The platform integrates a full suite of analytical tools into one seamless workflow: dynamic grid mapping, liquidity behavior analysis, ECM, trend lines, MIDAS, trade cycles, and directional channel projections. Together, these provide a unified view of market structure and momentum. Directional clarity is further enhanced by the capital flow index, which measures currency basket strength to identif
Order Block Pro MT5
N'da Lemissa Kouame
Order Block Pro (MQL5) – 버전 1.0 작성자: KOUAME N'DA LEMISSA 플랫폼: MetaTrader 5 설명: Order Block Pro 는 차트에서 **강세 및 약세 오더 블록(Order Blocks)**을 자동으로 감지하는 고급 지표입니다. 횡보 캔들 이후 강한 상승/하락 캔들을 분석하여 가격이 급격히 움직일 가능성이 있는 주요 구간을 표시합니다. 트레이더에게 적합: 정확한 진입 및 청산 지점을 찾고 싶은 경우 동적 지지 및 저항 구간을 파악하고 싶은 경우 리스크 관리 및 거래 전략을 향상시키고 싶은 경우 주요 기능: 강세 OB 감지: 횡보 캔들 후 강한 상승이 발생하면 차트에 녹색 화살표 표시 약세 OB 감지: 횡보 캔들 후 강한 하락이 발생하면 차트에 빨간 화살표 표시 완전한 사용자 정의 가능: 횡보 캔들의 최대 실체 비율 ( BodyMaxRatio ) 다음 캔들의 최소 비율로 움직임 확인 ( NextCandleMinPct ) 차트 화살표
Berma Bands
Muhammad Elbermawi
5 (8)
Berma Bands(BBs) 지표는 시장 동향을 파악하고 이를 활용하려는 트레이더에게 귀중한 도구입니다. 가격과 BBs 간의 관계를 분석함으로써 트레이더는 시장이 추세 단계인지 범위 단계인지를 분별할 수 있습니다. 자세한 내용을 알아보려면 [ Berma Home Blog ]를 방문하세요. 버마 밴드는 세 개의 뚜렷한 선으로 구성되어 있습니다. 어퍼 버마 밴드, 미들 버마 밴드, 로어 버마 밴드입니다. 이 선들은 가격 주위에 그려져 전체 추세에 대한 가격 움직임을 시각적으로 표현합니다. 이 밴드들 사이의 거리는 변동성과 잠재적인 추세 반전에 대한 통찰력을 제공할 수 있습니다. 버마 밴드 라인이 각각에서 분리될 때, 그것은 종종 시장이 횡보 또는 범위 이동 기간에 접어들고 있음을 시사합니다. 이는 명확한 방향 편향이 없음을 나타냅니다. 트레이더는 이러한 기간 동안 추세를 파악하기 어려울 수 있으며 더 명확한 추세가 나타날 때까지 기다릴 수 있습니다. 버마 밴드 라인이 단일 라인으로
Advanced Supply Demand MT5
Bernhard Schweigert
4.53 (15)
현재 33% 할인! 초보자나 전문 트레이더를 위한 최고의 솔루션! 이 보조지표는 우리가 다수의 독창적 기능과 새로운 공식을 통합한 독특하고 고품질이며 저렴한 거래 도구입니다. 이 업데이트를 통해 이중 시간대를 표시할 수 있습니다. 더 높은 TF를 표시할 수 있을 뿐만 아니라 차트 TF와 더 높은 TF 모두를 표시할 수 있습니다: 중첩 영역 표시. 모든 Supply Demand 트레이더들이 좋아할 것입니다. :) 중요한 정보 공개 Advanced Supply Demand의 잠재력을 극대화하려면 다음을 방문하십시오. https://www.mql5.com/ko/blogs/post/720245   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이전
Ultimate SMC Indicator
Hicham Mahmoud Almoustafa
1 (1)
Ultimate SMC PRO – Smart Money Concepts Indicator (Order Blocks, FVG, Liquidity, BOS) for MetaTrader 5   After purchasing the product, you will receive an additional copy for free. Just contact me after your purchase. Ultimate SMC PRO is a professional trading indicator designed to visualize Smart Money Concepts directly on the chart. The indicator combines several institutional trading tools in one system to help traders identify potential high-probability trading zones. ULTIMATE SMC INDICATO
FootprintOrderflow
Jingfeng Luo
5 (3)
FOOTPRINTORDERFLOW: The Authoritative Guide ( This indicator is also compatible with economic providers that do not offer DOM data and BID/ASK data, It also supports various foreign exchange transactions, DEMO version,modleling must choose " Every tick based on real ticks"  ) Important notice: Before placing an order, please contact me first, and I will provide you with professional answers and services 1. Overview FOOTPRINTORDERFLOW  is an advanced Order Flow analysis tool designed for MetaTra
Gartley Hunter Multi
Siarhei Vashchylka
5 (11)
Gartley Hunter Multi - An indicator for searching for harmonic patterns simultaneously on dozens of trading instruments and on all possible timeframes. Manual (Be sure to read before purchasing) | Version for MT4 Advantages 1. Patterns: Gartley, Butterfly, Shark, Crab. Bat, Alternate Bat, Deep Crab, Cypher 2. Simultaneous search for patterns on dozens of trading instruments and on all possible timeframes 3. Search for patterns of all possible sizes. From the smallest to the largest 4. All fou
Scalping Lines System MT5 - 은 M1-H1 시간 프레임에서 금(XAUUSD) 자산을 거래하기 위해 특별히 설계된 스캘핑 트레이딩 시스템입니다. 추세, 변동성, 과매수/과매도 시장 분석 지표를 하나의 오실레이터로 통합하여 단기 신호를 식별합니다. 신호선의 주요 내부 매개변수는 사전 설정되어 있습니다. "Trend Wave Duration"은 이동평균선 추세를 사용하여 추세 방향으로 일련의 신호 지속 시간을 조절하고, "Apply Smoothing to Signal Line"은 신호선 생성 방식을 조정하는 매개변수로, 수동으로 조정할 수 있습니다. 시가에서 신호선을 계산할 때는 차트가 다시 그려지지 않습니다. 다른 가격대에서는 신호 화살표가 깜빡일 수 있습니다. 신호는 캔들 마감 후에 나타나며, 다양한 알림 유형을 사용할 수 있습니다. 권장 시간 프레임: M1, M5, M15, M30, H1. 이 지표는 원래 금 거래를 위해 설계되었지만, 스프레드가 낮은 변
제작자의 제품 더 보기
# Power Assisted Trend Following Indicator ## Overview The PowerIndicator is an implementation of the "Power Assisted Trend Following" methodology developed by Dr. Andreas A. Aigner and Walter Schrabmair. This indicator builds upon and improves J. Welles Wilder's trend following concepts by applying principles from signal analysis to financial markets. The core insight of this indicator is that successful trend following requires price movements to exceed a certain threshold (typically a mul
FREE
# Optimised Wilders Trend Following AutoAdjusting VixControlled Expert Advisor ## Overview The Optimised Wilders Trend Following AutoAdjusting VixControlled Expert Advisor is an advanced trading system for MetaTrader 5 that implements a sophisticated trend following strategy based on Welles Wilder's concepts, enhanced with modern risk management techniques. This EA combines multiple innovative features to adapt to changing market conditions while maintaining strict risk control parameters. #
Hidden Markov Model 4
Andreas Alois Aigner
HMM4 Indicator Documentation HMM4 Indicator Documentation Introduction The HMM4 indicator is a powerful technical analysis tool that uses a 4-Gaussian Hidden Markov Model (HMM) to identify market regimes and predict potential market direction. This indicator applies advanced statistical methods to price data, allowing traders to recognize bull and bear market conditions with greater accuracy. The indicator displays a stacked line chart in a separate window, representing the mixture weights of f
필터:
리뷰 없음
리뷰 답변