Quantum Trading MatrixThe Quantum Trading Matrix is a sophisticated Pine Script indicator designed for TradingView that offers a comprehensive trading dashboard by combining multiple market analysis techniques in one interface. The indicator integrates price action, volume, momentum, trend detection, institutional activity, and technical oscillators to provide traders a unified perspective on the market.
At its core, the script uses fundamental market data like price (open, high, low, close) and volume to calculate various metrics. The VWAP (Volume Weighted Average Price) is a key element that helps traders understand if the price is trading above or below the average price weighted by volume, indicating market strength or weakness. The distance of the current price from the VWAP is computed as a percentage to signal how far the price has diverged from this benchmark.
Momentum is measured through a "Quantum Momentum Oscillator" derived from the difference between fast and slow exponential moving averages of price. Positive momentum signals bullish conditions while negative momentum signals bearish ones. Volume flow analysis breaks down buying versus selling pressure on each bar by observing where the close price lies within the daily range combined with volume, generating an order flow ratio. This aids in identifying if buyers or sellers dominate the market at a given time.
Trend detection involves calculating EMAs of different lengths (8, 21, and 50) and aggregating their relationships into a trend score. Scores range from strong uptrend to downtrend, providing a clear directional bias. Institutional activity is inferred by detecting volume spikes significantly above the average volume, suggesting large players might be active. A dark pool estimate provides an approximate volume figure representing hidden or off-exchange trading.
The script also identifies market structure by detecting pivot highs and lows which act as resistance and support levels, respectively. These levels offer valuable insight into potential price reversals or breakouts. The RSI (Relative Strength Index) is incorporated, including a basic divergence detection to suggest potential bull or bear reversals. Volatility is measured using the Average True Range (ATR), classifying the current volatility from low to extreme, helping traders gauge the risk environment.
All these metrics are combined into a scoring system that awards points for positive indications such as price above VWAP, positive order flow, bullish momentum, and an uptrend in EMAs. The overall score ranges from 0 to 100 and is interpreted visually with emojis: a rocket for strong bullish setups, a chart up emoji for positive bias, a balanced scale for neutral, and a chart down emoji for bearish conditions.
The indicator issues alerts based on the combination of these signals, including bullish and bearish setups when multiple criteria align favorably, volume spike alerts when abnormal volume events occur, and institutional activity alerts for high volume surges.
To use this indicator effectively, traders should first assess the trend direction indicated by the EMA-based scoring. Positive momentum and price trading above the VWAP confirm bullish bias, while the opposite suggests bearishness. Volume flow and institutional activity provide additional confirmation. Support and resistance levels derived from pivots help in planning entries and exits. The RSI and volatility readings inform traders of potential overbought or oversold conditions and market risk levels. Alerts provide timely notifications to act on significant setups.
The indicator is highly customizable, allowing users to adjust the dashboard's position, size, and color theme to suit personal preferences. Parameters such as the momentum period, volume profile bars, trend multiplier, and signal sensitivity can be fine-tuned to adapt to different markets and trading styles.
This tool requires foundational knowledge of key technical concepts such as EMAs, VWAP, ATR, RSI, and volume analysis for best utilization. For traders interested in expanding their understanding, recommended resources include the TradingView Pine Script manual, technical analysis books by John J. Murphy and Dr. Alexander Elder, and practical video tutorials focusing on volume spread analysis and institutional order flow.
Overall, the Quantum Trading Matrix™ serves as a powerful control panel for active traders, providing a multi-dimensional view of the market through combined technical indicators, helping to identify high probability trade setups and manage risk effectively.
________________________________________
⚠️ Warning:
• Trading financial markets involves substantial risk.
• You can lose more money than you invest.
• Past performance of indicators does not guarantee future results.
• This script must not be copied, resold, or republished without authorization from aiTrendview.
By using this material or the code, you agree to take full responsibility for your trading decisions and acknowledge that this is not financial advice.
________________________________________
⚠️ Disclaimer and Warning (From aiTrendview)
This Dynamic Trading Dashboard is created strictly for educational and research purposes on the TradingView platform. It does not provide financial advice, buy/sell recommendations, or guaranteed returns. Any use of this tool in live trading is completely at the user’s own risk. Markets are inherently risky; losses can exceed initial investment.
The intellectual property of this script and its methodology belongs to aiTrendview. Unauthorized reproduction, modification, or redistribution of this code is strictly prohibited. By using this study material or the script, you acknowledge personal responsibility for any trading outcomes. Always consult professional financial advisors before making investment decisions.
مؤشرات اتساع النطاق
Pivot Matrix & Multi-Timeframe Support-Resistance Analytics________________________________________
📘 Study Material for Pivot Matrix & Multi Timeframe Support-Resistance Analytics
(By aiTrendview — Educational Use Only)
________________________________________
🎯 Introduction
The Pivot Matrix & Multi Timeframe Support-Resistance Analytics indicator is designed to help traders visualize pivot points, support/resistance levels, VWAP, and volume flow analytics all in one place. Rather than giving explicit buy/sell calls, the dashboard provides reference insights so a learner may understand how different technical levels interact in real time.
This document explains its functionality step by step with formulas and usage guides.
________________________________________
1️⃣ Pivot System Logic
Pivot points are classic tools for mapping market support and resistance levels.
✦ How Calculated?
Using the Traditional Method:
• Pivot Point (PP):
PP=Highprev+Lowprev+Closeprev3PP = \frac{High_{prev} + Low_{prev} + Close_{prev}}{3}PP=3Highprev+Lowprev+Closeprev
• First Support/Resistance:
R1=2×PP−Lowprev,S1=2×PP−HighprevR1 = 2 \times PP - Low_{prev}, \quad S1 = 2 \times PP - High_{prev}R1=2×PP−Lowprev,S1=2×PP−Highprev
• Second Support/Resistance:
R2=PP+(Highprev−Lowprev),S2=PP−(Highprev−Lowprev)R2 = PP + (High_{prev} - Low_{prev}), \quad S2 = PP - (High_{prev} - Low_{prev})R2=PP+(Highprev−Lowprev),S2=PP−(Highprev−Lowprev)
• Third Levels:
R3=Highprev+2×(PP−Lowprev),S3=Lowprev−2×(Highprev−PP)R3 = High_{prev} + 2 \times (PP - Low_{prev}), \quad S3 = Low_{prev} - 2 \times (High_{prev} - PP)R3=Highprev+2×(PP−Lowprev),S3=Lowprev−2×(Highprev−PP)
• Similarly, R4/R5 and S4/S5 are extrapolated from extended range multipliers.
✦ How Used?
• Price above PP → bullish control bias.
• Price below PP → bearish control bias.
• R1–R5 levels act as resistances; S1–S5 act as supports.
Learners should watch how candles behave when approaching R/S zones to spot breakout vs. rejection conditions.
________________________________________
2️⃣ Multi Timeframe Logic
The indicator allows using daily-based pivot values (via request.security). This ensures alignment with institutional daily levels, not just intraday recalculations.
✦ Teaching Value
Understanding MTF pivots shows how markets respect higher timeframe levels (daily > intraday, weekly > daily). This helps learners grasp nested support-resistance structures.
________________________________________
3️⃣ VWAP (Volume Weighted Average Price)
Formula:
VWAPt=∑(Pricei×Volumei)∑(Volumei),Pricei=High+Low+Close3VWAP_t = \frac{\sum (Price_i \times Volume_i)}{\sum (Volume_i)}, \quad Price_i = \frac{High + Low + Close}{3}VWAPt=∑(Volumei)∑(Pricei×Volumei),Pricei=3High+Low+Close
Usage:
• VWAP is used as an institutional benchmark of fair value.
• Above VWAP = bullish flow.
• Below VWAP = bearish flow.
Learners should check whether price respects VWAP as a magnet or uses it as support/resistance.
________________________________________
4️⃣ Volume Flow Analysis
The script classifies buy volume, sell volume, and neutral volume.
• Buy Volume = if close > open.
• Sell Volume = if close < open.
• Neutral Volume = if close = open.
For daily tracking:
Buy%=DayBuyVolDayTotalVol×100,Sell%=DaySellVolDayTotalVol×100Buy\% = \frac{DayBuyVol}{DayTotalVol} \times 100, \quad Sell\% = \frac{DaySellVol}{DayTotalVol} \times 100Buy%=DayTotalVolDayBuyVol×100,Sell%=DayTotalVolDaySellVol×100
Usage for Learners:
• Dominant Buy% → accumulation/ bullish pressure.
• Dominant Sell% → distribution/ bearish pressure.
• Balanced → sideways liquidity building.
This teaches observation of order flow bias rather than relying only on price.
________________________________________
5️⃣ Dashboard Progress Bars & Colors
The script uses visual progress bars and dynamic colors for clarity. For example:
• VWAP Backgrounds: Green shades when price strongly above VWAP, Red when below.
• Volume Bars: More green blocks mean buying dominance, red means selling pressure.
This visual design turns concepts into easy-to-digest cues, useful for training.
________________________________________
6️⃣ Market Status Summary
Finally, the dashboard synthesizes all data points:
• Price vs Pivot (above or below).
• Price vs VWAP (above or below).
• Volume Pressure (buy side vs sell side).
Status Rule:
• If all three align bullish → Status box turns green.
• If mixed → Neutral grey.
• If bearish dominance → weaker tone.
Why Important?
This teaches learners that market conditions should align in confluence across indicators before confidence arises.
________________________________________
⚠️ Strict Disclaimer (aiTrendview)
The Pivot Matrix & Multi Timeframe Support-Resistance Analytics tool is developed by aiTrendview for strictly educational and research purposes.
❌ It does NOT provide buy/sell recommendations.
❌ It does NOT guarantee profits.
❌ Unauthorized use, copying, or redistribution of this code is prohibited.
⚠️ Trading Risk Warning:
• Trading involves high risk of financial loss.
• You may lose more than your capital.
• Past levels and indicators do not predict future outcomes.
This tool must be viewed as a visual education aid to practice technical analysis skills, not as trading advice.
________________________________________
✅ Now you have a step by step study guide:
• Pivot calculations explained
• VWAP with logic
• Volume breakdown
• Visual analytics
• Status confluence logic
• Disclaimer for compliance
________________________________________
⚠️ Warning:
• Trading financial markets involves substantial risk.
• You can lose more money than you invest.
• Past performance of indicators does not guarantee future results.
• This script must not be copied, resold, or republished without authorization from aiTrendview.
By using this material or the code, you agree to take full responsibility for your trading decisions and acknowledge that this is not financial advice.
________________________________________
⚠️ Disclaimer and Warning (From aiTrendview)
This Dynamic Trading Dashboard is created strictly for educational and research purposes on the TradingView platform. It does not provide financial advice, buy/sell recommendations, or guaranteed returns. Any use of this tool in live trading is completely at the user’s own risk. Markets are inherently risky; losses can exceed initial investment.
The intellectual property of this script and its methodology belongs to aiTrendview. Unauthorized reproduction, modification, or redistribution of this code is strictly prohibited. By using this study material or the script, you acknowledge personal responsibility for any trading outcomes. Always consult professional financial advisors before making investment decisions.
DYNAMIC TRADING DASHBOARDStudy Material for the "Dynamic Trading Dashboard"
This Dynamic Trading Dashboard is designed as an educational tool within the TradingView environment. It compiles commonly used market indicators and analytical methods into one visual interface so that traders and learners can see relationships between indicators and price action. Understanding these indicators, step by step, can help traders develop discipline, improve technical analysis skills, and build strategies. Below is a detailed explanation of each module.
________________________________________
1. Price and Daily Reference Points
The dashboard displays the current price, along with percentage change compared to the day’s opening price. It also highlights whether the price is moving upward or downward using directional symbols. Alongside, it tracks daily high, low, open, and daily range.
For traders, daily levels provide valuable reference points. The daily high and low are considered intraday support and resistance, while the median price of the day often acts as a pivot level for mean reversion traders. Monitoring these helps learners see how price oscillates within daily ranges.
________________________________________
2. VWAP (Volume Weighted Average Price)
VWAP is calculated as a cumulative average price weighted by volume. The dashboard compares the current price with VWAP, showing whether the market is trading above or below it.
For traders, VWAP is often a guide for institutional order flow. Price trading above VWAP suggests bullish sentiment, while trading below VWAP indicates bearish sentiment. Learners can use VWAP as a training tool to recognize trend-following vs. mean reversion setups.
________________________________________
3. Volume Analysis
The system distinguishes between buy volume (when the closing price is higher than the open) and sell volume (when the closing price is lower than the open). A progress bar highlights the ratio of buying vs. selling activity in percentage.
This is useful because volume confirms price action. For instance, if prices rise but sell volume dominates, it can signal weakness. New traders learning with this tool should focus on how volume often precedes price reversals and trends.
________________________________________
4. RSI (Relative Strength Index)
RSI is a momentum oscillator that measures price strength on a scale from 0 to 100. The dashboard classifies RSI readings into overbought (>70), oversold (<30), or neutral zones and adds visual progress bars.
RSI helps learners understand momentum shifts. During training, one should notice how trending markets can keep RSI extended for longer periods (not immediate reversal signals), while range-bound markets react more sharply to RSI extremes. It is an excellent tool for practicing trend vs. range identification.
________________________________________
5. MACD (Moving Average Convergence Divergence)
The MACD indicator involves a fast EMA, slow EMA, and signal line, with focus on crossovers. The dashboard shows whether a “bullish cross” (MACD above signal line) or “bearish cross” (MACD below signal line) has occurred.
MACD teaches traders to identify trend momentum shifts and divergence. During practice, traders can explore how MACD signals align with VWAP trends or RSI levels, which helps in building a structured multi-indicator analysis.
________________________________________
6. Stochastic Oscillator
This indicator compares the current close relative to a range of highs and lows over a period. Displayed values oscillate between 0 and 100, marking zones of overbought (>80) and oversold (<20).
Stochastics are useful for students of trading to recognize short-term momentum changes. Unlike RSI, it reacts faster to price volatility, so false signals are common. Part of the training exercise can be to observe how stochastic “flips” can align with volume surges or daily range endpoints.
________________________________________
7. Trend & Momentum Classification
The dashboard adds simple labels for trend (uptrend, downtrend, neutral) based on RSI thresholds. Additionally, it provides quick momentum classification (“bullish hold”, “bearish hold”, or neutral).
This is beneficial for beginners as it introduces structured thinking: differentiating long-term market bias (trend) from short-term directional momentum. By combining both, traders can practice filtering signals instead of trading randomly.
________________________________________
8. Accumulation / Distribution Bias
Based on RSI levels, the script generates simplified tags such as “Accumulate Long”, “Accumulate Short”, or “Wait”.
This is purely an interpretive guide, helping learners think in terms of accumulation phases (when markets are low) and distribution phases (when markets are high). It reinforces the concept that trading is not only directional but also involves timing.
________________________________________
9. Overall Market Status and Score
Finally, the dashboard compiles multiple indicators (VWAP position, RSI, MACD, Stochastics, and price vs. median levels) into a Market Score expressed as a percentage. It also labels the market as Overbought, Oversold, or Normal.
This scoring system isn’t a recommendation but a learning framework. Students can analyze how combining different indicators improves decision-making. The key training focus here is confluence: not depending on one indicator but observing when several conditions align.
Extended Study Material with Formulas
________________________________________
1. Daily Reference Levels (High, Low, Open, Median, Range)
• Day High (H): Maximum price of the session.
DayHigh=max(Hightoday)DayHigh=max(Hightoday)
• Day Low (L): Minimum price of the session.
DayLow=min(Lowtoday)DayLow=min(Lowtoday)
• Day Open (O): Opening price of the session.
DayOpen=OpentodayDayOpen=Opentoday
• Day Range:
Range=DayHigh−DayLowRange=DayHigh−DayLow
• Median: Mid-point between high and low.
Median=DayHigh+DayLow2Median=2DayHigh+DayLow
These act as intraday guideposts for seeing how far the price has stretched from its key reference levels.
________________________________________
2. VWAP (Volume Weighted Average Price)
VWAP considers both price and volume for a weighted average:
VWAPt=∑i=1t(Pricei×Volumei)∑i=1tVolumeiVWAPt=∑i=1tVolumei∑i=1t(Pricei×Volumei)
Here, Price_i can be the average price (High + Low + Close) ÷ 3, also known as hlc3.
• Interpretation: Price above VWAP = bullish bias; Price below = bearish bias.
________________________________________
3. Volume Buy/Sell Analysis
The dashboard splits total volume into buy volume and sell volume based on candle type.
• Buy Volume:
BuyVol=Volumeif Close > Open, else 0BuyVol=Volumeif Close > Open, else 0
• Sell Volume:
SellVol=Volumeif Close < Open, else 0SellVol=Volumeif Close < Open, else 0
• Buy Ratio (%):
VolumeRatio=BuyVolBuyVol+SellVol×100VolumeRatio=BuyVol+SellVolBuyVol×100
This helps traders gauge who is in control during a session—buyers or sellers.
________________________________________
4. RSI (Relative Strength Index)
RSI measures strength of momentum by comparing gains vs. losses.
Step 1: Compute average gains (AG) and losses (AL).
AG=Average of Upward Closes over N periodsAG=Average of Upward Closes over N periodsAL=Average of Downward Closes over N periodsAL=Average of Downward Closes over N periods
Step 2: Calculate relative strength (RS).
RS=AGALRS=ALAG
Step 3: RSI formula.
RSI=100−1001+RSRSI=100−1+RS100
• Used to detect overbought (>70), oversold (<30), or neutral momentum zones.
________________________________________
5. MACD (Moving Average Convergence Divergence)
• Fast EMA:
EMAfast=EMA(Close,length=fast)EMAfast=EMA(Close,length=fast)
• Slow EMA:
EMAslow=EMA(Close,length=slow)EMAslow=EMA(Close,length=slow)
• MACD Line:
MACD=EMAfast−EMAslowMACD=EMAfast−EMAslow
• Signal Line:
Signal=EMA(MACD,length=signal)Signal=EMA(MACD,length=signal)
• Histogram:
Histogram=MACD−SignalHistogram=MACD−Signal
Crossovers between MACD and Signal are used in studying bullish/bearish phases.
________________________________________
6. Stochastic Oscillator
Stochastic compares the current close against a range of highs and lows.
%K=Close−LowestLowHighestHigh−LowestLow×100%K=HighestHigh−LowestLowClose−LowestLow×100
Where LowestLow and HighestHigh are the lowest and highest values over N periods.
The %D line is a smooth version of %K (using a moving average).
%D=SMA(%K,smooth)%D=SMA(%K,smooth)
• Values above 80 = overbought; below 20 = oversold.
________________________________________
7. Trend and Momentum Classification
This dashboard generates simplified trend/momentum logic using RSI.
• Trend:
• RSI < 40 → Downtrend
• RSI > 60 → Uptrend
• In Between → Neutral
• Momentum Bias:
• RSI > 70 → Bullish Hold
• RSI < 30 → Bearish Hold
• Otherwise Neutral
This is not predictive, only a classification framework for educational use.
________________________________________
8. Accumulation/Distribution Bias
Based on extreme RSI values:
• RSI < 25 → Accumulate Long Bias
• RSI > 80 → Accumulate Short Bias
• Else → Wait/No Action
This helps learners understand the idea of accumulation at lows (strength building) and distribution at highs (profit booking).
________________________________________
9. Overall Market Status and Score
The tool adds up 5 bullish conditions:
1. Price above VWAP
2. RSI > 50
3. MACD > Signal
4. Stochastic > 50
5. Price above Daily Median
BullishScore=ConditionsMet5×100BullishScore=5ConditionsMet×100
Then it categorizes the market:
• RSI > 70 or Stoch > 80 → Overbought
• RSI < 30 or Stoch < 20 → Oversold
• Else → Normal
This encourages learners to think in terms of probabilistic conditions instead of single-indicator signals.
________________________________________
⚠️ Warning:
• Trading financial markets involves substantial risk.
• You can lose more money than you invest.
• Past performance of indicators does not guarantee future results.
• This script must not be copied, resold, or republished without authorization from aiTrendview.
By using this material or the code, you agree to take full responsibility for your trading decisions and acknowledge that this is not financial advice.
________________________________________
⚠️ Disclaimer and Warning (From aiTrendview)
This Dynamic Trading Dashboard is created strictly for educational and research purposes on the TradingView platform. It does not provide financial advice, buy/sell recommendations, or guaranteed returns. Any use of this tool in live trading is completely at the user’s own risk. Markets are inherently risky; losses can exceed initial investment.
The intellectual property of this script and its methodology belongs to aiTrendview. Unauthorized reproduction, modification, or redistribution of this code is strictly prohibited. By using this study material or the script, you acknowledge personal responsibility for any trading outcomes. Always consult professional financial advisors before making investment decisions.
TRADE ORBIT:-Coppock Curve –BULL MARKET BOTTOM TRADE ORBIT: Coppock Curve – Bull Market Start
The Coppock Curve is a long-term momentum indicator originally designed to identify the beginning of major bull markets. This version adds enhancements for clarity and trading usability:
🔹 Coppock Curve – Calculated as a weighted moving average of two Rate-of-Change (ROC) values (default 11 & 14).
🔹 Signal Line – A short moving average of the Coppock, used for early confirmation.
🔹 Zero Line – A reference line; moves above zero are considered bullish by classic Coppock theory.
🚀 Features:
Zero-Line Crossovers: Green triangle signals when Coppock crosses above 0 (long-term bullish confirmation).
Signal-Line Crossovers: Green circle signals when Coppock crosses above its short MA (early bullish entry).
Background Highlight: Subtle green shading when bullish signals trigger.
Customizable Inputs: ROC lengths, WMA length, and Signal MA length.
📊 How to Use:
Bullish Confirmation: Coppock crossing above zero often marks the start of a major uptrend.
Early Signals: Coppock crossing its signal MA provides earlier trend-change detection.
Works best on weekly charts, but can be applied to other timeframes.
⚠️ Note: This indicator is for educational purposes only and not financial advice. Always combine with your own research and risk management.
Tick Ratio Simulator - Advanced Market Sentiment IndicatorOverview
The Tick Ratio Simulator is a sophisticated market sentiment indicator that provides real-time insights into buying and selling pressure dynamics. This proprietary indicator transforms complex market microstructure data into actionable trading signals.
Key Features
Real-Time Sentiment Analysis: Captures instantaneous shifts in market momentum
Multi-Timeframe Adaptability: Customizable calculation periods for any trading style
Visual Clarity: Color-coded histogram with dynamic zone highlighting
Integrated Alert System: Pre-configured alerts for key market transitions
Performance Dashboard: Live metrics display for informed decision-making
Trading Applications
✓ Trend Confirmation: Validate existing trends with momentum analysis
✓ Reversal Detection: Identify potential turning points at extreme readings
✓ Entry/Exit Timing: Optimize trade execution with overbought/oversold zones
✓ Risk Management: Clear visual boundaries for position sizing decisions
Signal Interpretation
Extreme Zones (±75): High probability reversal areas
Standard Thresholds (±50): Traditional overbought/oversold levels
Zero Line Crossings: Momentum shift confirmations
Histogram Expansion/Contraction: Strength of directional bias
Customization Options
Adjustable calculation and smoothing periods
Fully customizable color schemes
Toggle histogram and reference lines
Real-time information table positioning
Alert Conditions
Four pre-built alert templates for automated notifications:
Momentum threshold breaches
Directional changes
Extreme zone entries
Custom level crossovers
Best Practices
Works exceptionally well when combined with:
Volume analysis
Support/resistance levels
Price action patterns
Other momentum oscillators
Note: This indicator uses proprietary calculations to simulate institutional-grade tick analysis without requiring actual tick data feeds. Results are optimized for liquid markets with consistent volume profiles.
For optimal results, adjust parameters based on your specific instrument and timeframe. Past performance does not guarantee future results.
BTC vs USDT Dominance + Info//@version=5
indicator("BTC vs USDT Dominance + Info", overlay=false)
// Ambil data BTCUSDT (Bybit)
btc = request.security("BYBIT:BTCUSDT", timeframe.period, close)
// Ambil data USDT Dominance (USDT.D)
usdtDom = request.security("CRYPTOCAP:USDT.D", timeframe.period, close)
// Normalisasi biar skalanya sama
btcNorm = (btc - ta.lowest(btc, 200)) / (ta.highest(btc, 200) - ta.lowest(btc, 200)) * 100
usdtNorm = (usdtDom - ta.lowest(usdtDom, 200)) / (ta.highest(usdtDom, 200) - ta.lowest(usdtDom, 200)) * 100
// Plot garis
plot(btcNorm, color=color.green, title="BTC (Normalized)", linewidth=2)
plot(usdtNorm, color=color.red, title="USDT Dominance (Normalized)", linewidth=2)
// Deteksi arah candle terakhir
btcUp = ta.change(btc) > 0
btcDown = ta.change(btc) < 0
// Label info otomatis
if btcUp
label.new(bar_index, btcNorm, "BTC Naik → USDT Dominance Turun",
color=color.green, textcolor=color.white, style=label.style_label_up)
if btcDown
label.new(bar_index, btcNorm, "BTC Turun → USDT Dominance Naik",
color=color.red, textcolor=color.white, style=label.style_label_down)
EMA + Dynamic Fib TradeNestDescription:
This custom indicator combines Exponential Moving Averages (EMA) and Ichimoku to provide a momentum and trend-based framework for day trading.
9 EMA and 21 EMA are used to identify short-term momentum shifts. A bullish signal occurs when the 9 EMA crosses above the 21 EMA, suggesting potential call opportunities, while a bearish signal occurs when the 9 EMA crosses below the 21 EMA, suggesting potential put opportunities.
50 EMA is included as an additional trend filter to help confirm overall market direction.
Ichimoku is plotted as a forward-looking dynamic support/resistance level. It behaves similarly to a Fibonacci retracement level, offering context for where price may find support or rejection. Ichimoku also helps determine whether current price action is aligned with a bullish or bearish trend environment.
By combining EMA crossovers with Ichimoku levels, this indicator provides a simple yet powerful method for identifying momentum entries and gauging the strength of price action relative to dynamic support/resistance.
9, 21, 50 EMA TN
This indicator plots three exponential moving averages (EMAs) on the chart:
9 EMA (purple) – short-term trend and momentum
21 EMA (yellow) – medium-term trend
50 EMA (cyan) – long-term trend and overall market direction
How it’s used:
Traders look for the 9 EMA to cross above the 21 EMA as a potential bullish signal. This suggests upward momentum and may be used as confirmation for call entries.
Conversely, when the 9 EMA crosses below the 21 EMA, it can indicate bearish momentum, often used as confirmation for put entries.
The 50 EMA acts as a higher timeframe filter: when price and the shorter EMAs are above the 50 EMA, it confirms bullish bias; when they’re below, it confirms bearish bias.
This tool helps identify short-term momentum shifts while staying aligned with the larger market trend.
Narrow Range Marker (Multi-TF)Marks bars with a circle when the selected timeframe’s range (high–low) is below a user-defined threshold. Supports 15m, 1H, Daily, Weekly, and Monthly timeframes, each with its own adjustable threshold.
AI A++ Liquidity Sweep FVGThat is a critical question. For the "AI A++ Liqu-idity Sweep FVG" indicator to work exactly as designed, you must have your chart set to the:
1-Minute (1m) Timeframe
The Reason:
The logic of the script is built to analyze the very specific, rapid price action that occurs in the first few minutes of the New York session open.
FVG Detection: A Fair Value Gap is a three-candle pattern. On the 1-minute chart, this allows us to see the rapid imbalances created by the opening burst of volume. On a higher timeframe like the 5-minute or 15-minute, these subtle but powerful gaps would be smoothed over and might not even be visible.
Liquidity Sweep Precision: The script is looking for a quick "stop hunt" that pierces the pre-market high or low and then immediately reverses. This action is most clearly and accurately seen on the 1-minute chart.
Using any other timeframe will cause the indicator to analyze the market incorrectly and either miss valid setups or provide false signals.
So, to confirm your setup for Monday morning:
Instrument: MNQ (Micro E-mini Nasdaq-100 Futures)
Timeframe: 1-Minute
Indicator: "AI A++ Liquidity Sweep FVG" active on the chart.
Alert: Alert set up for the indicator.
You are now perfectly set up to catch the exact A++ setup we are waiting for.
권재용AI 업데이트 버전한 줄 압축: ‘추세,수급,변동성의 교집합에서만 거래하게 강제하는 보조지표 만듦
-슈퍼트렌드에 다중TF·수급·레짐 합의점수 얹어 재도색 없이 ‘자리 좋은’ 신호만 뽑는 엔진 만듦
-Flip·Pullback을 켈트너·RSI·OBV/MFI·ADX로 교차검증해 노이즈 싹 걷어내는 NRP 신호 설계함
-추세판단→엔트리→S/R·VWAP 컨텍스트→TP/SL·알림까지 지표 하나로 풀스택 자동화함
-상위TF 확정봉+ATR 레짐+EMA 정렬로 허접 및 가짜 신호 전부 필터링하고 남은 것만 화살표로 뽑게 만듦
-트렌드·수급·변동성 3요소를 점수화해 신호 질·빈도 동시에 컨트롤하는 합의형 엔진 제작함
-NRP ST에 S/R 존과 앵커 VWAP 붙여 ‘보이는 자리만’ 눌러 담게 만드는 실전형 지표임
-알고리즘이 허락하고 사람은 자리만 고르게 만드는 엔트리 시스템으로 구조 갈아엎음
-Flip+Pullback을 ‘의미 있는 눌림/돌파’만 통과시키는 확률적 알고리즘임
-신호 뜨면 TP/SL/시간청산까지 경로가 자동 깔리는 엔드투엔드 트레이딩 레일 만들었음
-케이스 바이 케이스를 규칙으로 압축해 클릭 전에 이미 선별 끝내는 지표임
-빈도는 살리고(Flip+PB) 질은 점수로 묶은, 레버리지 장에서도 버티는 엔진임
0) 보조지표 구분
초록 굵은 선 = 상승 추세(롱 바이어스)
빨강 굵은 선 = 하락 추세(숏 바이어스)
청록 채움 = 지지 존(S1~S3)
적갈 채움 = 저항 존(R1~R3)
주황 실선 + 연한 띠 = 앵커 VWAP + 밴드
파랑/보라 얇은 선 = 전일/전주 고저
초록/빨강 라벨 = 권재용 B/S 신호
회색 선 = TP1/TP2, 검정 선 = SL 가이드
옅은 노랑 배경 = 신호 직후 경계 구간
1) 사용법(초보→중급→고급)
A) 초보자(그대로 따라 하기)
보는 법:
ST 색 먼저 봄(초록=롱, 빨강=숏). 상위TF(4H) 같은 방향인지 확인함.
화살표 뜨면 후보. 바로 위/아래 S/R 존·앵커 VWAP 있는지 확인.
저항 겹치면 롱 지연/축소, 지지 겹치면 숏 지연/축소.
진입:
Flip 신호면 추세 시작 자리.
Pullback 신호면 눌림/반등 자리(켈트너+RSI 재진입 충족).
청산:
TP1에서 절반, TP2에서 나머지(취향).
SL은 가이드 라인 참조하되 실제 손절은 주문으로 확정함.
알림: BUY/SELL만 봉 마감으로 켜두면 충분함.
B) 중급자(필터/점수로 빈도·질 조절)
빈도 늘리고 싶음: preset=공격적 또는 scoreExtra=-0.5, cooldownBars=0~1, minDistATR=0~0.2, adxMin=18~20, atrZmin=0.0/atrZmax=1.0
질 올리고 싶음: preset=보수적, scoreExtra=+0.5~+1.0, cooldownBars≥3, minDistATR=0.3~0.5, adxMin=22~25, chopMax=50
주의: OBV/MFI 끄면 최대점수 1점임. 중립(3)/보수(4)로 두면 신호 안 뜸 → 프리셋 낮추거나 OBV/MFI 켬.
C) 고급자(레짐·TF·자금관리)
레짐 매핑:
추세장: adxMin↑, chopMax↓, minDistATR↑(추격 줄임)
박스장: useCHOP=OFF 고려, kelMult↑로 밴드 넓혀 과매수/과매도만 노림
TF 분리 운용:
엔트리 5/15m + confTF=60m(1H)로 더 타이트하게 확정
스윙이면 res="", confTF="D" / confirmBars=1~2
앵커 VWAP: Flip마다 리셋됨. 추세 추종이면 VWAP 위 롱/아래 숏 기본. 역추세는 밴드 터치→재관통만 부분 진입.
3) 목적별 프리셋(붙여 쓰기)
스캘핑(신호 많게, 1~5m)
entryMode=Flip+Pullback
preset=공격적 또는 중립 + scoreExtra=-0.5
adxMin=18~20, cooldownBars=0~1, minDistATR=0~0.2
atrZmin=0.0 / atrZmax=1.0, chopMax=58~60
청산: tp1ATR=0.6~0.8, tp2ATR=1.2~1.6, timeExit=20~30
데이(균형, 5~15m)
초기 기본값 세트 그대로
손절 좁히려면 slATR=0.8~1.0, 리스크 허용 크면 tp2ATR=2.2~2.5
스윙(정확도 우선, 1H~4H/Day)
entryMode=Flip only
preset=보수적, scoreExtra=+0.5~+1.0
adxMin=22~25, cooldownBars=3~5, minDistATR=0.3~0.5
confTF="D"(혹은 W), confirmBars=1~2
청산: tp1ATR=1.5, tp2ATR=3.0, timeExit=0~20(장세 따라)
돌파 전문(Flip만, 저항 상단 체결 줄임)
entryMode=Flip only
minDistATR=0.4~0.6, cooldownBars=2~3, chopMax=48~52
눌림 전문(Pullback만, VWAP/지지부근)
entryMode=Pullback only
kelMult=1.6~1.8, rsiBand=6~8(더 확실한 재진입만)
tp1ATR 살짝 낮춤(0.8~1.2) → 빈도 대비 체결·수익 확보
2) 차트 읽는 법(초간단)
색: 초록=롱 바이어스, 빨강=숏 바이어스
화살표: “권재용 B/S” 뜨면 후보. 상위TF도 같은 방향이어야 유효
존: 청록=S(지지), 적갈=R(저항). 존 위는 저항라인, 아래는 지지라인
주황선: 앵커 VWAP(마지막 Flip 기준 평균가).
3) 진입법(딱 두 개만 기억)
Flip 진입: 색이 바뀌는 순간 화살표 → 바로 위/아래 R/S 겹침 있나 보고 들어감
Pullback 진입: 추세 진행 중, 켈트너 밴드 꼬리 터치 + 중선 재관통 + RSI 재진입 → 들어감
4) 청산/손절(기본값 그대로)
TP1/TP2: 회색 라인 목표. 반절/전량 취향대로
SL: 검정 라인(가이드). ST 라인과 ATR 기준 중 더 보수적으로 잡힘
시간청산: 오래 끌리면 자동 신호(TIME_EXIT). 트렌딩장엔 꺼도 됨
5) 목적별 빠른 프리셋
스캘핑(신호 많이)
entryMode = Flip+Pullback
preset = 공격적 또는 중립 + scoreExtra = -0.5
cooldownBars = 0~1, minDistATR = 0~0.2, adxMin = 18~20
필요하면 useCHOP = OFF, atrZmin=0.0/atrZmax=1.0
데이(균형형)
위 “3분 설정” 그대로 쓰면 됨
스윙(정확도 우선)
entryMode = Flip only
preset = 보수적, scoreExtra = +0.5~+1.0
cooldownBars ≥ 3, minDistATR = 0.3~0.5, adxMin = 22~25
필터 전부 ON 유지
6) 자리 고르는 요령
롱이면 VWAP 위, 아래서 위로 재관통 시 더 좋음
바로 위 R1/R2/R3 겹치면 대기 or 사이즈 축소
Pullback은 S1~S3 근처 눌림 + 재관통 조합이 질 높음
7) 신호 안 뜰 때 체크리스트
OBV/MFI 끄고 preset=중립/보수적 → 점수 모자람
상위TF 불일치 or confirmBars 너무 큼
cooldownBars 때문에 막힘
minDistATR 너무 큼(가격이 ST와 너무 가까워야 함)
atrZ 범위 과도(레짐 필터 너무 빡셈)
EMA 정렬(20/50) 안 맞음
res로 다른 TF 계산 중인데 까먹음
8) 초간단 용어
ST(슈퍼트렌드): 추세선. 색이 바이어스
Flip: ST 색 전환
Pullback: 추세 중 되돌림 진입(켈트너+RSI 재진입)
S/R 존: 지지/저항 영역(청록/적갈 채움)
앵커 VWAP: 마지막 Flip부터 계산한 평균가
9) 안전수칙
알림은 봉 마감만 신뢰
지표는 허락장치, 자리는 S/R·VWAP로 판단
레버리지/사이즈는 따로 규칙 만들고 지킬 것
What it is (in plain English)
This is a non-repainting Supertrend system. It gives you two kinds of entries (trend flip and pullback), checks a bunch of sanity filters so you don’t click junk, confirms with a higher timeframe, draws nearby support/resistance zones, anchors a VWAP at the last regime change, and shows simple TP/SL guides. It also pushes JSON alerts you can feed to a bot.
How I’d read it on a chart
Trend first
The thick Supertrend line is the boss: green = long bias, red = short bias.
Signals only count when the higher TF agrees for a few confirmed candles.
Entries
Flip: the Supertrend flips color. That’s your fresh trend start.
Pullback: in an existing trend, price wicks to the Keltner band, then closes back through the midline, and RSI snaps back through its mid level. That’s your “buy the dip / sell the pop”.
Where you are
Teal filled zones = supports (S1–S3). Maroon filled zones = resistances (R1–R3).
Blue/purple lines are yesterday/last week high/low.
Orange line is the anchored VWAP from the last flip (with a soft band). If price hugs it, you’re near “fair”.
Getting out
After a signal, it paints TP1/TP2 by ATR and a guide SL (it respects Supertrend so it doesn’t sit unrealistically tight). There’s also an optional “time exit” if a trade drags on.
What keeps signals honest (filters)
EMA alignment: longs want EMA20 > EMA50 and price above the fast EMA (mirror for shorts).
ADX: wants trend strength above a floor and rising.
Choppiness: avoids heavy range conditions.
Distance to Supertrend: blocks entries that fire right on top of the line.
ATR regime: ignores dead volatility and panic volatility.
OBV/MFI: quick check that flow isn’t fighting you.
Cooldown: don’t fire twice in a row.
There’s also a tiny score: EMA(1pt) + OBV(1) + MFI(1). Your preset sets how many points you demand (Aggressive=2, Neutral=3, Conservative=4). If you turn OBV/MFI off but keep a high demand, you’ll get no signals—easy to forget.
Two ways I’d run it
More trades (scalpy):
Mode: Flip+Pullback
Preset: Aggressive (or Neutral with scoreExtra = -0.5)
Cooldown: 0–1 bars
Min distance to ST: 0–0.2 ATR
ADX min: ~18–20
ATR regime: loosen it if you feel filtered out
Optional: turn off Choppiness if you’re okay with rangy action
Pickier (day/swing):
Mode: Flip only (or Pullback only if you like mean-revert entries)
Preset: Conservative (+ scoreExtra +0.5 to +1.0 if needed)
Cooldown: ≥3 bars
Min distance to ST: 0.3–0.5 ATR
Keep CHOP/ADX/RSI/Keltner/OBV/MFI on
ADX min: ~22–25
Small habits that help
Set alerts on bar close to match the non-repainting logic.
Treat S/R zones and anchored VWAP as context, not hard rules. If a Flip long triggers into stacked resistances and above VWAP, size lighter or wait for a pullback signal.
Don’t forget the score vs. enabled filters. If OBV/MFI are off, max score is 1.
Quick checklist before you click
Higher TF lined up and confirmed?
Entry is Flip or valid Pullback (wick → midline re-cross + RSI re-entry)?
EMA/ADX/CHOP pass? Not sitting on the ST line?
Score meets the preset? ATR regime okay?
Any nasty R1/R2/R3 right in front of you? Where’s anchored VWAP?
TP/SL sensible for the timeframe you’re trading?
Gap + Order Blocks1️⃣ What the script does:
A. Price Gaps:
Detects a candle whose low is higher than the previous candle’s high → Bullish Gap.
Detects a candle whose high is lower than the previous candle’s low → Bearish Gap.
Users can choose:
Limited Extension: the rectangle only spans a set number of candles.
Infinite Extension: the rectangle automatically extends to the end of the chart.
B. Order Blocks (simplified version):
Bullish OB: the last bearish candle before a strong upward move.
Bearish OB: the last bullish candle before a strong downward move.
Drawn as colored rectangles for easy visualization of potential buy/sell zones.
2️⃣ Benefits of the script:
All gaps and OBs are drawn automatically on the chart.
Customizable colors for quick recognition of different zones.
Full control over gap extensions and OB length.
Suitable for both beginner and advanced traders.
Señal Emocional 9:30 NY [Smart Money Pro+]9:30 NY Signal Strategy with Recovery Logic
A precision-based strategy that triggers one trade daily at 9:30 AM NY. Combines trend, volume, RSI, fractals, VWAP, and emotional bias to generate high-probability BUY/SELL signals. Includes smart recovery mode to manage losses and maintain risk/reward integrity.
Author: Nelson Joaquin Contact: nelsonadames10@gmail.com
Señal V1 9:30 NY [Smart Money Pro+]9:30 NY Signal Strategy with Recovery Logic
A precision-based strategy that triggers one trade daily at 9:30 AM NY. Combines trend, volume, RSI, fractals, VWAP, and emotional bias to generate high-probability BUY/SELL signals. Includes smart recovery mode to manage losses and maintain risk/reward integrity.
Author: Nelson Joaquin Contact: nelsonadames10@gmail.com
RSI Divergence IndicatorRSI indicator i built to identify divergances quickly with bolling bands... strategy should not be used alone...
USE WITH VWAP, AND GEX LEVELS FOR HIGH SUCCESS RATES.
BYNEX - Binary Options Indicator!The BYNEX – Binary Options Indicator is built for traders who demand clarity, speed, and transparency.
This tool delivers early alerts and actionable insights designed to help you make precise, informed decisions in high-volatility environments.
🔹 No Repaint — Signals are fixed at candle close.
🔹 Transparency First — Every generated signal is logged for full accountability.
🔹 Designed for Speed — Built specifically for binary options where every second matters.
🔹 Part of the BYNEX Movement — We stand against hidden affiliations, broker kickbacks, and misleading promises. Our goal is to give traders the tools, data, and transparency they deserve.
We're not here to sell dreams — we're here to arm traders with an edge.
Join the movement. Trade smarter.
📌 How to use — Read First
🔹 Signals are triggered after candle close.
🔹 In binary options, every second matters — always wait for next-candle confirmation for safer 🔹 entries.
🔹 Take SHORT → only IF next candle GREEN.
🔹 Take LONG → only IF next candle RED.
📎 Learn More & Connect
Instagram: @bynexbinary
Market Internal Strength (DJI/Nasdaq/S&P)Market Health Dow, Nasdaq & S\&P 500 Breadth
Track the true internal health of the US market's three most important indices the Dow Jones Industrial Average (DJI), the Nasdaq 100 (NDX), and the S\&P 500 (SPX).
Price action alone can be deceiving. A rising index might be driven by only a handful of mega-cap stocks, masking underlying weakness. This indicator provides a crucial look "under the hood" to measure the market's true breadth.
It visualizes the percentage of stocks within each index that are trading above their key moving averages (5, 20, 50, 100, 150, and 200-day). This allows you to instantly gauge whether a market trend is broadly supported by the majority of its constituent stocks.
Key Features
* Covers 3 Major US Indices Seamlessly switch your analysis between the Dow Jones, Nasdaq 100, and S\&P 500.
* Complete Breadth Picture Six MA periods offer a full view, from short-term momentum (5D, 20D) to the long-term institutional trend (150D, 200D).
* Fully Customizable Toggle the visibility of any line and adjust overbought/oversold levels to fit your personal strategy.
How to Use
1. Extreme Readings (Overbought/Oversold)
* Above 80% Signals a very strong, potentially overbought market. Caution is advised as a pullback could be near.
* Below 20% Signals a deeply oversold market, often indicating capitulation and potential buying opportunities.
2. Divergence (Powerful Warning Signal)
* Bearish The index price makes a new high, but this indicator makes a lower high. This warns that the rally is not broad-based and may be losing steam.
* Bullish The index price makes a new low, but this indicator makes a higher low. This suggests internal strength is building and a bottom may be forming.
3. Trend Confirmation
When the long-term lines (150D, 200D) remain high (e.g., \> 50%), the primary market trend is healthy and confirmed.
T-Virus Sentiment [hapharmonic]🧬 T-Virus Sentiment: Visualize the Market's DNA
Remember the iconic T-Virus vial from the first Resident Evil? That powerful, swirling helix of potential has always fascinated me. It sparked an idea: what if we could visualize the market's underlying health in a similar way? What if we could capture the "genetic code" of market sentiment and contain it within a dynamic, 3D indicator? This project is the result of that idea, brought to life with Pine Script.
The indicator's main goal is to measure the strength and direction of market sentiment by analyzing the "genetic code" of price action through a variety of trusted indicators. The result is displayed as a liquid level within a DNA helix, a bubble density representing buying pressure, and a T-Virus mascot that reflects the overall mood.
🧐 Core Concept: How It Works
The primary output of the indicator is the "Active %" gauge you see on the right side of the vial. This percentage represents the overall sentiment score, calculated as an average from 7 different technical analysis tools. Each tool is analyzed on every bar and assigned a score from 1 (strong bearish pressure) to 5 (strong bullish potential).
In this indicator, we re-imagine market dynamics through the lens of a viral outbreak. A strong bear market is like a virus taking hold, pulling all technical signals down into a state of weakness. Conversely, a powerful bull market is like an antiviral serum ; positive signals rise and spread toward the top of the vial, indicating that the system is being injected with strength.
This is not just another line on a chart. It's a comprehensive sentiment dashboard designed to give an immediate, at-a-glance understanding of the confluence between 7 classic technical indicators. The incredible 3D model of the vial itself was inspired by a design concept found here .
⚛️ The 4 Core Elements of T-Virus Sentiment
These four elements work in harmony to give a complete, multi-faceted picture of market sentiment. Each component tells a different part of the story.
The Virus Mascot: An instant emotional cue. This character provides the quickest possible read on the overall market mood, combining sentiment with volume pressure.
The Antiviral Serum Level: The main quantitative output. This is the liquid level in the DNA helix and the percentage gauge on the right, representing the average sentiment score from all 7 indicators.
Buy Pressure & Bubble Density: This visualizes volume flow. The density of bubbles represents the intensity of accumulation (buying) versus distribution (selling). It's the "power" behind the move.
The Signal Distribution: This shows the confluence (or dispersion) of sentiment. Are all signals bullish and clustered at the top, or are they scattered, indicating a conflicted market? The position of the indicator labels is crucial, as each is assigned to one of five distinct zones:
Base Bottom: The market is at its weakest. Signals here suggest strong bearish control and distribution.
Lower Zone: The market is still bearish, but signals may be showing early signs of accumulation or bottoming.
Neutral Core (Center): A state of balance or sideways consolidation. The market is waiting for a new direction.
Upper Zone: Bullish momentum is becoming clear. Signals are strengthening and showing bullish control.
Top Cap: The market is "heating up" with strong bullish sentiment, potentially nearing overbought conditions.
🐂🐻 The Virus Mascot: The At-a-Glance Indicator
This character acts as a shortcut to confirm market health. It combines the sentiment score with volume, preventing false confidence in a low-volume rally.
Its state is determined by a dual-check: the overall "Antiviral Serum Level" and the "Buy Pressure" must both be above 50%.
Green & Smiling: The 'all clear' signal. This means that not only is the overall technical sentiment bullish, but it's also being supported by real buying pressure. This is a sign of a healthy bull market.
Red & Angry: A warning sign. This appears if either the sentiment is weak, or a bullish sentiment is not being confirmed by buying volume. The latter could indicate a potential "bull trap" or an exhaustive move.
This mascot can be disabled from the settings page under "Virus Mascot Styling" if a cleaner look is preferred.
🫧 Bubble Density: Gauging Buy vs. Sell Pressure
The bubbles visualize the battle between buyers and sellers. There are two modes to control how this is calculated:
Mode 1: Visible Range (The 'Big Picture' View)
This default mode is best for getting a broad, contextual understanding of the current session. It dynamically analyzes the volume of every single candlestick currently visible on the screen to calculate the buy/sell pressure ratio. It answers the question: "Over the entire period I'm looking at, who is in control?" As you zoom in or out, the calculation adapts.
Mode 2: Custom Lookback (The 'Precision' View)
This mode is for traders who need to analyze short-term pressure. You can define a fixed number of recent bars to analyze, which is perfect for scalping or understanding the volume dynamics leading into a key level. It answers the question: "What is happening right now ?" In the example above, a lookback of 2 focuses only on the most recent action, clearly showing intense, immediate selling pressure (few bubbles) and a corresponding drop in the sentiment score to 29%.
ℹ️ Interactive Tooltips: Dive Deeper
We believe in transparency, not 'black box' indicators. This feature transforms the indicator from a visual aid into an active learning tool.
Simply hover the mouse over any indicator label (like EMA, OBV, etc.) to get a detailed tooltip. It will explain the specific data points and thresholds that signal met to be placed in its current zone. This helps build trust in the signals and allows users to fine-tune the indicator settings to better match their own trading style.
🎯 The Scoring Logic Breakdown
The "Antiviral Serum Level" gauge is the average score from 7 technical analysis tools. Each is graded on a 5-point scale (1=Strong Bearish to 5=Strong Bullish). Here’s a detailed, transparent look at how each "gene" is evaluated:
Relative Strength Index (RSI)
Measures momentum and overbought/oversold conditions.
Group 1 (Strong Bearish): RSI > 80 (Extreme Overbought)
Group 2 (Bearish): 70 < RSI ≤ 80 (Overbought)
Group 3 (Neutral): 30 ≤ RSI ≤ 70
Group 4 (Bullish): 20 ≤ RSI < 30 (Oversold)
Group 5 (Strong Bullish): RSI < 20 (Extreme Oversold)
Exponential Moving Averages (EMA)
Evaluates the trend's strength and structure based on the alignment of multiple EMAs (9, 21, 50, 100, 200, 250).
Group 1 (Strong Bearish): A perfect bearish sequence (9 < 21 < 50 < ...)
Group 2 (Bearish Transition): Early signs of a potential reversal (e.g., 9 > 21 but still below 50)
Group 3 (Neutral / Mixed): MAs are intertwined or showing a partial bullish sequence.
Group 4 (Bullish): A strong bullish sequence is forming (e.g., 9 > 21 > 50 > 100)
Group 5 (Strong Bullish): A perfect bullish sequence (9 > 21 > 50 > 100 > 200 > 250)
Moving Average Convergence Divergence (MACD)
Analyzes the relationship between two moving averages to gauge momentum.
Group 1 (Strong Bearish): MACD & Histogram are negative and momentum is falling.
Group 2 (Weakening Bearish): MACD is negative but the histogram is rising or positive.
Group 3 (Neutral / Crossover): A crossover event is occurring near the zero line.
Group 4 (Bullish): MACD & Histogram are positive.
Group 5 (Strong Bullish): MACD & Histogram are positive, rising strongly, and accelerating.
Average Directional Index (ADX)
Measures trend strength, not direction. The score is based on both ADX value and the dominance of DI+ vs DI-.
Group 1 (Bearish / No Trend): ADX < 20 and DI- is dominant.
Group 2 (Developing Bearish Trend): 20 ≤ ADX < 25 and DI- is dominant.
Group 3 (Neutral / Indecision): Trend is weak or DI+ and DI- are nearly equal.
Group 4 (Developing Bullish Trend): 25 ≤ ADX ≤ 40 and DI+ is dominant.
Group 5 (Strong Bullish Trend): ADX > 40 and DI+ is dominant.
Ichimoku Cloud (IKH)
A comprehensive indicator that defines support/resistance, momentum, and trend direction.
Group 1 (Strong Bearish): Price is below the Kumo, Tenkan < Kijun, and Chikou is below price.
Group 2 (Bearish): Price is inside or below the Kumo, with mixed secondary signals.
Group 3 (Neutral / Ranging): Price is inside the Kumo, often with a Tenkan/Kijun cross.
Group 4 (Bullish): Price is above the Kumo with strong primary signals.
Group 5 (Strong Bullish): All signals are aligned bullishly: price above Kumo, bullish Tenkan/Kijun cross, bullish future Kumo, and Chikou above price.
Bollinger Bands (BB)
Measures volatility and relative price levels.
Group 1 (Strong Bearish): Price is below the lower band.
Group 2 (Bearish Territory): Price is between the lower band and the basis line.
Group 3 (Neutral): Price is hovering around the basis line.
Group 4 (Bullish Territory): Price is between the basis line and the upper band.
Group 5 (Strong Bullish): Price is above the upper band.
On-Balance Volume (OBV)
Uses volume flow to predict price changes. The score is based on OBV's trend and its position relative to its moving average.
Group 1 (Strong Bearish): OBV is below its MA and falling.
Group 2 (Weakening Bearish): OBV is below its MA but showing signs of rising.
Group 3 (Neutral): OBV is very close to its MA.
Group 4 (Bullish): OBV is above its MA and rising.
Group 5 (Strong Bullish): OBV is above its MA, rising strongly, and showing signs of a volume spike.
🧭 How to Use the T-Virus Sentiment Indicator
IMPORTANT: This indicator is a sentiment dashboard , not a direct buy/sell signal generator. Its strength lies in showing confluence and providing a quick, holistic view of the market's technical health.
Confirmation Tool: Use the "Active %" gauge to confirm a trade setup from your primary strategy. For example, if you see a bullish chart pattern, a high and rising sentiment score can add confidence to your trade.
Momentum & Trend Gauge: A consistently high score (e.g., > 75%) suggests strong, established bullish momentum. A consistently low score (< 25%) suggests strong bearish control. A score hovering around 50% often indicates a ranging or indecisive market.
Divergence & Warning System: Pay attention to divergences. If the price is making new highs but the sentiment score is failing to follow or is actively decreasing, it could be an early warning sign that the underlying momentum is weakening.
⚙️ Settings & Customization
The indicator is highly customizable to fit any trading style.
Position & Anchor: Control where the vial appears on the chart.
Styling (Vial, Helix, etc.): Nearly every visual element can be color-customized.
Signals: This is where the real power is. All underlying indicator parameters (RSI length, MACD settings, etc.) can be fine-tuned to match a personal strategy. The text labels can also be disabled if the chart feels cluttered.
Enjoy visualizing the market's DNA with the T-Virus Sentiment indicator
SCTI-D1SCTI-D1 Indicator Introduction / 指标简介
The SCTI-D1 (Smart Composite Trading Indicator - Daily) is a comprehensive, multi-feature trading tool designed for serious traders who demand depth, flexibility, and clarity in their market analysis. This indicator combines several powerful concepts into one seamless workflow, including:
Multiple EMA Systems with customizable lengths and visibility
PMA (Projected Moving Average) with fill options between lines
VWAP with configurable anchors and deviation bands
Divergence Detection for MACD and Histogram
Volume Profile with node detection (peaks, troughs, highs, lows)
Smart Money Concepts including order blocks, fair value gaps, equal highs/lows, and market structure shifts
Whether you trade stocks, forex, or cryptocurrencies, the SCTI-D1 helps you identify key levels, track institutional activity, and spot high-probability reversal signals—all in one clean, customizable interface.
SCTI-D1 指标简介
SCTI-D1(智能综合交易指标 - 日线版)是一款功能全面的交易工具,专为需要深度、灵活性和清晰市场分析的专业交易者设计。该指标将多种强大概念融合在一个流畅的工作流程中,包括:
多组EMA系统,可自定义长度和显示
PMA(投影移动平均线),支持均线间填充色
VWAP,可配置锚定周期和偏差带
背离检测,支持MACD和柱状图
成交量分布,支持节点检测(峰值、谷值、最高、最低)
聪明钱概念,包括订单块、公允价值缺口、等高/等低和市场结构转换
无论您交易股票、外汇还是加密货币,SCTI-D1 都能帮助您识别关键水平、跟踪机构资金动向并发现高概率反转信号——所有功能均集成在一个清晰可定制的界面中。
Volume-Weighted Money Flow [sgbpulse]Overview
The VWMF indicator is an advanced technical analysis tool that combines and summarizes five leading momentum and volume indicators (OBV, PVT, A/D, CMF, MFI) into one clear oscillator. The indicator helps to provide a clear picture of market sentiment by measuring the pressure from buyers and sellers. Unlike single indicators, VWMF provides a comprehensive view of market money flow by weighting existing indicators and presenting them in a uniform and understandable format.
Indicator Components
VWMF combines the following indicators, each normalized to a range of 0 to 100 before being weighted:
On-Balance Volume (OBV): A cumulative indicator that measures positive and negative volume flow.
Price-Volume Trend (PVT): Similar to OBV, but incorporates relative price change for a more precise measure.
Accumulation/Distribution Line (A/D): Used to identify whether an asset is being bought (accumulated) or sold (distributed).
Chaikin Money Flow (CMF): Measures the money flow over a period based on the close price's position relative to the candle's range.
Money Flow Index (MFI): A momentum oscillator that combines price and volume to measure buying and selling pressure.
Understanding the Normalized Oscillators
The indicator combines the five different momentum indicators by normalizing each one to a uniform range of 0 to 100 .
Why is Normalization Important?
Indicators like OBV, PVT, and the A/D Line are cumulative indicators whose values can become very large. To assess their trend, we use a Moving Average as a dynamic reference line . The Moving Average allows us to understand whether the indicator is currently trending up or down relative to its average behavior over time.
How Does Normalization Work?
Our normalization fully preserves the original trend of each indicator.
For Cumulative Indicators (OBV, PVT, A/D): We calculate the difference between the current indicator value and its Moving Average. This difference is then passed to the normalization process.
- If the indicator is above its Moving Average, the difference will be positive, and the normalized value will be above 50.
- If the indicator is below its Moving Average, the difference will be negative, and the normalized value will be below 50.
Handling Extreme Values: To overcome the issue of extreme values in indicators like OBV, PVT, and the A/D Line , the function calculates the highest absolute value over the selected period. This value is used to prevent sharp spikes or drops in a single indicator from compromising the accuracy of the normalization over time. It's a sophisticated method that ensures the oscillators remain relevant and accurate.
For Bounded Indicators (CMF, MFI): These indicators already operate within a known range (for example, CMF is between -1 and 1, and MFI is between 0 and 100), so they are normalized directly without an additional reference line.
Reference Line Settings:
Moving Average Type: Allows the user to choose between a Simple Moving Average (SMA) and an Exponential Moving Average (EMA).
Volume Flow MA Length: Allows the user to set the lookback period for the Moving Average, which affects the indicator's sensitivity.
The 50 line serves as the new "center line." This ensures that, even after normalization, the determination of whether a specific indicator supports a bullish or bearish trend remains clear.
Settings and Visual Tools
The indicator offers several customization options to provide a rich analysis experience:
VWMF Oscillator (Blue Line): Represents the weighted average of all five indicators. Values above 50 indicate bullish momentum, and values below 50 indicate bearish momentum.
Strength Metrics (Bullish/Bearish Strength %): Two metrics that appear on the status line, showing the percentage of indicators supporting the current trend. They range from 0% to 100%, providing a quick view of the strength of the consensus.
Dynamic Background Colors: The background color of the chart automatically changes to bullish (a blue shade by default) or bearish (a default brown-gray shade) based on the trend. The transparency of the color shows the consensus strength—the more opaque the background, the more indicators support the trend.
Advanced Settings:
- Background Color Logic: Allows the user to choose the trigger for the background color: Weighted Value (based on the combined oscillator) or Strength (based on the majority of individual indicators).
- Weights: Provides full control over the weight of each of the five indicators in the final oscillator.
Using the Data Window
TradingView provides a useful Data Window that allows you to see the exact numerical values of each normalized oscillator separately, in addition to the trend strength data.
You can use this window to:
Get more detailed information on each indicator: Viewing the precise numerical data of each of the five indicators can help in making trading decisions.
Calibrate weights: If you want to manually adjust the indicator weights (in the settings menu), you can do so while tracking the impact of each indicator on the weighted oscillator in the Data Window.
The indicator's default setting is an equal weight of 20% for each of the five indicators.
Alert Conditions
The indicator comes with a variety of built-in alerts that can be configured through the TradingView alerts menu:
VWMF Cross Above 50: An alert when the VWMF oscillator crosses above the 50 line, indicating a potential bullish momentum shift.
VWMF Cross Below 50: An alert when the VWMF oscillator crosses below the 50 line, indicating a potential bearish momentum shift.
Bullish Strength: High But Not Absolute Consensus: An alert when the bullish trend strength reaches 60% or more but is less than 100%, indicating a high but not absolute consensus.
Bullish Strength at 100%: An alert when all five indicators (MFI, OBV, PVT, A/D, CMF) show bullish strength, indicating a full and absolute consensus.
Bearish Strength: High But Not Absolute Consensus: An alert when the bearish trend strength reaches 60% or more but is less than 100%, indicating a high but not absolute consensus.
Bearish Strength at 100%: An alert when all five indicators (MFI, OBV, PVT, A/D, CMF) show bearish strength, indicating a full and absolute consensus.
Summary
The VWMF indicator is a powerful, all-in-one tool for analyzing market momentum, money flow, and sentiment. By combining and normalizing five different indicators into a single oscillator, it offers a holistic and accurate view of the market's underlying trend. Its dynamic visual features and customizable settings, including the ability to adjust indicator weights, provide a flexible experience for both novice and experienced traders. The built-in alerts for momentum shifts and trend consensus make it an effective tool for spotting trading opportunities with confidence. In essence, VWMF distills complex market data into clear, actionable signals.
Important Note: Trading Risk
This indicator is intended for educational and informational purposes only and does not constitute investment advice or a recommendation for trading in any form whatsoever.
Trading in financial markets involves significant risk of capital loss. It is important to remember that past performance is not indicative of future results. All trading decisions are your sole responsibility. Never trade with money you cannot afford to lose.