거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Facebook에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

ATR Ranked Support and Resistance Zones - MetaTrader 5용 지표

Talal N Z Aljarusha
Talal N Z Aljarusha
3 (2)
MT5 tools developer focused on Smart Money Concepts, market structure, liquidity mapping, and professional chart visualization.
조회수:
1589
평가:
(1)
게시됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
This indicator is an example of building support and resistance as price areas rather than exact horizontal lines.

It starts with confirmed pivot highs and lows. Nearby pivots are then merged using a distance based on ATR, so the same logic can adjust to different symbols and timeframes.

Each area receives a score from three parts:

- how many reactions were grouped inside it
- how far price moved after those reactions
- how recently the area was tested

Only the highest-ranked areas are drawn. Zones below the current price are shown as support and zones above it as resistance.

The code is mainly intended as a starting point for developers who want to experiment with level clustering without using a fixed number of clusters.

One limitation is worth noting: support and resistance are classified from their position relative to the current price. A more advanced version could wait for a confirmed break and retest before changing the role of a zone.


This code is shared for educational purposes. It is intended to demonstrate confirmed pivot detection, ATR-based zone merging and simple level scoring in MQL5. The displayed strength value is an internal ranking score, not a probability of a successful trade or a trading signal.

Spread Calculator Spread Calculator

Spread calculator is created to display the current spread on any currency pair on the chart.

OnChart Candle Countdown Clock OnChart Candle Countdown Clock

On-Chart Candle Countdown Clock is a simple indicator created to display the countdown timing of the last candle on any time frame.

Pip Value Calculator Pip Value Calculator

Live pip value, risk-based lot sizing, custom volume risk analysis & open position P/L — all in one panel.

Result - type-safe error handling for MQL5 without exceptions Result - type-safe error handling for MQL5 without exceptions

A small, dependency-light library that brings a Rust-style Result type to MQL5. Functions return a single value-or-error object instead of relying on the global GetLastError() state, so failures are explicit and impossible to ignore. Includes ResultValue (value types) and Result (pointer-held objects), an Error struct, early-return macros (TRY, RETURN_ON_ERROR, ...) and optional Then/Match/MapError callbacks.