Advanced Trend Momentum [Alpha Extract]The Advanced Trend Momentum indicator provides traders with deep insights into market dynamics by combining exponential moving average analysis with RSI momentum assessment and dynamic support/resistance detection. This sophisticated multi-dimensional tool helps identify trend changes, momentum divergences, and key structural levels, offering actionable buy and sell signals based on trend strength and momentum convergence.
🔶 CALCULATION
The indicator processes market data through multiple analytical methods:
Dual EMA Analysis: Calculates fast and slow exponential moving averages with dynamic trend direction assessment and ATR-normalized strength measurement.
RSI Momentum Engine: Implements RSI-based momentum analysis with enhanced overbought/oversold detection and momentum velocity calculations.
Pivot-Based Structure: Identifies and tracks dynamic support and resistance levels using pivot point analysis with configurable level management.
Signal Integration: Combines trend direction, momentum characteristics, and structural proximity to generate high-probability trading signals.
Formula:
Fast EMA = EMA(Close, Fast Length)
Slow EMA = EMA(Close, Slow Length)
Trend Direction = Fast EMA > Slow EMA ? 1 : -1
Trend Strength = |Fast EMA - Slow EMA| / ATR(Period) × 100
RSI Momentum = RSI(Close, RSI Length)
Momentum Value = Change(Close, 5) / ATR(10) × 100
Pivot Support/Resistance = Dynamic pivot arrays with configurable lookback periods
Bullish Signal = Trend Change + Momentum Confirmation + Strength > 1%
Bearish Signal = Trend Change + Momentum Confirmation + Strength > 1%
🔶 DETAILS
Visual Features:
Trend EMAs: Fast and slow exponential moving averages with dynamic color coding (bullish/bearish)
Enhanced RSI: RSI oscillator with color-coded zones, gradient fills, and reference bands at overbought/oversold levels
Trend Fill: Dynamic gradient between EMAs indicating trend strength and direction
Support/Resistance Lines: Horizontal levels extending from pivot-based calculations with configurable maximum levels
Momentum Candles: Color-coded candlestick overlay reflecting combined trend and momentum conditions
Divergence Markers: Diamond-shaped signals highlighting bullish and bearish momentum divergences
Analysis Table: Real-time summary of trend direction, strength percentage, RSI value, and momentum reading
Interpretation:
Trend Direction: Bullish when Fast EMA crosses above Slow EMA with strength confirmation
Trend Strength > 1%: Strong trending conditions with institutional participation
RSI > 70: Overbought conditions, potential selling opportunity
RSI < 30: Oversold conditions, potential buying opportunity
Momentum Divergence: Price and momentum moving opposite directions signal potential reversals
Support/Resistance Proximity: Dynamic levels provide optimal entry/exit zones
Combined Signals: Trend changes with momentum confirmation generate high-probability opportunities
🔶 EXAMPLES
Trend Confirmation: Fast EMA crossing above Slow EMA with trend strength exceeding 1% and positive momentum confirms strong bullish conditions.
Example: During institutional accumulation phases, EMA crossovers with momentum confirmation have historically preceded significant upward moves, providing optimal long entry points.
15min
4H
Momentum Divergence Detection: RSI reaching overbought levels while momentum decreases despite rising prices signals potential trend exhaustion.
Example: Bearish divergence signals appearing at resistance levels have marked major market tops, allowing traders to secure profits before corrections.
Support/Resistance Integration: Dynamic pivot-based levels combined with trend and momentum signals create high-probability trading zones.
Example: Bullish trend changes occurring near established support levels offer optimal risk-reward entries with clearly defined stop-loss levels.
Multi-Dimensional Confirmation: The indicator's combination of trend, momentum, and structural analysis provides comprehensive market validation.
Example: When trend direction aligns with momentum characteristics near key structural levels, the confluence creates institutional-grade trading opportunities with enhanced probability of success.
🔶 SETTINGS
Customization Options:
Trend Analysis: Fast EMA Length (default: 12), Slow EMA Length (default: 26), Trend Strength Period (default: 14)
Support & Resistance: Pivot Length for level detection (default: 10), Maximum S/R Levels displayed (default: 3), Toggle S/R visibility
Momentum Settings: RSI Length (default: 14), Oversold Level (default: 30), Overbought Level (default: 70)
Visual Configuration: Color schemes for bullish/bearish/neutral conditions, transparency settings for fills, momentum candle overlay toggle
Display Options: Analysis table visibility, divergence marker size, alert system configuration
The Advanced Trend Momentum indicator provides traders with comprehensive insights into market dynamics through its sophisticated integration of trend analysis, momentum assessment, and structural level detection. By combining multiple analytical dimensions into a unified framework, this tool helps identify high-probability opportunities while filtering out market noise through its multi-confirmation approach, enabling traders to make informed decisions across various market cycles and timeframes.
Oscillatori
ATAI Volume Pressure Analyzer V 1.0 — Pure Up/DownATAI Volume Pressure Analyzer V 1.0 — Pure Up/Down
Overview
Volume is a foundational tool for understanding the supply–demand balance. Classic charts show only total volume and don’t tell us what portion came from buying (Up) versus selling (Down). The ATAI Volume Pressure Analyzer fills that gap. Built on Pine Script v6, it scans a lower timeframe to estimate Up/Down volume for each host‑timeframe candle, and presents “volume pressure” in a compact HUD table that’s comparable across symbols and timeframes.
1) Architecture & Global Settings
Global Period (P, bars)
A single global input P defines the computation window. All measures—host‑TF volume moving averages and the half‑window segment sums—use this length. Default: 55.
Timeframe Handling
The core of the indicator is estimating Up/Down volume using lower‑timeframe data. You can set a custom lower timeframe, or rely on auto‑selection:
◉ Second charts → 1S
◉ Intraday → 1 minute
◉ Daily → 5 minutes
◉ Otherwise → 60 minutes
Lower TFs give more precise estimates but shorter history; higher TFs approximate buy/sell splits but provide longer history. As a rule of thumb, scan thin symbols at 5–15m, and liquid symbols at 1m.
2) Up/Down Volume & Derived Series
The script uses TradingView’s library function tvta.requestUpAndDownVolume(lowerTf) to obtain three values:
◉ Up volume (buyers)
◉ Down volume (sellers)
◉ Delta (Up − Down)
From these we define:
◉ TF_buy = |Up volume|
◉ TF_sell = |Down volume|
◉ TF_tot = TF_buy + TF_sell
◉ TF_delta = TF_buy − TF_sell
A positive TF_delta indicates buyer dominance; a negative value indicates selling pressure. To smooth noise, simple moving averages of TF_buy and TF_sell are computed over P and used as baselines.
3) Key Performance Indicators (KPIs)
Half‑window segmentation
To track momentum shifts, the P‑bar window is split in half:
◉ C→B: the older half
◉ B→A: the newer half (toward the current bar)
For each half, the script sums buy, sell, and delta. Comparing the two halves reveals strengthening/weakening pressure. Example: if AtoB_delta < CtoB_delta, recent buying pressure has faded.
[ 4) HUD (Table) Display /i]
Colors & Appearance
Two main color inputs define the theme: a primary color and a negative color (used when Δ is negative). The panel background uses a translucent version of the primary color; borders use the solid primary color. Text defaults to the primary color and flips to the negative color when a block’s Δ is negative.
Layout
The HUD is a 4×5 table updated on the last bar of each candle:
◉ Row 1 (Meta): indicator name, P length, lower TF, host TF
◉ Row 2 (Host TF): current ↑Buy, ↓Sell, ΔDelta; plus Σ total and SMA(↑/↓)
◉ Row 3 (Segments): C→B and B→A blocks with ↑/↓/Δ
◉ Rows 4–5: reserved for advanced modules (Wings, α/β, OB/OS, Top
5) Advanced Modules
5.1 Wings
“Wings” visualize volume‑driven movement over C→B (left wing) and B→A (right wing) with top/bottom lines and a filled band. Slopes are ATR‑per‑bar normalized for cross‑symbol/TF comparability and converted to angles (degrees). Coloring mirrors HUD sign logic with a near‑zero threshold (default ~3°):
◉ Both lines rising → blue (bullish)
◉ Both falling → red (bearish)
◉ Mixed/near‑zero → gray
Left wing reflects the origin of the recent move; right wing reflects the current state.
5.2 α / β at Point B
We compute the oriented angle between the two wings at the midpoint B:
β is the bottom‑arc angle; α = 360° − β is the top‑arc angle.
◉ Large α (>180°) or small β (<180°) flags meaningful imbalance.
◉ Intuition: large α suggests potential selling pressure; small β implies fragile support. HUD cells highlight these conditions.
5.3 OB/OS Spike
OverBought/OverSold (OB/OS) labels appear when directional volume spikes align with a 7‑oscillator vote (RSI, Stoch, %R, CCI, MFI, DeMarker, StochRSI).
◉ OB label (red): unusually high sell volume + enough OB votes
◉ OS label (teal): unusually high buy volume + enough OS votes
Minimum votes and sync window are user‑configurable; dotted connectors can link labels to the candle wick.
5.4 Top3 Volume Peaks
Within the P window the script ranks the top three BUY peaks (B1–B3) and top three SELL peaks (S1–S3).
◉ B1 and S1 are drawn as horizontal resistance (at B1 High) and support (at S1 Low) zones with adjustable thickness (ticks/percent/ATR).
◉ The HUD dedicates six cells to show ↑/↓/Δ for each rank, and prints the exact High (B1) and Low (S1) inline in their cells.
6) Reading the HUD — A Quick Checklist
◉ Meta: Confirm P and both timeframes (host & lower).
◉ Host TF block: Compare current ↑/↓/Δ against their SMAs.
◉ Segments: Contrast C→B vs B→A deltas to gauge momentum change.
◉ Wings: Right‑wing color/angle = now; left wing = recent origin.
◉ α / β: Look for α > 180° or β < 180° as imbalance cues.
◉ OB/OS: Note labels, color (red/teal), and the vote count.
◉Top3: Keep B1 (resistance) and S1 (support) on your radar.
Use these together to sketch scenarios and invalidation levels; never rely on a single signal in isolation.
[ 7) Example Highlights (What the table conveys) /i]
◉ Row 1 shows the indicator name, the analysis length P (default 55), and both TFs used for computation and display.
◉ B1 / S1 blocks summarize each side’s peak within the window, with Δ indicating buyer/seller dominance at that peak and inline price (B1 High / S1 Low) for actionable levels.
◉ Angle cells for each wing report the top/bottom line angles vs. the horizontal, reflecting the directional posture.
◉ Ranks B2/B3 and S2/S3 extend context beyond the top peak on each side.
◉ α / β cells quantify the orientation gap at B; changes reflect shifting buyer/seller influence on trend strength.
Together these visuals often reveal whether the “wings” resemble a strong, upward‑tilted arm supported by buyer volume—but always corroborate with your broader toolkit
8) Practical Tips & Tuning
◉ Choose P by market structure. For daily charts, 34–89 bars often works well.
◉ Lower TF choice: Thin symbols → 5–15m; liquid symbols → 1m.
◉ Near‑zero angle: In noisy markets, consider 5–7° instead of 3°.
◉ OB/OS votes: Daily charts often work with 3–4 votes; lower TFs may prefer 4–5.
◉ Zone thickness: Tie B1/S1 zone thickness to ATR so it scales with volatility.
◉ Colors: Feel free to theme the primary/negative colors; keep Δ<0 mapped to the negative color for readability.
Combine with price action: Use this indicator alongside structure, trendlines, and other tools for stronger decisions.
Technical Notes
Pine Script v6.
◉ Up/Down split via TradingView/ta library call requestUpAndDownVolume(lowerTf).
◉ HUD‑first design; drawings for Wings/αβ/OBOS/Top3 align with the same sign/threshold logic used in the table.
Disclaimer: This indicator is provided solely for educational and analytical purposes. It does not constitute financial advice, nor is it a recommendation to buy or sell any security. Always conduct your own research and use multiple tools before making trading decisions.
FUMO 200 MagnetWhat it does
FUMO Magnet measures how far price has stretched away from its long-term “magnet” — a blended EMA/SMA moving average (200 by default).
It plots a logarithmic deviation (optionally normalized) as an oscillator around zero.
Above 0** → price is above the magnet (stretched up)
Below 0** → price is below the magnet (stretched down)
Guide levels** highlight potential overbought/oversold zones
---
Why log deviation?
Log returns make extremes comparable across cycles and compress exponential trends — especially useful for BTC and other crypto assets.
Normalization modes further adjust the scale, keeping the oscillator readable on any chart.
---
Inputs
**Base**
* Source (default: Close)
* Base Length (default: 200 EMA/SMA)
* EMA vs SMA weight (%) — 0% = pure SMA, 100% = pure EMA, 50% = blended
* EMA smoothing of deviation — acts as a noise filter
**Normalization**
* None (Log Deviation) — raw log stretch in % terms
* Z-score — deviation in standard deviations (σ)
* Robust Z (MAD) — deviation vs median absolute deviation, resistant to outliers
* Tanh squash — smooth nonlinear squash of extremes for compact scale
* Normalization window (for Z / MAD)
* Tanh scale (lower = stronger squash)
* Clamp after normalization — hard cap at ±X
**Levels**
* Guide levels (Upper / Lower) — visual thresholds (default ±12)
* Zero line toggle
---
### How to read it
* **Trend bias**: sustained time above 0 = uptrend, below 0 = downtrend
* **Stretch / mean reversion**: the farther from 0, the higher the reversion risk
* **Cross-checks**: combine with structure (HH/HL, LH/LL), volume, or momentum (RSI, MACD)
---
### Recommended settings by timeframe
**Long-term (1D / 1W)**
* Normalization: None (Log Deviation)
* Base Length: 200
* EMA vs SMA weight: 50% (adjust 35–65% for faster/slower magnet)
* Deviation smoothing: 20 (10–30 range)
* Guide levels: ±12 to ±20
* Use case: cycle extremes, portfolio rebalancing, trim/add logic
**Swing (4H – 1D)**
* Normalization: Z-score
* Window: 200 (100–250)
* Smoothing: 14–20
* Guide levels: ±2σ to ±3σ
* Use case: stretched conditions across regimes; ±3σ is rare, often mean-reverts
**Intraday / Active swing (1H – 4H)**
* Normalization: Robust Z (MAD)
* Window: 200 (150 for faster response)
* Smoothing: 10–16
* Guide levels: ±3 to ±4 (robust units)
* Use case: handles spikes better than σ, fewer false overbought/oversold signals
**Scalping / Universal readability (15m – 1H)**
* Normalization: Tanh squash
* Tanh scale: 6–10 (start with 8)
* Smoothing: 8–12
* Guide levels: ±8 to ±12
* Use case: compact panel across assets and timeframes; not % or σ, but visually consistent
---
### Optional
* Clamp: enable ±20 (or ±25) for strict bounded range (useful for public charts)
---
### Quick setups
**BTC Daily (“cycle view”)**
* Normalization: None
* Blend: 50%
* Smooth: 20
* Levels: ±12–15
**BTC 4H (“swing”)**
* Normalization: Z-score
* Window: 200
* Smooth: 16
* Levels: ±2.5σ to ±3σ
**Alts 1H (“volatile”)**
* Normalization: Robust Z (MAD)
* Window: 200
* Smooth: 12
* Levels: ±3.5 to ±4.5
**Mixed assets 15m (“compact panel”)**
* Normalization: Tanh squash
* Scale: 8
* Smooth: 10
* Levels: ±8–12
* Clamp: ±20
Multi Stoch + VWAP Heatmap + Histogram + ScalpingThis indicator was developed by referencing various indicators from many contributors. I apologize that I cannot identify all the original authors due to the numerous sources referenced. Thank you to everyone who contributed to the trading community.
Important Notice: Please use this indicator with sufficient caution and proper risk management. I do not assume any responsibility for any losses incurred from using this indicator. Trade at your own risk.
Alternative version:
Acknowledgment & Disclaimer:
This indicator incorporates ideas and concepts from numerous community indicators. I sincerely apologize for not being able to properly credit all the original creators due to the extensive references used. My heartfelt gratitude goes out to all the talented developers in the trading community.
Risk Warning: Please exercise extreme caution when using this indicator. All trading involves substantial risk of loss, and I accept no liability for any financial losses that may result from the use of this indicator. Always implement proper risk management and trade responsibly.
Multi Stoch + VWAP Heatmap + Histogram + Scalping Usage Guide
🔧 Basic Settings
Parameter Settings (Recommended for XAU/USD)
Fast Stoch Length: 5 # Ultra-short term trend
Medium Stoch Length: 14 # Short term trend
Slow Stoch Length: 21 # Medium term trend
%K Smoothing: 2 # High sensitivity setting
%D Smoothing: 2 # High sensitivity setting
Overbought Level: 75 # Sell zone
Oversold Level: 25 # Buy zone
📈 Reading the Chart
1. Histogram (Background Bar Chart)
Green tones: Strong uptrend
Red tones: Strong downtrend
Gray: Trendless/neutral
2. Line Display
Blue lines: Ultra-short term Stochastic (K1/D1)
Orange lines: Short term Stochastic (K2/D2)
Purple lines: Medium term Stochastic (K3/D3)
Yellow line: VWAP (normalized)
3. Horizontal Lines
Upper line (75): Sell zone
Center line (50): Neutral line
Lower line (25): Buy zone
🎯 Signal Types and Meanings
Scalping Signals (● marks)
Green ● (bottom): 📈 Scalp buy entry
RSI(7) < 25 + K1 < 30 combination
VWAP bounce targeting
Red ● (top): 📉 Scalp sell entry
RSI(7) > 75 + K1 > 70 combination
VWAP rejection targeting
Main Trend Signals
▲ (large, green): 💪 Strong buy signal - Multiple conditions aligned
▼ (large, red): 💪 Strong sell signal - Multiple conditions aligned
△ (medium, green): 📈 Normal buy signal
▽ (medium, orange): 📉 Normal sell signal
Warning/Reversal Signals
▼ (pink): ⚠️ Sell warning - Trend reversal caution
△ (teal): ⚠️ Buy warning - Trend reversal caution
Cross Signals (● marks, positioned up/down)
Green ● (bottom): Histogram crosses above VWAP
Red ● (top): Histogram crosses below VWAP
🚀 Practical Usage
Scalping Strategy (1-5 minute charts recommended)
Entry: Enter on green ● or red ● signals
Take Profit: At opposite zone or next ● signal
Stop Loss: Around 10-15 pips (for gold)
Time Session: London-NY overlap optimal
Swing Trading Strategy (15min-1hour charts)
Entry: Strong ▲▼ signals
Take Profit: Opposite warning signals (▼△)
Stop Loss: VWAP reverse break or 30-50 pips
Day Trading Strategy (5-15 minute charts)
Trend Confirmation: Histogram color
Entry: △▽ signals
Take Profit: Opposite zone reached
Stop Loss: 20-30 pips
⚡ XAU/USD Specific Usage
Session-Based Strategy
Tokyo Session (9-15 JST): Wait and see, small scalps
London Session (16-24 JST): Main trading
NY Session (22-6 JST): Most active, all signals valid
Major News Events
Pre-announcement: Reduce positions
Post-announcement: Trend following with ● signals
🔍 Filter Functions
ATR Filter
Small price movements filtered as noise
Signals only on significant price moves
Time Filter
Strong signals only during high volatility sessions
Weaker signals during low volatility periods
Consecutive Signal Prevention
Duplicate signals within 2 bars filtered out
Prevents noise trading
⚙️ Settings Customization
For Aggressive Trading
Signal Cooldown: 1 # More frequent signals
ATR Length: 5 # More sensitive filter
For Conservative Trading
Signal Cooldown: 5 # Relaxed signals
ATR Length: 20 # Stricter filter
Overbought: 80 # More extreme levels
Oversold: 20
📱 Recommended Alert Settings
Strong Buy/Sell Signal: Priority ★★★
Scalping Buy/Sell Signal: Priority ★★☆
Reverse Warning: Priority ★★★ (for position management)
⚠️ Important Notes
Scalping requires quick decision-making
Multiple timeframe confirmation recommended
Exercise caution during major news events
Risk management is top priority
This indicator is a versatile multi-functional tool suitable for short to medium-term trading strategies!
🎓 Trading Examples
Scalping Example
Wait for green ● at oversold level (below 30)
Enter long position immediately
Target: 50 level or red ● signal
Stop: Below recent swing low
Day Trading Example
Histogram turns green (bullish trend)
Wait for △ buy signal near support
Target: Overbought level (75)
Exit: Warning signal ▼ appears
Risk Management Rules
Never risk more than 2% per trade
Use proper position sizing
Set stops before entry
Take partial profits at key levels
This comprehensive guide will help you maximize the potential of this advanced multi-timeframe indicator!
ST-Stochastic DashboardST-Stochastic Dashboard: User Manual & Functionality
1. Introduction
The ST-Stochastic Dashboard is a comprehensive tool designed for traders who utilize the Stochastic Oscillator. It combines two key features into a single indicator:
A standard, fully customizable Stochastic Oscillator plotted directly on your chart.
A powerful Multi-Timeframe (MTF) Dashboard that shows the status of the Stochastic %K value across three different timeframes of your choice.
This allows you to analyze momentum on your current timeframe while simultaneously monitoring for confluence or divergence on higher or lower timeframes, all without leaving your chart.
Disclaimer: In accordance with TradingView's House Rules, this document describes the technical functionality of the indicator. It is not financial advice. The indicator provides data based on user-defined parameters; all trading decisions are the sole responsibility of the user. Past performance is not indicative of future results.
2. How It Works (Functionality)
The indicator is divided into two main components:
A. The Main Stochastic Indicator (Chart Pane)
This is the visual representation of the Stochastic Oscillator for the chart's current timeframe.
%K Line (Blue): This is the main line of the oscillator. It shows the current closing price in relation to the high-low range over a user-defined period. A high value means the price is closing near the top of its recent range; a low value means it's closing near the bottom.
%D Line (Black): This is the signal line, which is a moving average of the %K line. It is used to smooth out the %K line and generate trading signals.
Overbought Zone (Red Area): By default, this zone is above the 75 level. When the Stochastic lines are in this area, it indicates that the asset may be "overbought," meaning the price is trading near the peak of its recent price range.
Oversold Zone (Blue Area): By default, this zone is below the 25 level. When the Stochastic lines are in this area, it indicates that the asset may be "oversold," meaning the price is trading near the bottom of its recent price range.
Crossover Signals:
Buy Signal (Blue Up Triangle): A blue triangle appears below the candles when the %K line crosses above the Oversold line (e.g., from 24 to 26). This suggests a potential shift from bearish to bullish momentum.
Sell Signal (Red Down Triangle): A red triangle appears above the candles when the %K line crosses below the Overbought line (e.g., from 76 to 74). This suggests a potential shift from bullish to bearish momentum.
B. The Multi-Timeframe Dashboard (Table on Chart)
This is the informational table that appears on your chart. Its purpose is to give you a quick, at-a-glance summary of the Stochastic's condition on other timeframes.
Function: The script uses TradingView's request.security() function to pull the %K value from three other timeframes that you specify in the settings.
Efficiency: The table is designed to update only on the last (most recent) bar (barstate.islast) to ensure the script runs efficiently and does not slow down your chart.
Columns:
Timeframe: Displays the timeframe you have selected (e.g., '5', '15', '60').
Stoch %K: Shows the current numerical value of the %K line for that specific timeframe, rounded to two decimal places.
Status: Interprets the %K value and displays a clear status:
OVERBOUGHT (Red Background): The %K value is above the "Upper Line" setting.
OVERSOLD (Blue Background): The %K value is below the "Lower Line" setting.
NEUTRAL (Black/Dark Background): The %K value is between the Overbought and Oversold levels.
3. Settings / Parameters in Detail
You can access these settings by clicking the "Settings" (cogwheel) icon on the indicator name.
Stochastic Settings
This group controls the behavior and appearance of the main Stochastic indicator plotted in the pane.
Stochastic Period (length)
Description: This is the lookback period used to calculate the Stochastic Oscillator. It defines the number of past bars to consider for the high-low range.
Default: 9
%K Smoothing (smoothK)
Description: This is the moving average period used to smooth the raw Stochastic value, creating the %K line. A higher value results in a smoother, less sensitive line.
Default: 3
%D Smoothing (smoothD)
Description: This is the moving average period applied to the %K line to create the %D (signal) line. A higher value creates a smoother signal line that lags further behind the %K line.
Default: 6
Lower Line (Oversold) (ul)
Description: This sets the threshold for the oversold condition. When the %K line is below this value, the dashboard will show "OVERSOLD". It is also the level the %K line must cross above to trigger a Buy Signal triangle.
Default: 25
Upper Line (Overbought) (ll)
Description: This sets the threshold for the overbought condition. When the %K line is above this value, the dashboard will show "OVERBOUGHT". It is also the level the %K line must cross below to trigger a Sell Signal triangle.
Default: 75
Dashboard Settings
This group controls the data and appearance of the multi-timeframe table.
Timeframe 1 (tf1)
Description: The first timeframe to be displayed in the dashboard.
Default: 5 (5 minutes)
Timeframe 2 (tf2)
Description: The second timeframe to be displayed in the dashboard.
Default: 15 (15 minutes)
Timeframe 3 (tf3)
Description: The third timeframe to be displayed in the dashboard.
Default: 60 (1 hour)
Dashboard Position (table_pos)
Description: Allows you to select where the dashboard table will appear on your chart.
Options: top_right, top_left, bottom_right, bottom_left
Default: bottom_right
4. How to Use & Interpret
Configuration: Adjust the Stochastic Settings to match your trading strategy. The default values (9, 3, 6) are common, but feel free to experiment. Set the Dashboard Settings to the timeframes that are most relevant to your analysis (e.g., your entry timeframe, a medium-term timeframe, and a long-term trend timeframe).
Analysis with the Dashboard: The primary strength of this tool is confluence. Look for situations where multiple timeframes align. For example:
If the dashboard shows OVERSOLD on the 15-minute, 60-minute, and your current 5-minute chart, a subsequent Buy Signal on your 5-minute chart may carry more weight.
Conversely, if your 5-minute chart shows OVERSOLD but the 60-minute chart is strongly OVERBOUGHT, it could indicate that you are looking at a minor pullback in a larger downtrend.
Interpreting States:
Overbought is not an automatic "sell" signal. It simply means momentum has been strong to the upside, and the price is near its recent peak. It could signal a potential reversal, but the price can also remain overbought for extended periods in a strong uptrend.
Oversold is not an automatic "buy" signal. It means momentum has been strong to the downside. While it can signal a potential bounce, prices can remain oversold for a long time in a strong downtrend.
Use the signals and dashboard states as a source of information to complement your overall trading strategy, which should include other forms of analysis such as price action, support/resistance levels, or other indicators.
SMA+MACD+RSI+Stoch Entry📌 Tools Used:
• SMA 21, SMA 50, SMA 200
• MACD (12, 26, 9)
• Pivot Point Standard
• RSI (length 75)
• Stochastic (14, 3, 3)
Trading Timeframe:
• Usable on all timeframes
Chart Preparation:
• Analyze the overall market trend and the instrument being traded
• Set an appropriate timeframe according to the market
• Apply SMA 21, SMA 50, SMA 200
• Apply MACD and Pivot Point Standard
• Ensure a proper market trend by checking the position of SMA 21, SMA 50, and SMA 200 relative to each other
If there are too many crossings between SMA 21, SMA 50, and SMA 200, do not enter any trades until the market trend stabilizes
Conditions for Entering a Long Trade (Bullish Trigger):
• Candle closes above the pivot line
• Confirm an uptrend by checking that SMA 21 is above SMA 50, and SMA 50 is above SMA 200
• RSI is above the midpoint
• Presence of a suitable corrective step with normal slope, considering the strength of the previous step
• MACD histogram indicates bullish momentum
• Stochastic shows a bullish crossover from below
Conditions for Entering a Short Trade (Bearish Trigger):
• Candle closes below the pivot line
• Confirm a downtrend by checking that SMA 21 is below SMA 50, and SMA 50 is below SMA 200
• RSI is below the midpoint
• Presence of a suitable corrective step with normal slope, considering the strength of the previous step
• MACD histogram indicates bearish momentum
• Stochastic shows a bearish crossover from above
Constance Brown Composite Index EnhancedWhat This Indicator Does
Implements Constance Brown's copyrighted Composite Index formula (1996) from her Master's thesis - a breakthrough oscillator that solves the critical problem where RSI fails to show divergences in long-horizon trends, providing early warning signals for major market reversals.
The Problem It Solves
Traditional RSI frequently fails to display divergence signals in Global Equity Indexes and long-term charts, leaving asset managers without warning of major price reversals. Brown's research showed RSI failed to provide divergence signals 42 times across major markets - failures that would have been "extremely costly for asset managers."
Key Components
Composite Line: RSI Momentum (9-period) + Smoothed RSI Average - the core breakthrough formula
Fast/Slow Moving Averages: Trend direction confirmation (13/33 periods default)
Bollinger Bands: Volatility envelope around the composite signal
Enhanced Divergence Detection: Significantly improved trend reversal timing vs standard RSI
Research-Proven Performance
Based on Brown's extensive study across 6 major markets (1919-2015):
42 divergence signals triggered where RSI showed none
33 signals passed with meaningful reversals (78% success rate)
Only 5 failures - exceptional performance in monthly/2-month timeframes
Tested on: German DAX, French CAC 40, Shanghai Composite, Dow Jones, US/Japanese Government Bonds
New Customization Features
Moving Average Types: Choose SMA or EMA for fast/slow lines
Optional Fills: Toggle composite and Bollinger band fills on/off
All Periods Adjustable: RSI length, momentum, smoothing periods
Visual Styling: Customize colors and line widths in Style tab
Default Settings (Original Formula)
RSI Length: 14
RSI Momentum: 9 periods
RSI MA Length: 3
SMA Length: 3
Fast SMA: 13, Slow SMA: 33
Bollinger STD: 2.0
Applications
Long-term investing: Monthly/2-month charts for major trend changes
Elliott Wave analysis: Maximum displacement at 3rd-of-3rd waves, divergence at 5th waves
Multi-timeframe: Pairs well with MACD, works across all timeframes
Global markets: Proven effective on equities, bonds, currencies, commodities
Perfect for serious traders and asset managers seeking the proven mathematical edge that traditional RSI cannot provide.
RSI with Moving Averages[UO] EnhancedWhat This Indicator Does
Displays the RSI (Relative Strength Index) with two customizable moving averages to help identify trend direction and momentum shifts.
Key Features
RSI Line: Shows momentum (overbought above 70, oversold below 30)
Two Moving Averages: Smooth RSI signals and show trend direction
Color-Coded Fills: Visual areas between lines indicate bullish/bearish conditions
Support/Resistance Lines: Bull market support (40) and bear market resistance (60)
Customization Options
Moving Average Types: Choose SMA or EMA for each line
Periods: Adjust RSI (14), First MA (13), Second MA (33)
Visual Elements: Toggle background shading and fills on/off
Colors & Styles: Customize all line colors and widths in Style tab
How to Read It
Green Fill: Second MA below first MA (bullish momentum)
Red Fill: Second MA above first MA (bearish momentum)
RSI Above 70: Potentially overbought
RSI Below 30: Potentially oversold
Perfect for traders wanting enhanced RSI analysis with flexible moving average confirmation signals.
Advanced RSI — Mark 4 RSI was introduced by J. Welles Wilder Jr. in 1978 in New Concepts in Technical Trading Systems. It measures the velocity of gains vs. losses on a bounded 0–100 scale and popularized the 14-period lookback with 70/30 guide rails for overbought/oversold. Over time, traders added variations (different lengths, thresholds, smoothing, adaptive levels), but the core idea stayed the same: momentum turns often precede price turns.
and i initially started to make minor adjustments for personal use like changing the default to 17 , and using Tradingviews official RSI which comes with a MA embedded. but it was not enough. especially the visuals.
so, for this public release Mark 4 i enhanced RSI by incorporating :
1. Dual-Length Fusion
Two RSI periods (default 17 + 21) blended then lightly smoothed (TEMA by default) → steadier
line without dulling turns.
2. Adaptive OB/OS (ATR-aware) for fewer whipsaws.
3. OB/OS alt solution:
Brief yellow segments appear only at local extremes (default: >72 tops, <32 bottoms) to
emphasize exhaustion without repainting the whole line.
4. Signals you can actually see
Triangle markers for:
Bullish: RSI crossing up through adaptive OS (and still <40 at the cross).
Bearish: RSI crossing down through adaptive OB (and still >60 at the cross).
“Strong Bull/Bear” background nudges appear when momentum is pushing beyond the
bands.
Optional Divergence Tags
and
Tiny diamonds to flag potential bullish/bearish divergences (look-back based).
Info Table (can be hidden)
my Fav feature i included 5 colorways with modern themes.(pls check under INPUTS)
and i made all that to make the indicator visualization look awesome on high end displays.
Credits & acknowledgment
Inspired by the original RSI by J. Welles Wilder Jr. (1978).
Built to be modern, focused, and comfortable for long sessions—especially on dark/OLED displays.
THIS INDICATOR IS MORE THAN ENOUGH BUT I DO HAVE PRIVATE INDICATORS WITH DIFFERENT LOGIC FUNCTIONS.
I'm open for feedback/collaboration.
drsamc.
MACD Quadrant Matrix – 10 US MajorsThis script provides a quadrant matrix visualization of the MACD indicator across 10 major U.S. stocks (AAPL, MSFT, NVDA, AMZN, GOOGL, META, TSLA, BRK.B, UNH, LLY).
It is designed as a visual screening tool to quickly analyze the relative MACD conditions of large-cap U.S. equities.
# Quadrant Logic
Q1 (Green): MACD > 0 and MACD > Signal
Q2 (Orange): MACD > 0 and MACD < Signal
Q3 (Blue): MACD < 0 and MACD > Signal
Q4 (Red): MACD < 0 and MACD < Signal
# Features
Adjustable timeframe (default: Daily)
Quadrant background visualization
Optional jitter to reduce overlap of bubbles
Tooltip display with MACD, Signal, and Delta values
Counts of how many symbols fall into each quadrant
# Limitations
Symbol list is fixed to 10 large-cap U.S. stocks (modifiable in code).
This is a visualization tool only. It does not generate buy/sell signals.
Results and quadrant positioning will vary depending on timeframe selection.
# Disclaimer
This script is for educational and analytical purposes only.
It is not financial advice, and should not be relied upon for trading or investment decisions.
Trading and investing carry risk, and users should perform their own due diligence.
Asset Strength Index <DOSALGO>The Asset Strength Index (ASI) is a comprehensive dashboard indicator designed to provide traders with a broader perspective on market dynamics. Instead of viewing an asset in isolation, the ASI measures its relative strength against a basket of key global assets: Bonds, Gold, and the US Dollar.
This tool is built to give you an immediate, visual understanding of how the asset you are charting is performing in the context of the wider financial landscape. The analysis is presented across three distinct time horizons—Short-Term, Medium-Term, and Long-Term—allowing for a nuanced view of performance.
How It Can Be Useful
The core purpose of the ASI is to serve as a contextual analysis tool. By understanding an asset's strength or weakness relative to others, traders can gain valuable insights that may not be apparent from price action alone.
Inter-Market Confirmation: Use the dashboard to confirm your trading ideas. For example, a bullish outlook on a stock index could be strengthened if it shows increasing strength against safe-haven assets like Gold and Bonds.
Risk Sentiment Barometer: Gauge the prevailing risk-on or risk-off sentiment. If the US Dollar and Bonds are showing strength while your asset is weakening, it could indicate a broader market shift towards safety.
Multi-Term Perspective: Quickly assess if short-term movements are aligned with the longer-term trend. A short-term dip might be less concerning if the asset's long-term relative strength remains high.
How to Use It
The ASI dashboard is displayed directly on your chart. The values are presented as percentages, indicating the relative strength for each term.
Monitor the Readings: Observe the percentage values in the "S. Term," "M. Term," and "L. Term" columns. Positive values suggest relative strength, while negative values indicate relative weakness.
Look for Trends: The arrows (▲ or ▼) next to the percentage show the most recent change, helping you spot developing trends in relative strength.
Combine with Your Strategy: The ASI is not a standalone signal generator. It is most effective when used to supplement your existing trading system, helping you make more informed decisions by adding a layer of sophisticated, inter-market analysis.
The dashboard's appearance is fully customizable, allowing you to adjust its position, size, and colors to fit your chart layout.
Disclaimer
The Asset Strength Index (ASI) is a tool for market analysis and should not be considered financial advice. All trading involves risk, and past performance is not indicative of future results. Always use this indicator in conjunction with your own comprehensive trading plan and risk management strategy.
RSI MTF HWThis Pine Script indicator is designed to provide a comprehensive view of market momentum by plotting the Relative Strength Index (RSI) from four different time frames simultaneously on a single chart. This allows traders to quickly identify alignment or divergence in momentum across various time horizons, which can be a powerful tool for confirming trade setups or spotting potential trend reversals.
Key Features:
Customizable Inputs: The indicator provides a flexible set of user inputs, including a dropdown menu to select the data source for the RSI calculation (e.g., close, open, high, low). You can also define four separate RSI lengths to analyze different periods.
Multi-Time Frame Analysis: A key feature is the ability to choose a time frame for each of the four RSI lines from a predefined list (Chart, 1 day, 1 week, 1 month). The script uses the request.security() function with lookahead enabled to ensure the most accurate, real-time data is used for each calculation, eliminating look-ahead bias and calculation errors.
Visual Levels: The indicator plots standard RSI levels at 30, 50, and 70, with a shaded background between the oversold (30) and overbought (70) zones to provide a clear visual reference.
Momentum Alignment Signals: The script includes an optional feature that highlights the chart's background with a red or green color when all four RSIs simultaneously enter an overbought or oversold state. This serves as an immediate visual alert for a strong, multi-time frame momentum condition.
This indicator is a robust tool for technical analysis, suitable for traders who use a top-down approach to their market analysis.
MagnetOsc Turbo by ZuperView.comMagnetOsc Turbo - Multi-timeframe momentum analysis
Unlike conventional oscillators, MagnetOsc Turbo analyzes momentum on two independent timeframes simultaneously (e.g., 100-tick & 5-minute).
Why it matters: Momentum alignment across timeframes is a key signal of trend strength or turning points.
It provides bullish and bearish signals with alerts and works on any chart or timeframe. Blue marker = Bullish. Red marker = Bearish.
MagnetOsc Turbo by ZuperviewMagnetOsc Turbo - Multi-timeframe momentum analysis
Unlike conventional oscillators, MagnetOsc Turbo analyzes momentum on two independent timeframes simultaneously (e.g., 100-tick & 5-minute).
Why it matters: Momentum alignment across timeframes is a key signal of trend strength or turning points.
MO and Stoch GOLD H4 V1 – Kim TradingMO and Stoch GOLD H4 V1 – Kim Trading
Slogan: “Trading Is a Profession, Trading Is Life”
Market: XAUUSD (spot gold) • Timeframe: H4 (4 hours)
Entry/Exit Rules
When a B, B1★ … (buy) or S, S1★ … (sell) signal appears, first reference the prevailing trend and consider applying DCA in the direction of that trend. In addition, combine with other methods to build the most optimal setup.
Signal Confidence Tiers
B — S
B1★ — S1★
B2★ — S2★
B3★ — S3★
Enter trades only when one of the four signal types above is printed.
Author: Kim Trading • Version: V1 • Date: 2025-08-22
#XAUUSD #Gold #H4 #MO #Stoch #KimTrading
MO and Stoch GOLD H4 – Kim Trading MO and Stoch GOLD H4 V1 – Kim Trading
Slogan: “Trading Is a Profession, Trading Is Life”
Market: XAUUSD (spot gold) • Timeframe: H4 (4 hours)
Entry/Exit Rules
When a B, B1★ … (buy) or S, S1★ … (sell) signal appears, first reference the prevailing trend and consider applying DCA in the direction of that trend. In addition, combine with other methods to build the most optimal setup.
Signal Confidence Tiers
B — S
B1★ — S1★
B2★ — S2★
B3★ — S3★
Enter trades only when one of the four signal types above is printed.
Author: Kim Trading • Version: V1 • Date: 2025-08-22
#XAUUSD #Gold #H4 #MO #Stoch #KimTrading
MagnetOsc Turbo by ninZa.coMagnetOsc Turbo - Multi-timeframe momentum analysis
Unlike conventional oscillators, MagnetOsc Turbo analyzes momentum on two independent timeframes simultaneously (e.g., 100-tick & 5-minute).
Why it matters: Momentum alignment across timeframes is a key signal of trend strength or turning points.
Sniper-2025 Sniper-2025 Indicator Explanation
Overview
The Sniper-2025 indicator is a versatile technical analysis tool designed for TradingView, combining a Hyper Wave oscillator, Smart Money Flow analysis, divergence detection, reversal signals, confluence visualization, and a machine learning-based k-Nearest Neighbors (k-NN) prediction model. It provides traders with actionable buy and sell signals, trend insights, and confluence indicators to enhance decision-making across various trading strategies. The indicator is highly customizable, allowing users to adjust sensitivity, colors, and display options to suit their preferences.
Key Features
1. Hyper Wave Oscillator: A normalized oscillator based on price data, smoothed with either a Simple Moving Average (SMA) or Exponential Moving Average (EMA), highlighting momentum and potential reversal points.
2. Smart Money Flow: Tracks bullish and bearish money flow using a smoothed Money Flow Index (MFI), providing insights into market strength and direction.
3. Divergence Detection: Identifies bullish and bearish divergences between price and the oscillator, with optional labels displaying price levels.
4. Reversal Signals: Detects major and minor reversal conditions based on volume, oscillator values, and RSI, visualized as triangles and circles on the chart.
5. Confluence Meter and Areas: Visualizes alignment between the oscillator and MFI, indicating bullish or bearish confluence with customizable colors and shaded areas.
6. Signal and Divergence Labels: Displays labels for key oscillator levels (e.g., Z-Buy, Z-V-Sell) and money flow conditions (e.g., C-Buy, T-Sell) with customizable visibility and sizes.
7. Trend and Control Table: Shows the current trend (Bullish/Bearish) and control (Bull/Bear) in a customizable table positioned on the chart.
8. k-NN Prediction: Uses a k-Nearest Neighbors algorithm to predict price movement direction based on RSI indicators, with adjustable prediction sensitivity.
9. Gradient Fills and Alerts: Visualizes overbought and oversold zones with gradient fills and provides alert conditions for key crossovers and crossunders.
How It Works
- Hyper Wave Oscillator: The oscillator is calculated by normalizing the close price relative to the highest, lowest, and average prices over a user-defined length (default: 15). It is smoothed using SMA or EMA (default: SMA, length 3) to generate a signal line. Crossovers and crossunders of the oscillator and signal line are plotted as circles, indicating potential buy or sell signals.
- Smart Money Flow: The MFI is calculated over a user-defined length (default: 10) and smoothed (default: 6). It tracks bullish (positive) or bearish (negative) money flow, with colors changing based on direction (blue for bullish, red for bearish). The indicator compares current MFI to its historical average to identify strong trends.
- Divergence Detection: The script identifies divergences by comparing oscillator peaks/troughs with price highs/lows. Bullish divergences (price makes lower lows, oscillator does not) and bearish divergences (price makes higher highs, oscillator does not) are plotted as lines, with optional labels showing the divergence type and price.
- Reversal Signals: Major reversals are detected when volume exceeds a threshold (based on a 7-period SMA and reversal factor, default: 4) and the oscillator exceeds ±4. Minor reversals consider RSI (±20) and oscillator crossovers. Signals are plotted as triangles (major) or circles (minor), with blue for bullish and red for bearish.
- Confluence Meter and Areas: The confluence meter, displayed on the right, shows alignment between the oscillator and MFI using a gradient from red (bearish) to blue (bullish). Shaded areas at ±55 highlight strong bullish or bearish confluence when both indicators align.
- Signal and Divergence Labels: Labels are plotted on the candlestick chart when the oscillator crosses key levels (±20, ±40) or when money flow conditions are met (e.g., MFI crossing 0 or ±20/±40). Users can toggle label visibility and adjust sizes (Small, Normal, Large, Huge).
- Trend and Control Table: A table displays the trend (based on oscillator SMA) and control (based on MFI direction), with customizable position (default: Top Right), text color, and background color. Sensitivity for trend and control calculations can be adjusted.
- k-NN Prediction: The k-NN algorithm predicts price movement direction by comparing current RSI values (5-period and 20-period WMAs) to historical data. The number of neighbors (default: 200) and trend length (default: 20) control prediction sensitivity. A green line shows the prediction, with gradient fills indicating overbought (lime) and oversold (red) zones.
- Gradient Fills and Alerts: Gradient fills highlight the prediction's position relative to overbought/oversold zones, calculated using a 2000-period lookback and standard deviation. Alerts are triggered for crossovers/crossunders of the prediction line with its WMA, overbought/oversold levels, or the zero line.
Usage Instructions
1. Add the Sniper-2025 indicator to your TradingView chart.
2. Interpret signals:
- Z-Buy/Z-V-Buy (green labels): Potential buy signals when the oscillator crosses below -20/-40.
- Z-Sell/Z-V-Sell (red labels): Potential sell signals when the oscillator crosses above 20/40.
- C-Buy/C-Sell (green/red labels): Money flow shifts to bullish/bearish when MFI crosses 0.
- T-Buy/T-Sell (green/red labels): Money flow crosses ±20, indicating stronger trends.
- T-V-Buy/T-V-Sell (green/red labels): Money flow crosses ±40, indicating very strong trends.
- Divergence Labels: Green (D-Bullish) or red (D-Bearish) labels indicate potential reversals.
- Reversal Signals: Blue triangles/circles for bullish reversals, red for bearish.
- Confluence Meter: Blue (bullish) or red (bearish) gradient indicates alignment strength.
- Table: Check "Trend" and "Control" for market direction (🟩/🟥 for trend, 🟢/🔴 for control).
- k-NN Prediction: Green line above 0 suggests bullish momentum; below 0 suggests bearish. Watch for crossovers with the WMA or overbought/oversold zones.
3. Set alerts for crossovers/crossunders of the prediction line, oscillator, or MFI to automate trading signals.
Customization Options
- Hyper Wave: Adjust Main Length (mL, default: 15) for oscillator sensitivity, Signal Type (sT, SMA/EMA), and Signal Length (sLHW, default: 3). Customize colors and transparency.
- Smart Money Flow: Set Money Flow Length (mfL, default: 10) and Smooth (mfS, default: 6) for MFI sensitivity. Choose bullish/bearish colors.
- Divergence: Modify Divergence Sensibility (dvT, default: 20) for short-term (lower) or long-term (higher) divergences. Toggle visibility and price display on labels.
- Reversal: Adjust Reversal Factor (rsF, default: 4) for signal strength (higher = fewer, stronger signals). Set colors for bullish/bearish signals.
- Confluence: Toggle Confluence Meter (sCNF) and Areas (sCNB), and customize colors.
- Labels: Enable/disable specific signal labels (e.g., showZBuy, showHSell) and adjust Label Size (default: Normal).
- Table: Toggle Trend and Control display, adjust sensitivities, and set position and colors.
- k-NN Prediction: Adjust Prediction Data (numNeighbors, default: 200) for sensitivity and Trend Length (momentumWindow, default: 20) for responsiveness.
Conclusion
The Sniper-2025 indicator is a powerful tool for traders seeking a comprehensive analysis of price momentum, money flow, divergences, reversals, and predictive signals. Its customizable settings and clear visualizations make it suitable for both novice and experienced traders. Use the indicator to identify high-probability trading opportunities, monitor market trends, and refine strategies with its machine learning-driven predictions.
SMT - Squeeze Momentum Trend📊 Squeeze Momentum Trend
An indicator that combines volatility, momentum, and trend to anticipate the market’s strongest moves. 🚀
✅ Squeeze → when Bollinger Bands tighten inside the Keltner Channel: the market is in compression, ready to “explode”.
✅ Momentum → shows direction and strength (green = bullish push, red = bearish push).
✅ Trend Filter → confirms direction using a higher timeframe EMA (to avoid false signals).
💡 In practice:
🔥 If price breaks out of a squeeze with positive momentum → potential long breakout.
❄️ If it breaks out with negative momentum → potential short breakout.
📌 Perfect for spotting key moments when the market stops “resting” and makes its next big move.
ETH Valuation Indicator╔═══════════════════════ RUBIXCUBE ════════════════════════════╗
This indicator combines multiple on-chain and market-based metrics into a single valuation score for Ethereum. It highlights periods of relative undervaluation (green zones) and overvaluation (red zones) by normalising several metrics into a 0–1 range and averaging them.
Price chart signals (top panel): Green arrows mark points where the indicator flagged historically attractive buying opportunities.
Valuation oscillator (bottom panel): Shows the combined score over time, cycling between undervalued and overvalued extremes.
Metric breakdown (side panel): Displays the contribution of each metric, their rate of change, and their current score.
This tool is designed for macro insight, not short-term trading. It helps contextualise Ethereum’s position in the market cycle and provides a data-driven framework for long-term investors.
╚═══════════════════════════════════════════════════════════╝
BTC Valuation Indicator╔═══════════════════ RUBIXCUBE ══════════════════════╗
This indicator combines multiple on-chain and market-based metrics into a single valuation score for Bitcoin. It highlights periods of relative undervaluation (green zones) and overvaluation (red zones) by normalising several metrics into a 0–1 range and averaging them.
- Price chart signals (top panel): Green arrows mark points where the indicator flagged historically attractive buying opportunities.
- Valuation oscillator (bottom panel): Shows the combined score over time, cycling between undervalued and overvalued extremes.
- Metric breakdown (side panel): Displays the contribution of each metric, their rate of change, and their current score.
This tool is designed for macro insight, not short-term trading. It helps contextualise Bitcoin’s position in the market cycle and provides a data-driven framework for long-term investors.
╚═════════════════════════════════════════════════╝
Exit SIGNALWhen an asset is overbought, using various methods, CCI, RSI, etc, this indicator paints candles red to signify that a potential top is forming. It is normal when the trend is very strong to see 2 or 3 candles turn red before the top is in. I like to use this to narrow down when to take profits. It's not the most sophisticated and fancy script but it gets it's job done well. :]
If you have any questions about the indicator or wish to try it out yourself for free, comment below or DM me, thanks!
Building a profitable strategy is all about combining various factors, I'm a hybrid trader meaning I mostly learned to trade with price action and smart money concepts only at first however I then learned pinescript and added my own indicators I have personalized to create various strategies, especially when it comes to helping me know when trend has reversed as soon as possible with as little false flags as possible.
Divergence Confluence OracleOnly Divergences That Matter
Overview
This indicator supercharges RSI divergence with powerful filters: volume, ADX, and support/resistance (S/R) zones. It pinpoints high-probability reversals in the RSI 30–70 "neutral zone", where turnarounds shine. Built for manual traders, it’s your edge for spotting reversals that pack a punch.
🔍 Core Features
1.RSI Divergence Detection
- Bullish: Price lower low, RSI higher low.
- Bearish: Price higher high, RSI lower high.
- Pivot-based logic ensures precise, non-repainting signals.
- Plotted with color-coded lines/labels (green/red for RSI 30–70, gray outside).
2.Volume Confirmation
- Filters for high activity: volume > SMA(volume, 20) × 1.5.
- Why: High volume signals big players are in, boosting divergence reliability—like the market’s vote of confidence.
3.ADX Trend Filter
- ADX < 20 signals range-bound markets where divergences excel, avoiding trend-driven failures.
- Why: Keeps you out of strong trends where divergences often flop.
4.Support/Resistance (S/R) Zones
Built on LonesomeTheBlue’s pivot-channel method, ranking zones by strength (touches).
Why: Divergences near support (bullish) or resistance (bearish) are high-probability, cutting false signals.
🎨 Visualization
- Color-coded lines/labels: Bright green/red for RSI 30–70, muted gray outside.
- Thicker lines for volume/ADX-confirmed setups.
- Subtle background fills (green/red for confirmed, gray for ranges) make setups pop.
- Alerts for RSI 30–70 divergences, with optional volume/ADX filters.
✅ Why This Indicator is Unique
Unlike basic divergence scripts, it asks:
- Is the market engaged? (Volume)
- Is it reversal-friendly? (ADX)
- Is price at a key level? (S/R)
This trio filters out noise, surfacing only divergences with true weight.
📊 How Traders Might Use It
- Signal Filter: Act on divergences with S/R, volume, and ADX alignment.
- Confluence Tool: Pair with manual trendlines, EMAs (e.g., 9/21), or candlestick setups.
- Alert System: Get notified of high-probability setups without endless scanning.
Disclaimer : This indicator is for educational purposes only and is not intended as financial advice. It should be used in conjunction with manual trendlines, EMAs, and other confirmation tools to support your trading decisions. Always conduct your own analysis.