PROTECTED SOURCE SCRIPT
VT DASH

⚖️ TRIPLE CONFLUENCE SYSTEM - HOW IT WORKS
🎯 THE 3 CONFLUENCES:
1️⃣ FIRST CONFLUENCE: PRICE BREADTH
// Counts how many stocks are UP vs. DOWN
price_up_count = PETR4↗️ + VALE3↗️ + ITUB4↗️ + ... (up to 11 stocks)
price_breadth_pct = (price_up_count / 11) * 100
// SIGNALS:
price_signal_buy = price_breadth_pct >= 72% // 8+ stocks up
price_signal_sell = price_breadth_pct <= 27% // 8+ stocks down
2️⃣ SECOND CONFLUENCE: VOLUME BREADTH
// Counts how many stocks have STRONG volume (above average)
volume_strong_count = PETR4_vol_strong + VALE3_vol_strong + ...
volume_breadth_pct = (volume_strong_count / 11) * 100
// SIGNALS:
vol_signal_buy = volume_breadth_pct >= 65% // Volume confirming a bullish move
vol_signal_sell = volume_breadth_pct <= 35% // Weak volume
3️⃣ THIRD CONFLUENCE: TRIN (ARMS INDEX)
// OFFICIAL TRIN FORMULA:
trin_value = (price_up_count / price_down_count) ÷ (volume_advancing / volume_declining)
// TRIN SIGNALS:
trin_super_strong = trin < 0.8 // Very strong market
trin_super_weak = trin > 1.2 // Very weak market
trin_extreme_strong = trin < 0.5 // Extremely strong
trin_extreme_weak = trin > 2.0 // Extremely weak
🎯 ENTRY TYPES - SIGNAL HIERARCHY:
💚 BASIC CONFLUENCE (85% Win Rate):
confluence_buy_basic = price_signal_buy AND vol_signal_buy
confluence_sell_basic = price_signal_sell AND vol_signal_sell
Example: 72% rising stocks + 65% strong volume = ✅ BASIC BUY
🟢 CONFLUENCE WITH TRIN (90% Win Rate):
confluence_buy_trin = confluence_buy_basic AND trin_super_strong
confluence_sell_trin = confluence_sell_basic AND trin_super_weak
Example: 75% shares high + 70% strong volume + TRIN 0.75 = 🟢 TRIN BUY
🚀 MEGA CONFLUENCE (95% Win Rate):
mega_buy_signal = confluence_buy_basic AND trin_extreme_strong
mega_sell_signal = confluence_sell_basic AND trin_extreme_weak
Example: 80% shares high + 75% strong volume + TRIN 0.45 = 🚀 MEGA BUY
⚠️ TRAP DETECTION:
🔶 BULL TRAP:
bull_trap_trin = price_signal_buy AND NOT vol_signal_buy AND trin_super_weak
Translation: Rising prices BUT weak volume + weak TRIN = ⚠️ TRAP!
🔄 BEAR TRAP (Reversal Opportunity):
bear_trap_trin = price_signal_sell AND vol_signal_buy AND trin_super_strong
Translation: Falling prices BUT strong volume + strong TRIN = 🔄 SMART MONEY BUYING!
📊 CONFLUENCE SCORE (0-100%):
confluence_score =
mega_buy_signal ? 100 : // 🚀 MEGA BUY (95%+ win)
mega_sell_signal ? 100 : // 💥 MEGA SELL (95%+ win)
confluence_buy_trin ? 95 : // 🟢 TRIN BUY (90%+ win)
confluence_sell_trin ? 95: // 🔴 TRIN SELL (90%+ win)
confluence_buy_basic ? 85: // ✅ BASIC BUY (85%+ win)
confluence_sell_basic ? 85: // ❌ BASIC SELL (85%+ win)
bull_trap_trin ? 20: // ⚠️ TRAP (20% win)
bear_trap_trin ? 75: 0 // 🔄 REVERSAL (75% win)
🎯 CONFLUENCE SUMMARY:
Level Confluences Win Rate When to Use
BASIC Price + Volume 85% Conservative Trading
TRIN Price + Volume + TRIN Normal 90% Aggressive Trading
MEGA Price + Volume + TRIN Extreme 95% Rare Opportunities
🎯 THE 3 CONFLUENCES:
1️⃣ FIRST CONFLUENCE: PRICE BREADTH
// Counts how many stocks are UP vs. DOWN
price_up_count = PETR4↗️ + VALE3↗️ + ITUB4↗️ + ... (up to 11 stocks)
price_breadth_pct = (price_up_count / 11) * 100
// SIGNALS:
price_signal_buy = price_breadth_pct >= 72% // 8+ stocks up
price_signal_sell = price_breadth_pct <= 27% // 8+ stocks down
2️⃣ SECOND CONFLUENCE: VOLUME BREADTH
// Counts how many stocks have STRONG volume (above average)
volume_strong_count = PETR4_vol_strong + VALE3_vol_strong + ...
volume_breadth_pct = (volume_strong_count / 11) * 100
// SIGNALS:
vol_signal_buy = volume_breadth_pct >= 65% // Volume confirming a bullish move
vol_signal_sell = volume_breadth_pct <= 35% // Weak volume
3️⃣ THIRD CONFLUENCE: TRIN (ARMS INDEX)
// OFFICIAL TRIN FORMULA:
trin_value = (price_up_count / price_down_count) ÷ (volume_advancing / volume_declining)
// TRIN SIGNALS:
trin_super_strong = trin < 0.8 // Very strong market
trin_super_weak = trin > 1.2 // Very weak market
trin_extreme_strong = trin < 0.5 // Extremely strong
trin_extreme_weak = trin > 2.0 // Extremely weak
🎯 ENTRY TYPES - SIGNAL HIERARCHY:
💚 BASIC CONFLUENCE (85% Win Rate):
confluence_buy_basic = price_signal_buy AND vol_signal_buy
confluence_sell_basic = price_signal_sell AND vol_signal_sell
Example: 72% rising stocks + 65% strong volume = ✅ BASIC BUY
🟢 CONFLUENCE WITH TRIN (90% Win Rate):
confluence_buy_trin = confluence_buy_basic AND trin_super_strong
confluence_sell_trin = confluence_sell_basic AND trin_super_weak
Example: 75% shares high + 70% strong volume + TRIN 0.75 = 🟢 TRIN BUY
🚀 MEGA CONFLUENCE (95% Win Rate):
mega_buy_signal = confluence_buy_basic AND trin_extreme_strong
mega_sell_signal = confluence_sell_basic AND trin_extreme_weak
Example: 80% shares high + 75% strong volume + TRIN 0.45 = 🚀 MEGA BUY
⚠️ TRAP DETECTION:
🔶 BULL TRAP:
bull_trap_trin = price_signal_buy AND NOT vol_signal_buy AND trin_super_weak
Translation: Rising prices BUT weak volume + weak TRIN = ⚠️ TRAP!
🔄 BEAR TRAP (Reversal Opportunity):
bear_trap_trin = price_signal_sell AND vol_signal_buy AND trin_super_strong
Translation: Falling prices BUT strong volume + strong TRIN = 🔄 SMART MONEY BUYING!
📊 CONFLUENCE SCORE (0-100%):
confluence_score =
mega_buy_signal ? 100 : // 🚀 MEGA BUY (95%+ win)
mega_sell_signal ? 100 : // 💥 MEGA SELL (95%+ win)
confluence_buy_trin ? 95 : // 🟢 TRIN BUY (90%+ win)
confluence_sell_trin ? 95: // 🔴 TRIN SELL (90%+ win)
confluence_buy_basic ? 85: // ✅ BASIC BUY (85%+ win)
confluence_sell_basic ? 85: // ❌ BASIC SELL (85%+ win)
bull_trap_trin ? 20: // ⚠️ TRAP (20% win)
bear_trap_trin ? 75: 0 // 🔄 REVERSAL (75% win)
🎯 CONFLUENCE SUMMARY:
Level Confluences Win Rate When to Use
BASIC Price + Volume 85% Conservative Trading
TRIN Price + Volume + TRIN Normal 90% Aggressive Trading
MEGA Price + Volume + TRIN Extreme 95% Rare Opportunities
Script protégé
Ce script est publié en source fermée. Toutefois, vous pouvez l'utiliser librement et sans aucune restriction - en savoir plus ici.
Clause de non-responsabilité
Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.
Script protégé
Ce script est publié en source fermée. Toutefois, vous pouvez l'utiliser librement et sans aucune restriction - en savoir plus ici.
Clause de non-responsabilité
Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.