Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

FVG Imbalance Marker Helper - indicator for MetaTrader 5

Talal N Z Aljarusha
Talal N Z Aljarusha
4.5 (8)
Building innovative trading technologies that empower traders to better understand financial markets, improve decision-making, and optimize their trading workflows.
Every solution is designed with a strong focus on reliability, performance, usability, and continuous innovation.
| English Русский 中文 Español Deutsch 日本語 Português 한국어 Français Italiano Türkçe
Views:
2947
Rating:
(3)
Published:
MQL5 Freelance Need a robot or indicator based on this code? Order it on Freelance Go to Freelance
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.