Mvp Wave Sniper v1.0Credits and Acknowledgments
This strategy brings together several technical indicators and analytical methods that many traders rely on. In particular, it leverages:
ATR (Average True Range):
A volatility indicator popularized by J. Welles Wilder, Sr. and widely implemented as part of TradingView’s built-in functions.
SMA (Simple Moving Average) and Standard Deviation-based Channels:
Fundamental tools for trend analysis and risk management, available within TradingView’s powerful charting library.
MFI (Money Flow Index) and OBV (On-Balance Volume):
Volume-based indicators that are part of TradingView’s comprehensive suite and have been refined by numerous community contributors.
Higher Timeframe Analysis & Custom Filters:
The use of multiple timeframe validations and filter criteria (e.g., using three different SMAs) demonstrates advanced methods shared by authors throughout the TradingView community.
Wave Filter Explanation:
A key component of this strategy is its integrated wave filter, which is designed to capture market movements in a way that resembles wave patterns—an idea inspired by the Elliott Wave theory. In the script, the wave logic operates by comparing the current price relative to a dynamically calculated trend channel derived from a moving average coupled with a standard deviation multiplier. When enabled (via the useWaveLogic input), the filter checks that the price is positioned correctly above (for a bullish signal) or below (for a bearish signal) this trend indicator. Additionally, if the Money Flow Index is activated, its condition (above or below a threshold of 50) provides extra confirmation. This composite filtering ensures that the strategy only takes trades when the market behavior aligns with the expected “wave” conditions, balancing signal precision with practical risk management—all within the limitations of PineScript. It is important to note that these wave decisions/logic are produced solely by the publishing TradingView author, TheCryptoMvp.
In the settings of this backtest, we have made it take into account a cost simulation of 0.055% a side fees and 5 ticks slippage to produce a realistic trading environment, where 5x leverage is used optionally creating a margin ratio of 20%.
The choice of parameters by default in this script serve as to show what my (TheCryptoMvp) own backtesting results have led to, showcasing the optimum settings for this script. The default settings are generally meant for more volatile markets, in particular, Dogecoin.
In the parameters for the backtest, 85% of equity is used with leverage of 5x / 20% Margin Ratio for longs/shorts. Recommended to use leverage when implementing usage of this script. That being said, this is not financial advice and you are free to do your own research. Please note that the 85% of equity used can be any number, adhering to your personal risk tolerance.
Even though the backtest and cost simulation show impressive results, caution is advised. As with any strategy, it is logical to remain cautious. Please maintain all communications with TheCryptoMvp from within TradingView. It is also worth noting that the backtest simulates reinvestment of the 85% equity at all times, producing volatile results where additional caution is warranted.
Special thanks and credit are extended to the original authors and developers within the TradingView platform whose work has made these indicators both accessible and highly customizable to traders worldwide. Their contributions have been instrumental in creating innovative trading strategies like the Mvp Wave Sniper.
Changelog 15/04/2025: Revamped Script, Added Support for webhooks etc via closing trades before opening trades- recalculation per tick. Changed the default timeframe to 5minutes.
I will be constantly looking for better settings on this script, which will be found in sub-sections of the scripts page here on tradingview, encourage users to share alpha and be welcomed in a well rounded respectful tradingview community.
Indikatoren und Strategien
Multi Timeframe Altered Money Flow Index by CoffeeShopCryptoMoney Flow Index is a long used tool in trading markets, understanding to where money is moving and most importantly when its going there.
One of the biggest challenges was the when part. Because seeing it on your current trading chart timeframe is easy but it gets difficult if youre attempting a top-down-analysis of market structure vs price performance.
The new formula presented by @CoffeeshopCrypto is a key solution to this timeframe analysis issue. Seems like I may have solved the "glitch-In-The-Matrix".
The issue was always setting a secondary MFI on your chart and telling the system you wanted to watch the 1 hour MFI from a 5 minute chart.
To do this you need to wait for 12 candles to close on your 5 minute chart before you can get a 1hour MFI value. The move may have already happend and you may be too late. If there was only a better faster way to see the changing values of the High Timeframe Money Flow Index in real time without changing chart times and losing place......oh wait.....there is one now!
This tool allows you to tell it what timeframe you are looking at,
and what you want to compare it to.
It runs the calculation in the background automatically to give you the real time values of your High Timeframe chart setting on the chart you are looking at.
How to trade Long
When both the LFT and HTF Money flow cross above ZERO, they are both in uptrend
How to trade Short
When both the LFT and HTF Money flow cross below ZERO, they are both in downtrend
What happens when Low timeframe is inside the high timeframe:
If High timeframe MFI is below zero but the LFT MFI is above it and still below zero, you have lost your short term downtrend. The opposite is true when the high timeframe MFI is above zero.
A strong constant comparative trend is when your low timeframe MFI is leading your High timeframe MFI.
Personal Settings:
In my usage, i find it best to multiply my trading chart timeframe by 3 and use that number as my high timeframe MFI setting
This works on ANY chart time you want. For example you are not locked to the standard built TradingView chart times.
If you trade on a 7 minute timeframe, you can set your HTF to 21.
7 * 3 = 21
CSCMultiTimeframeToolsLibrary "CSCMultiTimeframeTools"
Calculates instant higher timeframe values for higher timeframe analysis with zero lag.
getAdjustedLookback(current_tf_minutes, higher_tf_minutes, length)
Calculate adjusted lookback period for higher timeframe conversion.
Parameters:
current_tf_minutes (int) : Current chart timeframe in minutes (e.g., 5 for 5m).
higher_tf_minutes (int) : Target higher timeframe in minutes (e.g., 15 for 15m).
length (int) : Base length value (e.g., 14 for RSI/MFI).
Returns: Adjusted lookback period (length × multiplier).
Purpose and Benefits of the TimeframeTools Library
This library is designed to solve a critical pain point for traders who rely on higher timeframe (HTF) indicator values while analyzing lower timeframe (LTF) charts. Traditional methods require waiting for multiple candles to close—for example, to see a 1-hour RSI on a 5-minute chart, you’d need 12 closed candles (5m × 12 = 60m) before the value updates. This lag means missed opportunities, delayed signals, and inefficient decision-making.
Why Traders Need This
Whether you’re scalping (5M/15M) or swing trading (1H/4H), this library bridges the gap between timeframes, giving you HTF context in real time—so you can act faster, with confidence.
How This Library Eliminates the Waiting Game
By dynamically calculating the adjusted lookback period, the library allows:
Real-time HTF values on LTF charts – No waiting for candle closes.
Accurate conversions – A 14-period RSI on a 1-hour chart translates to 168 periods (14 × 12) on a 5-minute chart, ensuring mathematical precision.
Flexible application – Works with common indicators like RSI, MFI, CCI, and moving averages (though confirmations should be done before publishing under your own secondary use).
Key Advantages Over Manual Methods
Speed: Instantly reflects HTF values without waiting for candle resolutions.
Adaptability: Adjusts automatically if the user changes timeframes or lengths.
Consistency: Removes human error in manual period calculations.
Limitations to Note
Not a magic bullet – While it solves the lag issue, traders should still:
Validate signals with price action or additional confirmations.
Be mindful of extreme lookback lengths (e.g., a 200-period daily SMA on a 1-minute chart requires 28,800 periods, which may strain performance).
30s Opening rangeThis is a indicator to show opening range for 30s.
What this indicator do:
You can choose any start time to get that opening range
You can keep this range in different time frame
Levels Map Overlay🗺️ Levels Map Overlay – is a comprehensive visual tool built for traders who want more than just signals—they want narrative, context, and confluence. This script brings together institutional-level concepts—daily levels, FVGs, order blocks, Fibonacci retracements, CHoCH (Change of Character), and a real-time breach table—to help you identify high-probability trade zones, liquidity traps, and structure shifts across all timeframes.
🔍 Core Components & Features
1. 🏦 Daily Key Levels (Previous High/Low/Open)
Previous High/Low: Act as liquidity pools. Price is often magnetized toward these levels before large moves or reversals.
Previous Open: A pivotal level that often dictates session bias.
Manipulation Zones: Automatically calculated buffer zones above/below the high/low. Price may dip into these areas to trigger stop hunts before reversing.
Distribution Zones: Projected outer zones based on range expansion. Can act as extended take profit targets or reversal zones in strong trends.
🧠 How to Use: Mark these levels as critical S/R areas. If price sweeps a Previous Low into a Manipulation Zone and forms a bullish CHoCH or reacts from a Bullish OB – that’s a high-confluence long setup.
2. 📐 Fibonacci Retracement Levels
Plots classic retracements (0.382 / 0.5 / 0.618) based on the previous day’s high and low.
Can be toggled on/off depending on your strategy.
🧠 How to Use: These levels give structure to pullbacks. Look for price reacting at the 0.618 Fib inside a Fair Value Gap or an Order Block for high-confluence entries.
3. 🧱 Order Blocks (OBs)
Identifies potential institutional demand and supply zones based on key candle formations and price behavior.
Customizable sensitivity helps control signal density.
🧠 How to Use: Wait for price to enter an OB and watch lower timeframes for confirmation (engulfing candles, CHoCH). OBs that align with daily levels or Fibonacci levels carry more weight.
4. ⚖️ Fair Value Gaps (FVGs)
Highlights price inefficiencies—gaps formed during impulsive moves.
Price often returns to these zones to rebalance.
Includes mitigation logic: hides FVGs that have been fully "filled".
🧠 How to Use: Treat these as magnets for price. Watch for reversal confirmation once price enters an unmitigated FVG. FVGs that overlap with OBs or Fib levels are high-probability.
5. 🔄 CHoCH – Change of Character
Detects when market structure shifts (from bullish to bearish or vice versa).
Acts as an early warning that trend direction may be changing.
🧠 How to Use: A Bullish CHoCH forming at a Previous Daily Low inside a Bullish OB? That’s a powerful signal that buyers may be stepping in. Combine with lower timeframe confirmation for entry.
6. 📊 Breach Status Table – Intraday Bias Snapshot
Real-time dashboard showing:
Whether the Previous High/Low has been breached.
Price behavior around the Open (rejection or acceptance).
Whether Manipulation Zones have been tagged.
🧠 How to Use: Scan this table to get a pulse on the current session.
Example:
Price sweeps the Previous Low (liquidity grab)
Rejects the Manipulation Low
Reclaims the Previous Open
→ Potential bullish reversal scenario
📌 Practical Trade Examples
Example 1: High-Probability Long Setup
Price sweeps the Previous Low
Manipulation Zone tagged
Bullish OB present
CHoCH forms and price closes back above Open → Enter long on confirmation with stop below OB, target next FVG or Previous High.
Example 2: Trend Continuation Short
Price breaks Previous Low and holds below Open
Bearish FVG forms after CHoCH
Price pulls back to 0.618 Fib retracement inside Bearish FVG → Enter short on bearish engulfing candle confirmation.
🛠️ Customization Options
Timeframe Settings: Switch between Daily and Weekly levels depending on your trade horizon.
OB/FVG Sensitivity: Fine-tune signal density—great for scalpers or swing traders.
Zone Multipliers: Adjust Manipulation/Distribution zones based on the asset's volatility.
CHoCH Pivot Strength: Change the number of bars used to detect CHoCHs (for faster vs. stronger signals).
Display Limits: Avoid clutter by limiting how many OBs/FVGs show on the chart.
🧭 Final Notes – Don’t Trade Blindly
This is not a signal indicator—this is a decision-support tool. Use it to:
Spot high-probability confluence zones
Understand what the market is trying to do
Time entries based on price action confirmation
Combine it with your own strategy, risk management rules, and backtesting.
📌 Pro Tip: The most powerful setups come from confluence.
A Fib retracement inside an unmitigated FVG that overlaps an OB and confirms with a CHoCH?
→ That’s a map worth following.
Happy Trading! 🚀
Weighted Ichimoku StrategyLSE:HSBA
The Ichimoku Kinko Hyo indicator is a comprehensive tool that combines multiple signals to identify market trends and potential buying/selling opportunities. My weighted variant of this strategy attempts to assign specific weights to each signal, allowing for a more nuanced and customizable approach to trend identification. The intent is to try and make a more informed trading decision based on the cumulative strength of various signals.
I've tried not to make it a mishmash of this and that + MACD + RSI and on and on; most people have their preferred indicator that focuses on just that that they can use in conjunction.
The signals used can be grouped into two groups the 'Core Ichimoku Signals' & the 'Additional Signals' (at the end you will find the signals and their assigned weights followed by the thresholds where they align).
The Core Ichimoku Signals are the primary signals used in Ichimoku analysis, including Kumo Breakout, Chikou Cross, Kijun Cross, Tenkan Cross, and Kumo Twist.
While the Additional Signals provide further insights and confirmations, such as Kijun Confirmation, Tenkan-Kijun Above Cloud, Chikou Above Cloud, Price-Kijun Cross, Chikou Span Signal, and Price Positioning.
Entries are triggered when the cumulative weight of bullish signals exceeds a specified buy threshold, indicating a strong uptrend or potential trend reversal.
Exits are initiated when the cumulative weight of bearish signals surpasses a specified sell threshold, or when additional conditions such as consolidation patterns or ATR-based targets are met.
There are various exit types that you can choose between, which can be used separately or in conjunction with one another. As an example you might want to exit on a different condition during consolidation periods than during other periods or just use ATR with some other backstop.
They are listed in evaluation order i.e. ATR trumps all, Consolidation exit trumps the regular Kumo sell and so on:
**ATR Sell**: Exits trades based on ATR-based profit targets and stop-losses.
**Consolidation Exit**: Exits trades during consolidation periods to reduce drawdown.
**Sell Below Kumo**: Exits trades when the price is below the Kumo, indicating a potential downtrend.
**Sell Threshold**: Exits trades when the cumulative weight of bearish signals surpasses a specified sell threshold.
There are various 'filters' which are really behavior modifiers:
**Kumo Breakout Filter**: Requires price to close above the Kumo for buy signals (essentially a entry delay).
**Whipsaw Filter**: Ensures trend strength over specified days to reduce false signals.
**Buy Cooldown**: Prevents new entries until half the Kijun period passes after an exit (prevents flapping).
**Chikou Filter**: Delays exits unless the previous close is below the Chikou Span.
**Consolidation Trend Filter**: Prevents consolidation exits if the trend is bullish (rare, but happens).
Then there are some debugging options. Ichimoku periods have some presets (personally I like 8/22/44/22) but are freely configurable, preset to the traditional values for purists.
The list of signals and most thresholds follow, play around with them. Thats all.
Cheers,
**Core Ichimoku Signals**
**Kumo Breakout**
- 30 (Bullish) / -30 (Bearish)
- Indicates a strong trend when the price breaks above (bullish) or below (bearish) the Kumo (cloud). This signal suggests a significant shift in market sentiment.
**Chikou Cross**
- 20 (Bullish) / -20 (Bearish)
- Shows the relationship between the Chikou Span (lagging span) and the current price. A bullish signal occurs when the Chikou Span is above the price, indicating a potential uptrend. Conversely, a bearish signal occurs when the Chikou Span is below the price, suggesting a downtrend.
**Kijun Cross**
- 15 (Bullish) / -15 (Bearish)
- Signals trend changes when the Tenkan-sen (conversion line) crosses above (bullish) or below (bearish) the Kijun-sen (base line). This crossover is often used to identify potential trend reversals.
**Tenkan Cross**
- 10 (Bullish) / -10 (Bearish)
- Indicates short-term trend changes when the price crosses above (bullish) or below (bearish) the Tenkan-sen. This signal helps identify minor trend shifts within the broader trend.
**Kumo Twist**
- 5 (Bullish) / -5 (Bearish)
- Shows changes in the Kumo's direction, indicating potential trend shifts. A bullish Kumo Twist occurs when Senkou Span A crosses above Senkou Span B, and a bearish twist occurs when Senkou Span A crosses below Senkou Span B.
**Additional Signals**
**Kijun Confirmation**
- 8 (Bullish) / -8 (Bearish)
- Confirms the trend based on the price's position relative to the Kijun-sen. A bullish signal occurs when the price is above the Kijun-sen, and a bearish signal occurs when the price is below it.
**Tenkan-Kijun Above Cloud**
- 5 (Bullish) / -5 (Bearish)
- Indicates a strong bullish trend when both the Tenkan-sen and Kijun-sen are above the Kumo. Conversely, a bearish signal occurs when both lines are below the Kumo.
**Chikou Above Cloud**
- 5 (Bullish) / -5 (Bearish)
- Shows the Chikou Span's position relative to the Kumo, indicating trend strength. A bullish signal occurs when the Chikou Span is above the Kumo, and a bearish signal occurs when it is below.
**Price-Kijun Cross**
- 2 (Bullish) / -2 (Bearish)
- Signals short-term trend changes when the price crosses above (bullish) or below (bearish) the Kijun-sen. This signal is similar to the Kijun Cross but focuses on the price's direct interaction with the Kijun-sen.
**Chikou Span Signal**
- 10 (Bullish) / -10 (Bearish)
- Indicates the trend based on the Chikou Span's position relative to past price highs and lows. A bullish signal occurs when the Chikou Span is above the highest high of the past period, and a bearish signal occurs when it is below the lowest low.
**Price Positioning**
- 10 (Bullish) / -10 (Bearish)
- Shows indecision when the price is between the Tenkan-sen and Kijun-sen, indicating a potential consolidation phase. A bullish signal occurs when the price is above both lines, and a bearish signal occurs when the price is below both lines.
**Confidence Level**: Highly Sensitive
- **Buy Threshold**: 50
- **Sell Threshold**: -50
- **Notes / Significance**: ~2–3 signals, very early trend detection. High sensitivity, may capture noise and false signals.
**Confidence Level**: Entry-Level
- **Buy Threshold**: 58
- **Sell Threshold**: -58
- **Notes / Significance**: ~3–4 signals, often Chikou Cross or Kumo Breakout. Very sensitive, risks noise (e.g., false buys in choppy markets).
**Confidence Level**: Entry-Level
- **Buy Threshold**: 60
- **Sell Threshold**: -60
- **Notes / Significance**: ~3–4 signals, Kumo Breakout or Chikou Cross anchors. Entry point for early trends.
**Confidence Level**: Moderate
- **Buy Threshold**: 65
- **Sell Threshold**: -65
- **Notes / Significance**: ~4–5 signals, balances sensitivity and reliability. Suitable for moderate risk tolerance.
**Confidence Level**: Conservative
- **Buy Threshold**: 70
- **Sell Threshold**: -70
- **Notes / Significance**: ~4–5 signals, emphasizes stronger confirmations. Reduces false signals but may miss some opportunities.
**Confidence Level**: Very Conservative
- **Buy Threshold**: 75
- **Sell Threshold**: -75
- **Notes / Significance**: ~5–6 signals, prioritizes high confidence. Minimizes risk but may enter trades late.
**Confidence Level**: High Confidence
- **Buy Threshold**: 80
- **Sell Threshold**: -80
- **Notes / Significance**: ~6–7 signals, very strong confirmations needed. Suitable for cautious traders.
**Confidence Level**: Very High Confidence
- **Buy Threshold**: 85
- **Sell Threshold**: -85
- **Notes / Significance**: ~7–8 signals, extremely high confidence required. Minimizes false signals significantly.
**Confidence Level**: Maximum Confidence
- **Buy Threshold**: 90
- **Sell Threshold**: -90
- **Notes / Significance**: ~8–9 signals, maximum confidence level. Ensures trades are highly reliable but may result in fewer trades.
**Confidence Level**: Ultra Conservative
- **Buy Threshold**: 100
- **Sell Threshold**: -100
- **Notes / Significance**: ~9–10 signals, ultra-high confidence. Trades are extremely reliable but opportunities are rare.
**Confidence Level**: Extreme Confidence
- **Buy Threshold**: 110
- **Sell Threshold**: -110
- **Notes / Significance**: All signals align, extreme confidence. Trades are almost certain but very few opportunities.
Market Exposure Zones – Multi-Market📊 Market Exposure Zones – Multi-Market 📊
This indicator visually displays market exposure zones based on the relationship between key moving averages (10, 20, 50, and 200 SMA). It dynamically adapts to your chart’s exchange:
✅ NSE: Tracks CNX500
✅ NASDAQ/NYSE/AMEX: Displays NASDAQ and SPY
✅ ASX: Displays XJO
Color-coded exposure levels help guide risk positioning:
🔴 5% – Weak trend: 10MA < 20MA < 200MA
🌸 10–30% – Early recovery phase
🟠 30–70% – Strengthening momentum
🟢 70–100% – Full trend confirmation
Useful for position sizing, market timing, and understanding trend structure.
⚠️ Disclaimer:
This tool is for informational and educational purposes only. It does not constitute financial advice. Please use it at your own discretion and manage your risk accordingly.
Multi-Factor Model📈 Multi-Factor Rolling Regression Residuals (Beta Regime + R² Analysis)
This script implements a rolling multi-factor regression framework in Pine Script, designed for traders and quant researchers who want to:
• Analyze how an asset’s returns relate to multiple benchmark factors
• Visualize rolling betas dynamically
• Evaluate the goodness of fit (R²) over time
• Track residuals and detect regime shifts in market relationships
🔧 Key Features:
✅ Multi-Factor OLS Regression (No Intercept)
• Select up to 5 benchmark factors (e.g., SPY, QQQ, DIA, etc.)
• Computes rolling betas using value-weighted ordinary least squares
• No intercept included — ideal for modeling excess returns or beta exposure only
✅ Residual Analysis with σ-Bands
• Plots regression residuals (actual return – predicted return)
• Highlights ±2 standard deviation bands for anomaly detection
• Cumulative residual tracking included for longer-term signal observation
✅ Beta Regime Detection
• Choose a beta of interest and see its regime classification:
• 🔵 Low Beta (< 0.9)
• ⚪ Neutral (0.9–1.1)
• 🔴 High Beta (> 1.1)
• Background shading + residual color adapts to beta regime
✅ R² Calculation & Visualization
• R² measures the fit quality between the model and real return series
• User-defined thresholds highlight high- and low-fidelity periods
• Background color identifies regime shifts in R² dynamically
✅ Custom Residual Coloring Modes
• Color by: residual sign, beta regime, or gradient-scaled beta value
• Great for spotting shifts in correlation or abnormal behaviors
🎓 Use Cases:
• Build quantamental overlays for stock selection
• Detect breakdowns in correlation during market stress
• Identify high-conviction model periods using R² filters
• Track beta exposures over time for portfolio hedging or alpha extraction
⚠️ Notes:
• This model omits an intercept term by design (ideal for factor models like CAPM, Fama-French).
• Use longer windows for smoother beta/R² estimates.
• Pair with TradingView’s alerts to monitor real-time beta regime changes or residual breaches.
RSI-MACD Momentum Fusion Indicator(RMFI)📈 RSI-MACD Momentum Fusion Indicator (RMFI)
The RMFI combines the strengths of two RSI variants with a dynamically adaptive MACD module into a powerful momentum oscillator ranging from 0 to 100. The goal is to unify converging momentum information from different perspectives into a clear, weighted overall signal.
🔧 Core Features
RSI 1: Classic Wilder RSI, sensitive to short-term momentum.
RSI 2: Modified RSI based on normalized price movement ranges (Range Momentum).
MACD (3 Modes):
Standardized (min/max-based)
Fully adaptive (Z-score normalization)
50% adaptive (hybrid weighting of both approaches)
Dynamic MACD mode selection (optional): Automatic switching of MACD normalization based on volatility levels (ATR-based).
Signal Line: Smoothed average of all components to visualize momentum trends and crossovers.
🎯 Visualization
Clear separation of overbought (>70) and oversold (<30) zones with color highlighting.
Different colors based on the dynamic MACD mode – visually indicates how strongly the market adapts to volatility.
⚙️ Recommended Use
Ideal for trend following, divergence confirmation (with external divergence logic), and momentum reversals.
Particularly effective in volatile markets, as the MACD component adaptively responds to instability.
© champtrades
Dskyz (DAFE) AI Adaptive Regime - Beginners VersionDskyz (DAFE) AI Adaptive Regime - Pro: Revolutionizing Trading for All
Introduction
In the fast-paced world of financial markets, traders need tools that can keep up with ever-changing conditions while remaining accessible. The Dskyz (DAFE) AI Adaptive Regime - Pro is a groundbreaking TradingView strategy that delivers advanced, AI-driven trading capabilities to everyday traders. Available on TradingView (TradingView Scripts), this Pine Script strategy combines sophisticated market analysis with user-friendly features, making it a standout choice for both novice and experienced traders.
Core Functionality
The strategy is built to adapt to different market regimes—trending, ranging, volatile, or quiet—using a robust set of technical indicators, including:
Moving Averages (MA): Fast and slow EMAs to detect trend direction.
Average True Range (ATR): For dynamic stop-loss and volatility assessment.
Relative Strength Index (RSI) and MACD: Multi-timeframe confirmation of momentum and trend.
Average Directional Index (ADX): To identify trending markets.
Bollinger Bands: For assessing volatility and range conditions.
Candlestick Patterns: Recognizes patterns like bullish engulfing, hammer, and double bottoms, confirmed by volume spikes.
It generates buy and sell signals based on a scoring system that weighs these indicators, ensuring trades align with the current market environment. The strategy also includes dynamic risk management with ATR-based stops and trailing stops, as well as performance tracking to optimize future trades.
What Sets It Apart
The Dskyz (DAFE) AI Adaptive Regime - Pro distinguishes itself from other TradingView strategies through several unique features, which we compare to common alternatives below:
| Feature | Dskyz (DAFE) | Typical TradingView Strategies|
|---------|-------------|------------------------------------------------------------|
| Regime Detection | Automatically identifies and adapts to **four** market regimes | Often static or limited to trend/range detection |
| Multi‑Timeframe Analysis | Uses higher‑timeframe RSI/MACD for confirmation | Rarely incorporates multi‑timeframe data |
| Pattern Recognition | Detects candlestick patterns **with volume confirmation** | Limited or no pattern recognition |
| Dynamic Risk Management | ATR‑based stops and trailing stops | Often uses fixed stops or basic risk rules |
| Performance Tracking | Adjusts thresholds based on past performance | Typically static parameters |
| Beginner‑Friendly Presets | Aggressive, Conservative, Optimized profiles | Requires manual parameter tuning |
| Visual Cues | Color‑coded backgrounds for regimes | Basic or no visual aids |
The Dskyz strategy’s ability to integrate regime detection, multi-timeframe analysis, and user-friendly presets makes it uniquely versatile and accessible, addressing the needs of everyday traders who want professional-grade tools without the complexity.
-Key Features and Benefits
[Why It’s Ideal for Everyday Traders
⚡The Dskyz (DAFE) AI Adaptive Regime - Pro democratizes advanced trading by offering professional-grade tools in an accessible package. Unlike many TradingView strategies that require deep technical knowledge or fail in changing market conditions, this strategy simplifies complex analysis while maintaining robustness. Its presets and visual aids make it easy for beginners to start, while its adaptive features and performance tracking appeal to advanced traders seeking an edge.
🔄Limitations and Considerations
Market Dependency: Performance varies by market and timeframe. Backtesting is essential to ensure compatibility with your trading style.
Learning Curve: While presets simplify use, understanding regimes and indicators enhances effectiveness.
No Guaranteed Profits: Like all strategies, success depends on market conditions and proper execution. The Reddit discussion highlights skepticism about TradingView strategies’ universal success (Reddit Discussion).
Instrument Specificity: Optimized for futures (e.g., ES, NQ) due to fixed tick values. Test on other instruments like stocks or forex to verify compatibility.
📌Conclusion
The Dskyz (DAFE) AI Adaptive Regime - Pro is a revolutionary TradingView strategy that empowers everyday traders with advanced, AI-driven tools. Its ability to adapt to market regimes, confirm signals across timeframes, and manage risk dynamically. sets it apart from typical strategies. By offering beginner-friendly presets and visual cues, it makes sophisticated trading accessible without sacrificing power. Whether you’re a novice looking to trade smarter or a pro seeking a competitive edge, this strategy is your ticket to mastering the markets. Add it to your chart, backtest it, and join the elite traders leveraging AI to dominate. Trade like a boss today! 🚀
Use it with discipline. Use it with clarity. Trade smarter.
**I will continue to release incredible strategies and indicators until I turn this into a brand or until someone offers me a contract.
-Dskyz
Oscura 23:00 - 00:00 (Italia)Hiding spread zone.
Usefull to hide zone where the broker make new contract and erase spread
AI Trading Signals - Crypto, Stocks & Forex🧠 AI Trading Signals – Multi-Asset Toolkit for Crypto, Stocks & Forex
The AI Trading Signals Indicator is a closed-source, invite-only script built for discretionary and swing traders seeking confirmation-based signals across multiple timeframes and markets.
This indicator provides actionable insights through a modular signal engine that supports:
Buy & Sell confirmation signals
Long & Short entry and trailing exit signals
Breakout continuation detection (LC / SC logic)
Take Profit and Stop Loss overlays
Bitcoin macro market cycle alerts (Top, Bull/Bear Season)
🔍 Core Logic Overview
The script uses layered logic to filter and confirm price action based on multiple classic indicators - enhanced through proprietary signal sequencing and visual filtering. All signals are based on confirmed candle closes and do not repaint.
EMA cross/stacking (20/50/200) to define directional bias
RSI + VWAP fusion to refine overbought/oversold momentum triggers
Trend channel logic to dynamically track range expansion and potential reversals
LC (Long Continuation) and SC (Short Continuation) signals for structural breakouts
Macro BTC signals using 111-day and 350-day SMAs for cycle tracking
Optional multi-timeframe logic (e.g., only trigger 15m Long when 4H Buy is active)
🎯 Strategy Modes
Users can choose a strategy from the “Inputs” tab based on their approach and market conditions.
Buy & Sell – All base signals shown (directional with TP overlays)
Long Positions Only – Filters to show bullish setups and Long exit logic
Short Positions Only – Bearish setups with Short exits and TP points
Breakout Strategy – Continuation logic using LC/SC with momentum confirmation
BTC Cycle Strategy – Signals based on macro market shifts in BTCUSD
⚙️ Customization & Dashboard Features
This script is designed to be clean and flexible, with optional overlays and control over signal visibility in the “Style” tab.
Show/hide specific labels (Buy, Sell, TP, SL, Exit Long, Exit Short, etc.)
Optional Multi-Timeframe Signal Dashboard for 3m, 15m, 45m, 4H, and 1D signals
Take Profit and Stop Loss levels auto-plotted on screen
Compatible across Crypto, Stocks, and Forex markets
🧠 What Makes This Script Unique
This script is not a simple mashup - it’s an original, closed-source signal engine custom-built to streamline discretionary trading.
Layered logic built from the ground up (no reused or open-source code)
Multi-timeframe filtering encourages signal confirmation and cleaner entries
Breakout signals paired with trailing stop logic to improve exit management
Macro cycle signals specific to BTCUSD (Bull/Bear Season, BTC Top logic)
Visualization built for clarity — not crowding
📌 How to Use It
Select a strategy from the Inputs tab
Toggle visual signal layers in the Style tab
Use the MTF Signal Dashboard to spot cross-timeframe alignment
Set alerts for any signal type based on your trading strategy
Use in conjunction with your own technical or risk model for added structure
⚠️ Disclaimer
This script is for educational and informational purposes only. It does not constitute financial advice or guarantee results. Trading carries risk - use at your own discretion and consult with a licensed financial professional if needed.
Heiken Ashi with RSI Colors📜 Description:
This indicator blends Heiken Ashi candlesticks with RSI-based color filters to help traders quickly assess both trend structure and momentum extremes in a single glance.
✅ Heiken Ashi Mode: Smooths out price action to highlight clearer trends and suppress noise
✅ RSI Coloring: Applies candle color changes based on whether RSI is overbought, oversold, or neutral
It allows traders to visually spot potential exhaustion zones, continuation trends, or early reversal areas with enhanced clarity.
🔧 Settings:
Use Heiken Ashi Candles: Toggle between standard candles and Heiken Ashi smoothed values
RSI Length: Controls the lookback for RSI calculation (default 14)
Overbought/Oversold Levels: Customize your thresholds for extreme conditions (default: 70/30)
🎨 Candle Color Logic:
Green (Lime): RSI is overbought → price may be overextended upward
Red: RSI is oversold → price may be overextended downward
Gray: RSI is between extremes → neutral momentum
💡 Use Cases:
Confirm trend momentum with Heiken Ashi structure
Spot potential reversal points using RSI extremes
Enhance entry/exit decisions by combining price action and momentum in a single visual
Equal Highs and Equal LowsIt identifies eqx, teqx and seqx. So you are able to use them and determine what might happen. Trust me this indicator works if you know what you are doing
Shanto Trend Signal🔔 Shanto Trend Signal is a custom trend-following indicator designed to give early and clean Buy/Sell signals based on RSI momentum and EMA trend direction.
📊 Key Features:
Buy signals when RSI shows strength above a key level with EMA confirmation.
Sell signals when RSI breaks down below a threshold with bearish EMA slope.
Optional visual highlights (bull/bear zones) on chart.
Customizable RSI sensitivity, signal levels, and visual styles.
Alerts included: never miss a momentum shift.
✅ Ideal for: XAUUSD, BTCUSD, Forex, Indices, and more.
🔧 Settings can be tuned for different assets and timeframes.
Created by: Rakibul Hassan
Please leave feedback or suggestions for future improvements!
Détecteur de Marubozu par MasterMindZeroThis indicator will help you to find a Marubosu Candle , it hightlight the Candlestick , and if your analysis is based on Candle it can help you to confirm if the market is Bearish ou Bullish , i use it as a confirmation tool in my own strategy.
cd_full_poi_CxOverview
This indicator tracks the price in 16 different time frames (optional) in order to answer the question of where the current price has reacted or will react.
It appears on the chart and in the report table when the price approaches or touches the fvg or mitigations (order block / supply-demand), the rules of which will be explained below.
In summary, it follows the fvg and mitigations in the higher timeframe than the lower timeframe.
Many traders see fvg or mitigates as an point of interest and see the high, low swept in those zones as a trading opportunity. Key levels, Session high/lows and Equal high and lows also point of interest.
If we summarise the description of the point of interest ;
1- Fair value gaps (FVG) (16 time frames)
2- Mitigation zones (16 time frames)
3- Previous week, day, H4, H1 high and low levels
4- Sessions zones (Asia, London and New York)
5- Equal high and low levels are in indicator display.
Details:
1- Fair Value Gaps : It is simply described as a price gap and consists of a series of 3 candles. The reaction of the price to the gap between the 1st and 3rd candle wicks is observed.
The indicator offers 3 options for marking. These are :
1-1- ‘Colours are unimportant’: candle colours are not considered for marking. Fvg formation is sufficient.(Classical)
1-2- ‘First candle opposite colour’ : when a price gap occurs, the first candle of a series of 3 candles must be opposite.
For bullish fvg : bearish - bullish - free
For Bearish fvg : bullish - bearish - free
1-3- ‘All same colour’ : all candles in a series of 3 candles must be the same direction.
For bullish fvg: bullish - bullish - bullish
For bearish fvg : bearish - bearish – bearish
Examples:
2- Mitigation zones: Opposite candles with a fvg in front of them or candles higher/lower than the previous and next candle and with the same colour as the fvg series are marked.
Examples :
3- Previous week, day, H4, H1 high and low levels
4- Sessions regions (Asia, London and New York)
5- Equal high and low levels:
Annotation: Many traders want to see a liquidity grab on the poi, then try to enter the trade with the appropriate method.
Among the indicators, there is also the indication of grabs/swepts that occur at swing points. It is also indicated when the area previously marked as equal high/low is violated (grab).
At the end, sample setups will be shown to give an idea about the use of the indicator.
Settings:
- The options to be displayed from the menu are selected by ticking.
- 1m, 2m, 3m, 5m, 5m, 10m, 15m, 30m, h1, h4, h4, h6, h8, h12, daily, weekly, monthly and quarterly, 16 time zones in total can be displayed.
- The ‘Collapse when the price touches mitigate’ tab controls whether to collapse the box as the price moves into the inner region of the mitigate. If not selected, the size of the mitigate does not change.
- ‘Approach limit =(ATR / n)’ tab controls how close the price is to the fvg or mitigate. Instant ATR(10) value is calculated by dividing by the entered ‘n’ value.
- All boxes and lines are automatically removed from the screen when the beyond is closed.
- Colour selections, table, text features are controlled from the menu.
- Sessions hours are set as standard hours, the user can select special time zones. Timezone is set to GMT-4.
- On the candle when the price touches fvg or mitigate, the timeframe information of the POI is shown in the report table together with the graphical representation.
The benefits and differences :
1- We can evaluate the factors we use for setup together.
2- We are aware of what awaits us in the high time frame in the following candles.
3- It offers the user the opportunity to be selective with different candle selection options in fvg selection.
4- Mitige areas are actually unmitige areas because they have a price gap in front of them. The market likes to retest these areas.
5- Equal high/low zones are the levels that the price creates to accumulate liquidity or fails to go beyond (especially during high volume hours). Failure or crossing of the level may give a reversal or continuation prediction.
Sample setup 1:
Sample setup 2:
Sample setup 3:
Cheerful trades…
Enjoy…
3 Ticks Last CandleThis indicator draws a horizontal line on the last closed candle's close price, with the line positioned 3 ticks above or below the close based on whether the candle was bullish or bearish. The line extends to the left and right of the candle, with the length adjustable via a user-defined setting. The line disappears when a new candle closes. Customize the line's color and length to suit your preferences.
Bamshad's SignalBamshad's Signal is designed to make you rich!
This indicator is well defined by a very complicated method that provides a good and proper forecast of the market's future.
Market Decoding Psychology V1.0This indicator is built to decode market psychology in real-time using adaptive trend and volatility logic.
It identifies operator zones (Buy/Sell) where smart money may be active, and plots precision-based reversal exit areas for profit booking.
🔍 Core Features:
Operator Buy & Sell Zones: Highlights possible institutional entry points based on custom logic — not EMA, RSI, or any off-the-shelf indicators.
Reversal-Based Exits: Shows profit booking signals only when psychological reversal patterns align with volume and volatility shifts.
Dynamic Candle Coloring: Visual trend alignment based on internal directional momentum.
Clean Visuals: Non-intrusive and optimized for discretional trade planning.
⚡ Real-Time Logic:
No Repaint — All signals are plotted live with final bar confirmation only.
Zero Lag — Built using leading price behavior and volatility combinations to avoid delayed signals.
One Trade Logic at a Time — Clearly defined entries and exits; no clutter.
Designed for traders who value clarity, timing, and institutional-grade logic — without overcomplication.
📌 This tool is meant for discretionary execution with real-time guidance, not auto backtesting or signal spamming.
⚠️ No part of this logic uses traditional indicators like MACD, RSI, or EMA crossover.
This system is rooted in price behavior and volatility modeling for modern intraday precision.
#norepaint #nolag #marketpsychology #smartmoney #priceaction #intradaystrategy #volatilityzones #protradingtools #reversalsignals #tradingviewindia
Crosby Ratio | QuantumResearch ⚖️ Crosby Ratio | QuantumResearch
A Heikin-Ashi Smoothed Momentum Oscillator for Trend Strength & Market Rotation
Inspired by the Original Work of Bitcoin Magazine Pro
🔗 www.bitcoinmagazinepro.com
📘 Overview
The Crosby Ratio, as originally conceptualized by Bitcoin Magazine Pro, is a powerful tool used to evaluate the momentum and directional strength of price movement by analyzing the slope of market trends in degrees.
This enhanced implementation by QuantumResearch builds on the original concept with a Pine Script version tailored for trading charts, integrating Heikin-Ashi smoothing, ATR scaling, and customizable visual modes to fit traders' unique styles.
🧠 What Is the Crosby Ratio?
At its core, the Crosby Ratio uses angular measurement to quantify price movement — translating price trend strength into degrees. This approach allows traders to:
📈 Identify when the market is exhibiting strong upward or downward pressure
🚨 Spot overextended or overheated trend conditions
⚖ Filter out short-term noise and focus on macro momentum
🔍 1. Key Innovations by QuantumResearch
✅ Heikin-Ashi Smoothing: Reduces noise and stabilizes price action before computing momentum angles
✅ Custom atan2() Angular Function: Measures the directional angle between smoothed price changes and ATR-based scaling
✅ Dynamic Threshold Bands: Color-coded zones highlight overbought/oversold momentum regions
✅ Fully Customizable Palette: Choose from 8 visual themes with automatic color adaptation
📊 2. Interpretation Guide
Crosby Value Interpretation
> +18° 🚀 Strong bullish trend acceleration
+13° to +18° 📈 Moderate upward momentum
-9° to +13° ⚖ Neutral/transition phase
-15° to -9° 📉 Moderate bearish pressure
< -15° 🛑 Strong bearish acceleration
The indicator also features background shading when values exceed key thresholds, improving visual clarity during trend inflection points.
📌 Ideal Use Cases
🔄 Rotational Momentum Strategies: Spot the strongest assets during rapid shifts
⚡ Breakout Filtering: Confirm whether breakouts have directional strength
🧘 Noise Reduction: Heikin-Ashi smoothing filters chaotic wicks, especially in crypto
📉 Bearish Exhaustion Detection: Quickly identify when bearish momentum might be overdone
🔗 Original Inspiration & Acknowledgment
This indicator draws its core idea and naming convention from the original Crosby Ratio developed and introduced by Bitcoin Magazine Pro in their excellent write-up:
🔗 The Crosby Ratio – Bitcoin Magazine Pro
Their work on quantifying market sentiment via angle-based momentum inspired this script adaptation for TradingView with added visual features, smoothing techniques, and alerts.
⚠️ Disclaimer
This indicator is a momentum oscillator and should be used in conjunction with other confirmation tools. Market dynamics can vary, and no single metric ensures profitable trades. Always apply proper risk management.
3CRGANG - TRUE RANGEThis indicator helps traders identify key support and resistance levels using dynamic True Range calculations, while also providing a multi-timeframe trend overview. It plots True Range levels as horizontal lines, marks breakouts with arrows, and displays trend directions across various timeframes in a table, making it easier to align trades with broader market trends.
What It Does
The 3CRGANG - TRUE RANGE indicator calculates dynamic support and resistance levels based on the True Range concept, updating them as price breaks out of the range. It also analyzes trend direction across multiple timeframes (M1 to M) and presents the results in a table, using visual cues to indicate bullish, bearish, or neutral conditions.
Why It’s Useful
This script combines True Range analysis with multi-timeframe trend identification to provide a comprehensive tool for traders. The dynamic True Range levels help identify potential reversal or continuation zones, while the trend table allows traders to confirm the broader market direction before entering trades. This dual approach reduces the need for multiple indicators, streamlining analysis across different timeframes and market conditions.
How It Works
The script operates in the following steps:
True Range Calculation: The indicator calculates True Range levels (support and resistance) using price data (close, high, low) from a user-selected timeframe. It updates these levels when price breaks above the upper range (bullish breakout) or below the lower range (bearish breakout).
Line Plotting: Two styles are available:
"3CR": Plots one solid line after a breakout (green for bullish, red for bearish) and removes the opposing line.
"RANGE": Plots both upper and lower range lines as dotted lines (green for support, red for resistance) until a breakout occurs, then solidifies the breakout line.
Multi-Timeframe Trend Analysis: The script analyzes trend direction on multiple timeframes (M1, M5, M15, M30, H1, H4, D, W, M) by comparing the current close to the True Range levels on each timeframe. A trend is:
Trend Table: A table displays the trend direction for each timeframe, with color-coded backgrounds (green for bullish, red for bearish) and triangles to indicate the trend state.
Breakout Arrows: When price breaks above the upper range, a green ▲ arrow appears below the bar (bullish). When price breaks below the lower range, a red ▼ arrow appears above the bar (bearish).
Bullish (▲): Price is above the upper range.
Bearish (▼): Price is below the lower range.
Neutral (△/▽): Price is within the range, with the last trend indicated by an empty triangle (△ for last bullish, ▽ for last bearish).
Alerts: Breakout alerts can be set for each timeframe, with options to filter by trading sessions (e.g., New York, London) or enable all-day alerts.
Underlying Concepts
The script uses the True Range concept to define dynamic support and resistance levels, which adjust based on price action to reflect the most relevant price zones. The multi-timeframe trend analysis leverages the same True Range logic to determine trend direction, providing a consistent framework across all timeframes. The combination of breakout signals and trend confirmation helps traders align their strategies with both short-term price movements and longer-term market trends.
Use Case
Breakout Trading: Use the True Range lines and arrows to identify breakouts. For example, a green ▲ arrow below a bar with price breaking above the upper range suggests a potential long entry.
Trend Confirmation: Check the trend table to ensure the breakout aligns with the broader trend. For instance, a bullish breakout on the 1H chart is more reliable if the D and W timeframes also show bullish trends (▲).
Range Trading: When price is within the True Range (dotted lines in "RANGE" style), consider range-bound strategies, buying near support and selling near resistance, while monitoring the table for potential trend shifts.
Settings
Input Timeframe: Select the timeframe for True Range calculations (default: chart timeframe).
True Range Style: Choose between "3CR" (single line after breakout) or "RANGE" (both lines until breakout) (default: 3CR).
Change Symbol: Compare a different ticker if needed (default: chart symbol).
Color Theme: Select "LIGHT THEME" or "DARK THEME" for colors, or enable custom colors (default: LIGHT THEME).
Table Position: Set the trend table’s position (center, right, left) (default: right).
Multi Res Alerts Setup: Enable/disable breakout alerts for each timeframe (default: enabled for most timeframes).
Sessions Alerts: Filter alerts by trading sessions (e.g., New York, London) or enable all-day alerts (default: most sessions enabled).
Chart Notes
The chart displays the script’s output on XAUUSD (1H timeframe), showing:
Candlesticks representing price action.
True Range lines (green for support, red for resistance) in "3CR" style, with solid lines after breakouts and dotted lines during range-bound periods.
Arrows (green ▲ below bars for bullish breakouts, red ▼ above bars for bearish breakouts) indicating range breakouts.
A trend table in the top-right corner labeled "TREND EA," showing trend directions across timeframes (M1 to M) with triangles (▲/▼ for active trends, △/▽ for last trend) and color-coded backgrounds (green for bullish, red for bearish).
Notes
The script uses the chart’s ticker by default but allows comparison with another symbol if enabled.
Trend data for higher timeframes (e.g., M) may not display if the chart’s history is insufficient.
Alerts are triggered only during selected trading sessions unless "ALL DAY ALERTS" is enabled.
Disclaimer
This indicator is a tool for analyzing market trends and does not guarantee trading success. Trading involves risk, and past performance is not indicative of future results. Always use proper risk management.
VolumePrice Intensity AnalyzerVolumePrice Intensity Analyzer
The VolumePrice Intensity Analyzer is a Pine Script v6 indicator designed to measure market activity intensity through the trading value (Price * Volume, scaled to millions). It helps traders identify significant volume-price interactions, track trends, and gauge momentum by combining volume analysis with trend-following tools.
Features:
Volume-Based Analysis: Calculates Price * Volume in millions to highlight market activity levels.
Trend Identification: Plots 20-day and 50-day SMAs of the trading value to smooth fluctuations and reveal sustained trends.
Relative Strength: Displays the ratio of daily Price * Volume to the long-term SMA in a separate pane, helping traders assess activity intensity relative to historical averages.
Real-Time Metrics: A table shows the current Price * Volume and its ratio to the long SMA, updated continuously with bold text formatting (v6 feature).
Alerts: Triggers notifications for high trading values (when Price * Volume exceeds 1.5x the long SMA) and SMA crossovers (short SMA crossing above long SMA).
Visual Cues: Uses dynamic bar colors (teal for bullish, gray for bearish) and background highlights to mark significant market activity.
Customizable Inputs: Adjust SMA periods, scaling factor, and alert threshold via the settings panel, with tooltips for clarity (v6 feature).
Originality:
Unlike basic volume indicators, this tool combines Price * Volume with trend analysis (SMAs), relative strength (ratio plot), and actionable alerts. The real-time table and visual highlights provide a unique, at-a-glance view of market intensity, making it a valuable addition for volume and trend-focused traders.
Calculations:
Trading Value (P*V): (Close * Volume) * Scale Factor (default scale factor of 1e-6 converts to millions).
SMAs: 20-day and 50-day Simple Moving Averages of the trading value to identify short- and long-term trends.
Ratio: Daily Price * Volume divided by the 50-day SMA, plotted in a separate pane to show relative activity strength.
Bar Colors: Teal (RGB: 0, 132, 141) for bullish bars (close > open or close > previous close), gray for bearish or neutral bars.
Background Highlight: Light yellow (hex: #ffcb3b, 81% transparency) when Price * Volume exceeds the long SMA by the alert threshold.
Plotted Elements:
Short SMA P*V (M): Red line, 20-day SMA of Price*Volume in millions.
Long SMA P*V (M): Blue line, 50-day SMA of Price*Volume in millions.
Today P*V (M): Columns, daily Price*Volume in millions (teal/gray based on price action).
Daily V*P/Longer Term Average: Purple line in a separate pane, ratio of daily Price * Volume to the 50-day SMA.
Usage:
Spot High Activity: Look for Price * Volume columns exceeding the SMAs or spikes in the ratio plot to identify significant market moves.
Confirm Trends: Use SMA crossovers (e.g., short SMA crossing above long SMA) as bullish trend signals, or vice versa for bearish trends.
Monitor Intensity: The table provides real-time Price * Volume and ratio values, while background highlights signal high activity periods.
Versatility: Suitable for stocks, forex, crypto, or any market with volume data, across various timeframes.
How to Use:
Add the indicator to your chart.
Adjust inputs (SMA periods, scale factor, alert threshold) via the settings panel to match your trading style.
Watch for alerts, check the table for real-time metrics, and observe the ratio plot for relative strength signals.
Use the background highlights and bar colors to quickly spot significant market activity and price action.
This indicator leverages Pine Script v6 features like lazy evaluation for performance and advanced text formatting for better visuals, making it a powerful tool for traders focusing on volume, trends, and momentum.
Imbalance Zones (FVG) - Volume Confirmed FVGs OnlyThis script identifies and visualizes bullish and bearish Fair Value Gaps (FVGs) on any chart using a strict three-candle formation rule—requiring three consecutive bullish or bearish candles. A bullish FVG is marked when the high from two candles ago is lower than the low of the current candle, while a bearish FVG is identified when the low from two candles ago is higher than the high of the current candle. Once an FVG is plotted, it is automatically deleted as soon as price re-enters the zone at any point in the future. This approach helps highlight clean, directional imbalances in price while eliminating outdated zones once liquidity has been filled. The script maintains a clutter-free chart and focuses only on active, relevant imbalances.