Market Sentiment Index US Top 40 [Pt]▮Overview
Market Sentiment Index US Top 40 [Pt} shows how the largest US stocks behave together. You pick one simple measure—High Low breakouts, Above Below moving average, or RSI overbought/oversold—and see how many of your chosen top 10/20/30/40 NYSE or NASDAQ names are bullish, neutral, or bearish.
This tool gives you a quick view of broad-market strength or weakness so you can time trades, confirm trends, and spot hidden shifts in market sentiment.
▮Key Features
► Three Simple Modes
High Low Index: counts stocks making new highs or lows over your lookback period
Above Below MA: flags stocks trading above or below their moving average
RSI Sentiment: marks overbought or oversold stocks and plots a small histogram
► Universe Selection
Top 10, 20, 30, or 40 symbols from NYSE or NASDAQ
Option to weight by market cap or treat all symbols equally
► Timeframe Choice
Use your chart’s timeframe or any intraday, daily, weekly, or monthly resolution
► Histogram Smoothing
Two optional moving averages on the sentiment bars
Markers show when the faster average crosses above or below the slower one
► Ticker Table
Optional on-chart table showing each ticker’s state in color
Grid or single-row layout with adjustable text size and color settings
▮Inputs
► Mode and Lookback
Pick High Low, Above Below MA, or RSI Sentiment
Set lookback length (for example 10 bars)
If using Above Below MA, choose the moving average type (EMA, SMA, etc.)
► Universe Setup
Market: NYSE or NASDAQ
Number of symbols: 10, 20, 30, or 40
Weights: on or off
Timeframe: blank to match chart or pick any other
► Moving Averages on Histogram
Enable fast and slow averages
Set their lengths and types
Choose colors for averages and markers
► Table Options
Show or hide the symbol table
Select text size: tiny, small, or normal
Choose layout: grid or one-row
Pick colors for bullish, neutral, and bearish cells
Show or hide exchange prefixes
▮How to Read It
► Sentiment Bars
Green means bullish
Red means bearish
Near zero means neutral
► Zero Line
Separates bullish from bearish readings
► High Low Line (High Low mode only)
Smooth ratio of highs versus lows over your lookback
► MA Crosses
Fast MA above slow MA hints rising breadth
Fast MA below slow MA hints falling breadth
► Ticker Table
Each cell colored green, gray, or red for bull, neutral, or bear
▮Use Cases
► Confirm Market Trends
Early warning when price makes highs but breadth is weak
Catch rallies when breadth turns strong while price is flat
► Spot Sector Rotation
Switch between NYSE and NASDAQ to see which group leads
Watch tech versus industrial breadth to track money flow
► Filter Trade Signals
Enter longs only when breadth is bullish
Consider shorts when breadth turns negative
► Combine with Other Indicators
Use RSI Sentiment with trend tools to spot overextended moves
Add volume indicators in High Low mode for breakout confirmation
► Timeframe Analysis
Daily for big-picture bias
Intraday (15-min) for precise entries and exits
Indicadores e estratégias
Renko Trend Reversal StrategyThis Pine Script implements a simple Renko-based trend reversal trading strategy for TradingView. Here’s what it does, broken down clearly:
🔍 Purpose
The script is a strategy (not just an indicator) designed to simulate trading based on Renko-style trend changes, using smoothed price data to detect entries and exits.
🧠 How It Works
1. Trend Detection Using SMAs
It uses two simple moving averages (SMAs) to simulate a Renko-like trend signal:
renko_trend = ta.sma(close, 2) > ta.sma(close, 10) ? 1 : -1
If the short-term SMA (2) is above the long-term SMA (10), the trend is considered bullish (1).
If below, it's bearish (-1).
2. Trend Reversal Detection
A trend change is detected using:
trend_change = ta.change(renko_trend)
It checks if the renko_trend has flipped since the previous candle.
3. Trade Entry Conditions
A long trade is entered when the trend changes to bullish.
A short trade is entered when the trend changes to bearish.
if long_condition
strategy.entry("Long", strategy.long)
if short_condition
strategy.entry("Short", strategy.short)
4. Exit Conditions
Exits are handled using a trailing stop:
strategy.exit(..., trail_points = 50, trail_offset = 20)
A trailing stop loss of 50 points is used, activating only after the price moves 20 points in favor of the trade.
📈 Visualization
It plots the current trend (1 or -1) on the chart as a blue line, which helps you see trend direction changes visually.
⚙️ Strategy Settings
Uses 10% of equity per trade (default_qty_value = 10).
Works on regular candlestick charts, but mimics a Renko-style trend-following behavior.
✅ Summary
This strategy:
Enters trades on trend reversals based on short-term vs. long-term SMA crossover.
Uses trailing stops for exits.
Mimics Renko behavior without using real Renko bricks—just SMA-based smoothing.
Williams %R Multi-Timeframe Signal SystemThe Trend Top and Bottom indicator is used to determine peaks and troughs.
Hybrid Swing/Day Alert System - PLATINUM EditionThis indicator is a complete trading assistant designed for crypto swing and day traders, built to identify high-probability long and short setups based on a multi-confirmation system.
Strategy Logic
The system scans and confirms entries only when 6 major confluences align:
1. EMA Trend: Price is above or below the EMA 9, 21, and 200 (bullish or bearish trend).
2. RSI Zone: RSI(14) is between 40-60 (ideal reversal zone).
3. Volume Confirmation: Volume is declining on pullback and then spikes.
4. Accumulation/Distribution: A/D line rising (for longs) or falling (for shorts).
5. Fibonacci Pullback Zone: Automatic detection of swing high/low and checks if price is inside the golden zone (0.5-0.618).
Built-In Alerts
- Long Setup Confirmed - Short Setup Confirmed - Setup Forming: Monitor
Conclusion
This script is ideal for disciplined traders who value confluence-based entries, risk/reward logic, and trend-aligned trades. Perfect for semi-automated trading via alerts or manual execution.6. Candle Pattern: Bullish (hammer, doji, engulfing) or Bearish (rejection wick, engulfing, doji).
Visual Features
- Long Entry: Green square
- Short Entry: Red triangle
- Pre-Signal Alert: Blue circle (confluence forming)
- Dynamic Table: Displays all 6 confirmations in real time
- Fibonacci Zones: Auto-plotted long/short retracement zones
- Customizable: Turn on/off alerts, overlays, and direction filters
Best Use Cases
- 4H/Daily: Trend confirmation
- 1H: Entry execution
- 15min: Scalping (use cautiously)
- Works great with BTC, ETH, SOL, XAU, and meme coins
[blackcat] L2 Market Risk MeterOVERVIEW
The L2 Market Risk Meter is designed to evaluate market conditions using various technical indicators including Moving Averages (MA), Moving Average Convergence Divergence (MACD), and Bollinger Bands 📈🔍. By analyzing these elements, the script helps traders identify potential buying opportunities and assess the overall market sentiment more effectively. This comprehensive approach aids in making informed trading decisions by providing clear visual representations of critical market factors 🚀💸.
Key components include the calculation of short-term and long-term moving averages, MACD lines, and Bollinger Bands, which are then used to plot histograms and labels directly on the chart. These visual cues assist traders in quickly interpreting complex market data, thereby enhancing their ability to navigate volatile markets and capitalize on emerging trends ✅✨.
FEATURES
Advanced Technical Analysis:
Utilizes Short and Long Moving Averages (MAs) to capture different trend durations.
Implements MACD for detecting changes in the strength, direction, momentum, and duration of a trend.
Incorporates Bollinger Bands to measure volatility and provide dynamic support/resistance levels.
Comprehensive Visualization:
Generates colored histograms representing positive and negative MACD values.
Displays labels indicating "Safe," "Risk," and "Buy" signals at crucial points on the chart.
Flexible Settings:
Allows customization of the short_ma_period and long_ma_period to tailor the analysis to individual trading styles or asset types.
Provides configurable colors and styles for histograms and labels to suit personal preferences.
Real-Time Feedback:
Updates dynamically as new price data becomes available, ensuring timely insights.
Facilitates rapid identification of shifts in market conditions through clear graphical outputs.
HOW TO USE
Adding the Indicator:
Begin by adding the L2 Market Risk Meter to your chart on TradingView. You can do this via the "Pine Editor" located at the bottom of the screen. Simply copy-paste the script into the editor and click "Add to Chart."
Configuring Parameters:
Adjust the short_ma_period and long_ma_period inputs based on your preferred timeframes and strategies. For example, shorter periods will react faster but may be noisier, while longer periods offer smoother trends but slower reactions.
Interpreting Histograms:
Monitor the plotted histograms closely:
Positive Values: Represent bullish momentum where the closing prices are higher than the moving average.
Negative Values: Suggest bearish pressure when the closing prices fall below the moving average.
Understanding Labels:
Pay attention to generated labels for actionable insights:
"Safe" Zone: Appears when the price crosses from below to above the lower Bollinger Band, suggesting reduced risk.
"Risk" Zone: Indicates heightened caution if the price breaches upward from below the upper Bollinger Band.
"Buy" Signal: Triggered under stringent bullish conditions combining all predefined criteria, signaling an opportune moment to enter long positions.
Integrating with Other Tools:
Use the L2 Market Risk Meter alongside other technical studies and fundamental analyses to corroborate findings and strengthen your trading strategy.
Regular Review:
Periodically revisit and tweak your parameters and interpretations in light of changing market environments and performance evaluations.
LIMITATIONS
Dependency on Historical Data: Since the indicator relies extensively on historical price movements, its predictions about future trends should be viewed cautiously.
Not Standalone Solution: Like any other tool, it does not guarantee profitability and must be part of a holistic trading plan that includes multiple confirmation methods.
Parameter Sensitivity: Optimal performance depends greatly on selecting appropriate MA period lengths; improper choices could lead to misleading signals.
Volatility Assumptions: The effectiveness of Bollinger Bands varies across different market conditions, especially during low volatility phases where bands might fail to expand significantly.
NOTES
Understanding individual components such as MAs, MACDs, and Bollinger Bands is essential before fully depending on this script's output.
Always backtest any new strategy incorporating this meter thoroughly against diverse market scenarios to gauge reliability.
Consider employing supplementary filters like volume spikes or candlestick patterns to validate signals further.
Be mindful of sudden news events or economic releases impacting asset prices independently of underlying trends highlighted here.
THANKS
A big thank you goes out to fellow members of the TradingView community who have contributed invaluable feedback and suggestions throughout the development process of this indicator 🙏. Your input has been instrumental in refining and improving the functionality and usability of the L2 Market Risk Meter. Continue sharing your experiences so we can collectively enhance our trading capabilities!
ICT iFVG Detector and Alert [by ote618]Description
This script detects ICT - fair value gaps (FVG) formed by price gaps between Candle 1 and Candle 3, then monitors the next 5 candles for an inverse fair value gap (iFVG).
What It Detects
Bullish FVG: When Candle 1 high is below Candle 3 low (BISI)
Bearish FVG: When Candle 1 low is above Candle 3 high (SIBI)
Once an FVG is detected, the script checks the next 5 candles:
A Bullish FVG becomes a Bearish IFVG if price closes below Candle 1 high
A Bearish FVG becomes a Bullish IFVG if price closes above Candle 1 low
Only the first bar that validates the FVG triggers the transition to an IFVG.
Visual Output
A shaded rectangle is plotted to mark the original FVG zone (from Candle 1 to Candle 3)
Color-coded:
Red for Bearish IFVG (validated Bullish IG)
Green for Bullish IFVG (validated Bearish IG)
The rectangle extends from Candle 1 to the validating bar
Alerts
You can receive alerts when an FVG becomes an IFVG:
Configurable to fire only on selected timeframes (1m, 5m, 15m, 60m)
Alerts include the direction and the chart timeframe
Settings
Enable Alerts For Timeframe: Choose which timeframe(s) trigger alerts
This tool helps traders identify inverse FVGs (iFVG), a useful ICT concept.
Rally Sweep ReversalThis indicator identifies rallies into a sweep to identify liquidity runs into key levels which often lead to reversals. I personally like prior day high/low and overnight high/low as my key levels. The signal should happen after sweeping the level, not before.
Koncorde Simplificado🔍 KONKORDE Indicator – Smart Volume Analysis
It detects activity from smart money (institutions) and retail traders, combining volume, trend, and oscillators to highlight accumulation, distribution, and potential market traps.
📊 Perfect for traders looking to confirm entries or exits using volume behavior and smart money movement.
✅ Features:
Visual detection of institutional buying/selling.
Retail trader activity tracking.
Noise filtering with smooth signal processing.
Works across all timeframes.
⚠️ Reminder: No indicator guarantees results. Use it as a supporting tool within a well-defined strategy.
💬 If you find it useful, leave a comment or share it!
🔍 Indicador KONKORDE – Análisis de Volumen Inteligente
Detecta la actividad de las manos fuertes (institucionales) y las manos débiles (retail) combinando volumen, tendencia y osciladores para identificar zonas de acumulación, distribución y posibles engaños del mercado.
📊 Ideal para traders que buscan confirmar entradas o salidas basándose en la acción del volumen y el comportamiento del dinero inteligente.
✅ Funciones:
Detección visual de compras/ventas institucionales.
Comportamiento de minoristas (retail).
Filtrado de ruido con suavizado inteligente.
Compatible con cualquier marco temporal.
⚠️ Recuerda: ningún indicador garantiza resultados. Úsalo como complemento dentro de una estrategia bien definida.
💬 Si te resulta útil, ¡déjame un comentario o compártelo!
Dynamic Trade Signal Validator (DTSV)The Dynamic Trade Signal Validator (DTSV) is designed to filter false trade signals while generating reliable, frequent trade opportunities. False signals, which lead to unprofitable trades, often occur in choppy or low-momentum markets. The DTSV combines Hull Moving Average (HMA) crossovers, Average True Range (ATR) breakout confirmation, and MACD histogram momentum filtering to ensure signals align with trend, volatility, and momentum, making it ideal for day trading or swing trading across assets like stocks, forex, or cryptocurrencies.
How It Works
The DTSV uses three components to validate trade signals, balancing frequency and reliability:
HMA Crossover for Trend Direction:
Two HMAs (default: 9-period fast, 21-period slow) detect trend changes. A buy signal triggers when the fast HMA crosses above the slow HMA (bullish), and a sell signal when it crosses below (bearish). HMAs reduce lag compared to traditional MAs, enabling more responsive trend detection.
ATR Breakout Confirmation:
The 14-period ATR ensures significant price movement by requiring the bar’s range (high minus low) to exceed the ATR multiplied by 1.0 (adjustable). This confirms volatility, reducing false signals in stagnant markets.
MACD Histogram Momentum Filter:
The MACD (default: 12, 26, 9) histogram confirms momentum. Buy signals require a positive histogram (bullish momentum), and sell signals need a negative histogram (bearish momentum), ensuring directional strength.
Signal Generation
Buy signals (green triangles below bars) occur when a bullish HMA crossover, ATR breakout, and positive MACD histogram align. Sell signals (red triangles above bars) require a bearish crossover, ATR breakout, and negative histogram. This triple confirmation minimizes false trades while maintaining frequent signals.
SuperTrade ST1 StrategyOverview
The SuperTrade ST1 Strategy is a long-only trend-following strategy that combines a Supertrend indicator with a 200-period EMA filter to isolate high-probability bullish trade setups. It is designed to operate in trending markets, using volatility-based exits with a strict 1:4 Risk-to-Reward (R:R) ratio, meaning that each trade targets a profit 4× the size of its predefined risk.
This strategy is ideal for traders looking to align with medium- to long-term trends, while maintaining disciplined risk control and minimal trade frequency.
How It Works
This strategy leverages three key components:
Supertrend Indicator
A trend-following indicator based on Average True Range (ATR).
Identifies bullish/bearish trend direction by plotting a trailing stop line that moves with price volatility.
200-period Exponential Moving Average (EMA) Filter
Trades are only taken when the price is above the EMA, ensuring participation only during confirmed uptrends.
Helps filter out counter-trend entries during market pullbacks or ranges.
ATR-Based Stop Loss and Take Profit
Each trade uses the ATR to calculate volatility-adjusted exit levels.
Stop Loss: 1× ATR below entry.
Take Profit: 4× ATR above entry (1:4 R:R).
This asymmetry ensures that even with a lower win rate, the strategy can remain profitable.
Entry Conditions
A long trade is triggered when:
Supertrend flips from bearish to bullish (trend reversal).
Price closes above the Supertrend line.
Price is above the 200 EMA (bullish market bias).
Exit Logic
Once a long position is entered:
Stop loss is set 1 ATR below entry.
Take profit is set 4 ATR above entry.
The strategy automatically exits the position on either target.
Backtest Settings
This strategy is configured for realistic backtesting, including:
$10,000 account size
2% equity risk per trade
0.1% commission
1 tick slippage
These settings aim to simulate real-world conditions and avoid overly optimistic results.
How to Use
Apply the script to any timeframe, though higher timeframes (1H, 4H, Daily) often yield more reliable signals.
Works best in clearly trending markets (especially in crypto, stocks, indices).
Can be paired with alerts for live trading or analysis.
Important Notes
This version is long-only by design. No short positions are executed.
Ideal for swing traders or position traders seeking asymmetric returns.
Users can modify the ATR period, Supertrend factor, or EMA filter length based on asset behavior.
Price Lag Factor (PLF)📊 Price Lag Factor (PLF) for Crypto Traders: A Comprehensive Breakdown
The Price Lag Factor (PLF) is a momentum indicator designed to identify overextended price movements and gauge market momentum. It is particularly optimized for the crypto market, which is known for its high volatility and rapid trend shifts.
🔎 What is the Price Lag Factor (PLF)?
The PLF measures the difference between long-term and short-term price momentum and scales it dynamically based on recent volatility. This helps traders identify when the market might be overbought or oversold while filtering out noise.
The formula used in the PLF calculation is:
PLF = (Z-Long - Z-Short) / Stdev(PLF)
Where:
Z-long: Z-score of the long-term moving average (50-period by default).
Z-short: Z-score of the short-term moving average (14-period by default).
Stdev(PLF): Standard deviation of the PLF over a longer period (50-period by default).
🧠 How to Interpret the PLF:
1. Trend Direction:
Positive PLF (Green Bars): Indicates bullish momentum. The long-term trend is up, and short-term movements are confirming it.
Negative PLF (Red Bars): Indicates bearish momentum. The long-term trend is down, and short-term movements are consistent with it.
2. Momentum Strength:
PLF near Zero (±0.5): Low momentum; trend direction is not strong.
PLF between ±1 and ±2: Moderate momentum, indicating that the market is moving with strength but not in an overextended state.
PLF beyond ±2: High momentum (overbought/oversold), indicating potential trend exhaustion and a possible reversal.
📈 Trading Strategies:
1. Trend Following:
Bullish Signal:
Enter long when PLF crosses above 0 and remains green.
Confirm with other indicators like RSI or MACD to reduce false signals.
Bearish Signal:
Enter short when PLF crosses below 0 and remains red.
Use trend confirmation (e.g., moving average crossover) for better accuracy.
2. Reversal Trading:
Overbought Signal:
If PLF rises above +2, look for signs of bearish divergence or a reversal pattern to consider a short entry.
Oversold Signal:
If PLF falls below -2, watch for bullish divergence or a support bounce to consider a long entry.
3. Momentum Divergence:
Bullish Divergence:
Price makes a lower low while PLF makes a higher low.
Indicates weakening bearish momentum and a potential bullish reversal.
Bearish Divergence:
Price makes a higher high while PLF makes a lower high.
Signals weakening bullish momentum and a potential bearish reversal.
💡 Best Practices:
Combine with Volume:
Volume spikes during high PLF readings can confirm trend continuation.
Low volume during PLF extremes may hint at false breakouts.
Watch for Extreme Levels:
PLF beyond ±2 suggests overextended price action. Use caution when entering new positions.
Confirm with Other Indicators:
Use with Relative Strength Index (RSI) or Bollinger Bands to get a better sense of overbought/oversold conditions.
Overlay with a moving average to gauge trend consistency.
🚀 Why the PLF Works for Crypto:
Crypto markets are highly volatile and prone to rapid trend changes. The PLF's adaptive scaling ensures it remains relevant regardless of market conditions.
It highlights momentum shifts more accurately than static indicators because it accounts for changing volatility in its calculation.
🚨 Disclaimer for Traders Using the Price Lag Factor (PLF) Indicator:
The Price Lag Factor (PLF) indicator is designed as a technical analysis tool to gauge momentum and identify potential overbought or oversold conditions. However, it should not be relied upon as a sole decision-making factor for trading or investing.
Important Points to Consider:
Market Risk: Trading cryptocurrencies and other financial assets involves significant risk. The PLF may not accurately predict future price movements, especially during unexpected market events.
Indicator Limitations: No technical indicator, including the PLF, is infallible. False signals can occur, particularly in low-volume or highly volatile conditions.
Supplementary Analysis: Always combine PLF insights with other technical indicators, fundamental analysis, and risk management strategies to make informed decisions.
Personal Judgment: Traders should use their own discretion when interpreting PLF signals and never trade based solely on this indicator.
No Guarantees: The PLF is designed for educational and informational purposes only. Past performance is not indicative of future results.
Always perform thorough research and consider consulting with a professional financial advisor before making any trading decisions.
Liquidity Sweep DetectorThe Liquidity Sweep Detector represents a technical analysis tool specifically designed to identify market microstructure patterns typically associated with institutional trading activity. According to Harris (2003), institutional traders frequently employ tactics where they momentarily break through price levels to trigger stop orders before redirecting the market in the opposite direction. This phenomenon, commonly referred to as "stop hunting" or "liquidity sweeping," constitutes a significant aspect of institutional order flow analysis (Osler, 2003). The current implementation provides retail traders with a means to identify these patterns, potentially aligning their trading decisions with institutional movements rather than becoming victims of such strategies.
Osler's (2003) research documents how stop-loss orders tend to cluster around significant price levels, creating concentrations of liquidity. Taylor (2005) argues that sophisticated institutional participants systematically exploit these liquidity clusters by inducing price movements that trigger these orders, subsequently profiting from the ensuing price reaction. The algorithmic detection of such patterns involves several key processes. First, the indicator identifies swing points—local maxima and minima—through comparison with historical price data within a definable lookback period. These swing points correspond to what Bulkowski (2011) describes as "significant pivot points" that frequently serve as liquidity zones where stop orders accumulate.
The core detection algorithm utilizes a multi-stage process to identify potential sweeps. For high sweeps, it monitors when price exceeds a previous swing high by a specified threshold percentage, followed by a bearish candle that closes below the original swing high level. Conversely, for low sweeps, it detects when price drops below a previous swing low by the threshold percentage, followed by a bullish candle closing above the original swing low. As noted by Lo and MacKinlay (2011), these price patterns often emerge when large institutional players attempt to capture liquidity before initiating significant directional moves.
The indicator maintains historical arrays of detected sweep events with their corresponding timestamps, enabling temporal analysis of market behavior following such events. Visual elements include horizontal lines marking sweep levels, background color highlighting for sweep events, and an information table displaying active sweeps with their corresponding price levels and elapsed time since detection. This visualization approach allows traders to quickly identify potential institutional activity without requiring complex interpretation of raw price data.
Parameter customization includes adjustable lookback periods for swing point identification, sweep threshold percentages for signal sensitivity, and display duration settings. These parameters allow traders to adapt the indicator to various market conditions and timeframes, as markets demonstrate different liquidity characteristics across instruments and periods (Madhavan, 2000).
Empirical studies by Easley et al. (2012) suggest that retail traders who successfully identify and act upon institutional liquidity sweeps may achieve superior risk-adjusted returns compared to conventional technical analysis approaches. However, as cautioned by Chordia et al. (2008), such patterns should be considered within broader market context rather than in isolation, as their predictive value varies significantly with overall market volatility and liquidity conditions.
References:
Bulkowski, T. (2011). Encyclopedia of Chart Patterns (2nd ed.). John Wiley & Sons.
Chordia, T., Roll, R., & Subrahmanyam, A. (2008). Liquidity and market efficiency. Journal of Financial Economics, 87(2), 249-268.
Easley, D., López de Prado, M., & O'Hara, M. (2012). Flow Toxicity and Liquidity in a High-frequency World. The Review of Financial Studies, 25(5), 1457-1493.
Harris, L. (2003). Trading and Exchanges: Market Microstructure for Practitioners. Oxford University Press.
Lo, A. W., & MacKinlay, A. C. (2011). A Non-Random Walk Down Wall Street. Princeton University Press.
Madhavan, A. (2000). Market microstructure: A survey. Journal of Financial Markets, 3(3), 205-258.
Osler, C. L. (2003). Currency Orders and Exchange Rate Dynamics: An Explanation for the Predictive Success of Technical Analysis. Journal of Finance, 58(5), 1791-1820.
Taylor, M. P. (2005). Official Foreign Exchange Intervention as a Coordinating Signal in the Dollar-Yen Market. Pacific Economic Review, 10(1), 73-82.
Williams Vix Fix Shortsupdated.
So if you haven't already, add the normal "Williams Vixx Fixx" indicator to your chart twice,
Then open the settings on one of them and click the "highs not lows" option. and uncheck the "Highlight Bars For Simple Entry" option.
That will be the histogram for your shorts. The other Vixx Fixx indicator you added can be left as is.
Then add my indicator, either by just searching it in Tradigview or by using the pinescript above. This will act as your "white" candle for your short setups aligning with volitility and your histogram. So then you will have a black candle when the shorts Vixx Fixx triggers and a white while the long Vixx Fixx triggers.
Comprehensive Trend & Signal StrategyScript Summary: "Configurable Trend & Signal System (CTSS)"
This TradingView script is a comprehensive technical analysis tool designed to generate trading signals (Long or Short) based on a configurable combination of several popular indicators. It aims to provide a flexible system where users can tailor the signal sensitivity and criteria to their specific trading style and market conditions.
Core Functionality:
Multi-Filter Signal Generation: The script generates buy (Long) or sell (Short) signals when conditions from several user-selected technical filters align.
Configurable Filters: It includes the following filters, each of which can be enabled or disabled and customized:
Main Trend Filter: Uses two Exponential Moving Averages (EMAs). A long signal requires the faster EMA to be above the slower EMA, and vice-versa for a short signal.
MACD Filter: Utilizes the Moving Average Convergence Divergence. Users can choose between a standard MACD or one derived from custom EMA lengths. A long signal requires the MACD line to be above its signal line, and vice-versa for a short.
RSI Filter: Employs the Relative Strength Index. For a long signal, it typically looks for the RSI to be below an oversold level (or simply not overbought, depending on configuration). For a short signal, it looks for the RSI to be above an overbought level (or not oversold).
Volume Filter: Analyzes trading volume. It can identify volume spikes (volume significantly above its moving average) which can be used to confirm the strength of a potential signal.
Sensitivity Presets: Offers global "Sensitivity Presets" (e.g., Conservative, Moderate, Aggressive) that automatically adjust the parameters of all underlying filters to predefined settings, simplifying initial setup. Users can then fine-tune from these presets.
Stop Loss (SL) and Take Profit (TP) Management:
Once a signal is generated, the script calculates and can display SL and TP levels.
These levels can be based on the Average True Range (ATR) multiplied by a user-defined factor, or a fixed number of pips/points.
It visually tracks these levels on the chart.
Visualizations:
Plots the selected indicators (EMAs, MACD lines, RSI, Volume MA) on the chart.
Displays signal markers ("L" for Long, "S" for Short) directly on the price bars where signals occur.
Draws horizontal lines for the current Stop Loss and Take Profit levels if a trade signal is active.
Includes an optional on-chart Information Table summarizing the status of all enabled filters, the current signal state (Long/Short/None), and active SL/TP levels.
Alerts: The script can generate alerts for:
New Long signals.
New Short signals.
When a Take Profit level is hit for a long or short trade.
When a Stop Loss level is hit for a long or short trade.
How Signals Are Generated:
A Long signal is generated only if all enabled filters simultaneously indicate bullish conditions. For example, if the Main Trend, MACD, and RSI filters are active, a Long signal would require:
Fast EMA > Slow EMA (Main Trend)
MACD Line > MACD Signal Line (MACD)
RSI is in a bullish state (e.g., coming out of oversold, or simply not overbought).
Similarly, a Short signal requires all enabled filters to indicate bearish conditions. The script manages one "trade" at a time; a new signal in the opposite direction will reverse the current position.
Instructions for Using the "Configurable Trend & Signal System (CTSS)" Script
Adding to Chart:
Open TradingView.
Open the Pine Editor (usually at the bottom of the chart).
Paste the entire script code into the editor.
Click "Add to Chart."
Accessing Settings:
Once the script is on your chart, hover over its name in the top-left corner of the chart (or in the legend if it's an overlay).
Click the "Settings" (gear) icon. This will open the script's configuration panel.
Configuring the Script (Inputs Tab):
Global Settings & Presets:
Sensitivity Preset: Start here. Choose "Conservative," "Moderate," or "Aggressive." This will automatically set many of the parameters below. You can then fine-tune them. "Custom" means your individual settings will be used.
Main Trend Filter:
Use Main Trend Filter?: Check to enable this filter.
Fast MA Length, Slow MA Length: Set the periods for the two EMAs.
Show Main Trend MAs?: Toggle visibility of these EMAs on the chart.
Customize colors, width, and style for the plotted MAs.
MACD Filter:
Use MACD Filter?: Check to enable.
MACD Source Type:
Default: Uses standard MACD (12, 26, 9 periods typically). You can adjust Fast Length, Slow Length, Signal Smoothing.
Custom EMA Source: Derives MACD from two custom EMAs. Set Source Fast EMA Length, Source Slow EMA Length, and Signal Smoothing for Custom.
Show MACD Plot?: Toggle visibility of MACD and signal lines.
Customize colors and width.
RSI Filter:
Use RSI Filter?: Check to enable.
RSI Length: Set the period for RSI calculation.
RSI Overbought, RSI Oversold: Define the levels for overbought/oversold conditions.
Show RSI Plot?: Toggle visibility of the RSI line and OB/OS levels.
Customize colors and width.
Volume Filter:
Use Volume Filter?: Check to enable.
Volume MA Lookback: Period for the moving average of volume.
Volume Spike Multiplier: How many times the current volume must be above its MA to be considered a spike.
Show Volume MA?: Toggle visibility of the volume MA.
Customize color for the volume MA and volume bars indicating a spike.
Stop Loss & Take Profit Settings:
Use ATR for SL/TP?:
If checked: Uses ATR. Set ATR Length, SL ATR Multiplier, TP ATR Multiplier.
If unchecked: Uses fixed pips. Set Fixed SL Pips, Fixed TP Pips. (Note: "Pips" here means minimum price increments of the instrument).
Show SL/TP Lines on Chart?: Toggle visibility of the SL/TP lines when a signal is active.
Customize colors, width, and style for SL and TP lines.
Visuals & Alerts Group:
Show Signal Markers?: Toggle "L" and "S" markers on the chart.
Long/Short Signal Marker Color: Choose colors for these markers.
Show Information Table?: Toggle the on-chart summary table.
Table Position: Choose where the table appears (e.g., Top Right).
Table Text/Background Color: Customize table appearance.
Understanding the Chart Display:
Indicator Plots: You'll see the EMAs, MACD lines, RSI, and Volume MA plotted if you've enabled them.
Signal Markers: An "L" will appear below a bar for a long signal, and an "S" above a bar for a short signal.
SL/TP Lines: If a signal is active and SL/TP lines are enabled, you'll see horizontal lines at the calculated Stop Loss and Take Profit prices. These lines will extend with new bars until the trade is closed by an SL/TP hit or a reverse signal.
Information Table: If enabled, this table provides a real-time summary of:
The script's preset status.
The status of each enabled filter (e.g., Main Trend: Bullish, MACD: Bearish).
The current overall signal (Long, Short, or None).
If a signal is active: Entry Price, Stop Loss Price, Take Profit Price.
SL/TP Hit Labels: When a Stop Loss or Take Profit is hit, a small label ("SL Hit" or "TP Hit") will appear on the chart at that price level.
Setting Up Alerts (TradingView Feature):
Click the "Alert" button (clock icon) on the TradingView top toolbar or right-click on the chart and select "Add alert."
In the "Condition" dropdown, select the name of this script (e.g., "CTSS").
A second dropdown will appear, allowing you to choose the specific alert condition:
"CTSS: New Long Signal..."
"CTSS: New Short Signal..."
"CTSS: Long Take Profit Hit..."
"CTSS: Long Stop Loss Hit..."
"CTSS: Short Take Profit Hit..."
"CTSS: Short Stop Loss Hit..."
Choose your desired options (e.g., "Once Per Bar Close" is common for signal alerts).
Configure notification preferences (popup, email, etc.).
Click "Create."
General Advice for Use:
Backtesting & Forward Testing: Thoroughly test any configuration on historical data and then in a simulated (paper trading) environment before risking real capital.
Understand the Indicators: Familiarize yourself with how EMAs, MACD, RSI, and Volume analysis work independently to better understand their combined effect.
Start with Presets: Use the sensitivity presets as a starting point and then adjust individual parameters to suit the specific asset and timeframe you are trading.
Risk Management: This script provides SL/TP suggestions, but always apply your own comprehensive risk management strategy. The script itself is a tool, not a complete trading plan.
Not Financial Advice: This script is for educational and informational purposes. It does not constitute financial advice.
By following these instructions, you can effectively configure and utilize the "Configurable Trend & Signal System" to aid your trading analysis.
Pullback Setup HelperThe Pullback Setup Helper is a visual tool designed to assist traders in identifying high-probability pullback entry zones in both bullish and bearish trends. It dynamically calculates support and resistance pullback areas using a combination of recent price extremes and ATR-based volatility measures.
The indicator plots two main zones: one for potential long setups beneath recent highs, and another for short setups above recent lows. These zones are derived from configurable multipliers of the ATR to define depth and width, with an additional buffer to allow for slight overshoots or market noise.
Signals are generated when price enters a pullback zone and closes in the direction of the trend, using a relaxed condition (close > previous close for longs, close < previous close for shorts) to increase signal frequency. Entry signals appear as triangles on the chart, with optional alerts available for both long and short scenarios.
This tool is best used as a contextual guide to support trend-continuation trades, particularly when combined with additional confirmation from momentum or volume indicators.
TTM Scalper AlertTTM Scalper Alert — Real-Time Pivot Detector
Description:
This is a custom implementation of the classic TTM Scalper Alert, adapted to show early pivot detection and trend structure tracking in real-time. The script identifies potential highs and lows before the full pivot confirmation—giving traders an early edge—and removes outdated signals once pivots are confirmed.
It supports two levels of detection:
Fast Alert Pivots : Identified after Alert Period candles confirm a local reversal.
Confirmed Pivots : Validated only after Pivot Period candles on both sides ensure a true swing high/low.
How It Works:
Fast Detection (Early Pivots):
Detected after Alert Period (AP) candles. These are provisional signals, shown as triangle labels (▲▼) near current price. Only the latest signal is shown; previous fast pivots are deleted to avoid clutter.
Confirmed Pivots:
Detected with a full lookback of Pivot Period (PP) on both sides of the candle. Shown using plotshape with triangle markers (▲▼). Serve as anchors for price structure analysis (HH-HL or LL-LH tracking).
Custom Source Option:
Users can choose to base pivots on High/Low or Close/Open range. Helps adjust sensitivity depending on volatility or bar structure.
How to Interpret:
Trend & Market Structure:
Use Confirmed Pivots (plotshapes) to analyze market structure:
HH → HL: Uptrend
LL → LH: Downtrend
Watch for breaks in structure for possible reversals
Early Alerts:
The floating labels (▲▼) represent early warnings of a potential pivot. Use them to anticipate:
Short-term exhaustion
Quick scalping entries
Divergence setups
Inputs:
Source : Choose from High/Low or Close/Open — affects how pivots are calculated
Alert Period : How fast the script detects an early reversal pattern (used for entry timing)
Pivot Period : How many candles before/after to confirm a full pivot (used for structural analysis)
Best For:
Traders who follow price action and structure
Scalpers and intraday traders who want early signals
Anyone using pivot highs/lows for confluence with other tools (like RSI divergence, Bollinger Bands, VWAP, etc.)
Pro Tips:
Combine this with:
Trend Magic or Supertrend for directional bias
Volume spike filters to confirm reversal intent
RSI/CCI divergence to strengthen reversal pivots
Adjust Alert Period to tune early signal sensitivity (lower = faster but noisier)
Money Flow Index with MAsMoney Flow Index (MFI) indicator with configurable Fast MA Length (default 2) and Slow MA Length (default 7). Both MAs are plotted on top of the MFI line, and you can change their lengths from the settings panel.
Crossovers can be used as 'BUY' & 'SELL' conditions with structural analysis.
Cheers..
MA Dispersion+MA Dispersion+ — read the “breathing space” between your moving-averages
Get instant feedback on trend strength, volatility expansion and mean-reversion — across any timeframe.
MA Dispersion+ turns the humble moving-average stack into a single, easy-to-read oscillator that tells you at a glance whether price is coiling or fanning out.
🧩 What it does
Plugs into your favourite MA setup
• Pick the classic 5 / 20 / 50 / 200 lengths or disable any combination with one click.
• Choose the MA engine you trust — SMA, EMA, RMA, VWMA or WMA.
• Works on any timeframe thanks to TradingView’s security() engine.
Measures “spread”
For every bar it calculates the absolute distance of each selected MA from their average.
The tighter the stack, the lower the value; the wider the fan, the higher the value.
Adds professional-grade controls
• Weighting — let short-term MAs dominate (Inverse Length), keep everything equal, or dial in your own custom weights.
• Normalisation — convert the raw distance into a percentage of price, ATR multiples, or scale by the MAs’ own mean so you can compare symbols of any price or volatility.
🔍 How traders use it
Trend confirmation – rising dispersion while price breaks out = momentum is genuine.
Volatility squeeze – dispersion parking near zero warns that a big move is loading.
Multi-TF outlook – drop one pane per timeframe (e.g. 5 m, 1 h, 1 D) and see which layer of the market is driving.
Mean-reversion plays – spikes that fade quickly often coincide with exhaustion and snap-backs.
⚙️ Quick-start
Add MA Dispersion+ to your chart.
Set the pane’s timeframe in the first input.
Tick the MA lengths you actually use.
(Optional) Pick a weighting scheme and a normaliser.
Repeat the indicator for as many timeframes as you like — each instance keeps its own settings.
✨ Why you’ll love it
Zero clutter – one orange line tells you what four separate MAs whisper.
Configurable yet bullet-proof – all lengths are hard-coded constants, so Pine never complains.
Context aware – normalisation lets you compare BTC’s $60 000 chaos with EURUSD’s four--decimals calm.
Lightweight – no labels, no drawings, no background processing — perfect for mobile and multi-pane layouts.
Give MA Dispersion+ a try and let your charts breathe — you’ll never look at moving-average ribbons the same way again.
Happy trading!
Supertrend nico 2025Supertrend indicator designed to identify trend direction and potential buy or sell signals. Uses the Average True Range (ATR) for dynamic support and resistance levels. Calculates upper and lower bands based on a multiple of the ATR applied to the price source. Trend changes when price crosses above or below these bands. Green line and buy label indicate the start of an uptrend; red line and sell label indicate the start of a downtrend. Optional visual highlighting for trend areas. Alerts available for buy, sell, and trend direction change signals. Customizable ATR method, period, and multiplier. Suitable for all timeframes and overlayed on price chart.
Buy and Sell Pressure Signals (Clean)This script identifies strong buy and sell pressure based purely on candlestick structure — no indicators, no clutter. It highlights key reversal or momentum candles using minimal visuals:
🔼 Green Triangle (Buy Pressure): A bullish candle with a large body and small upper/lower wicks, indicating strong upward momentum and buyer control.
🔽 Red Triangle (Sell Pressure): A bearish candle with a large body and small wicks, showing strong downward momentum and seller dominance.
Designed for traders who prefer clean, price-action-based signals without text labels or distracting overlays. Ideal for scalping, trend confirmation, or identifying exhaustion zones.
nico weinstein2025Technical indicator based on Stan Weinstein's four-stage market cycle. Uses a configurable moving average (SMA or EMA) to determine the current phase of the asset. Classifies price action into Stage 1 (consolidation), Stage 2 (uptrend), Stage 3 (top/distribution), and Stage 4 (downtrend). Fully colors candles (body, border, and wicks) according to the detected stage: gray for Stage 1, green for Stage 2, orange for Stage 3, and red for Stage 4. Includes an option to display the moving average on the chart. Compatible with any timeframe. Helps visually identify market behavior for strategic decision-making.
Balance-Tilt Indicator – Micro Range Equilibrium Tool (V2)The Extreme Conditions Background Gradient Tint indicator is designed to visually highlight extreme conditions in the market by applying dynamic background color changes based on a specific score—referred to as the tilt_score. This indicator helps traders quickly identify potential critical points in price movement, which could indicate a turning point, overbought, or oversold conditions.
Key Features:
Dynamic Background Tint:
- The indicator changes the background color to provide a visual cue based on the value of the tilt_score:
Green Tint: When the tilt_score exceeds 0.85, a green background is applied, signaling a highly bullish condition. The opacity of the tint decreases as the score rises above 0.85, providing a gradient effect.
Red Tint: When the tilt_score falls below -0.85, a red background is applied, signaling a highly bearish condition. The opacity of the red tint decreases as the score becomes more negative, again creating a gradient effect.
Neutral Zone (No Tint): For values of the tilt_score between -0.85 and 0.85, no background tint is applied, indicating neutral or moderate market conditions.
- Opacity Adjustment Based on Score:
The opacity of the background color is dynamically adjusted depending on how extreme the tilt_score is. The further the score deviates from the neutral range (i.e., above 0.85 or below -0.85), the more intense the color becomes, making it easier for traders to spot extreme market conditions at a glance.
- Visual Alerts for Extreme Conditions:
The green tint alerts traders to a strong uptrend or bullish momentum, while the red tint alerts to a strong downtrend or bearish momentum. These visual cues help traders identify potential reversal points, exhaustion, or other significant market shifts.
How to Use the Indicator:
- Spotting Market Extremes:
Bullish Signal: When the background turns green, with a tilt_score higher than 0.85, it suggests that the market may be entering an extreme bullish phase. Traders can look for continuation signals, confirm with other indicators, or prepare for a potential pullback if the score continues to rise sharply.
Bearish Signal: When the background turns red, with a tilt_score lower than -0.85, it indicates an extreme bearish market condition. Traders may look for potential reversal patterns or prepare for a continuation of the downtrend if the score continues to decrease.
- Use in Conjunction with Other Indicators:
While this background tint provides a useful visual cue, it is recommended to use it alongside other technical indicators (such as RSI, MACD, or moving averages) to confirm trends or identify overbought/oversold conditions. The tilt_score focuses on extreme price movement and should be seen as a supplementary tool to help validate trade setups.
- Avoiding Overreaction:
A background shift to extreme colors (green or red) does not automatically indicate a reversal but rather a strong trend condition. Ensure confirmation with other technical tools before making trade decisions based purely on these background signals.
Conclusion:
The Extreme Conditions Background Gradient Tint is a straightforward, effective tool for identifying extreme market conditions. Its dynamic color-changing feature helps you quickly detect potential trend reversals or confirmation of strong trends. By monitoring the tint and combining it with other analysis tools, you can enhance your market timing and improve trading decisions based on visual cues from price action.
Custom MAs (Multi-Timeframe, 5x MA, EMA/SMA/WMA/RMA)Multi-Timeframe Moving Averages (Per-TF, Per-Type, Clean Labels)
This script allows you to plot up to five customizable moving averages, each with:
✅ Independent timeframe (chart or fixed)
✅ Independent MA type (EMA, SMA, WMA, RMA)
✅ Custom color, length, and visibility
✅ Optional visual smoothing using a second MA layer
✅ Clean, informative labels (e.g. EMA 50 @ 1D)
✅ Grouped settings for ease of use
Use this to track key MAs from higher or lower timeframes without switching charts, build trend overlays, or monitor cross-timeframe confluence zones.
Designed to be clean, accurate, and highly flexible — no clutter, no unnecessary features.