Supply & Demand Zones Multi-Timeframe (MTF)
100% Free Indicator
Platform both
Repainting Zero (Confirmed)
Timeframes M1 to Daily
Instruments Forex, Crypto, Gold
TradingView Pine Script (v5) MetaTrader 5 (.ex5/.mq5)

Supply & Demand Zones Multi-Timeframe (MTF)

Dynamic multi-timeframe Supply and Demand zones that highlight fresh vs tested levels across H1, H4, and Daily charts.

Access Price
100% FREE No Subscription
★ 4.9 (Verified)
Direct access — zero checkout friction or card required
Includes complete Pine Script v5 open source & setup guide

TradingView Pine Script (v5) Source Code

Copy and paste this code directly into your TradingView Pine Editor

//@version=5
indicator("FxSnip - Supply & Demand MTF", "FxSnip S&D Zones", overlay=true, max_boxes_count=200)

zoneLength = input.int(14, "Zone Detection Period")
supColor = input.color(color.new(color.teal, 70), "Demand Zone Color")
resColor = input.color(color.new(color.maroon, 70), "Supply Zone Color")

highPivot = ta.pivothigh(high, zoneLength, zoneLength)
lowPivot  = ta.pivotlow(low, zoneLength, zoneLength)

if not na(highPivot)
    box.new(left=bar_index-zoneLength, top=highPivot, right=bar_index+20, bottom=highPivot - ta.atr(14)*0.8, bgcolor=resColor, border_color=color.maroon)

if not na(lowPivot)
    box.new(left=bar_index-zoneLength, top=lowPivot + ta.atr(14)*0.8, right=bar_index+20, bottom=lowPivot, bgcolor=supColor, border_color=color.teal)
1

How to Add to TradingView

  1. Click the "Copy Pine Script (v5)" button above.
  2. Open your chart on TradingView.com.
  3. Click the Pine Editor tab at the very bottom bar.
  4. Select and delete any default code, paste this script, and click "Save" → "Add to Chart".
2

How to Install in MetaTrader 5 (MT5)

  1. Click "Download MT5 Indicator" to save the .ex5 / .mq5 file.
  2. In MT5, click top menu File > Open Data Folder.
  3. Navigate to MQL5 > Indicators folder and paste the file.
  4. In MT5 Navigator window, right-click Indicators > Refresh, then drag it onto your chart.

Key Features & Algorithmic Logic

  • Multi-timeframe zone display on your execution chart
  • Zone freshness counter (Fresh, Tested, Broken)
  • Automatic zone width refinement
  • Zero repainting calculation logic

Indicator Overview

The Multi-Timeframe Supply & Demand Indicator automatically maps origin zones of major market rallies and drops. Tracks how many times a zone has been tested and alerts when fresh institutional order pools are tapped.

Recommended Settings

Best Timeframes: M5, M15, H1, H4
Pairs / Assets: EURUSD, GBPUSD, XAUUSD, BTC
Confirmation Rule: On Bar Close
Alerts: Push, Sound, Webhook

Need Custom Modifications?

Need this indicator converted into an automated MT5 Expert Advisor or customized for your specific trading rules?

Order Custom Coding →
TX

Loading activity...

Just now