OPEN-SOURCE SCRIPT
Actualizado Daily Trading Dashboard

Daily Trading Dashboard (Multi-Timeframe Market Regime Matrix)
Overview.
The Daily Trading Dashboard (DTD) is a compact, high-performance tactical HUD built entirely in Pine Script v6. It condenses multiple complex layers — dollar liquidity profiling, volatility regime analysis, statistical trend maturity (Z-Score), intraday conviction velocity, and higher-timeframe momentum — into a single clean table overlay.Instead of stacking several indicator panes that consume resources and clutter your screen, DTD executes everything in one optimized stream, giving you institutional-grade market regime awareness at a glance.
Core Components & Logic.
Real-Time Dollar Liquidity Engine (D-Liq):
Dynamically measures daily liquidity depth:
Dollar Liquidity = SMA(Volume, Lookback) × Close / 1,000,000,000
The cell turns green when liquidity exceeds your custom billion-dollar threshold, helping you avoid thin, dangerous instruments.
Customizable Normal Distribution Regime (Z-Score)
Calculates statistical position relative to a user-selectable moving average (SMA/EMA):
Z-Score = (Close − MA) / StDev
Instantly labels the trend maturity with clear risk zones:
OVERSOLD (≤ -3) → HOSTILE → WEAK → NEUTRAL → STRONG → OVERBOUGHT (≥ 3)
Quantified Average Daily Range Delta Velocity (D-qADR% & ΔqADR%):
The proprietary heart of the script. qADR% = SMA((High/Low − 1) × 100, Lookback) — historical expected daily range percentage.
ΔqADR% measures how much of that expected range has already been covered in the current session.
When ΔqADR% reaches or exceeds +100% / -100%, it signals powerful institutional conviction and potential exhaustion.
Macro Timeframe Synergy:
Pulls Weekly ROC(50) and Weekly RSI(14) via request.security so you can instantly see higher-timeframe alignment without changing charts.
Parabolic Exhaustion Banner:
When both Daily RSI and Weekly RSI exceed your chosen threshold (default 80), the dashboard expands with a bold, high-visibility “PARABOLIC” warning banner — your cue to tighten trailing stops or prepare for mean reversion.
Visual & Operational Features.
Matrix Background States:
Entire rows shift between soft green (price above chosen MA) and soft red (price below MA).
Daily Conviction Circles:
Tiny circles plotted above/below bars on the daily timeframe show exact ΔqADR% conviction levels (deep green = strong bullish, deep red = strong bearish).
Optional Bar Coloring: Toggle “Color Bars by Daily ΔqADR Conviction” to paint solid green/red candles once the 100% historical range threshold is reached.
Clean Pine v6 Architecture: Uses strict typing, tuple functions, single security call, and conditional table.clear() to ensure maximum performance and zero visual jitter.
Alert Conditions (Built-in):
D-ΔqADR% ≥ +100% → “Very Strong Bull conviction on Daily”
D-ΔqADR% ≤ -100% → “Very Strong Bear conviction on Daily”
BECAME Parabolic → Both Daily & Weekly RSI cross above your threshold
NO LONGER Parabolic → Exit from parabolic state
Overview.
The Daily Trading Dashboard (DTD) is a compact, high-performance tactical HUD built entirely in Pine Script v6. It condenses multiple complex layers — dollar liquidity profiling, volatility regime analysis, statistical trend maturity (Z-Score), intraday conviction velocity, and higher-timeframe momentum — into a single clean table overlay.Instead of stacking several indicator panes that consume resources and clutter your screen, DTD executes everything in one optimized stream, giving you institutional-grade market regime awareness at a glance.
Core Components & Logic.
Real-Time Dollar Liquidity Engine (D-Liq):
Dynamically measures daily liquidity depth:
Dollar Liquidity = SMA(Volume, Lookback) × Close / 1,000,000,000
The cell turns green when liquidity exceeds your custom billion-dollar threshold, helping you avoid thin, dangerous instruments.
Customizable Normal Distribution Regime (Z-Score)
Calculates statistical position relative to a user-selectable moving average (SMA/EMA):
Z-Score = (Close − MA) / StDev
Instantly labels the trend maturity with clear risk zones:
OVERSOLD (≤ -3) → HOSTILE → WEAK → NEUTRAL → STRONG → OVERBOUGHT (≥ 3)
Quantified Average Daily Range Delta Velocity (D-qADR% & ΔqADR%):
The proprietary heart of the script. qADR% = SMA((High/Low − 1) × 100, Lookback) — historical expected daily range percentage.
ΔqADR% measures how much of that expected range has already been covered in the current session.
When ΔqADR% reaches or exceeds +100% / -100%, it signals powerful institutional conviction and potential exhaustion.
Macro Timeframe Synergy:
Pulls Weekly ROC(50) and Weekly RSI(14) via request.security so you can instantly see higher-timeframe alignment without changing charts.
Parabolic Exhaustion Banner:
When both Daily RSI and Weekly RSI exceed your chosen threshold (default 80), the dashboard expands with a bold, high-visibility “PARABOLIC” warning banner — your cue to tighten trailing stops or prepare for mean reversion.
Visual & Operational Features.
Matrix Background States:
Entire rows shift between soft green (price above chosen MA) and soft red (price below MA).
Daily Conviction Circles:
Tiny circles plotted above/below bars on the daily timeframe show exact ΔqADR% conviction levels (deep green = strong bullish, deep red = strong bearish).
Optional Bar Coloring: Toggle “Color Bars by Daily ΔqADR Conviction” to paint solid green/red candles once the 100% historical range threshold is reached.
Clean Pine v6 Architecture: Uses strict typing, tuple functions, single security call, and conditional table.clear() to ensure maximum performance and zero visual jitter.
Alert Conditions (Built-in):
D-ΔqADR% ≥ +100% → “Very Strong Bull conviction on Daily”
D-ΔqADR% ≤ -100% → “Very Strong Bear conviction on Daily”
BECAME Parabolic → Both Daily & Weekly RSI cross above your threshold
NO LONGER Parabolic → Exit from parabolic state
Notas de prensa
Minor change for clarity to text display for liquidity.Script de código abierto
Fiel al espíritu de TradingView, el creador de este script lo ha convertido en código abierto, para que los traders puedan revisar y verificar su funcionalidad. ¡Enhorabuena al autor! Aunque puede utilizarlo de forma gratuita, recuerde que cualquier republicación del código está sujeta a nuestras Normas internas.
Exención de responsabilidad
La información y las publicaciones no constituyen, ni deben considerarse como, asesoramiento o recomendaciones financieras, de inversión, de trading u otro tipo, proporcionadas o respaldadas por TradingView. Obtenga más información en Condiciones de uso.
Script de código abierto
Fiel al espíritu de TradingView, el creador de este script lo ha convertido en código abierto, para que los traders puedan revisar y verificar su funcionalidad. ¡Enhorabuena al autor! Aunque puede utilizarlo de forma gratuita, recuerde que cualquier republicación del código está sujeta a nuestras Normas internas.
Exención de responsabilidad
La información y las publicaciones no constituyen, ni deben considerarse como, asesoramiento o recomendaciones financieras, de inversión, de trading u otro tipo, proporcionadas o respaldadas por TradingView. Obtenga más información en Condiciones de uso.