Mean Reversion Indicator + VIX
// This is a mean reversion indicator that anticipates a local trend reversion,
// It is best used in candle-by-candle processing.
// Actually, it is a channel with the mid-line serving as a moving mean baseline.
// Each of the two curves run up and down within this channel bouncing off from the top and bottom bounds.
// Touching the bounds serves as an indication of a local trend reversal.
// The reversal signal is stronger when there exists a resonance (symmetry) in the two curves.
// The background histogram shows a Karobein oscillator that contributes support or resistance for the signal.
볼래틸리티
Mean Reversion Indicator + VIX // This is a mean reversion indicator that anticipates a local trend reversion,
// It is best used in candle-by-candle processing.
// Actually, it is a channel with the mid-line serving as a moving mean baseline.
// Each of the two curves run up and down within this channel bouncing off from the top and bottom bounds.
// Touching the bounds serves as an indication of a local trend reversal.
// The reversal signal is stronger when there exists a resonance (symmetry) in the two curves.
// The background histogram shows a Karobein oscillator that contributes support or resistance for the signal.
RSI STRATEGYThis Pine Script code is a complex trading strategy that combines multiple technical indicators including RSI, Cyclic RSI, CCI, Choppiness Index, and Bollinger Bands. Here's a breakdown of what it does:
Main Components:
Uses both standard RSI and Cyclic RSI (a modified version of RSI)
Implements pivot point trend lines (support/resistance)
Includes a "MOST" indicator (similar to SuperTrend) for trend following
Adds additional indicators like CCI, Choppiness Index, and Bollinger Bands %B
Key Features:
Plots RSI with a WMA (Weighted Moving Average) line
Identifies trend lines automatically based on pivot points
Generates buy/sell signals based on crossovers between RSI and its moving average
Includes noise filtering options for the RSI values
Has alert conditions for buy/sell signals
Visual Elements:
Stepped RSI line that changes color based on its position relative to the WMA
Trend lines (support/resistance) in different colors
Signal labels with emojis (🐻 for sell, 🚀 for buy)
A midline at 50 for reference
Custom Calculations:
Special VAR (Variable Index Dynamic Average) moving average type
Cyclic RSI calculation with vibration and torque parameters
Zigzag pattern detection for identifying swing highs/lows
Input Options:
Multiple choices for RSI type (standard or cyclic)
Different noise filtering options
Various moving average types (SMA, EMA, WMA, etc.)
Adjustable lengths for all indicators
The strategy appears to be designed for mean-reversion trading using RSI, with additional trend-following elements from the MOST indicator. The combination of multiple indicators suggests it's looking for confluence between different technical factors before generating signals.
Note that this is quite a complex script with many components, which could lead to overfitting if not properly tested. The effectiveness would depend heavily on the chosen parameters and market conditions.
Mean Reversion Indicator + VIX MRI + VIX
A valid and good indicator to give you an analysis of the chart. Could be used for MRI and VIX chart analysis.
CryptoPulse CipherCryptoPulse Cipher is a sophisticated trading indicator designed for cryptocurrency markets, combining multiple technical analysis tools to provide actionable buy/sell signals, trend reversal warnings, support/resistance zones, and divergence detection. It integrates an EMA Ribbon, WaveTrend Oscillator, Money Flow Index (MFI), VWAP, and custom divergence logic to offer traders a comprehensive view of market dynamics. This closed-source script is optimized for scalping and swing trading on volatile crypto assets, with a focus on clarity and usability.
What It Does:
The script overlays the price chart with:
EMA Ribbon: Visualizes market trend direction using eight Fibonacci-based Exponential Moving Averages (EMAs).
WaveTrend Oscillator: Identifies overbought/oversold conditions and generates buy/sell signals based on momentum crossovers.
Money Flow Index (MFI): Measures buying/selling pressure to filter signals and detect overbought/oversold zones.
VWAP: Provides a volume-weighted price anchor for intraday trend confirmation.
Trend Reversal Warnings: Flags potential reversals with blue triangles based on momentum shifts.
Support/Resistance Zones: Draws dynamic pivot-based zones to highlight key price levels.
Divergence Detection: Identifies bullish and bearish divergences between price and MFI for early reversal signals.
How It Works:
The script combines these components into a cohesive system with the following logic:
EMA Ribbon (Fibonacci EMAs): Uses EMAs with periods 8, 13, 21, 34, 55, 89, 144, and 233 (Fibonacci numbers) to assess trend direction. The ribbon turns green in bullish markets (shortest EMA > longest EMA) and red in bearish markets, providing a visual trend filter.
WaveTrend Oscillator: Calculates momentum using a modified Elder’s Impulse system, where the price average (HLC3) is smoothed with EMAs to compute a Channel Index (CI). Buy signals (green dots) occur when WaveTrend crosses up in oversold territory (below -53), and sell signals (red dots) occur when it crosses down in overbought territory (above +53). The oscillator is scaled to the price chart for visual alignment.
MFI: Complements WaveTrend by filtering signals. Buy signals require MFI < 80 (not overbought), and sell signals require MFI > 20 (not oversold). MFI is also scaled to the chart for clarity.
VWAP: Acts as a dynamic support/resistance level, calculated as the volume-weighted average price since the session start. It’s plotted prominently to guide trade entries/exits.
Trend Reversal Warnings: Detects momentum slowdowns by comparing the current price change to a 14-period SMA of price changes. A blue triangle appears when momentum weakens, signaling a potential reversal.
Support/Resistance Zones: Identifies pivot highs/lows (5 bars left, 5 bars right) and projects dashed lines forward 20 bars to mark key levels. These zones adapt dynamically to recent price action.
Divergence Detection: Compares price pivot highs/lows with MFI pivot highs/lows (3 bars left, 3 bars right). Bullish divergence occurs when price makes a lower low but MFI makes a higher low, signaling potential upside. Bearish divergence occurs when price makes a higher high but MFI makes a lower high, signaling potential downside. Divergences are marked with lines and labels.
Why This Combination?
The script’s originality lies in its integration of momentum (WaveTrend), volume (MFI and VWAP), trend (EMA Ribbon), and divergence analysis into a unified system tailored for cryptocurrencies. Unlike standalone indicators, CryptoPulse Cipher:
Filters WaveTrend signals with MFI to reduce false positives in choppy markets.
Uses Fibonacci-based EMAs for trend context, aligning with crypto market cycles.
Scales WaveTrend and MFI to the price chart, making them visually intuitive without cluttering a separate panel.
Detects divergences with precise pivot logic, enhancing reversal prediction.
Projects dynamic support/resistance zones, which are critical in volatile markets.
This mashup is purposeful: each component addresses a specific aspect of market analysis (trend, momentum, volume, reversals), and their synergy provides a robust framework for decision-making.
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.
Advanced Volatility Activator [AlgoFuego]🔵 Advanced Volatility Activator (AVA)
The Advanced Volatility Activator (AVA) is an innovative technical analysis indicator designed to help traders identify and react to market volatility.
By blending adaptive volatility metrics with a refined moving‑average algorithm, the indicator offers traders a dynamically responsive framework for trend identification.
🔸Dynamic Volatility Analysis
The indicator examines the high and low prices of each candle to evaluate market movements.
It categorizes price movements into different states (e.g., outside bars, inside bars, higher highs, lower lows) to provide insight into market conditions, then calculates price averages for bars that make a new high or low price.
This moving average serves as a baseline for volatility adjustments, aligning the tool with well-established technical indicators.
🔸 Customizable Sensitivity
Through the input, users can fine‑tune how responsive the moving average is to price fluctuations.
A higher sensitivity setting makes the moving average less responsive to rapid market changes, enabling the indicator to adapt to different market environments and trading styles.
🔸Integrated Multi-Timeframe Table
A distinctive feature of this indicator is its integrated table display, which provides a summary signal across multiple time frames.
This table serves as a quick reference guide for traders to compare market trends across different time periods.
This at‑a‑glance view empowers traders to confirm trend direction from intraday to higher‑timeframe perspectives without switching charts.
🔹 How It Works
1. Initial Setup
The indicator defines two baseline values: the current high and the current low.
These serve as reference points for all subsequent price comparisons and moving‑average calculations.
2. Volatility Smoothing
The indicator calculates the smoothed volatility range using an exponential moving average (EMA) of the absolute differences between successive prices.
This helps smooth out the erratic price movements of the simple moving average and improves the measurement of volatility.
3. Trend Probability Calculation
A Simple Moving Average (SMA) of the combined high‑low series is calculated.
That SMA is then compared against the smoothed volatility range from step 2 to estimate how likely it is that a genuine trend is forming.
4. Directional Counters
Two counters: bullish and bearish, track consecutive moves up or down.
Whichever counter increases more rapidly signals the prevailing market bias.
5. Drawing the Trend Line
Finally, the code generates a trend line that dynamically adapts to real‑time volatility.
The result is a clear, responsive visual that mirrors actual market behavior.
🔹 Visual & Table Customization
Color Coding
Upward and downward trends are easily distinguished by customizable color settings, enhancing visual clarity for decision-making.
Upward Movements
A lighter blue hue indicates an upward trend.
Downward Movements
An orange hue indicates a downward trend.
Candlestick Highlighting
The indicator plots candlesticks with the same trendline color so that the chart maintains a consistent visual theme, thus reinforcing the signal's clarity.
Table Configuration and Customization
This additional layer of information helps traders compare signals between different time horizons, which is essential for a comprehensive multi-timeframe strategy.
The code supports multiple user-defined timeframes (e.g., 15, 60, 240, and 480 minutes).
For each timeframe, the indicator queries the market data to determine if the signal is Bullish, Bearish, or No signal.
Visibility and Positioning
The table can be toggled on or off via a user input. Its position on the chart is also customizable, ranging from top-right to bottom-left, allowing flexibility based on personal chart layouts.
Color Settings
The table cells are populated with both the timeframe labels and the corresponding market signal text (e.g., "Bullish", "Bearish", "No signal"). Background colors for each signal cell change dynamically depending on the current state, making it easy for traders to assess market sentiment at a glance.
Users can adjust colors for the background, borders, and text of the table itself.
Moreover, specific colors are set to denote bullish signals (blue), bearish signals (orange), or no signal (default dark theme).
🔹 How to use
Before entering long trades, ensure that prices are above the Advanced Volatility Activator Line and the line indicates an upward movement.
🔹 Practical Benefits
Enhanced Market Awareness
By highlighting periods of low volatility, the indicator can serve as an early warning system for potential market reversals or breakouts.
The supplementary table offers a high-level overview of these signals across multiple timeframes, which aids in confirming trends or reversals.
Customizable and Versatile
Both the indicator and the table are highly customizable. Traders can fine-tune the sensitivity, adjust periods for the moving average, select color schemes, and choose their preferred timeframes, all allowing for a tool that adapts to various trading styles and market conditions.
Intuitive Visualization
The clearly defined color-coded trendline provides an immediate visual cue, making it easier for traders to interpret market trends at a glance.
Whether you are a short-term trader needing precise entry and exit points or a multi-timeframe analyst looking for broader trend confirmation, this indicator provides valuable insights on both a micro- and macro-level.
🔹 Disclosure
While this indicator is useful and ideally suited for active traders who require precise, customizable signals to navigate rapidly changing markets, it's critical to understand that past performance is not necessarily indicative of future results, and there are many more factors that go into being a profitable trader.
DOGE/USDT 1 DAY▶︎ STRATEGY
This invite‑only script combines three classic building blocks to capture short‑term swings on DOGE/USDT (1‑DAY):
1⃣ Ultra‑Fast EMA for immediate trend bias
2⃣ Momentum filter based on Rate‑of‑Change ; entries only when ROC confirms the EMA direction
3⃣ Dynamic risk layer using ATR . The script places the stop from entry and trails partial profits.
▶︎ BEST SETTINGS
Pair: DOGE/USDT Time‑frame: 1‑Day
Default commission = 0.10 % per side, slippage = 3 ticks.
Settings may be optimised for other pairs/exchanges.
▶︎ ACCESS
Click “Request access” or purchase any plan at
whop.com to receive auto‑access within minutes.
▶︎ DISCLAIMER
Past performance does not guarantee future results. Trade responsibly and size positions according to your own risk tolerance.
v1.0 – 18 Apr 2025
NexAlgo AI with Dynamic TP/SLThe NexAlgo Indicator combines a Gaussian kernel regression engine with adaptive volatility thresholds to generate clear, data‑driven trade signals and built‑in risk levels. It predicts the next bar’s price relative to a simple moving average, then measures the average deviation between actual and forecasted values to form dynamic bands. Breakouts beyond these bands, aligned with the prediction’s direction, produce buy or sell signals directly on your chart.
How It Works & What You’ll See
Kernel Regression Forecast: A rolling “lookback” window builds a Gaussian similarity matrix of recent prices. This matrix is used to project the next price, smoothing around a moving average.
Adaptive Volatility Bands: The indicator computes the mean absolute error between actual and predicted prices, multiplies it by your chosen volatility factor, and plots upper and lower bands.
Signal Triggers: When price closes above the upper band while the prediction is rising, a green “BUY” label appears; when price closes below the lower band as the forecast falls, a red “SELL” label is shown.
Automatic SL/TP Levels: After each signal, the script scans recent swing highs/lows and applies an ATR buffer. Stop‑loss is set conservatively at the more protective of these levels, while take‑profit is calculated by your reward‑to‑risk ratio and capped near the opposite swing extreme.
Customizable Inputs
Lookback Period & Smoothing: Adjust how many bars the regression and volatility calculations use, and tune the noise regularization to suit fast or slow markets.
Volatility Multiplier: Widen or tighten the adaptive bands to control signal frequency and confidence.
Swing Lookback & ATR Options: Define how far back the indicator searches for swing points, and choose between ATR calculation methods.
Reward‑to‑Risk Ratio: Set your preferred multiple of stop‑loss distance for take‑profit targets.
What Makes NexAlgo Different
Hybrid Statistical Approach: Unlike fixed‑period moving averages or standard regression, the Gaussian kernel adapts locally to evolving price patterns and regimes.
Self‑Adjusting Thresholds: Volatility bands derive from prediction errors—so they expand in choppy markets and contract in trending conditions.
Integrated Risk Controls: Automatically calculated stop‑loss and take‑profit levels remove manual guesswork, yet remain grounded in both ATR and price structure.
Trader‑Driven Flexibility: Every parameter—from lookback length to risk ratio—can be dialed in for scalping, swing trading, or longer‑term strategies.
Getting Started
• Apply NexAlgo to your preferred timeframe (5–15 min for intraday scalps, 1 h–4 h for swings, daily for position plays).
• Begin with default settings and gradually adjust lookback and smoothing to balance responsiveness versus noise.
• Experiment with volatility multipliers: tighten in strong trends, widen when markets churn.
• Backtest different ATR buffers and reward ratios to discover your ideal risk‑reward profile.
Rolling VWAP Plus - SH CapitalEnhanced Rolling VWAP Plus
This professional-grade Volume Weighted Average Price (VWAP) indicator combines advanced visualization techniques with multiple analytical tools to provide traders with a comprehensive price analysis system.
Technical Foundation
The indicator calculates VWAP using volume-weighted price action with two distinct methods:
Rolling VWAP: Uses a customizable lookback period for continuous calculation
Anchored VWAP: Resets on specified timeframes (Daily, Weekly, Monthly, Quarterly, Yearly)
Standard deviation bands are calculated using volume-weighted price deviation, creating a volatility envelope around the VWAP. These bands identify potential support and resistance zones where prices may reverse.
Enhanced Features
3D Visualization System
The indicator employs a multi-layer gradient rendering technique to create depth perception in the VWAP bands. This makes it easier to identify price zones and visualize potential breakouts or bounces. The 3D effect uses calculated gradient opacity shifts based on price deviation from the VWAP.
Multi-Timeframe Analysis
The higher timeframe VWAP is calculated separately from the current timeframe, allowing traders to see where significant volume is occurring on multiple timeframes simultaneously. This helps identify key market structure levels that might not be visible on a single timeframe.
Volume Profile Integration
The indicator includes a volume profile visualization that shows volume distribution at price levels, highlighting the Point of Control (POC) where the most trading activity has occurred. This helps traders identify significant support and resistance levels based on actual trading volume.
Signal Generation System
Trading signals are generated using a proprietary algorithm that considers:
Relative price position between bands
Volume confirmation filters
VWAP directional shifts
Standard deviation extremes
The relative position indicator measures where price is trading in relation to the VWAP bands, helping traders identify overbought and oversold conditions.
Key Level Detection
The indicator automatically identifies significant VWAP reversal points and marks them as potential support and resistance levels. These levels are derived from changes in VWAP direction and price interaction with the bands.
How to Use This Indicator
Trend Identification
Price above VWAP = Bullish bias
Price below VWAP = Bearish bias
VWAP slope indicates trend strength
Band width indicates volatility
Support & Resistance
Upper bands act as potential resistance levels
Lower bands act as potential support levels
VWAP itself is often a significant pivot point
Entry & Exit Signals
Crossovers of price with VWAP signal potential trend changes
Bounce from bands in trend direction offers entry opportunities
Price moving beyond outer bands signals potential exhaustion
Volume profile helps confirm significant price levels
Risk Management
The enhanced visibility mode helps traders clearly see all elements of the indicator, even on dark backgrounds or crowded charts, ensuring critical trading signals are not missed.
This indicator combines volume-based, price-based, and volatility-based analysis into a single visual framework, giving traders comprehensive market insight without overwhelming the chart with multiple indicators.
Disclaimer
This tool is for informational and educational purposes only. It does not guarantee future performance and should not be considered financial advice. Always perform your own due diligence and apply proper risk management. Historical performance does not ensure future results.
Exponential Trend [AlgoAlpha]OVERVIEW
This script plots an adaptive exponential trend system that initiates from a dynamic anchor and accelerates based on time and direction. Unlike standard moving averages or trailing stops, the trend line here doesn't follow price directly—it expands exponentially from a pivot determined by a modified Supertrend logic. The result is a non-linear trend curve that starts at a specific price level and accelerates outward, allowing traders to visually assess trend strength, persistence, and early-stage reversal points through both base and volatility-adjusted extensions.
CONCEPTS
This indicator builds on the idea that trend-following tools often need dynamic, non-static expansion to reflect real market behavior. It uses a simplified Supertrend mechanism to define directional context and anchor levels, then applies an exponential growth function to simulate trend acceleration over time. The exponential growth is unidirectional and resets only when the direction flips, preserving trend memory. This method helps avoid whipsaws and adds time-weighted confirmation to trends. A volatility buffer—derived from ATR and modifiable by a width multiplier—adds a second layer to indicate zones of risk around the main trend path.
FEATURES
Exponential Trend Logic : Once a directional anchor is set, the base trend line accelerates using an exponential formula tied to elapsed bars, making the trend stronger the longer it persists.
Volatility-Adjusted Extension : A secondary band is plotted above or below the base trend line, widened by ATR to visualize volatility zones, act as soft stop regions or as a better entry point (Dynamic Support/Resistance).
Color-Coded Visualization : Clear green/red base and extension lines with shaded fills indicate trend direction and confidence levels.
Signal Markers & Alerts : Triangle markers indicate confirmed trend reversals. Built-in alerts notify users of bullish or bearish direction changes in real-time.
USAGE
Use this script to identify strong trends early, visually measure their momentum over time, and determine safe areas for entries or exits. Start by adjusting the *Exponential Rate* to control how quickly the trend expands—the higher the rate, the more aggressive the curve. The *Initial Distance* sets how far the anchor band is placed from price initially, helping filter out noise. Increase the *Width Multiplier* to widen the volatility zone for more conservative entries or exits. When the price crosses above or below the base line, a new trend is assumed and the exponential projection restarts from the new anchor. The base trend and its extension both shift over time, but only reset on a confirmed reversal. This makes the tool especially useful for momentum continuation setups or trailing stop logic in trending markets.
30 ATR NormalizedThis indicator shows the normalized ATR of the top 30 NASDAQ companies.
The main purpose of the indicator is to identify which company is primarily driving the NASDAQ, anticipate increases or decreases in market volume, or spot correlations and divergences.
Essentially, this indicator is a composite ATR.
This indicator is designed to be used in combination with other similar ones I've published, which monitor the RSI, CCI, MACD, etc., of the top 30 NASDAQ companies
FVG# Fair Value Gap (FVG) Indicator
## Overview
The Fair Value Gap (FVG) indicator is a technical analysis tool designed to identify potential areas of price imbalance in the market. These imbalances, known as "fair value gaps," represent discontinuities in price movement where supply and demand were significantly imbalanced, potentially creating zones that price may return to in the future. This indicator was developed by Michele Amori for TradingView and operates as an overlay on price charts.
## Core Concept
Fair Value Gaps occur when price makes a significant move in one direction, leaving behind an area where no trading occurred. Specifically:
- **Bullish FVG**: Forms when the low of the current candle is higher than the high of the candle two positions back, creating an upward gap in price movement.
- **Bearish FVG**: Forms when the high of the current candle is lower than the low of the candle two positions back, creating a downward gap in price movement.
These gaps represent potential "fair value" areas that price may revisit to establish equilibrium between buyers and sellers.
## Visual Representation
The indicator displays FVGs in the following manner:
1. **Bullish FVGs**:
- Represented by semi-transparent green boxes
- Extend from the high of the candle two positions back to the low of the current candle
- Include a dashed green center line representing the middle point of the gap
2. **Bearish FVGs**:
- Represented by semi-transparent red boxes
- Extend from the low of the candle two positions back to the high of the current candle
- Include a dashed red center line representing the middle point of the gap
All FVG boxes and their center lines are extended to the right of the chart, making them visible until they are filled or invalidated.
## Invalidation Logic
The indicator automatically removes FVGs when they are considered filled or invalidated:
- **Bullish FVGs**: Removed when the closing price falls below the bottom of the FVG box, indicating that the upward gap has been filled.
- **Bearish FVGs**: Removed when the closing price rises above the top of the FVG box, indicating that the downward gap has been filled.
This removal only occurs after a candle is confirmed (fully formed), ensuring that premature invalidation doesn't occur during candle formation.
## Technical Implementation
The indicator uses arrays to store and manage the FVG boxes and their center lines. Key features of the implementation include:
- Creation of new FVGs only after candle confirmation
- Dynamic addition and removal of visual elements
- Transparent coloring (80% transparency) for better chart visibility
- Dashed center lines with less transparency (25%) to highlight the middle point of gaps
Relative ATRThis indicator enhances the standard Average True Range (ATR) by providing context about current volatility relative to its recent historical average. It highlights periods where ATR is significantly higher or lower than its own recent norm.
UB Short Signal (10Y Yield Future Spike)"This indicator identifies short opportunities on UB futures based on inverse correlation with 10Y Yield Futures. A macro trading tool to be used with additional confirmations."
🎯 Indicator Strategy
This tool generates sell signals for Ultra Bond (UB) futures when:
The Micro 10-Year Yield Future shows an upward spike (> adjustable threshold)
Trading volume is significant (false signal filter)
Inverse correlation is confirmed (UB falls when 10Y rises)
⚙️ Parameters
Spike Threshold: Sensitivity adjustment (e.g., 0.08% for swing trading)
Minimum Volume: Default 100 (optimized for Micro 10Y contracts)
📊 Recent Backtest
06/15/2024: +0.10% spike → UB dropped -0.3% within 15 minutes
06/18/2024: Valid signal post-CPI release
⚠️ Disclaimer
Analytical tool only – not financial advice
Must be combined with proper risk management
RSI + SuperTrend Filter Strategy (45m BTCUSDT)🧠 Strategy Breakdown: RSI + SuperTrend Filter (45m BTCUSDT)
This strategy is built on a simple yet powerful principle: don’t fight the trend — and never ignore momentum exhaustion.
At its core, this setup looks for RSI-based reversal entries, but only when price action aligns with the underlying trend structure, defined by a modified SuperTrend. This combo filters out a large chunk of noise you typically get with RSI alone on lower timeframes.
📊 How It Works
Longs trigger when RSI crosses up from oversold and SuperTrend confirms a bullish bias.
Shorts trigger when RSI crosses down from overbought and SuperTrend confirms a bearish structure.
Each entry is paired with a tight SL (1%) and dynamic TP (1.5%), offering favorable risk:reward setups.
The script includes clean chart visuals — background zones, SL/TP lines, and real-time trend bands — built for clarity and decision speed.
⚙️ Why It Works
Too many RSI strategies reverse blindly — this doesn’t. By combining RSI oversold/overbought conditions with a directional SuperTrend filter, you get higher-quality entries, especially during high-volatility phases.
This is not designed for sideways markets — it’s meant to catch clean swings in structured trends. The 45m TF adds breathing room for better signal quality while still allowing for decent trade frequency.
📈 Backtest Snapshot (3m logic on 45m BTCUSDT)
💰 +213,885 USDT total P&L
🧠 239 trades, with solid coverage across sessions
📉 15% max drawdown
⚖️ Profit factor: 1.12
🔁 Dynamic execution-ready — ideal for automation or manual confirmations
🔧 Built For Traders Who:
Want non-repainting structure they can trust
Prefer mechanical entries with visual context
Are experimenting with automation-ready setups
Need something they can tweak and expand on
🔥 If you're serious about combining clean signals with trend confirmation — this is a solid foundation. Drop a comment if you want the multi-timeframe version or ideas on adding volume-based confirmations.
Zagzag indicatorThis indicator combines three powerful tools—Bollinger Bands, VWAP (Volume Weighted Average Price), and EMA (Exponential Moving Average)—into a single, easy-to-use overlay for your TradingView charts. With customizable settings for each component, you can analyze price volatility, identify trend direction, and spot potential support and resistance levels all at once. The script also includes example buy and sell signals based on the relationship between price, Bollinger Bands, and VWAP, making it a versatile addition to any trader’s toolkit. Inspired by the Trendoscope community, this all-in-one solution streamlines your chart setup and enhances your technical analysis.
Sigma-Level1-Sigma-Level Indicator (for 28 FX Pairs)
This TradingView indicator calculates and visualizes the 1-sigma price projection range for the current FX pair, based on implied volatility (IV) and a user-defined reference price.
🔧 User Inputs
1. Implied Volatility (IV) Selection
You can choose which volatility term to apply:
ON (Overnight)
1W (1 Week)
1M (1 Month)
Each currency pair uses manually entered IV values (in %), grouped by base currency (USD, EUR, GBP, etc.).
www.investing.com
2. Base Price Selection
You can define the price level used as the anchor for the sigma projection:
CurrentPrice — live market price
YesterdayClose — close of the previous day
LastHourClose — close of the last 1-hour candle
LastFriday — weekly close from last Friday
LastMonthClose — close of the previous monthly candle
LastYearClose — close of the previous yearly candle
These values are retrieved using the appropriate timeframe (D, W, M, 12M, or 60 for hourly).
📐 How the Calculation Works
The indicator calculates the 1σ range using this formula:
1σ Range = basePrice × (IV / √N) / 100
Where:
basePrice is the selected anchor price.
IV is the selected implied volatility for the current pair.
N is the number of periods per year, depending on the IV term:
√252 for ON (trading days)
√52 for 1W (weeks)
√12 for 1M (months)
The upper and lower bands are then:
1σ Up = basePrice + range
1σ Down = basePrice - range
These bands are plotted only during the current calendar week.
🖼️ Visual Output
Green Line: 1σ Upper Boundary
Red Line: 1σ Lower Boundary
Labels show the exact 1σ values at the most recent bar
⚠️ Disclaimer
This indicator is for informational and analytical purposes only. It does not constitute financial advice, a trading signal, or a guarantee of future performance. Always perform your own research and consult with a qualified financial advisor before making trading decisions.
PG Mean revision price to vwma and MAsHere's a concise breakdown for your users:
- Selection of Moving Average Type:- Choose VWMA, EMA, or SMA, along with the source (e.g., closing price) and length for the calculation.
- Price-MA Difference Calculation:- Calculates the difference between the closing price and the selected moving average.
- Additional Moving Averages:- Applies three customizable moving averages (MA1, MA2, MA3) to the price-MA difference.
- Dynamic Plotting:- Plots the price-MA difference in red, and overlays the moving averages (blue, orange, purple). MA1 can be dynamically colored red/green based on its trend.
- Zero Reference Line:- Includes a horizontal line at zero for easy visual reference.
This tool helps analyze price trends and deviations for better trading decisions!
TPO Block Szie HelperTPO Assistant Overview
The TPO Assistant is a tool designed to enhance the use of Time-Price Opportunity (TPO) charts by offering dynamic guidance on block size selection based on recent market volatility. It serves as a precision aid in adapting TPO structure to different market conditions, improving both clarity and usability of TPO-based analysis.
Key Functionality
By statistically analyzing the volatility of the past N days, the assistant calculates a recommended block size for the current ticker. This value can be manually entered into the official TPO indicator on TradingView, helping users align the chart resolution with the underlying market’s price behavior.
In markets where price movement elasticity varies significantly, a fixed block size may not offer sufficient resolution. This tool solves that problem by providing an adaptive estimate—guiding users in refining TPO segmentation and supporting better structural interpretations.
Use Cases
Volatility-aware block sizing: Automatically suggests a block size that reflects current market conditions.
TPO merge/split support: Helps refine how TPOs are grouped or separated, depending on market rhythm.
SP (Significant Point) estimation aid: Provides stronger context for defining key levels within the TPO framework.
Benefits
Precision alignment with market behavior: Enhances resolution of TPO charts to better reflect real-time volatility shifts.
Minimizes trial and error: Offers a quantitative starting point for block size decisions, reducing guesswork.
Adaptive and context-sensitive: Useful in both trending and ranging markets, with no need for constant manual adjustments.
Disclaimer
This tool is intended as an analytical aid only and does not constitute financial advice. Market volatility is inherently uncertain, and this assistant should be used in conjunction with a comprehensive trading strategy.
Filtered Stochastic MA🔴 Filtered Stochastic MA (FSM) 🔴
Filtered Stochastic MA (FSM) is an all‑in‑one overlay that combines an adaptive moving average, momentum analysis, and dual volatility bands to give you clear, actionable levels on any chart.
🔧 Core Components
Center MA with “Custom” Filters
Choose from familiar SMAs, EMAs, WMAs, HMAs, RMAs … or select “Custom 1” and “Custom 2” for two proprietary smoothing methods that react gracefully in both trends and chop.
Tune the length to match your style—from fast scalp MAs (10–20) to smoother swing MAs (50+).
Hidden Stochastic Momentum
A built‑in %K/%D oscillator runs quietly under the hood, helping the bands adapt to shifting momentum without cluttering your chart.
Dual SuperTrend‑Style Bands
Band 1 (standard multipliers) hugs the Center MA to mark early support/resistance.
Band 2 (double multipliers) creates a wider envelope for breakout thresholds and over‑extension signals.
Both fade or highlight based on market direction for instant visual cues.
⚙️ Key Settings
Setting Description
MA Type & Length Pick your smoothing style and period.
Stochastic Length Controls momentum sensitivity.
Band Multipliers ATR & StdDev factors for Band 1 (and ×2 for Band 2).
Color Controls Customize colors and opacity for each band and the MA.
Non‑Repainting Lock signals to the previous bar for extra safety.
📈 How to Trade with FSM
1. Trend‑Following Entries
Long when price pulls back toward Support Band 1 in an uptrend (price > Center MA and Support Band 1 is rising).
Short when price rallies into Resistance Band 1 in a downtrend (price < Center MA and Resistance Band 1 is falling).
Example: On a 15 min chart of EUR/USD, set MA = 20 EMA, ATR = 1, StdDev = 1. When price dips to the green Band 1 and then closes back above it, risk a long with stop just below the band.
2. Breakout & Exhaustion Plays
A decisive close above Resistance Band 2 signals a strong breakout. Look to ride the impulse or wait for a retest of Band 2 as support.
Conversely, a break below Support Band 2 can mark trend exhaustion or a reversal opportunity.
Example: On a 1 hour BTCUSD chart with MA = 50 (Custom 1), watch for candle closes beyond the outer fuchsia band—enter on a successful retest for better risk/reward.
3. Mean‑Reversion Scalp Setups
In range or low‑volatility conditions, price swings outside Band 1 often snap back toward the Center MA. Fade these extremes on fast timeframes (1–5 min).
Example: On a 5 min Apple stock chart, when the price spikes above Resistance Band 1 and fails to hold, short toward the Center MA for a quick scalp.
4. Momentum Confirmation
Use the hidden stochastic readings (via the Data Window or your own alerts) to confirm entries:
Favor long setups when momentum is rising.
Avoid shorts when momentum remains strong above 50, even if bands are touched.
FSM brings together smoothing, momentum, and volatility in a single, clean overlay. Adjust the “Custom” filters and band widths to match your market and timeframe, and use the examples above as a starting point to build your own high‑probability setups.
Add “Filtered Stochastic MA (FSM)” to your TradingView chart today and turn noisy data into precision entry and exit zones!
Caution:
This is an educational idea, past performance or what you see on a chart may not be repeatable behavior. Trade at your own risk.
Regards!
Money Flow Pulse💸 In markets where volatility is cheap and structure is noisy, what matters most isn’t just the move — it’s the effort behind it. Money Flow Pulse (MFP) offers a compact, color-coded readout of real-time conviction by scoring volume-weighted price action on a five-tier scale. It doesn’t try to predict reversals or validate trends. Instead, it reveals the quality of the move in progress: is it fading , driving , exhausting , or hollow ?
🎨 MFP draws from the traditional Money Flow Index (MFI), a volume-enhanced momentum oscillator, but transforms it into a modular “pressure readout” that fits seamlessly into any structural overlay. Rather than oscillating between extremes with little interpretive guidance, MFP discretizes the flow into clean, color-coded regimes ranging from strong inflow (+2) to strong outflow (–2). The result is a responsive diagnostic layer that complements, rather than competes with, tools like ATR and/or On-Balance Volume.
5️⃣ MFP uses a normalized MFI value smoothed over 13 periods and classified into a 5-tier readout of Volume-Driven Conviction :
🍆 Exhaustion Inflow — usually a top or blowoff; not strength, but overdrive (+2)
🥝 Active Inflow — supportive of trend continuation (+1)
🍋 Neutral — chop, coil, or fakeouts (0)
🍑 Selling Intent — weakening structure, possible fade setups (-1)
🍆 Exhaustion Outflow — often signals forced selling or accumulation traps (-2)
🎭 These tiers are not arbitrary. Each one is tuned to reflect real capital behavior across timeframes. For instance, while +1 may support continuation, +2 often precedes exhaustion — especially on the lower timeframes. Similarly, a –1 reading during a pullback suggests sell-side pressure is building, but a shift to –2 may mean capitulation is already underway. The difference between the two can define whether a move is tradable continuation or strategic exhaustion .
🌊 The MFI ROC (Rate of Change) feature can be toggled to become a volatility-aware pulse monitor beneath the derived MFI tier. Instead of scoring direction or structure, ROC reveals how fast conviction is changing — not just where it’s headed, but how hard it's accelerating or decaying. It measures the raw Δ between the current and previous MFI values, exposing bursts of energy, fading pressure, or transitional churn .
🎢 Visually, ROC appears as a low-opacity area fill, anchored to a shared lemon-yellow zero line. When the green swell rises, buying pressure is accelerating; when the red drops, flow is actively deteriorating. A subtle bump may signal early interest — while a steep wave hints at an emotional overreaction. The ROC value itself provides numeric insight alongside the raw MFI score. A reading of +3.50 implies strong upside momentum in the flow — often supporting trend ignition. A score of –6.00 suggests rapid deceleration or full exhaustion — often preceding reversals or failed breakouts.
・ MFI shows you where the flow is
・ ROC tells you how it’s behaving
😎 This blend reveals not just structure or intent — but also urgency . And in flow-based trading, urgency often precedes outcome.
🧩 Divergence isn’t delay — it’s disagreement . One of the most revealing features of MFP is how it exposes momentum dissonance — situations where price and flow part ways. These divergences often front-run pivots , traps , or velocity stalls . Unlike RSI-style divergence, which whispers of exhaustion, MFI divergence signals a breakdown in conviction. The structure may extend — but the effort isn’t there.
・ Price ▲ MFI ▼ → Effortless Markup : Often signals distribution or a grind into liquidity. Without rising MFI, the rally lacks true flow participation — a warning of fragility.
・ Price ▼ MFI ▲ → Absorption or Early Accumulation : Price breaks down, but money keeps flowing in — a hidden bid. Watch for MFI tier shifts or ROC bursts to confirm a reversal.
🏄♂️ These moments don’t require signal overlays or setup hunting. MFP narrates the imbalance. When price breaks structure but flow does not — or vice versa — you’re not seeing trend, you’re seeing disagreement, and that's where edge begins.
💤 MFP is especially effective on intraday charts where volume dislocations matter most. On the 1H or 15m chart, it helps distinguish between breakouts with conviction versus those lacking flow. On higher timeframes, its resolution softens — it becomes more of a drift indicator than a trigger device. That’s by design: MFP prioritizes pulse, not position. It’s not the fire, it’s the heat.
📎 Use MFP in confluence with structural overlays to validate price behavior. A ribbon expansion with rising MFP is real. A compression breakout without +1 flow is "fishy". Watch how MFP behaves near key zones like anchored VWAP, MAs or accumulation pivots. When MFP rises into a +2 and fails to sustain, the reversal isn’t just technical — it’s flow-based.
🪟 MFP doesn’t speak loudly, but it never whispers without reason. It’s the pulse check before action — the breath of the move before the breakout. While it stays visually minimal on the chart, the true power is in the often overlooked Data Window, where traders can read and interpret the score in real time. Once internalized, these values give structure-aware traders a framework for conviction, continuation, or caution.
🛜 MFP doesn’t chase momentum — it confirms conviction. And in markets defined by noise, that signal isn’t just helpful — it’s foundational.
High Threshold Volume BarThis indicator appears to identify significant price bars with high probability trading opportunities based on size, volume, and trend strength. Let me break down how it works and explain each parameter to help you understand when to use it for trade entries.
Core Concept
The indicator identifies "significant" price bars that stand out from normal market behavior by measuring:
Bar size (either full range or body)
Volume (optional)
Statistical significance compared to recent history
Trend context
Bar Color Meanings
Color 0 (Bright Blue): Represents high probability bullish signals. These appear when you have significant bars with upward price movement (close > open) that meet all criteria and have reached the minimum consecutive bar threshold.
Color 1 (Bright Pink): Represents high probability bearish signals. These appear when you have significant bars with downward price movement (close < open) that meet all criteria and have reached the minimum consecutive bar threshold.
Color 2 (Dark Teal): Represents significant bullish bars that meet the threshold criteria but haven't yet reached the minimum consecutive count requirement. These are potential early signals.
Color 3 (Dark Burgundy): Represents significant bearish bars that meet the threshold criteria but haven't yet reached the minimum consecutive count requirement. These are potential early signals.
Color 4 (Light Green): Represents normal bullish bars (close > open) that don't meet the significance threshold. These are standard market activity.
Color 5 (Light Red): Represents normal bearish bars (close < open) that don't meet the significance threshold. These are standard market activity.
When multiple criteria align, the indicator highlights potential high probability trading opportunities.
How to Use for Trade Entries
When to Consider Entries
The indicator is most effective when:
(Image mentioned bottom right side of the chart)
Active Signal: The info table shows "ACTIVE" status
High Percentile: The current bar size is in the top 20% of recent bars (>80%)
Consecutive Count: At least your minimum consecutive significant bars have occurred
Strong Trend: Trend strength shows above 20%
Signal Types
The indicator classifies potential setups as:
Bullish Continuation: Strong upward move in an existing uptrend
Bearish Continuation: Strong downward move in an existing downtrend
Bullish Reversal: Strong upward move against a previous downtrend
Bearish Reversal: Strong downward move against a previous uptrend
Trading Approach
For Trend Following:
Enter on bullish_cont signals in uptrends
Enter on bearish_cont signals in downtrends
Use when volatility regime is "NORMAL" or "HIGH"
For Reversal Trading:
Look for bullish_rev signals at support levels
Look for bearish_rev signals at resistance levels
Particularly powerful when Size Percentile is >90%
For Volatility Expansion:
Enter when transitioning from "LOW" to "NORMAL" volatility
Consecutive count of 2-3 often indicates the start of a new move
Visual Signals(AS mentioned in image)
Bar Colors: Bright blue (bullish) or bright pink (bearish) for high probability signals
Background: Blue or pink highlights during significant zones
Table Data: Provides real-time context for the current bar
DEMA Trend Oscillator Strategy📌 Overview
The DEMA Trend Oscillator Strategy is a dynamic trend-following approach based on the Normalized DEMA Oscillator SD.
It adapts in real-time to market volatility with the goal of improving entry accuracy and optimizing risk management.
⚠️ This strategy is provided for educational and research purposes only.
Past performance does not guarantee future results.
🎯 Strategy Objectives
The main goal of this strategy is to respond quickly to sudden price movements and trend reversals,
by combining momentum-based signals with volatility filters.
It is designed to be user-friendly for traders of all experience levels.
✨ Key Features
Normalized DEMA Oscillator: A momentum indicator that normalizes DEMA values on a 0–100 scale, allowing intuitive identification of trend strength
Two-Bar Confirmation Filter: Requires two consecutive bullish or bearish candles to reduce noise and enhance entry reliability
ATR x2 Trailing Stop: In addition to fixed stop-loss levels, a trailing stop based on 2× ATR is used to maximize profits during strong trends
📊 Trading Rules
Long Entry:
Normalized DEMA > 55 (strong upward momentum)
Candle low is above the upper SD band
Two consecutive bullish candles appear
Short Entry:
Normalized DEMA < 45 (downward momentum)
Candle high is below the lower SD band
Two consecutive bearish candles appear
Exit Conditions:
Take-profit at a risk-reward ratio of 1.5
Stop-loss triggered if price breaks below (long) or above (short) the SD band
Trailing stop activated based on 2× ATR to secure and extend profits
💰 Risk Management Parameters
Symbol & Timeframe: Any (AUDUSD 5M example)
Account size (virtual): $3000
Commission: 0.4PIPS(0.0004)
Slippage: 2 pips
Risk per trade: 5%
Number of trades (backtest):534
All parameters can be adjusted based on broker specifications and individual trading profiles.
⚙️ Trading Parameters & Considerations
Indicator: Normalized DEMA Oscillator SD
Parameter settings:
DEMA Period (len_dema): 40
Base Length: 20
Long Threshold: 55
Short Threshold: 45
Risk-Reward Ratio: 1.5
ATR Multiplier for Trailing Stop: 2.0
🖼 Visual Support
The chart displays the following visual elements:
Upper and lower SD bands (±2 standard deviations)
Entry signals shown as directional arrows
🔧 Strategy Improvements & Uniqueness
This strategy is inspired by “Normalized DEMA Oscillator SD” by QuantEdgeB,
but introduces enhancements such as a two-bar confirmation filter and an ATR-based trailing stop.
Compared to conventional trend-following strategies, it offers superior noise filtering and profit optimization.
✅ Summary
The DEMA Trend Oscillator Strategy is a responsive and practical trend-following method
that combines momentum detection with adaptive risk management.
Its visual clarity and logical structure make it a powerful and repeatable tool
for traders seeking consistent performance in trending markets.
⚠️ Always apply appropriate risk management. This strategy is based on historical data and does not guarantee future results.