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

Confirmed Swing Points Helper - MetaTrader 5용 지표

Talal N Z Aljarusha
Talal N Z Aljarusha
1 (1)
MT5 tools developer focused on Smart Money Concepts, market structure, liquidity mapping, and professional chart visualization.
조회수:
532
평가:
(1)
게시됨:
업데이트됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Confirmed Swing Points Helper is a small educational indicator for MetaTrader 5. It marks confirmed swing highs and swing lows directly on the chart, then labels the accepted pivots as HH, HL, LH or LL.

The idea behind the code is intentionally simple. A swing high is accepted only when its high is greater than a configurable number of bars on both the left and the right side. A swing low is accepted only when its low is lower than the same number of surrounding bars. This makes the signal confirmed rather than predictive.

Because the indicator waits for bars on the right side of the pivot, the markings appear with a natural delay. This is expected behavior for non-repainting swing logic and is useful when studying market structure after confirmation.

The code keeps the last accepted high pivot and the last accepted low pivot. New high pivots are compared with the previous high and labeled as HH or LH. New low pivots are compared with the previous low and labeled as HL or LL.

Inputs:

  • InpDepth - number of bars used on each side of the pivot.
  • InpMinDistancePoints - optional minimum distance between pivots of the same type.
  • InpShowLabels - enables or disables the HH, HL, LH and LL text labels.
  • InpHighColor - color used for swing high arrows and labels.
  • InpLowColor - color used for swing low arrows and labels.
  • InpFontSize - text size for labels.
  • InpObjectPrefix - prefix used for chart object names.

This is not a complete trading system and it does not generate buy or sell recommendations. It is intended as a clean starting point for developers who want to study confirmed swing logic, build structure tools, or compare internal and external market structure ideas in MQL5.

Daily Range Tracker Daily Range Tracker

Daily Range Tracker — Live Today's Range vs Average Daily Range. Daily Range Tracker shows you, at a glance, how much of the symbol's typical daily movement has already happened today — helping you judge whether the day still has room to run or is already exhausted.

Swap Meter Swap Meter

Swap Meter displays the live SELL and BUY swap rates for your current chart symbol in a clean, color-coded panel — and instantly alerts you the moment your broker changes either rate.

FVG Imbalance Marker Helper FVG Imbalance Marker Helper

A small educational MetaTrader 5 indicator that marks simple three-candle bullish and bearish Fair Value Gaps on the chart.

Drawdown DNA Analyzer Drawdown DNA Analyzer

A native MQL5 script that analyzes the structure of an account's drawdowns, not just the single "maximum drawdown" figure. It reads a daily equity curve (Date,DailyPnL CSV), rebuilds the underwater curve, and splits it into individual drawdown episodes with their depth, duration and recovery time. It then reports the Ulcer Index, Pain Index, Recovery Factor and time spent underwater, and combines them into a single resilience score (A+ to F) with recommendations, printed in the Experts tab. No external libraries; if no file is found it generates a sample curve so it runs out of the box.