Multi-Timeframe SuperTrend with Trend Reversal Alerts
100% Free Indicator
Platform both
Repainting Zero (Confirmed)
Timeframes M1 to Daily
Instruments Forex, Crypto, Gold
TradingView Pine Script (v5) MetaTrader 5 (.ex5/.mq5)

Multi-Timeframe SuperTrend with Trend Reversal Alerts

Enhanced ATR-based SuperTrend indicator with multi-timeframe alignment filter, cloud fill, and clean buy/sell arrows.

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 - Multi-Timeframe SuperTrend", "FxSnip SuperTrend", overlay=true)

atrPeriod = input.int(10, "ATR Period")
factor = input.float(3.0, "ATR Multiplier", step=0.1)

[supertrend, direction] = ta.supertrend(factor, atrPeriod)

bodyMiddle = plot((open + close) / 2, display=display.none)
upTrend = plot(direction < 0 ? supertrend : na, "Up Trend", color=color.green, style=plot.style_linebr)
downTrend = plot(direction < 0 ? na : supertrend, "Down Trend", color=color.red, style=plot.style_linebr)

fill(bodyMiddle, upTrend, color.new(color.green, 90), fillgaps=false)
fill(bodyMiddle, downTrend, color.new(color.red, 90), fillgaps=false)

plotshape(ta.crossunder(direction, 0), "Buy Signal", shape.triangleup, location.belowbar, color.green, size=size.small)
plotshape(ta.crossover(direction, 0), "Sell Signal", shape.triangledown, location.abovebar, color.red, size=size.small)
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

  • ATR multiplier volatility filter
  • Multi-timeframe trend status dashboard
  • Clear Buy/Sell arrow signals
  • Built-in trailing stop level guide

Indicator Overview

The Multi-Timeframe SuperTrend eliminates false whipsaws by aligning higher timeframe trend direction with lower timeframe entries. Uses ATR volatility tracking with instant signal alerts.

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