PROTECTED SOURCE SCRIPT

Jitendra MTF AIO Technical + Trend Analysis ▲▼

119
Summary of “Jitendra MTF AIO Technical + Trend Analysis ▲▼

🔍 Purpose
This script is a multi-timeframe (MTF) technical analysis dashboard that displays multiple indicators, trends, divergences, and volume signals in a dynamically structured table format on the chart. It also overlays key EMAs and optionally Bollinger Bands.

How It's useful or How Can You Change Setting

https://drive.google.com/file/d/1XlEupmqIbYVUv6478D6iflZLrqSGn0Tf/view?usp=drive_link

How to Analysis Data For Bullish & Bearish Trade


  • GREEN Background Shows Positive Crossover and RED Background Shows Negative Crossover
  • If LTP Above VWAP, it will show value with GREEN Background else RED Background
  • If MACD Line Above Signal line it will show GREEN Background or MACD Line Below Signal line it will show RED Background
  • Data Positive/negative value Value help us to find its above Zero or Below Zero Line
  • ▲ = MACD rising, ▼ = MACD falling show current value is improving or losing as compare to prev value


RSI Data Value with Background Color to Find in Which Time Frame it is in High Strength

  • RSI Above 60 Show value with AQUA Color 🟦
  • RSI Between 40-60 Show value with GREEN Color 🟩
  • RSI Below 40 Show value with RED Color 🟥


ADX ,+DI, -DI Color
  • > 25 🟦 color.aqua Strong trend (bullish or bearish)
  • 18–25 🟩 color.green Moderate trend (developing trend)
  • < 18 🟥 color.red Weak or no trend (sideways/consolidation)


Types of Divergence Detected

  • ✅ Bullish Divergence Price makes lower low, RSI makes higher low "✔ Bullish"
  • ❌ Bearish Divergence Price makes higher high, RSI makes lower high "✔ Bearish"
  • ✅ Hidden Bullish Divergence Price makes higher low, RSI makes lower low "✔Bullish RD"
  • ❌ Hidden Bearish Divergence Price makes lower high, RSI makes higher high "✔Bearish RD"
  • ⚪ None No divergence detected "-"


Table EMA Color Coding


  • Price > EMA 🟩 Green Bullish (price above EMA)
  • Price < EMA 🟥 Red Bearish (price below EMA)


Volume Matrix Description


  • Volume Actual volume for the candle
  • 20 SMA Volume 20-period simple moving average of volume (avg vol)
  • Volume % Rise % difference of current volume vs 20 SMA volume
  • Volume > SMA Volume 🟢 Green Bullish / high interest
  • Volume < SMA Volume 🔴 Red Low interest


Bollinger Band


If Band is Challenged Upside with RSI value Above 60+ And ADX above 20 it is in High Bullish Momentum , if 1 Higher Timeframe also supporting such value

If Band is Challenged Downside with RSI value Below 40 And ADX above 20 it is in High Bearish Momentum , if 1 Higher Timeframe also supporting such value

Stochastic Oscillator

Stochastic Oscillator is a momentum indicator comparing the current closing price to a range of its prices over a specific period. It indicates overbought and oversold conditions.

  • For Perfect Entry in Bullish Trade


If Higher TF Stochastic in oversold zone and doing Positive crossover, and also lower TF Stochastic will do positive crossover it will give High Probability Uptrend Entry

  • For Perfect Entry in Bearish Trade

If Higher TF Stochastic in Bought zone and doing Negative crossover, and also lower TF Stochastic will do Negative crossover it will give High Probability Uptrend Entry

  • %K (Fast): Measures current close vs the high-low range over the last 14 bars.
  • %D (Slow): 3-period SMA of %K.
  • %K above %D will show GREEN background
  • %K below %D will show RED background
  • Low Value, below 20 with GREEN background means it just done Positive Cross over from oversold zone
  • High Value with RED background means it just done negative Cross over from oversold zone


======== COMMUNICATIVE SHORT DESCRIPTION OF ALL INDICATOR=========
  1. TF Timeframe label (e.g., CurTF, 1h, 4h, D, W, M)
  2. VWAP Value of VWAP; green = price above, red = price below
  3. MACD MACD Line Value
  4. Trend ▲ = MACD rising, ▼ = MACD falling
  5. MACD Hist MACD Histogram value (if enabled)

  6. RSI RSI Value with background color showing strength
  7. RSI▲▼ ▲ = RSI rising, ▼ = RSI falling

  8. ADX ADX strength (trend strength, colored)
  9. ADX▲▼ ▲ = ADX rising, ▼ = falling

  10. +DI Positive Directional Indicator
  11. +DI▲▼ ▲/▼ for DI+ trend
  12. -DI Negative Directional Indicator
  13. -DI▲▼ ▲/▼ for DI- trend

  14. Div RSI divergence type: Bullish, Bearish, Hidden, or None (✔ or -)

  15. EMA5 EMA5 value; green = price above, red = price below
  16. EMA21 EMA21 value (same color logic as above)
  17. EMA50 EMA50 value (same logic)
  18. Cross ▲ = EMA5 > EMA21, ▼ = EMA5 < EMA21

  19. Stoch %K %K value; green = K > D, red = K < D

  20. Vol Volume for that TF; green = above avg, red = below avg
  21. AvgVOL20 20 SMA of volume
  22. %Vol Chng % Change in volume from its 20 SMA; green = rising, red = falling


========================================================

📊 Core Features & Code used to Fetch Calculate Data

Using request.security() to fetch data from different timeframes


✅ Indicator Plotting on Chart
EMA 1 & EMA 2: Plotted as overlays with customizable lengths and toggle.

Bollinger Bands: Optional plotting of upper, lower, and basis lines.

🧮 Multi-Timeframe Support
Supports analysis for:

Current Timeframe (optional)
1H, 4H, Daily, Weekly, and Monthly (customizable & optional)


📈 Indicators Displayed per Timeframe
Each selected timeframe row shows the following (based on toggles):

➤ VWAP Status
Price above or below VWAP with color indication

Pine Script®
vwapVal = ta.vwap(hlc3) vwapColor = close > vwapVal ? color.green : color.red



➤ MACD
MACD value

Optional MACD Trend Arrow (▲/▼)

Optional MACD Histogram
Pine Script®
[macdLine, signalLine, _] = ta.macd(close, 12, 26, 9) macdColor = macdLine > signalLine ? color.green : color.red



➤ RSI
RSI value with dynamic background color (green, aqua, red)

Optional RSI arrow (based on RSI momentum direction)
Pine Script®
rsi = ta.rsi(close, 14) rsiColor = rsi > 70 ? color.red : rsi < 30 ? color.green : color.gray


Pine Script®
rsiArrow = rsi > rsi[1] ? "▲" : rsi < rsi[1] ? "▼" : "-" rsiArrowColor = rsi > rsi[1] ? color.green : rsi < rsi[1] ? color.red : color.gray



➤ ADX
ADX value with strength-based coloring

Optional ADX trend arrow

➤ +DI / -DI
Directional movement values with optional trend arrows

Pine Script®
ad = ta.adx(14) adxColor = ad > 25 ? color.aqua : ad >= 18 ? color.green : color.red


➤ RSI Divergence
Detects and displays:

Regular Bullish / Bearish Divergence

Hidden Bullish / Bearish Divergence

Pine Script®
isBullishDiv = (low < low[1]) and (rsi > rsi[1]) isHiddenBullDiv = (low > low[1]) and (rsi < rsi[1])


➤ EMA Status
Displays EMA 1/2/3 value

Shows whether price is above (green) or below (red)

Optionally displays EMA1 vs EMA2 crossover as ▲ / ▼

Pine Script®
ema = ta.ema(close, length) emaColor = close > ema ? color.green : color.red


Pine Script®
crossSymbol = ema5 > ema21 ? "▲" : ema5 < ema21 ? "▼" : "-"



➤ Stochastic
%K line with color-coded trend vs %D

Pine Script®
k = ta.stoch(close, high, low, 14) d = ta.sma(k, 3) stochColor = k > 80 ? color.red : k < 20 ? color.green : color.gray


➤ Volume Matrix
Volume

20 SMA Volume

% Change in Volume from 20 SMA

Backgrounds indicate rising/falling volume trend

Pine Script®
smaVolume = ta.sma(volume, 20) volRise = ((volume - smaVolume) / smaVolume) * 100


🧠 Modular Settings


All features have individual on/off toggles in the input panel.

User can also customize:

EMA lengths

Stochastic smoothing parameters

Divergence lookback settings

Table position and text size

📐 Dynamic Table


Header row and rows per timeframe

Column count automatically adjusts based on enabled indicators

~~~~~~~~~~~~~~~~~~~~~~
-------------------------------
Thanks Jitendra
-------------------------------
~~~~~~~~~~~~~~~~~~~~~~




Feragatname

Bilgiler ve yayınlar, TradingView tarafından sağlanan veya onaylanan finansal, yatırım, işlem veya diğer türden tavsiye veya tavsiyeler anlamına gelmez ve teşkil etmez. Kullanım Şartları'nda daha fazlasını okuyun.