Trend Following EN

Complete description Trend Following

A mechanical trend following indicator, inspired by the style of John W. Henry (one of the pioneers of managed futures / CTA trading), built for MetaTrader 5. It combines a Donchian channel for identifying trend direction with an ATR-based trailing stop, filtered through ADX and higher-timeframe confirmation, all displayed through a complete, configurable visual dashboard.

Features:

  • Donchian + ATR Trailing Stop trend system — trend direction is determined by breakouts of the Donchian channel (highest high / lowest low over N bars), while an ATR-based trailing stop protects the position and follows the price as the trend progresses.
  • ADX signal quality filter — signals are validated only when trend strength (ADX) crosses a configurable minimum threshold, filtering out signals from sideways/directionless markets.
  • Higher Timeframe confirmation — a signal is considered valid only if the trend on a larger timeframe (determined automatically, e.g. M15→H1, H1→H4, H4→D1, etc.) confirms the same direction, using two exponential moving averages (fast/slow).
  • Automatically calculated Stop Loss & Take Profit — SL comes from the existing ATR trailing stop, while TP is projected using an independent ATR multiplier, in the direction of the current trend.
  • Automatic Risk:Reward with configurable minimum threshold — the panel shows in real time the R:R ratio resulting from the calculations (TP distance / SL distance) compared against the minimum acceptable ratio set by the user, colored green/orange depending on compliance.
  • On-chart dashboard with automatic scaling — a single input (font size) proportionally resizes the entire panel (title, signal, text, spacing), plus automatic scaling based on screen DPI — equally readable on a laptop, a 4K monitor, or a high-DPI screen.
  • Real semi-transparent background (alpha blending) — the panel is drawn on an ARGB canvas, not simulated with a flat color, so the chart remains visible underneath the panel.
  • Multi-channel alerts — pop-up Alert(), sound, and push notification to your phone on every new signal (BUY/SELL), without repeating alerts for the same bar/signal.
  • Live performance statistics — average calculation time (microseconds) displayed in the panel, useful for checking resource impact.
  • Optimized for performance — incremental updates of the auxiliary series (ATR/ADX) and throttling of panel text (only redraws what has changed), for minimal CPU usage even on charts with long history.
  • Full parameter validation on startup — the indicator refuses to run with invalid settings and explains the error in the log (Experts log).

2. Explanation of each input

=== Trend Following System ===

  • InpDonchianPeriod (default 20) — the number of bars used for the Donchian channel. When the closing price breaks the highest high / lowest low of the last N bars, the trend changes.
  • InpATRPeriod (default 14) — the ATR period used to calculate the trailing stop distance.
  • InpATRMult (default 3.0) — how many times ATR the stop is placed away from price. A higher value = a wider stop (fewer premature exits, but more risk per trade).

=== Signal Quality Filter ===

  • InpADXPeriod (default 14) — the ADX period, used to measure the strength of the current trend.
  • InpADXThreshold (default 20.0) — the minimum ADX level below which signals are ignored (market considered to lack a clear trend).
  • InpUseHigherTF (default true) — enables/disables higher-timeframe confirmation.
  • InpHTF_FastMA (default 50) — the fast moving average period, calculated on the higher timeframe.
  • InpHTF_SlowMA (default 200) — the slow moving average period, on the higher timeframe. If the fast one is above the slow one → up trend confirmed, otherwise → down trend confirmed.

=== Stop Loss / Take Profit ===

  • InpTPMult (default 6.0) — the ATR multiplier for the Take Profit distance from price (projected in the direction of the trend). With SL at 3×ATR and TP at 6×ATR, the theoretical R:R is 1:2.
  • InpMinRR (default 2.0) — the minimum Risk:Reward ratio you want to consider acceptable. It's compared in the panel against the actual R:R, calculated from the real SL/TP distances.

=== Visuals & Alerts ===

  • InpShowDashboard (default true) — shows/hides the panel on the chart.
  • InpCorner (default CORNER_LEFT_UPPER) — the chart corner the panel is anchored to.
  • InpPanelX / InpPanelY (default 12 / 20) — the panel's distance from the edges of the chosen corner (pixels, before scaling).
  • InpEnableAlert (default true) — enables the Alert() pop-up on a new signal.
  • InpEnableSound (default true) — plays a sound on a new signal.
  • InpEnablePush (default false) — sends a push notification to your phone (requires MetaQuotes ID configured in the terminal).
  • InpShowPerfStats (default true) — displays the average calculation time and current font size in the panel (useful for debugging/performance).

=== Text Size & Dashboard Scaling ===

  • InpFontSize (default 9, between 6-24) — the panel's text size; the entire panel geometry (width, height, spacing) scales automatically and proportionally with this input, plus screen DPI.

3. Trading methods with this indicator

a) Classic trend following (breakout + trailing)
Enter when the BUY/SELL arrow appears (Donchian breakout confirmed by ADX and the higher timeframe), place your SL at the trailing stop level shown in the panel, and let the position run — manually moving the SL as the ATR Trailing Stop line advances. Exit when the line changes color (opposite signal) or price dictates otherwise.

b) Entry with R:R confirmation (more conservative)
Wait for the BUY/SELL signal, but only open the position if the R:R row in the panel is green (actual R:R ≥ InpMinRR). If it's orange, skip the signal or adjust InpTPMult/InpATRMult until the ratio becomes favorable. Useful for automatically filtering out signals with a poor risk/reward profile.

c) Fixed SL/TP at entry (set-and-forget)
At the moment of the signal, note the Stop Loss and Take Profit values from the panel and place the order with both levels fixed (not trailing). Simple, suitable for those who don't want to actively monitor the position.

d) Additional filtering with trend strength (ADX)
Only take signals where the "Trend strength (ADX)" row shows STRONG, ignoring WEAK/MODERATE, to catch only the highest-momentum moves — reduces the number of trades, but (potentially) increases the success rate per trade.

e) Strict multi-timeframe confirmation
Enable InpUseHigherTF and only trade when the "Higher-TF confirmation" row shows YES — filters out signals going against the larger trend, reducing false positives on short ranges.

f) Scalping/pyramiding on trend continuation
On smaller timeframes, add additional positions each time the trend remains active and ADX is rising, using the new trailing stop level as a common SL for all positions — a more advanced technique, with higher risk.

4. Disclaimer / Notes

  • This indicator is a technical analysis tool, not a guarantee of profit. The signals generated (Donchian + ATR + ADX + HTF confirmation) reflect a mechanical trend-following methodology, but past performance (backtested or live) does not guarantee future results.
  • Financial markets involve real risk of capital loss. No combination of parameters eliminates risk; use your own risk management (position sizing, capital at risk per trade) regardless of the InpMinRR/InpTPMult values.
  • The SL/TP shown in the panel are calculated, not automatically placed — this file is an indicator, not an Expert Advisor; it does not open, modify, or close orders. The user must place trades and SL/TP levels manually (or through a separate EA).
  • Demo account testing and backtesting in the Strategy Tester are recommended before live use, on the desired symbol/timeframe, to validate the default settings in your market context.
  • Higher-timeframe confirmation requires sufficient historical data on that TF; on symbols/brokers with limited history, some signals may be temporarily unavailable (WARNING in the log).
  • Push alerts require correctly configuring the MetaQuotes ID in the terminal; sounds require the alert2.wav file to be available in the terminal (included by default in MT5).

추천 제품
Classic SNR MetaTrader 5 Expert Advisor | Multi-Symbol Support & Resistance Trading with Trend-Based Logic Overview Classic SNR Breakout EA is a professional trading robot that identifies structural Support & Resistance levels using daily swing points and executes trades based on H1 price action relative to these levels. The EA applies   dual logic : in an uptrend, it sells on H1 rejection below an SNR level; in a downtrend, it buys on H1 rejection above an SNR level. Breakout confirmations are
Gold EA: Proven Power for 1-Minute Gold Trading Transform your trading with our Gold EA, meticulously crafted for 1-minute charts and delivering over 2000% growth in 5 years from just $100-$1000 . No Martingale, No AI Gimmicks : Pure, time-tested strategies with robust money management, stop loss, and take profit for reliable performance across multiple charts. Flexible Trading Modes : Choose Fixed Balance for safe profits, Mark IV for bold growth, or %Balance for high rewards—combine Mark IV an
MACD Sniper Pro
Noppawat Tumjai
MACD Sniper Pro is an advanced automated trading system designed for traders seeking high-precision entries and robust risk management. By combining the classic momentum of MACD Crossover with a strict ADX Volatility Filter and Dynamic ATR Management , this EA completely eliminates emotional trading and filters out dangerous flat/sideways markets. Unlike standard MACD indicators that suffer during consolidation, MACD Sniper Pro verifies trend strength before entering and protects your capital us
FREE
Market Maestro: Your Ideal Partner for Automated Forex Trading If you're looking for a reliable assistant for trading in the currency market, Market Maestro is exactly what you need. This modern Forex bot is built using the latest technologies and algorithms, allowing it to effectively analyze market data and make informed trading decisions in real-time. Key Features of Market Maestro 1. Multicurrency Capability for Broad Opportunities Market Maestro can work with a wide range of currency pairs,
Eldorado Scalper
Dmitriq Evgenoeviz Ko
Eldorado Scalper: Премиум-алгоритм для торговли XAUUSD Eldorado Scalper — это многомерная алгоритмическая система, созданная для избирательной торговли золотом (XAUUSD) на таймфрейме M5. В основе подхода лежит анализ рыночной матрицы, объединяющей ценовую динамику, импульс, волатильность, ликвидность и сессионную структуру. Система не реагирует на хаотичные движения, а фильтрует рыночный шум. Ее цель — не максимальное число сделок, а точечное распознавание структурированных возможностей с высок
Phantom Edge SMC
Nattapon Chuekamhod
Phantom Edge SMC — The Ultimate Smart Money Indicator for MT5 Tired of manually drawing structures while trading SMC or ICT concepts? Let Phantom Edge SMC do the heavy lifting for you. Key Features Internal & Swing Structure: Automatically detects BOS and CHoCH across two structural levels. Order Blocks (OB): Identifies Internal and Swing OBs with automated mitigation tracking. Equal Highs / Lows: Highlights EQH / EQL to pinpoint Liquidity pools. Fair Value Gaps (FVG): Displays FVGs with
RSI Cortex Ai
Michael Prescott Burney
RSI Cortex AI for MT5 RSI Cortex AI is a MetaTrader 5 indicator designed to help traders analyze momentum using a multi-factor ranking model instead of relying only on a fixed RSI threshold approach. It combines momentum features, directional ranking, confidence scoring, and adaptive filtering into a clean TradingView-style workspace for chart-based analysis. What the indicator does RSI Cortex AI evaluates momentum using a broader feature set than a standard RSI line. It is designed to help trad
US500 Scalper
Sergey Batudayev
S&P 500 스캘퍼 어드바이저(S&P 500 Scalper Advisor)는 S&P 500 지수를 성공적으로 거래하고자 하는 트레이더를 위해 설계된 혁신적인 도구입니다. S&P 500 지수는 미국 주식 시장에서 가장 널리 사용되고 권위 있는 지표 중 하나로, 미국 500대 기업으로 구성되어 있습니다. 특징: 자동화된 거래 솔루션:       이 자문가는 고급 알고리즘과 기술적 분석을 기반으로 시장 상황의 변화에 맞춰 전략을 자동으로 조정합니다. 다양한 접근 방식:       자문가는 지수 추세 이해, 가격 변동 분석, 수익 극대화와 위험 최소화를 위한 알고리즘 등 여러 가지 전략을 결합합니다. 유연성 및 사용자 정의 가능성:       트레이더는 자신의 트레이딩 목표, 위험 수준, 트레이딩 전략 선호도에 맞춰 EA 설정을 사용자 지정할 수 있습니다. 위험 관리:       자문가는 시장을 지속적으로 모니터링하고 위험을 관리하기 위한 조치를 취합니다. 특정 손실 수준에 도달하면 거래
The Bitcoin Reaper
Profalgo Limited
3.71 (34)
출시 프로모션: 현재 가격으로는 매우 제한된 수의 사본만 구매 가능합니다! 최종 가격: 999달러 신규(349달러부터) --> 1개 무료 증정(거래 계좌 번호 2개에 한함). 최고의 콤보 상품     ->     여기를 클릭하세요 공개 그룹에 가입하세요:   여기를 클릭하세요   LIVE SIGNAL LIVE SIGNAL V2.0 UPDATE 2.0 INFO 비트코인 리퍼에 오신 것을 환영합니다!   골드리퍼의 엄청난 성공 이후, 저는 동일한 성공 원칙을 비트코인 ​​시장에도 적용할 때가 되었다고 생각했고, 와, 정말 유망해 보이네요!   저는 20년 넘게 거래 시스템을 개발해 왔으며, "단연" 제 전문 분야는 브레이크아웃 전략입니다. 이 간단하지만 효과적인 전략은 역대 최고의 트레이딩 전략 중 하나로 자리매김하며, 사실상 모든 시장에 적용할 수 있습니다.       특히 비트코인처럼 변동성이 큰 시장에서는 더욱 빛을 발합니다!   그렇다면 이 전략은 어떻게 작동할까요? 브레이크
ONNYX INDICATOR 버전 1.14 MetaTrader 5용 수요·공급 구역 분석 지표입니다. 확정된 스윙을 기준으로 구역을 생성하고 ATR로 폭을 조정하며 품질을 백분율로 표시합니다. 종가가 확정된 후 생성된 BUY/SELL 신호는 사라지지 않도록 설계되었습니다. 주요 기능 - 구역 내부에 품질 백분율을 표시하는 수요·공급 구역. - 확정 봉에서 나타나는 큰 BUY/SELL 화살표. - 선택 가능한 EMA 추세 필터와 캔들 거부 확인. - 추세, 가격 레벨 및 시장 상황 패널. - 관련 경제 뉴스 최대 5개 표시. 발표 전 Forecast/Previous, 발표 후 Actual 표시. - 60초 뉴스 갱신 및 전략 테스터용 캘린더 캐시. - 팝업, 푸시 및 이메일 알림. - iCustom 버퍼: 0=BUY 가격, 1=SELL 가격. 사용 방법 차트에 지표를 적용하고 히스토리 로딩을 기다린 뒤 추세와 활성 구역을 확인하십시오. 확정 봉 신호를 개인 리스크 관리와 함께 사용하십
Magic EA MT5
Kyra Nickaline Watson-gordon
Magic EA is an Expert Advisor based on Scalping, Elliot Waves and with filters such as RSI, Stochastic and 3 other strategies managed and decided with the robot smartly. Large number of inputs and settings are tested and optimized and embedded in the program thus inputs are limited and very simple. Using EA doesn't need any professional information or Forex Trading Knowledge. EA can trade on all symbols and all time frames, using special and unique strategies developed by the author. The EA w
Cyclone Intraday
Mikhail Mitin
5 (1)
How the EA works (simple explanation) Trades on M5 timeframe Uses H1 timeframe to analyze global market context Analyzes 2 or 3 timeframes simultaneously On each timeframe: Checks price position relative to one or two Moving Averages Evaluates MA angle and distance between price and MA Entry logic is based on trend + volatility conditions , not on random signals The full algorithm is illustrated in the screenshots. Recommended usage Symbol: EURUSD Timeframe: M5 Trading style: Intraday
지표에 대하여 이 지표는 금융 상품의 종가에 대한 몬테카를로 시뮬레이션을 기반으로 합니다. 몬테카를로는 통계적 기법으로, 이전에 관찰된 결과에 기반한 랜덤 숫자를 사용하여 다양한 결과가 나올 확률을 모델링하는 데 사용됩니다. 어떻게 작동하나요? 이 지표는 과거 데이터를 바탕으로 시간에 따른 랜덤 가격 변화를 모델링하여 특정 종목에 대한 여러 가격 시나리오를 생성합니다. 각 시뮬레이션은 종가 변동을 반영하기 위해 랜덤 변수를 사용하여, 주어진 기간 동안 미래 시장 움직임을 효과적으로 모방합니다. 몬테카를로 시뮬레이션의 장점 - 몬테카를로 시뮬레이션은 다양한 미래 시나리오에 대한 테스트를 통해 여러 거래 전략의 리스크를 분석하는 데 도움을 줍니다. - 희귀한 극단적 사건(꼬리 위험)을 포함하여 다양한 시장 상황에서 전략의 성과를 확인할 수 있습니다. - 단일 예측에 의존하지 않고, 몬테카를로는 관련 확률과 함께 잠재적 결과의 범위를 제공합니다. 이는 수익 또는 손실 가능성을 이해하는
AurumPulse Pro Gold
Mohamad Syamir Bin Senin
AurumPulse Pro – Smart Intraday Gold Trading EA AurumPulse Pro is a professional XAUUSD intraday trading robot designed for real-tick market conditions, combining momentum logic, dynamic trade management, and session-based execution to capture high-probability gold movements on lower timeframes. About AurumPulse Pro AurumPulse Pro is a fully automated Expert Advisor for MetaTrader 5 , specifically optimized for Gold (XAUUSD) trading under real tick conditions . This EA is designed for traders
| Fully-automated Smart Money Concept (ICT) inspired trading solution with multi-strategy capabilities | Built by a grid trader >> for grid traders.  This is MT5 version, click  here  for  Blue CARA MT4  (settings and logics are same in both versions)     Real monitoring signal  -->  Cara Gold Intro Blue CARA EA   ('CARA') - short for  C omprehensive  A lgorithmic   R esponsive   A dvisor is a next-gen  multi-currency    multi-timeframe  EA base on the widely known (and perhaps the most popul
RBreaker
Zhong Long Wu
RBreaker Gold Indicators는 금 선물을 위한 단기 데이 트레이딩 전략으로, 추세 추종과 데이 내 반전의 두 가지 거래 방식을 결합합니다. 추세 장에서 수익을 포착할 수 있을 뿐만 아니라, 시장이 반전될 때 적시에 이익을 확정하고 추세에 맞춰 반대 포지션을 잡을 수 있습니다. 이 전략은 미국 잡지 Futures Truth에서 15년 연속으로 가장 수익성 높은 트레이딩 전략 상위 10위 안에 선정되었습니다. 긴 라이프사이클을 자랑하며, 현재까지 국내외에서 널리 사용되고 연구되고 있습니다. 본 지표는 2026년 금 선물의 움직임을 반영하여 14일 ATR 지표를 기반으로 돌파 계수 A, 관찰 계수 B, 반전 계수 R을 보다 합리적인 값으로 정의했습니다. 매우 훌륭한 지표이며, 안정적인 연간 수익성을 달성했습니다. 강력히 추천합니다~ 위 지표는 변동성이 높은 상품에 적합하며, 매개변수는 금 선물, 주가 지수 선물 등에 적합합니다. 다른 상품이 필요한 경우 돌파 계수 A
Institutional FX Cross Rate Heatmap Stop trading one pair blindly. Start reading the full currency market with structure, speed, and clarity. The Institutional FX Cross Rate Heatmap with Currency Strength Ranking is a professional MetaTrader 5 dashboard indicator designed to help forex traders instantly identify which currencies are gaining strength, which currencies are weakening, and which cross pairs deserve attention. Instead of jumping from chart to chart, this indicator gives you a comple
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
Introduction to the Manual Backtesting Indicator on MQL5 The MetaTrader platform provides an excellent backtesting tool for evaluating Expert Advisors (EAs). However, when it comes to manually backtesting a strategy to assess its effectiveness, this tool has some limitations: You cannot manually draw zones or trend lines while in backtesting mode. You cannot switch timeframes to check time alignment. For example, if my strategy requires additional confirmation from a higher timeframe (HTF), this
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
HTB Throne Gold Scalper EA는 XAUUSD(금)를 대상으로 하는 자동 매매 시스템으로, M5 타임프레임에서 작동합니다. 이 시스템은 사전에 정의된 규칙과 관리된 위험 매개변수를 기반으로 일중 스캘핑 거래를 실행합니다. 본 EA는 시장 구조와 변동성 조건을 분석하여 거래 기회를 선택합니다. 각 거래는 개별적으로 관리됩니다. 그리드 전략이나 마틴게일 기법은 사용하지 않습니다. 위험 관리 전체 위험을 관리하기 위한 일일 손실 제한 거래 활동은 계좌 잔액에 따라 조정됩니다 높은 변동성이 예상되는 뉴스 이벤트 동안 거래를 제한하는 뉴스 필터 브로커 및 계좌 요구 사항 Raw Spread 또는 ECN 계좌에 맞게 설계됨 낮은 스프레드와 빠른 체결 환경 권장 XAUUSD에 최적화됨 거래 프로필 거래 종목 XAUUSD(금) 타임프레임 M5 거래 스타일 일중 스캘핑 거래 기간 단기 위험 모델 관리형 전략 유형 그리드 없음, 마틴게일 없음 권장 사용자 위험 관리가 포함된 자동 매
Viking Alpha DAX Ivar Edition
Valdeci Carlos Dos Passos Albuquerque
Viking Alpha DAX — Germany 40 Expert Advisor for MetaTrader 5 LAUNCH PROMO Only 10 copies at launch price. Price increases with each sale. Launch price: $297 Next price: $497 Final price: $997 Live Performance: FX Blue — Vikingtradingbots What Makes Viking Alpha DAX Different Most DAX robots fail for one simple reason: they treat the Germany 40 like a forex pair. It isn't. The DAX has a heartbeat — a specific rhythm tied to the Frankfurt Stock Exchange opening, the European session structure, an
Gold speedster
Simon Aderinola Akinteye
Gold Speedster EA — Precision. Speed. Profitability. THE EA MYFXBOOK LINK NOW WORKING Up almost 3% in just few days. MyFxbook link :                https://www.myfxbook . com/members/CannyFX/gold-speedster/12075079 Kindly remember to clear the space just before com/ above when pasting the link in your browser. Unleash the power of intelligent automated trading with Gold Speedster , a next-generation Expert Advisor engineered exclusively for XAUUSD (Gold) . Built for traders who demand performa
Premium level Pro
Dmitriy Kashevich
Premium level is a unique indicator with more than 80% accuracy of correct predictions! This indicator has been tested for more than two months by the best Trading Specialists! The author's indicator you will not find anywhere else! From the screenshots you can see for yourself the accuracy of this tool! 1 is great for trading binary options with an expiration time of 1 candle. 2 works on all currency pairs, stocks, commodities, cryptocurrencies Instructions: As soon as the red arrow app
Divergent Stochastic Filter II Catch Reversals Early, Filter Noise, Trade with Confidence The Edge: Why This Stochastic is Different  Every trader knows the Stochastic oscillator. But knowing when to trust its signals, that's the real challenge. The Divergent Stochastic Filter II transforms this classic indicator into a precision reversal detection system by adding critical elements: divergence intelligence, signal filtering and exhaustion detection.  While standard Stochastic oscillators fire s
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.
HMA Scalper Pro EA
Vladimir Shumikhin
5 (2)
HMA Scalper Pro EA — Hull Moving Average (HMA) 지표 기반 MetaTrader 5 자동 거래 어드바이저 개요 HMA Scalper Pro EA는 Hull Moving Average (HMA) 방향으로 거래하는 MetaTrader 5용 전문 트레이딩 로봇(Expert Advisor)입니다. HMA 지표는 현재 추세 방향을 결정하며, 어드바이저는 Smart Risk 자본 관리, 적응형 그리드 거래, 트레일링 스톱, 브레이크 이븐 및 시간 필터로 보완된 해당 방향으로 거래를 실행합니다. 이 어드바이저는 Netting 및 Hedging 계정을 모두 지원하며 금(XAU/USD), 외환 통화쌍, 원유, 지수 및 암호화폐 거래에 적합합니다. HMA SCALPER PRO EA를 선택해야 하는 이유 - Hull Moving Average 신호 — 클래식 이동 평균보다 추세 변화에 더 빠르게 반응하는 HMA 방향 기반 진입 - 멀티 타임프레임 HMA 계산
Aegis DAX Scalper EA is a MetaTrader 5 Expert Advisor designed for short-term trading on GER40/DAX40. The system combines a M5 trend filter with M1 pullback entries, RSI confirmation, candle structure analysis, spread filtering, volatility filtering and automated trade management. The EA does not use grid, martingale or recovery basket logic. Each trade is opened with a real stop loss and managed through break-even and trailing stop rules. Version 1.01 includes improved compatibility with di
금 거래의 혁신! "Gold Martingale Robot EA" (MT5)로 기하급수적이고 지속 가능한 성장을 이끌어내세요 끊임없이 차트만 쳐다보는 것에 지치셨나요? 시장에 큰 영향을 미치는 경제 뉴스가 발표될 때마다 스트레스를 받으시나요? 아니면 수익을 냈음에도 불구하고 주말 동안 포지션을 유지하다가 수익이 사라지는 것을 지켜보기만 하셨나요? 시행착오는 이제 그만! Gold Martingale Robot EA 를 소개합니다. 이 시스템은 장기적인 포트폴리오 성장, 기하급수적인 복리 수익, 그리고 엄격한 위험 관리 프로토콜을 추구하는 진지한 투자자만을 위해 독점적으로 설계된 궁極의 자동화 MT5 거래 시스템입니다. 왜 "Gold Martingale Robot EA"가 당신의 포트폴리오에 필요한 마지막 퍼즐 조각일까요? 1. 기하급수적인 포트폴리오 성장 (복리의 마법) 이 EA는 단기적이고 위험한 도박을 위해 만들어지지 않았습니다. 철저히 "장기적인" 수익성을 위해
CyberTradeTHxAI Gold Sniper MT5 Professional Gold Trading Signal Indicator for MetaTrader 5 CyberTradeTHxAI Gold Sniper MT5 is a professional-grade Gold (XAUUSD) trading indicator developed to identify high-probability Buy and Sell opportunities using trend analysis, pullback confirmation, and intelligent market structure detection. Designed for both beginner and advanced traders, the indicator automatically calculates optimal Entry Zones, Stop Loss, and multiple Take Profit levels while provid
이 제품의 구매자들이 또한 구매함
Neuro Poseidon MT5
Daria Rezueva
4.85 (54)
Neuro Poseidon is a new indicator by Daria Rezueva. It combines precise trading signals with adaptive TP/SL levels - creating best possible trades as a result! Message me and get  Neuro Poseidon Assistant  as a gift to automize your trading process! What makes it stand out? 1. Proven profitability on all assets and timeframes 2. Only confirmed BUY and SELL signals present on the chart 3. Adaptive TP & SL levels generated by the software for each trade 4. Easy to understand - suitable for al
Entry Points Pro for MT5
Yury Orlov
4.51 (148)
전설이 돌아왔습니다: Entry Points Pro 10. MQL5 마켓 Top-3 자리를 3년간 지켜온 전설적인 지표의 재출시입니다. 수백 개의 호평 리뷰(두 버전 합산 589개), 매일 이 지표로 거래하는 수천 명의 트레이더, 31,000회 이상의 데모 다운로드   MT4+MT5 . 지난 5년간 여러분이 남긴 리뷰를 하나도 빠짐없이 읽었고, 약속 대신 그 답을 버전 10에 담았습니다. 1999년부터 시장에서 활동하며 정직함과 자신의 평판, 그리고 고객을 소중히 여기는 개발자가 만들었습니다. Entry Points Pro의 진입 시그널은 절대 리페인팅되지 않습니다. 그리고 이번에는 개발자의 말뿐이 아니라 검증 가능한 사실입니다: 확정 시그널은 캔들 종가에서만 표시되며, 자동화 테스트에서 리페인팅 0건 이 확인되었습니다(EURUSD, XAUUSD, BTCUSD에서 2,486,568회의 불변조건 검사 — 위반 0건). 검증 방법은 공개되어 있으니 전략 테스터에서 직접 재현해 보실 수
ARICoins
Temirlan Kdyrkhan
ARICoin 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 Cust
M1 Quantum MT5
Hamed Dehgani
4.27 (11)
M1 Quantum을 이용한 실시간 트레이딩 신호 : 신호   ( Quantum Trade Assistant 에 의해 거래가 자동으로 실행되며, 이 제품에 무료 로 포함되어 있습니다.) 가격 계획: 현재 가격: $169 (얼리 어답터 혜택) 다음 예정 가격: $189 예정 소매 가격: $299 개발자 안내: 구매 후 저에게 연락하시면 최신 권장 설정 파일(Set File) , 사용 팁, 그리고 다른 M1 Quantum 사용자들과 소통할 수 있는 VIP 지원 그룹 초대장을 받으실 수 있습니다. 자주 묻는 질문 - 설정 파일 - 설치 가이드 M1 Quantum 은 M1 전용 전문 트레이딩 시스템으로, 손절(Stop Loss), 익절(Take Profit), 그리고 스마트 자금 관리 기능이 내장된 빠르고 정확한 거래 신호를 제공합니다. M1 Quantum 은 연속 수익 거래 에 집중하여 계좌를 빠르게 성장시키도록 설계된 전문 자금 관리 시스템을 포함하고 있습니다. M1 Quantum
Divergence Bomber
Ihor Otkydach
4.9 (92)
가끔은 제가 직접 이 시스템을 이용해 거래를 하곤 합니다. 실계좌에서 제가 직접 수행하는 BOMBER 트레이딩을 확인해 보세요 - LIVE SIGNAL 이 지표를 구매하신 분께는 다음과 같은 혜택이 무료로 제공됩니다: 각 거래를 자동으로 관리하고, 손절/익절 수준을 설정하며, 전략 규칙에 따라 거래를 종료하는 전용 도우미 툴 "Bomber Utility" 다양한 자산에 맞게 지표를 설정할 수 있는 셋업 파일(Set Files) "최소 위험", "균형 잡힌 위험", "관망 전략" 모드로 설정 가능한 Bomber Utility의 셋업 파일 이 전략을 빠르게 설치, 설정, 시작할 수 있도록 돕는 단계별 영상 매뉴얼 주의: 위의 모든 보너스를 받기 위해서는 MQL5 개인 메시지 시스템을 통해 판매자에게 연락해 주세요. 독창적인 커스텀 지표인 “Divergence Bomber(다이버전스 봄버)”를 소개합니다. 이 지표는 MACD 다이버전스(괴리) 전략을 기반으로 한 올인원(All-in-On
Quantum TrendPulse
Bogdan Ion Puscasu
5 (25)
SuperTrend   ,   RSI   ,   Stochastic   의 힘을 하나의 포괄적인 지표로 결합하여 트레이딩 잠재력을 극대화하는 궁극의 트레이딩 도구   인 Quantum TrendPulse를   소개합니다. 정밀성과 효율성을 추구하는 트레이더를 위해 설계된 이 지표는 시장 추세, 모멘텀 변화, 최적의 진입 및 종료 지점을 자신 있게 식별하는 데 도움이 됩니다. 주요 특징: SuperTrend 통합:   주요 시장 추세를 쉽게 따라가고 수익성의 물결을 타세요. RSI 정밀도:   매수 과다 및 매도 과다 수준을 감지하여 시장 반전 시점을 파악하는 데 적합하며 SuperTrend 필터로 사용 가능 확률적 정확도:   변동성이 큰 시장에서 숨겨진 기회를 찾기 위해 확률적 진동   을 활용하고 SuperTrend의 필터로 사용 다중 시간대 분석:   M5부터 H1 또는 H4까지 다양한 시간대에 걸쳐 시장을 최신 상태로 유지하세요. 맞춤형 알림:   맞춤형 거래 조건이 충족되면
ARIPoint
Temirlan Kdyrkhan
1 (1)
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
TrendMaestro5
Stefano Frisetti
note: this indicator is for METATRADER4, if you want the version for METATRADER5 this is the link:  https://www.mql5.com/it/market/product/108106 TRENDMAESTRO ver 2.5 TRENDMAESTRO recognizes a new TREND from the start, he never makes mistakes. The certainty of identifying a new TREND is priceless. DESCRIPTION TRENDMAESTRO identifies a new TREND in the bud, this indicator examines the volatility, volumes and momentum to identify the moment in which there is an explosion of one or more of these da
RelicusRoad Pro MT5
Relicus LLC
4.96 (24)
RelicusRoad Pro: 퀀트 시장 운영 체제 70% 할인 평생 이용권 (한정 시간) - 2,000명 이상의 트레이더와 함께하세요 왜 대부분의 트레이더는 "완벽한" 지표를 가지고도 실패할까요? 진공 상태에서 단일 개념 만으로 거래하기 때문입니다. 문맥 없는 신호는 도박입니다. 지속적인 승리를 위해서는 컨플루언스(중첩) 가 필요합니다. RelicusRoad Pro는 단순한 화살표 지표가 아닙니다. 완전한 퀀트 시장 생태계 입니다. 독점적인 변동성 모델링을 사용하여 가격이 이동하는 "공정 가치 로드"를 매핑하고, 단순 노이즈와 실제 구조적 돌파를 구분합니다. 추측은 그만두세요. 기관급 로드 로직으로 거래를 시작하세요. 핵심 엔진: "Road" 알고리즘 시스템의 중심에는 시장 상황에 실시간으로 적응하는 동적 변동성 채널인 Road Algo 가 있습니다. 세이프 라인(평형) 과 가격이 수학적으로 반전될 가능성이 높은 확장 레벨 을 투영합니다. Simple Road: 일반적인 시장을 위
Azimuth Pro
Ottaviano De Cicco
5 (7)
Azimuth Pro V2: Synthetic Fractal Structure and Confirmed Entries for MT5 Overview Azimuth Pro is a multi-level swing structure indicator by Merkava Labs . Four nested swing layers, swing-anchored VWAP, ABC pattern detection, three-timeframe structural filtering, and closed-bar confirmed entries — one chart, one workflow from micro-swings to macro-cycles. This is not a blind signal product. It is a structure-first workflow for traders who care about location, context, and timing. ️ Summer Sale
KURAMA GOLD SIGNAL PRO (MT5) — 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 골드 트레이더 커뮤니티에서 실제로 사용되며 정확성과
Btmm state engine pro
Garry James Goodchild
5 (4)
BTMM State Engine Pro by G-Labs — Beat The Market Maker indicator for MetaTrader 5. 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, d
UZFX {SSS} 스캘핑 스마트 시그널 v4.0 MT5는 급변하는 시장에서 정확한 실시간 시그널을 필요로 하는 스캘퍼, 데이 트레이더, 스윙 트레이더를 위해 설계된 리페인팅이 없는 고성능 트레이딩 지표입니다. (UZFX-LABS)에서 개발한 이 지표는 가격 움직임 분석, 추세 확인 및 스마트 필터링을 결합하여 모든 통화 쌍과 시간대에서 높은 확률의 매수 및 매도 신호, 경고 신호, 추세 지속 기회를 생성합니다. 거래에 대한 의구심을 떨쳐버리고, 명확성, 정밀성, 그리고 규율 있는 시장 실행을 원하는 트레이더를 위해 설계된 체계적인 신호 시스템을 따르기 시작하세요. 제 추천* 최적의 시간대: 15분 이상. {H1}이 제가 가장 선호하는 시간대입니다. 그리고 그 결과는 정말 놀라울 정도입니다...!! 주요 기능 업데이트 • 자동 매수 및 매도 신호 감지 • 고급 반전 인식 로직 • 잠재적인 시장 반전 전 조기 경고 신호 • 추세 지속 확인 신호 • 진입, 손절, TP1, TP2,
Precision Spike Detector
Francisco Mandomo Simbine
5 (2)
Precision Spike Detector V3 – Institutional-Grade AI Trading System Attention: The price increases by US$50 for every 10 purchases.  Final price: US$599 Precision Spike Detector V3   is a   state-of-the-art, institutional-grade market analysis system   for   MetaTrader 5 , designed to detect   high-probability market movements   in synthetic indices such as   Boom, Crash, GainX, and PainX . After purchase, please contact me through the MQL5 messaging system to receive the order management tool
SkyHammer Signal Pro
Shengzu Zhong
5 (4)
SkyHammer Signal Pro Entry, SL, TP 레벨이 고정되는 전문 No-Repaint 추세 신호 인디케이터 SkyHammer Signal Pro는 명확하고 고정되며 검증 가능한 신호를 원하는 트레이더를 위해 설계된 구조적인 추세 및 모멘텀 신호 인디케이터입니다. 특히 M1 및 M5 같은 낮은 시간대에서 가장 효과적으로 작동합니다. 이 인디케이터는 시장의 고점이나 저점을 예측하려고 하지 않습니다. 대신 신호를 생성하기 전에 확인된 시장 구조, 추세 방향, 모멘텀 강도, 건강한 변동성, 그리고 목표까지의 충분한 공간을 기다립니다. 주요 기능 고정 신호 메커니즘 신호가 확인되면 화살표, Entry, Stop Loss, TP1, TP2 레벨이 차트에 영구적으로 고정됩니다. 이후 캔들 움직임 때문에 신호가 사라지거나, 이동하거나, 변경되지 않습니다. 이를 통해 트레이더는 각 신호를 명확하게 검토할 수 있으며, 실시간 시장에서 신호가 사라지는 일반적인 문제를 피할 수 있습니다
Trend Forecaster
Alexey Minkov
5 (8)
Trend Forecaster is a MetaTrader 5 indicator that combines breakout signals, possible reversal area analysis, market range data and a visual statistics panel in one chart workspace. It shows Buy and Sell signals, tracks Average Range and Current Range, and can automatically adjust Sensitivity for the current symbol and timeframe. Manual Sensitivity control is also available. The indicator can be used on Forex pairs, metals, stocks, indices and cryptocurrencies. Different timeframes are supported
Zain Gold ScalpingV5
Ahmed Gamal Abdel Nasser Mohamed
# Zain Gold Scalping V5 Indicator - Multi-Timeframe Forex & Gold Trading Indicator **Zain Gold Scalping V5** is a comprehensive and professional technical analysis tool, specifically designed for the MetaTrader 5 (MT5) platform. This indicator is tailored to meet the needs of both retail and professional traders, offering an exceptional combination of speed, multi-timeframe adaptability, and superior analytical accuracy. Whether you're looking for high-volatility price movements in precious me
The Oracle Pro
Ottaviano De Cicco
5 (1)
The Oracle Pro: Synthetic Multi-Timeframe Bias Engine for MT5 ️ Summer Launch Offer — Get The Oracle Pro for USD 199 (early buyers). Price rises with traction; final price USD 399. The Oracle Pro is a premium multi-timeframe bias engine for MetaTrader 5, built for demanding and professional traders. It answers one question with discipline: what is the directional bias on each timeframe right now, how strong is it, and how much do the timeframes agree? Everything is computed on closed bars only
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   진입 또는 목표의 명확한 트리거 포인트를 정확히 찾아냄으로 해서 거래가 어떻게 개선될지 상상해 보십시오. 새로운 알고리즘을 기반으로 매수자와 매도자 간의 잠재적인 불균형을 훨씬 더 쉽게 분간할 수 있습니다. 왜냐하면 가장 강한 공급영역과 가장 강한 수요 영역과 과거에 어떻게 진행 되었는지를(이전
MT5용 A2SR 지표: 자동화된 실제 수요 및 공급(S/R). + 거래 상품. Product description in English here. --   Guidance   : -- at   https://www.mql5.com/en/blogs/post/734748/page4#comment_16532516 -- and  https://www.mql5.com/en/users/yohana/blog 더욱 스마트한 거래 결정을 위한 강력하고, 정확하며, 시간 절약적인 기능 + EA 호환 객체. 주요 장점 선행 실제 SR 레벨(지연 또는 재표시 없음) 2014년부터 MT4 에서 수년간 입증된 신뢰성을 바탕으로 A2SR이 이제 MetaTrader 5에서도 사용 가능합니다. 가격이 도달하기 전에 실제 지지선과 저항선을 식별하는 선행적이고 재표시 없는 지표를 통해 트레이더에게 탁월한 우위를 제공합니다. A2SR은 가격이 도달하기 전에 지지선과 저항선을 미리 계산하여 트레이더가 자신
Bill Williams Advanced
Siarhei Vashchylka
5 (11)
Bill Williams Advanced is designed for automatic chart analysis using Bill Williams' "Profitunity" system. The indicator analyzes four timeframes at once. Manual (Be sure to read before purchasing) Advantages 1. Analyzes the chart using Bill Williams' "Profitunity" system. Signals are displayed in a table in the corner of the screen and on the price chart. 2. Finds all known AO and AC signals, as well as zone signals. Equipped with a trend filter based on the Alligator. 3. Finds "Divergence Bar
Ziva LSE Pro
Hassan Abdullah Hassan Al Balushi
ZIVA LSE Pro: Trade the Flow, Not the Noise ZIVA LSE Pro was developed around a simple belief: professional traders do not need more random signals; they need better context. This workflow reflects the ZIVA approach to filtering market noise and focusing on the liquidity and structural mechanics that influence price behavior. Most indicators treat the market like a static picture. ZIVA LSE Pro is built to read it as a dynamic environment where liquidity, structure, volatility, and execution con
ICT PO3 (Power of 3) AMD Protocol Framework Indicator True Time & Structure Integration   |  Non-Repainting | Real-Time  | Multi-Asset  | MT4 Version Available Full Setup Guide & Strategy Playbook: https://www.mql5.com/en/blogs/post/768683 MT4 Version: https://www.mql5.com/en/market/product/171742 Indicator Overview The ICT PO3 AMD Protocol Framework is a complete structural overlay for MetaTrader 5 that maps the True Daily Cycle directly onto your lower-timeframe execution chart. It projects
소개       Quantum Breakout PRO   , 브레이크아웃 존 거래 방식을 변화시키는 획기적인 MQL5 지표! 13년 이상의 거래 경험을 가진 숙련된 트레이더 팀이 개발한       퀀텀 브레이크아웃 PRO       혁신적이고 역동적인 브레이크아웃 존 전략으로 거래 여정을 새로운 차원으로 끌어올리도록 설계되었습니다. Quantum Breakout Indicator는 5개의 이익 목표 영역이 있는 브레이크아웃 영역의 신호 화살표와 브레이크아웃 상자를 기반으로 한 손절 제안을 제공합니다. 초보자 거래자와 전문 거래자 모두에게 적합합니다. Quantum EA 채널:       여기를 클릭하세요 중요한! 구매 후 설치 매뉴얼을 받으려면 개인 메시지를 보내주십시오. 추천: 기간: M15 통화쌍: GBPJPY, EURJPY, USDJPY,NZDUSD, XAUUSD 계정 유형: 스프레드가 매우 낮은 ECN, Raw 또는 Razor 브로커 시간: GMT +3 중개인 :
Connix MT5
Garry James Goodchild
5 (1)
Connix SMC by G-Labs — Smart Money Concepts and ICT multi-pair scanner for MetaTrader 5. Order blocks, fair value gaps, break of structure, change of character, VWAP, premium and discount range, and multi-timeframe dashboard from one chart. Connix scans multiple symbols across configurable timeframes and shows market structure status in an interactive table while drawing the same structures on the active chart. It is an analytical toolkit — you control every setting; it does not place trades a
Spike detector Green V2
Odete Argelio Simbine
Obrigado por adquirir o Green Spike Detector V2. Caso precise de ajuda com a instalação, ativação, atualizações ou suporte técnico, entre em contato comigo pelo WhatsApp: +258 86 756 5485. Detector de picos Verde V2 Sistema de Detecção de Picos - Versão 2 Indicador que não repinta, otimizado para mercados de alta volatilidade, como Boom, Crash e Índices de Volatilidade. Detecta movimentos de momentum fortes (picos) com baixa latência. O que mudou na versão 2: O algoritmo é 47% mais preciso que
Gem SIGNAL
Shengzu Zhong
5 (1)
GEM Signal Pro GEM Signal Pro는 MetaTrader 5용 추세추종형 지표로, 차트에서 더 명확한 신호, 더 구조적인 트레이드 설정, 그리고 더 실용적인 리스크 관리를 원하는 트레이더를 위해 설계되었습니다. 단순한 화살표만 표시하는 것이 아니라, GEM Signal Pro는 전체 트레이드 아이디어를 더 깔끔하고 읽기 쉬운 방식으로 보여줍니다. 조건이 확인되면 진입가, 손절가, 목표가를 차트에 표시하여 트레이더가 설정을 더 효율적으로 검토할 수 있도록 도와줍니다. 작동 방식 이 지표는 먼저 내부 로직에 따라 유효한 초기 신호를 식별합니다. 확인 조건이 충족되면, GEM Signal Pro는 차트에 전체 설정을 표시합니다. 이를 통해 트레이더는 거래 구조를 더 명확하게 보고, 수동 분석 작업을 줄일 수 있습니다. 차트에 표시되는 거래 레벨 확인된 신호에 대해, GEM Signal Pro는 다음을 표시할 수 있습니다. 진입가 손절가 목표가 1 목표가 2 목표가 3 손
PrimeScalping
Temirlan Kdyrkhan
PrimeScalping 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 e
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
QUASAR SYNC 3TF: The Ultimate Pro HUD Dashboard A next-generation MTF indicator combining perfect visibility with high-precision trend analysis. [ 5 Core Features ] 100% Non-Repaint: Arrows and signals never repaint, disappear, or shift after the candle closes. 3TF Sync System: Instantly analyzes the current and two higher timeframes. The panel and candles highlight brightly when all 3 trends perfectly align. 10 Premium Themes: Click the "THEME" button to instantly switch between 10 beautiful U
제작자의 제품 더 보기
Atlas Enterprise
Marian Beceanu
Atlas Enterprise — Institutional Matrix Dashboard Atlas Terminal System is a professional, high-performance institutional dashboard designed to bring the analytical power of a Bloomberg Terminal directly to your MetaTrader 5 chart. Instead of cluttering your screen with multiple indicators, Atlas processes market data through 4 specialized mathematical engines simultaneously, presenting a clean, unified decision matrix in real-time.   Whether you are a day trader or a swing trader, Atlas elimin
ZigZag Maturity — Multi-Timeframe Swing Maturity & Reversal Probability Dashboard Overview ZigZag Maturity is a multi-timeframe indicator for MetaTrader 5 that answers a single question, one that matters for any technical trader: “ How ‘ mature ’ (close to exhaustion) is the current swing, on every timeframe I follow? ” Instead of a classic ZigZag that just draws lines on the chart, this indicator builds its own ZigZag on every activated timeframe, compares it statistically against its own hist
Integrated Bloomberg Dashboard — Your Market Decision Cockpit Why It Matters Every trader eventually runs into the same problem: too many charts, too many windows, too much fragmented information . You open 9 timeframes, apply 10 indicators to each, and try to keep track of what each one says, on each interval, in real time. It's exhausting, it's slow, and worst of all — it's easy to lose sight of exactly the combination of signals that mattered. Integrated Bloomberg Dashboard solves exactly tha
StrBTV Pro MTF
Marian Beceanu
STRBTV Pro MTF — Detailed Description STRBTV stands for "Sell The Rally, Buy The Valley" — an MT5 indicator (v2.10, by Marian Beceanu) built around multi-timeframe MACD convergence/divergence , with a "sniper entry" logic based on Support/Resistance and a built-in risk-management dashboard. General Concept The indicator works on two levels: Higher timeframe (HTF) — looks for convergence between price and MACD on the swing highs/lows of that timeframe. A confirmed HTF convergence is treated as t
Forex Uncovered
Marian Beceanu
Forex Uncovered PRO v4.60 Professional Support & Resistance Breakout Indicator for MetaTrader 5 Overview Forex Uncovered PRO v4.60 is a professional Support & Resistance Breakout indicator built for MetaTrader 5. Unlike traditional trend indicators, Forex Uncovered focuses on Price Action by automatically identifying significant swing highs and swing lows, building dynamic support and resistance zones, and detecting confirmed breakout opportunities. To reduce false signals, the indicator combine
필터:
리뷰 없음
리뷰 답변