Precision CandleThis Pine Script is designed to help you uncover hidden divergences among multiple assets by tracking how their candles close. Imagine you're analyzing three different assets — they could be indices, currencies, or even cryptocurrencies — and you want to know when one of them is moving out of sync with the others. That’s where this script comes into play.
First, it gives you the flexibility to choose custom ticker symbols or rely on predefined ones based on different asset classes like metals, bonds, or altcoins. Once the symbols are set, the script continuously monitors the opening, high, low, and closing prices of each asset.
The magic happens when it determines the nature of each candle: is it bullish or bearish? By comparing these closing behaviors, the script checks for any discrepancies — situations where at least one asset diverges from the trend of the others. When this happens, the script plots a red "PC" marker below the bar on your chart, drawing your attention to these moments of divergence.
This tool can be invaluable for traders looking to spot unique market dynamics, identify potential trading opportunities, or simply get insights into how different assets behave in relation to each other. It's a simple but powerful way to keep an eye on correlations and anticipate shifts in market sentiment.
指標和策略
Zero Clutter Scalper (ZCS) 🔒//@version=5
indicator("Zero Clutter Scalper (ZCS) 🔒", overlay=true)
// ==== SETTINGS ====
length = input.int(14, title="Momentum Length")
threshold = input.float(5, title="Momentum Threshold")
showSignals = input.bool(true, title="Show Buy/Sell Signals")
enableAlerts = input.bool(true, title="Enable Alerts")
// ==== MOMENTUM CALC ====
mom = close - close
mom_smooth = ta.ema(mom, 5)
// ==== PRICE ACTION CONFIRMATION ====
bullCandle = close > open and close > high
bearCandle = close < open and close < low
// ==== CONDITIONS ====
buyCond = mom_smooth > threshold and bullCandle
sellCond = mom_smooth < -threshold and bearCandle
// ==== PLOTTING ====
plotshape(showSignals and buyCond ? low : na, title="Buy Signal", location=location.belowbar, color=color.lime, style=shape.labelup, text="BUY")
plotshape(showSignals and sellCond ? high : na, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// ==== ALERTS ====
alertcondition(buyCond and enableAlerts, title="ZCS Buy Alert", message="ZCS Buy Signal on {{ticker}} ({{interval}})")
alertcondition(sellCond and enableAlerts, title="ZCS Sell Alert", message="ZCS Sell Signal on {{ticker}} ({{interval}})")
AI - EMA Trend-ColorThis is a simple indicator for EMA that changes color. Green = Uptrend and Red=downtrend.
Key Levels - SubyMap key levels such as prior day close, 1 week high, 1 week low, prior day high, prior day low, current high and current low.
SignalScope PROOverview: (Nothing mentioned here is financial advice)
What is the difference between the free Signal Scope and the Pro Version? Answer- Signal Scope Pro includes live divergences that have been rigorously backtested with exceptional results.
Signal Scope Pro includes Divergences based off a proprietary oscillator. They are not based upon SMT or any other existing oscillator.
The Algorithm features candles we refer to as "Bullish" & "Bearish" imbalance candles.
Bullish Imbalance candle= Fully colored Blue and Green Candles
Bearish Imbalance candle= Fully colored Red and Purple Candles
Stats On Bullish Imbalance candles:
Daily Chart- Since 2021 there have been 9 bullish imbalance candles. 8/9 on the daily time frame for continued upside after a Bullish Imbalance Candle populates. This gives us a 88.8% chance of near term upside in the following days after these candles show on the chart.
Since January 1st 2025, there have been 27, 30 minute bullish imbalance candles. 21 have resulted in Short Term Upside, 6 failed and went to the downside. This gives us a 77.78% odds that a bullish imbalance candle will result in short term upside with a look-back period over the last 5 months.
Since January 1st 2025, there have been 95, 15 minute bullish imbalance candles. 69 have resulted in Short Term Upside, 26 failed and went to the downside. This gives us a 72.63% odds that a bullish imbalance candle will result in short term upside with a look-back period over the last 5 months.
Since January 1st 2025, there have been 193 5 minute bullish imbalance candles. 135 have resulted in Short Term Upside, 58 failed and went to the downside. This gives us a 69.95% odds that a bullish imbalance candle will result in short term upside with a look-back period over the last 5 months.
What can we take from the data above? The higher the time frame, the more favorable the results become.
BUY/ SELL SIGNALS (green triangles=buy, red triangles=sell)
The highlight of the algo is the bull/ bear imbalance candles along with the live divergences.
Finance Nirvana Buy/Sell Signals Generator V1.0Finance Nirvana Buy Sell Indicator combines multiple layers of analysis into a single, streamlined overlay. It plots key trend and volatility structures—EMAs and Bollinger Bands—while computing a fast, zero-lag EMA (ZLEMA20) for more responsive trend detection. Extreme RSI and volume events are flagged directly on the chart, and classic two-bar price-action (Buy / Sell) signals are only triggered when confirmed by ATR-based volatility breakouts, ADX trend strength, dynamic RSI momentum filters, and volume confirmations. A multi-timeframe alignment table shows both “bullish vs. bearish” status and live RSI readings across 5m, 15m, 60m, 240m, and daily frames, and intraday pivot, support, and resistance levels are drawn for easy reference.
DIP BUYING by HAZEREAL BUY THE DIP - Educational Price Movement Indicator
This technical indicator is designed for educational purposes to help traders identify potential price reversal opportunities in equity markets, particularly focusing on NASDAQ-100 index tracking instruments and technology sector ETFs.
Key Features:
Monitors price movements relative to recent highs over customizable lookback periods
Identifies two distinct price decline thresholds: standard (5%+) and extreme (12.3%+)
Visual signals with triangular markers and background color zones
Real-time data table showing current metrics and status
Customizable alert system with webhook-ready JSON formatting
Clean overlay design that doesn't obstruct price action
How It Works:
The indicator tracks the highest price within a specified lookback period and calculates the percentage decline from that high. When price drops below the minimum threshold, it generates visual buy signals. The extreme threshold triggers enhanced alerts for more significant market movements.
Best Use Cases:
Educational analysis of market volatility patterns
Identifying potential support levels during market corrections
Studying historical price behavior around significant declines
Risk management and position sizing education
Important Note: This is a technical analysis tool for educational purposes only. All trading decisions should be based on comprehensive analysis and appropriate risk management. Past performance does not guarantee future results.
Turtle Soup Pivots | InvrsROBINHOODTurtle Soup Pivots Indicator | InvrsROBINHOOD
Overview
The "Turtle Soup Pivots" indicator is a powerful tool designed to identify a specific three-point price action pattern that often precedes market reversals. By marking a sequence of key events on your chart, it helps you visualize potential "stop hunts" or "false moves" where the market may be poised to reverse direction.
How It Works
The indicator automatically identifies and plots three key points in a sequence:
The Starting Candle (Red Dot): This marks the beginning of a new analysis period. You can configure this to be the first candle of the month, week, day, or a specific trading session (like Asia, London, or New York). This candle establishes the baseline for the pattern.
The False Move Pivot (Yellow Dot): This is the first significant pivot high or pivot low that forms after the Starting Candle. This move often represents an initial, and potentially misleading, push in one direction, frequently triggering stop-loss orders above or below a recent range.
The Turtle Soup Pivot (Green Dot): This is the crucial third point. It is the first pivot that forms in the opposite direction of the False Move pivot. For a reversal to be considered valid, this pivot must break the level of the False Move pivot, often by a user-defined percentage. The appearance of this green dot signals that the initial "false move" has been rejected and that the market may be preparing to move decisively in the opposite direction.
The required sequence is always: Red Dot → Yellow Dot → Green Dot.
How to Use This Indicator in Your Trading
The core idea behind this indicator is to trade against the "false move." It helps you identify moments where the market has shown its hand, and a reversal is likely.
Bullish Reversal Signal (Potential Buy):
• A Starting Candle (red dot) appears.
• The market creates a False Move Pivot Low (yellow dot).
• The indicator then plots a Turtle Soup Pivot High (green dot), which breaks below the low of the False Move pivot.
Interpretation: This sequence suggests that an initial move to the upside was a "stop hunt" or a false move. The subsequent break to the downside indicates that buyers may step in, presenting a potential entry point for a long position.
Bearish Reversal Signal (Potential Sell):
• A Starting Candle (red dot) appears.
• The market creates a False Move Pivot Low (yellow dot).
• The indicator then plots a Turtle Soup Pivot High (green dot), which breaks below the low of the False Move pivot.
Interpretation: This sequence suggests that an initial rally was a false move. The subsequent break to the upside indicates that sellers are stepping in, presenting a potential entry point for a short position.
Key Features & Customization
To tailor the indicator to your specific strategy and market, you can adjust the following settings:
• Starting Point: Choose what constitutes the start of a new period (Month, Week, Day, or Session).
• Session Selection: Enable or disable individual trading sessions (Asia, London AM/PM, NY AM/PM) to act as starting points.
• Pivot Sensitivity: Define how many candles are required on the left and right to form a valid pivot, allowing you to filter out minor fluctuations.
• Reversal Threshold: Set a minimum percentage that the Turtle Soup pivot must break the False Move pivot by, adding an extra layer of confirmation to the signal.
• Visuals: Customize the color and size of each dot to match your chart's theme.
By combining the signals from this indicator with your own analysis of market structure, support/resistance levels, and other confluences, you can develop a robust strategy for identifying and trading high-probability reversals.
ICT Daily BiasSimple indicator for Daily Chart using ICT principles to suggest Reversal or Continuation, with next day suggested Draw on Liquidity.
USAGE: In AM session, go into 1m chart / Replay mode and back up to 11:59pm of prior trading day for projected draw on liquidity for current day trading session.
PRO Investing - ATR Quant.algo by proinvesting.coATR Quant.algo by PROInvesting.co
A powerful and visually intuitive trend-following system designed to capture high-momentum moves and avoid market chop.
Quant.algo combines a dynamic trend-following EMA with multi-level ATR volatility zones to provide a complete trading framework with clear entry signals, stop-loss levels, and take-profit targets.
Key Features:
Dynamic Trend EMA: A thick baseline that turns Green for uptrends and Red for downtrends. Only trade in the direction of the trend.
Multi-Level ATR Zones: Automatically adapting channels that define ideal zones for entries, stops, and profit-taking.
Volatility Filter: A smart filter that tints the background when volatility is expanding, helping you avoid sideways markets and only trade when the market is ready to move.
Pullback Entry Signals: Clear BUY and SELL arrows appear after a pullback to the EMA, providing high-probability entry points.
Simple Trading Rules:
Go LONG: When the baseline is Green, wait for a Green BUY arrow, and aim for the upper TP Zone. Place your stop below the orange Stop Zone line.
Go SHORT: When the baseline is Red, wait for a Red SELL arrow, and aim for the lower TP Zone. Place your stop above the orange Stop Zone line.
Best For:
Traders: Swing Traders & Position Traders.
Timeframes: 4-Hour (H4) and Daily (D1).
Assets: Trending markets (Indices, Forex, Crypto).
Pivot Trendlines with Breaks [HG] - Enhanced SimplePivot Trendlines with Breaks - Enhanced Simple
An advanced pivot-based trendline indicator that automatically draws dynamic support and resistance lines with real-time breakout detection.
Key Features:
Automatic Trendline Drawing: Creates uptrend and downtrend lines based on pivot highs and lows
Real-Time Breakout Detection: Identifies when price breaks above or below key trendlines
Enhanced Timing Information: Shows exact breakout times and price levels
Customizable Visual Alerts: Multiple alert styles with optional sound notifications
Dark Mode Information Table: Track last breakout details in a clean, organized display
Technical Specifications:
Pivot Length: Adjustable period for pivot point calculation (default: 20)
Repainting Option: Choose between real-time signals or confirmed bar signals
Multiple Trendline Styles: Dotted, dashed, or solid line options
Flexible Extension: Extend lines in any direction or keep them contained
Visual Enhancements:
Breakout Labels: Clear BULL/BEAR labels with optional timestamps
Background Highlighting: Subtle background color changes during active breakouts
Customizable Colors: Separate colors for bullish and bearish signals
Adjustable Label Sizes: Standard or large label options for better visibility
Alert System:
Sound Alerts: Optional audio notifications for breakouts
Visual Alerts: Background highlights and shape plots
Custom Messages: Detailed alert messages with price and time information
Real-time Status: Live tracking of breakout conditions
How It Works:
Identifies Pivot Points: Calculates significant highs and lows based on specified length
Draws Trendlines: Connects relevant pivot points to create support/resistance lines
Monitors Breakouts: Continuously checks for price breaks above/below trendlines
Provides Alerts: Sends notifications when breakouts occur
Settings Panel:
Pivot Length: Control sensitivity of pivot detection
Styling Options: Customize colors, line styles, and extensions
Timing Features: Toggle time display, background highlights, and table visibility
Alert Preferences: Configure sound alerts and label sizes
Table Position: Choose optimal placement for information display
Educational Value:
This indicator helps traders understand price action dynamics through pivot-based analysis. It's particularly useful for identifying potential trend changes and breakout opportunities across all timeframes.
Note: This indicator is for educational and analysis purposes. Always combine with proper risk management and additional market analysis before making trading decisions.
Relative Strength Suite [BLC]📊 Relative Strength Suite
A powerful, all-in-one relative strength toolkit for traders and analysts. Whether you're a trend follower, momentum trader, or sector rotator, this script gives you the flexibility to analyze and screen assets using three distinct RS methodologies—all in one clean interface.
🔍 What It Does
Flexible Relative Strength allows you to compare any asset to a benchmark (like SP:SPX , NASDAQ:QQQ , AMEX:IWM , etc.) using one of four modes:
📈 Relative Strength – Classic price ratio comparison
📘 Dorsey Relative Strength – Smoothed trend-based RS using EMA
📒 Mansfield Relative Strength – Momentum-based RS normalized to its own average
🧮 Screener Mode – Load Indicator into Pine Screener to see all 3 values.
🛠️ Key Features & Settings
🧩 Relative Strength
Comparison Symbol: Select the ticker you want to use as a benchmark.
Highlights new highs/lows in Relative Strength with dynamic line coloring:
🟢 Green = New high (outperformance)
🔴 Red = New low (underperformance)
Optional moving average overlay (SMA, EMA, WMA, HMA) for trend smoothing.
✅ Use Case: Identify when a stock is gaining strength relative to the market or sector.
📘 2. Dorsey RS (Smoothed Trend)
Uses an EMA of the RS ratio to smooth out noise.
Rising Dorsey RS = consistent outperformance.
Falling Dorsey RS = consistent underperformance.
✅ Use Case: Spot long-term relative trends regardless of price volatility.
📒 3. Mansfield RS (Performance Momentum)
Compares RS ratio to its own long-term SMA (default 200).
Values above 0 = outperforming the benchmark.
Values below 0 = underperforming.
✅ Use Case: Ideal for momentum traders and Stan Weinstein-style stage analysis.
🧮 4. Screener Mode
Not for use on your chart. This is only to use in TradingView's Pine Screener.
Displays all three RS lines simultaneously.
Includes all 3 modes to act as screener signals
🛠️How to Use Screener Mode
Add this indicator to your favorites list.
Open Pine Screener and select this indicator.
Select your timeframe.
Click Settings & Change Strength Type to Screener > Click Apply
Hit Scan!
New High Low Signal: Finds stocks making a new RS high (1) or low (-1) over your lookback period.
Dorsey Trend Signal: Finds stocks where the smoothed RS trend is rising (1) or falling (-1).
Mansfield Zone Signal: Finds stocks where momentum is in the positive zone (1) or negative zone (-1)
✅ Use Case: Quickly scan multiple assets for relative strength breakouts, trend shifts, or momentum zones.
🧪 Pro Tip
Combine this indicator with volume, price structure, or moving averages to confirm breakouts and trend strength. Use Screener Mode on a watchlist to identify top RS candidates in seconds.
To clean up your screener table, click the column settings icon ( ⋮ ) and uncheck any columns you don't need to see. You can still filter by them even if they are hidden.
📝 Credits & Notes
Inspired by classic RS methods (including Dorsey and Mansfield).
Final, production-ready version with tooltips, labels, and screener outputs.
For educational and informational purposes—always test before live trading!
Let me know if you see any bugs, miscalculations, or any features you'd like to see added to it!
Floor and Roof Indicator with SignalsFloor and Roof Indicator with Trading Signals
A comprehensive support and resistance indicator that identifies premium and discount zones with automated signal generation.
Key Features:
Dynamic Support/Resistance Zones: Calculates floor (support) and roof (resistance) levels using price action and volatility
Premium/Discount Zone Identification: Highlights areas where price may find resistance or support
Customizable Signal Frequency: Control how often signals are displayed (every Nth occurrence)
Visual Signal Table: Optional table showing the last 5 long and short signal prices
Multiple Timeframe Compatibility: Works across all timeframes
Technical Details:
Uses ATR-based calculations for dynamic zone width adjustment
Combines Bollinger Bands with highest/lowest price analysis
Smoothing options for cleaner signal generation
Fully customizable colors and display options
How to Use:
Floor Zones (Blue): Potential support areas where long positions may be considered
Roof Zones (Pink): Potential resistance areas where short positions may be considered
Signal Crosses: Visual markers when price interacts with key levels
Signal Table: Track recent signal prices for analysis
Settings:
Length: Period for calculations (default: 200)
Smooth: Smoothing factor for cleaner signals
Zone Width: Adjust the thickness of support/resistance zones
Signal Frequency: Control signal display frequency
Visual Options: Customize colors and table position
Alerts Available:
Long signal alerts when price touches discount zones
Short signal alerts when price reaches premium zones
Educational Purpose: This indicator is designed to help traders identify potential support and resistance areas. Always combine with proper risk management and additional analysis.
This description focuses on the technical aspects and educational value while avoiding any language that could be interpreted as financial advice or guaranteed profits.
Micro Trend Start Signal (Up & Down)To compliment fast trends in the market, this strategy should be tried and tested on the 1 minute strategy. The 2nd alerts work also very well.
(STC) with Buy/Sell
PS! This is ment to be used as compliment and confirmation for indicator "UT Bot + LinReg Candles (Dual Sensitivity) by PDK1977
Schaff Trend Cycle (STC) Oscillator with Buy/Sell Signals
The Schaff Trend Cycle (STC) is a fast and reliable oscillator developed by Doug Schaff, designed to improve on traditional cycle indicators like MACD and Stochastic. The STC indicator helps you identify trend direction, potential reversals, and entry/exit points with greater speed and accuracy.
Key Features:
Clear, Color-Coded Line: The STC line turns green when rising and red when falling, making trend changes easy to spot.
Buy/Sell Signals:
Buy: When the STC line crosses up over the 25 level, a green triangle appears, suggesting bullish momentum.
Sell: When the STC line crosses down under the 75 level, a red triangle appears, highlighting potential bearish momentum.
Levels: 25 and 75 are highlighted to mark overbought and oversold regions.
Separate Pane: Designed to be displayed in its own subwindow below the main chart, keeping your price action clean and uncluttered.
How to Use:
Buy Signal: Watch for the STC to cross above 25 for possible long entries.
Sell Signal: Watch for the STC to cross below 75 for possible short entries.
The indicator works on all timeframes and is suitable for trending markets, swing trading, and scalping strategies.
Tip: Combine STC signals with other trend or volume indicators for added confirmation and more robust trading decisions.
Candlesticks MTF + Prev Daily RangeCandlesticks MTF + Previous Daily Range
This TradingView script displays higher timeframe candlesticks on a lower timeframe chart and optionally projects the previous day's high, low, and close levels. The user can define the timeframe from which the candles are taken, typically a higher timeframe like daily. A specified number of historical candles are drawn on the chart using boxes for candle bodies and lines for wicks. The color of each candle indicates its direction: bullish candles use a "long" color (default teal), and bearish candles use a "short" color (default red).
An optional feature allows the projection of the previous daily range. When enabled, the script draws horizontal lines extending across the chart to mark the high, low, and close of the second most recent higher timeframe candle. These lines are color-coded for easy visual identification and can help identify potential support and resistance zones.
All visual elements, including the number of candles, their width, and the colors of candles and projection lines, can be customized through the settings. The script dynamically updates in real time, clearing outdated boxes and lines to avoid visual clutter. This makes it a useful tool for traders who want to incorporate multi-timeframe analysis and key price levels directly into their intraday charting.
Second Pullback Finderlion pull back rocks, by using a familiar trend trading strategy, i have enhance a little more to this. correct positioning of market structure will help make these signals come alive
GANN Angles LevelsGANN Angles Levels - Mathematical Support & Resistance (45°, 90°, 180°, 360°)
GANN-based mathematical support/resistance levels using square root calculations and geometric angles. Provides 4 key GANN levels with customizable multipliers.
🎯 GANN ANGLES LEVELS (GAL)
This indicator calculates support and resistance levels using W.D. GANN's mathematical principles based on square roots and geometric angles.
✨ KEY FEATURES:
- 📐 4 GANN Geometric Angles: 45°, 90°, 180°, 360°
- 🔢 Manual Price Input for Base Level
- 📈 Bullish/Bearish Direction Selection
- ⚙️ Customizable Multipliers (0.5, 1, 1.5, 2, None)
- 📊 Optional Information Table
- 🎨 Color-coded Levels (Blue for input, Green/Red for calculated levels)
💡 HOW TO USE:
1. 🎯 **CRITICAL: Select a REAL high or low point** (significant peak or trough)
2. Set this high/low price manually as your base price
3. Choose direction:
• **Bullish** for support levels (from a major LOW)
• **Bearish** for resistance levels (from a major HIGH)
4. **Select multiplier based on timeframe:**
• 📈 **Higher timeframes (Daily, Weekly, Monthly):** Use larger multipliers (1.5, 2)
• ⚡ **Lower timeframes (1H, 4H, 15M, 5M):** Use smaller multipliers (0.5, 1) or None
• 🎯 **Scalping/Intraday:** Often use "None" for tighter levels
5. GANN levels will be calculated progressively using the time-tested formula
⚠️ **IMPORTANT NOTE:**
The accuracy of GANN levels depends heavily on selecting genuine market highs and lows. Use significant pivot points, not random price levels.
🎯 PERFECT FOR:
- GANN Analysis & Trading
- Mathematical Support/Resistance
- Price Target Setting
- Geometric Price Analysis
- Classical Technical Analysis
Based on W.D. GANN's time-tested mathematical principles for market analysis.
🔒 PROTECTED SCRIPT
This indicator is protected and the source code is not visible.
All rights reserved.
Silver Bullet🎯 Silver Bullet Macro Time & Bias Framework
The Silver Bullet script is a complete framework for identifying high-probability trading windows and directional bias, inspired by ICT concepts.
✅ Key Features:
• Macro Sessions Detection – Automatically identifies key time windows (ICT Killzones or custom hours) on any timeframe.
• Dynamic Session Boxes – Visual boxes marking each session’s high/low range.
• Bias Calculation – Determines Long or Short bias using price action within the session.
• Fibonacci Levels – Automatically draws Fibonacci retracements and extensions relative to session ranges.
• Adaptive Labels & Tables – Clear labels showing session range, bias, entry, target, and stop levels.
• Customizable Timezones & Styles – Supports all chart timezones, different text sizes, and flexible display positions.
⸻
📈 Optimized for the 5-Minute Chart, but can be applied to other intraday timeframes.
🌐 Learn more & contact support: www.macrobullet.trade
ITRADEPRO SMART VOLUMEvisit www.itradepro.academy get full free membership to get full strategies , scanners , educational secrets, courses