PROTECTED SOURCE SCRIPT

Jitendra: MTF AIO Technical Indicators with Trend ▲▼

373
Jitendra: MTF AIO Technical Indicators with Trend ▲▼


Why We Designed this Indicator


we build this indicator to Analysis Multi-timeframe Technical Data in dashboard to get Better and Quick Data in which Time Frame where it is in Momentum or in Swing,
By combining multiple technical indicators with trend direction arrows and displaying them in a customizable table.

It also optionally plots some indicators EMA, VWAP, Supertrend, Bollinger Bands on the chart.

Traders who want a compact technical summary across multiple timeframes without switching charts.

Quickly assess trend strength, momentum, divergence, volume pressure in one glance.

Combine with price action to make higher-confidence entries/exits.


How to Use This Indicator


In setting there are Two parts

  • First Part - for Plot Multi EMA, Bollinger Band, Supertrend 10,2 & 10, 3 factorial
  • Second Part- To get Data on Table for Quick Analysis


Chart Plots With Enable Disable Toggle in Setting


  1. VWAP (optional)
  2. 4 EMAs (lengths configurable)
  3. Bollinger Bands (optional)
  4. Two separate Supertrend indicators with custom ATR period and multiplier


Indicators Data in Table


For each selected timeframe:


  1. VWAP position (price above/below)
  2. MACD value + trend arrow
  3. MACD Histogram (optional)
  4. RSI value + arrow (rising/falling)
  5. ADX value + arrow (strength rising/falling)
  6. +DI / -DI values + trend arrows
  7. RSI Divergence detection (regular + hidden)
  8. EMA levels (up/down relative to price)
  9. EMA crossover (EMA1 vs EMA2 arrow)
  10. Stochastic %K
  11. Volume Matrix:
  12. Raw volume
  13. 20 SMA volume
  14. Volume % change from SMA


Multi-Timeframe Support

Current timeframe + up to 5 user-defined timeframes (e.g., 1H, 4H, Daily, Weekly, Monthly)


Customizable Toggles


  • Enable/disable any indicator
  • Choose which EMAs to show
  • Show/hide trend arrows
  • Choose which volume metrics to display
  • Choose table position (top_left, top_right, etc.)
  • Choose table text size



Trend Arrows & Colors

  • Green ▲ = bullish / rising trend
  • Red ▼ = bearish / falling trend
  • Gray – = neutral/no change
  • Background colors indicate overbought/oversold, trend strength, or volume surge.


istantanea

Indicator Data Fetch PINE CODE Short Summary


request.security() → pulls data from the selected timeframe (tf).

Each indicator’s calculation can be wrapped inside request.security() so the values are computed on that timeframe.

Pine Script®
//@version=5 // === 1. VWAP === vwap_htf = request.security(syminfo.tickerid, tf, ta.vwap) // === 2. MACD === macd_src = request.security(syminfo.tickerid, tf, close) macd_val = ta.ema(macd_src, 12) - ta.ema(macd_src, 26) macd_sig = ta.ema(macd_val, 9) macd_hist = macd_val - macd_sig // === 3. RSI === rsi_htf = request.security(syminfo.tickerid, tf, ta.rsi(close, 14)) // === 4. ADX & DI === adx_htf = request.security(syminfo.tickerid, tf, ta.adx(14)) plusDI = request.security(syminfo.tickerid, tf, ta.plus_di(14)) minusDI = request.security(syminfo.tickerid, tf, ta.minus_di(14)) // === 5. Supertrend === [st_dir, st_val] = request.security(syminfo.tickerid, tf, ta.supertrend(3, 7)) // === 6. Bollinger Bands === basis = ta.sma(close, 20) dev = ta.stdev(close, 20) bb_up = request.security(syminfo.tickerid, tf, basis + dev * 2) bb_low = request.security(syminfo.tickerid, tf, basis - dev * 2) // === 7. Stochastic === k = ta.sma(ta.stoch(close, high, low, 14), 3) d = ta.sma(k, 3) stochK = request.security(syminfo.tickerid, tf, k) stochD = request.security(syminfo.tickerid, tf, d) // === 8. EMA === ema20 = request.security(syminfo.tickerid, tf, ta.ema(close, 20)) ema50 = request.security(syminfo.tickerid, tf, ta.ema(close, 50)) // === 9. Historical Volatility (HV) === logReturns = math.log(close / close[1]) hv = request.security(syminfo.tickerid, tf, ta.stdev(logReturns, 20) * math.sqrt(252)) plot(vwap_htf, "VWAP") plot(macd_val, "MACD", color=color.blue) plot(rsi_htf, "RSI", color=color.purple)

Declinazione di responsabilità

Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.