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

FVG Imbalance Marker 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.
조회수:
719
평가:
(1)
게시됨:
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
FVG Imbalance Marker Helper is a small educational indicator for MetaTrader 5. It marks simple bullish and bearish Fair Value Gaps directly on the chart using a compact three-candle rule.

FVG Imbalance Marker preview

The logic is intentionally simple. A bullish FVG is detected when the third candle low remains above the first candle high. A bearish FVG is detected when the third candle high remains below the first candle low. The gap must also be larger than a configurable minimum size in points.

Detected gaps are drawn as rectangles and extended a small number of bars to the right. This keeps the chart readable and makes it easier to study recent imbalance areas without turning the indicator into a full trading system.

Inputs:

InpLookbackBars - number of bars to scan.
InpMinGapPoints - minimum gap size in points.
InpExtendBars - how many bars the rectangle is extended to the right.
InpHideFilledGaps - hide gaps after price later returns through the gap boundary.
InpBullishColor - color for bullish gaps.
InpBearishColor - color for bearish gaps.
InpTransparency - rectangle transparency.
InpObjectPrefix - prefix used for chart object names.

This indicator does not generate buy or sell signals. It is only a visual helper and a clean starting point for developers who want to study how simple FVG detection can be implemented in MQL5.
Confirmed Swing Points Helper Confirmed Swing Points Helper

A small educational MetaTrader 5 indicator that marks confirmed swing highs and lows and labels market structure as HH, HL, LH and LL.

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.

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.

Profit Concentration Analyzer Profit Concentration Analyzer

A native MQL5 script that measures how concentrated a strategy's profit is — whether the edge is broad or rests on a few lucky trades. It reads a per-trade CSV (Date,Profit) and reports the share of net profit from the largest trades, the Gini coefficient of the winners, a concentration profile, a survival test that removes the best few trades and recomputes net profit and profit factor, and the largest single day versus a configurable consistency limit, combined into a concentration-and-consistency score (A+ to F) with recommendations. If no file is found it generates a sample set, so it runs out of the box. No external libraries, no Python, no AI. The helper ExportTrades.mq5 writes the file from your trade history.