Put/Call Volume Ratio (Sentiment Zones)Creates a real-time visual indicator that tracks market sentiment based on options volume, using the Put/Call Volume Ratio:
Put/Call Ratio = (Put Volume) / (Call Volume)
A low ratio (e.g. < 0.7) suggests bullish sentiment, meaning more call options are being bought than puts — traders expect price to rise.
A high ratio (e.g. > 1.2) suggests bearish sentiment, meaning more puts are being bought — traders are hedging or betting on a drop.
📈 What the Script Plots:
A line chart of the real-time Put/Call Volume Ratio.
Colored thresholds to identify sentiment zones:
🟢 Bullish zone: Ratio below 0.7 (green background)
🔴 Bearish zone: Ratio above 1.2 (red background)
🟠 Neutral zone: Between 0.7 and 1.2 (no background color)
Horizontal lines for the bullish and bearish zone boundaries.
🛠️ Use Cases for Traders:
Confirm sentiment before entering a trade.
Spot potential reversals when sentiment extremes are reached.
Combine with price action or Strat setups to increase trade confidence.
Sentiment
Ticker Pulse Meter BasicPairs nicely with the Contrarian 100 MA located here:
and the Enhanced Stock Ticker with 50MA vs 200MA located here:
Description
The Ticker Pulse Meter Basic is a dynamic Pine Script v6 indicator designed to provide traders with a visual representation of a stock’s price position relative to its short-term and long-term ranges, enabling clear entry and exit signals for long-only trading strategies. By calculating three normalized metrics—Percent Above Long & Above Short, Percent Above Long & Below Short, and Percent Below Long & Below Short—this indicator offers a unique "pulse" of market sentiment, plotted as stacked area charts in a separate pane. With customizable lookback periods, thresholds, and signal plotting options, it empowers traders to identify optimal entry points and profit-taking levels. The indicator leverages Pine Script’s force_overlay feature to plot signals on either the main price chart or the indicator pane, making it versatile for various trading styles.
Key Features
Pulse Meter Metrics:
Computes three percentages based on short-term (default: 50 bars) and long-term (default: 200 bars) lookback periods:
Percent Above Long & Above Short: Measures price strength when above both short and long ranges (green area).
Percent Above Long & Below Short: Indicates mixed momentum (orange area).
Percent Below Long & Below Short: Signals weakness when below both ranges (red area).
Flexible Signal Plotting:
Toggle between plotting entry (blue dots) and exit (white dots) signals on the main price chart (location.abovebar/belowbar) or in the indicator pane (location.top/bottom) using the Plot Signals on Main Chart option.
Entry/Exit Logic:
Long Entry: Triggered when Percent Above Long & Above Short crosses above the high threshold (default: 20%) and Percent Below Long & Below Short is below the low threshold (default: 40%).
Long Exit: Triggered when Percent Above Long & Above Short crosses above the profit-taking level (default: 95%).
Visual Enhancements:
Plots stacked area charts with semi-transparent colors (green, orange, red) for intuitive trend analysis.
Displays threshold lines for entry (high/low) and profit-taking levels.
Includes a ticker and timeframe table in the top-right corner for quick reference.
Alert Conditions: Supports alerts for long entry and exit signals, integrable with TradingView’s alert system for automated trading.
Technical Innovation: Combines normalized price metrics with Pine Script v6’s force_overlay for seamless signal integration on the price chart or indicator pane.
Technical Details
Calculation Logic:
Uses confirmed bars (barstate.isconfirmed) to calculate metrics, ensuring reliability.
Short-term percentage: (close - lowest(low, lookback_short)) / (highest(high, lookback_short) - lowest(low, lookback_short)).
Long-term percentage: (close - lowest(low, lookback_long)) / (highest(high, lookback_long) - lowest(low, lookback_long)).
Derived metrics:
pct_above_long_above_short = (pct_above_long * pct_above_short) * 100.
pct_above_long_below_short = (pct_above_long * (1 - pct_above_short)) * 100.
pct_below_long_below_short = ((1 - pct_above_long) * (1 - pct_above_short)) * 100.
Signal Plotting:
Entry signals (long_entry) use ta.crossover to detect when pct_above_long_above_short crosses above entryThresholdhigh and pct_below_long_below_short is below entryThresholdlow.
Exit signals (long_exit) use ta.crossover for pct_above_long_above_short crossing above profitTake.
Signals are plotted as tiny circles with force_overlay=true for main chart or standard plotting for the indicator pane.
Performance Considerations: Optimized for efficiency by calculating metrics only on confirmed bars and using lightweight plotting functions.
How to Use
Add to Chart:
Copy the script into TradingView’s Pine Editor and apply it to your chart.
Configure Settings:
Short Lookback Period: Adjust the short-term lookback (default: 50 bars) for sensitivity.
Long Lookback Period: Set the long-term lookback (default: 200 bars) for broader context.
Entry Thresholds: Modify high (default: 20%) and low (default: 40%) thresholds for entry conditions.
Profit Take Level: Set the exit threshold (default: 95%) for profit-taking.
Plot Signals on Main Chart: Check to display signals on the price chart; uncheck for the indicator pane.
Interpret Signals:
Long Entry: Blue dots indicate a strong bullish setup when price is high relative to both lookback ranges and weakness is low.
Long Exit: White dots signal profit-taking when strength reaches overbought levels.
Use the stacked area charts to assess trend strength and momentum.
Set Alerts:
Create alerts for Long Entry and Long Exit conditions using TradingView’s alert system.
Customize Visuals:
Adjust colors and thresholds via TradingView’s settings for better visibility.
The ticker table displays the symbol and timeframe in the top-right corner.
Example Use Cases
Swing Trading: Use entry signals to capture short-term bullish moves within a broader uptrend, exiting at profit-taking levels.
Trend Confirmation: Monitor the green area (Percent Above Long & Above Short) for sustained bullish momentum.
Market Sentiment Analysis: Use the stacked areas to gauge bullish vs. bearish sentiment across timeframes.
Notes
Testing: Backtest the indicator on your chosen market and timeframe to validate its effectiveness.
Compatibility: Built for Pine Script v6 and tested on TradingView as of June 20, 2025.
Limitations: Signals are long-only; adapt the script for short strategies if needed.
Enhancements: Consider adding a histogram for the difference between metrics or additional thresholds for nuanced trading.
Acknowledgments
Inspired by public Pine Script examples and designed to simplify complex market dynamics into a clear, actionable tool. For licensing or support, contact Chuck Schultz (@chuckaschultz) on TradingView. Share feedback in the comments, and happy trading!
ORB with Alerts & Previous Sessions + Dashboard📈 Open Range Breakout (ORB) Indicator with Bias Dashboard & Alerts
This indicator plots the Open Range Breakout (ORB) using a defined session (default: 13:30–13:45), showing:
✅ Today's ORB range
✅ Yesterday’s ORB for reference (If session hasnt ended)
✅ Option to display previous ORBs (up to N sessions)
It also includes:
🧠 A Bias Dashboard that visually indicates whether price is:
🔼 Above the ORB (🌙 Bullish)
🔽 Below the ORB (🩸 Bearish)
🔁 Inside the range (🌊 Neutral)
🚨 Breakout alerts trigger when price crosses above the high or below the low of the ORB after it forms.
Customize your session time, colors, and visibility options directly from the settings panel. Perfect for intraday traders looking to track key breakout zones across multiple sessions.
Average Directional IndexRKM_ADX is a custom Average Directional Index (ADX) indicator that visually highlights strong trend strength using color cues:
🔍 What It Does:
Calculates the ADX to measure trend strength.
When ADX crosses above 25 (default threshold), the line turns green (Default Color, user may change as per desire), indicating a strong trend.
When ADX is below 25, the line remains red Default Color, user may change as per desire), signaling a weak or ranging market.
🛠 How to Use:
Add RKM_ADX to your chart (from your scripts or Indicators list).
Look for green ADX lines – they suggest stronger trends where trend-following strategies may work better.
Red ADX lines indicate weak trends or sideways movement – avoid trend trades or switch to range-based strategies.
You can adjust the threshold (default is 25) in the settings to match your preferred trend sensitivity.
CompositeIndex🧠 Composite Index — RSI Reimagined for Precision Reversals
Referenced From?
Based on Constance Brown's thesis submitted in 2015 to fulfill requirements of "Master of Financial Analysis" (MFTA).
📌 OVERVIEW
The Composite Index (CI), designed by renowned technical analyst Constance Brown, is a refined version of the traditional RSI (Relative Strength Index) — engineered to solve its most frustrating flaw:
“RSI often gives false divergence signals due to its fixed 0–100 range.”
This indicator presents a non-bounded, momentum-weighted oscillator, which retains RSI’s familiarity, but removes its limitations.
The result?
A powerful, leading reversal tool that:
Detects hidden divergences
Avoids early or misleading RSI peaks
Anchors mean-reversion more effectively with dynamic bands
This version includes three operational modes, empowering traders to adapt it to trend, volatility, and reversal scenarios.
⚙️ COMPONENT BREAKDOWN
🔹 Composite Index Formula
The core CI formula is:
CI = Momentum(RSI1, N) + SMA(RSI2, M)
RSI1 = traditional RSI (default 14)
Momentum = recent change in RSI1
RSI2 = shorter RSI (default 3)
SMA = smoothing of RSI2 (default 3)
This blend captures:
Longer-term RSI directional shifts (momentum)
Short-term oscillator smoothing (SMA)
The resulting oscillator is unbounded, unlike RSI — allowing truer divergences.
🔹 Mode 1: Traditional
Plots the Composite Index
Optionally overlays:
Avg1: medium-term smoothing line (default 13)
Avg2: longer baseline trend reference (default 33)
Great for:
Manual divergence spotting
Trend reversal confirmation
Oscillator cross back strategies
🔹 Mode 2: Traditional + Bands
Adds ±2 standard deviation envelopes around Avg2
These act as dynamic overbought/oversold regions
Helps detect extreme deviation conditions
Great for:
Fade trades / scalps
Mean reversion signals
Volatility compression breakouts
🔹 Mode 3: Z-Score
Plots Composite Index as a Z-Score
Reframes CI as a statistically normalized range (e.g., ±2σ)
Adds zero-line and bands to define contextual extremes
Great for:
Probability-based edge finding
Quant strategies
Clean divergence against price or other indicators
💡 TRADING STRATEGY EXAMPLES
✅ Setup 1 — Reversal Divergence (Z-Score Mode)
🔹 Market makes lower low
🔹 CI (Z-Score) makes higher low
🔹 Z-Score crosses above -2 → Trigger entry
Interpretation:
CI detects momentum shift earlier than price.
Z-Score confirms oversold mean reversion.
Use case: Trend reversal scalp or swing entry.
✅ Setup 2 — Momentum Pullback Continuation (Traditional Mode)
🔹 CI pulls back to Avg1 or Avg2 from above
🔹 Price makes higher low
🔹 Composite bounces and resumes higher
Interpretation:
Avg1 acts like a dynamic "RSI 50" — trend continuation confirmation.
Use case: Buy-the-dip setups or stop-hunt re-entries.
✅ Setup 3 — Overextended Fade (Band Mode)
🔹 CI pushes beyond +2 std dev
🔹 Price starts to stall or form a reversal candle
🔹 CI rolls over while price is sideways/up
Interpretation:
Extreme momentum deviation resolved by price mean-reverting.
Use case: Short-term fade or reversion-to-VWAP setup.
✅ HOW TO USE IT
Goal Recommended Mode
Divergences - Z-Score / Traditional
Trend continuation - Traditional + Avg1/Avg2
Overbought/Oversold - TraditionalWithBands
Quant-normalized setups - Z-Score
Manual RSI replacement - Any mode
🎯 TIPS FOR POWER USERS
Combine CI with VWAP or anchored RSI for stronger confluence.
Use Avg1 crossovers as dynamic entry/exit triggers.
Overlay CI with price directly using overlay=true if you want to align levels visually.
Use in confluence with volume, structure, or liquidity zones.
Cross Roads - A 2 lines cross indicator for trend tradingWe, at Stonehill Forex are posting our first homegrown indicator, which was profiled on the Stonehill Forex website in March ‘25. The original version was coded for MetaTrader 4 (MT4) and subsequently coded for MT5 and TradingView, based on community interest. They (MT4/5) will be available from our on-line library, HERE . This one comes to you at no cost and begins our TV library.
It’s a two lines cross price overlay which, at its heart, uses two weighted moving average lines run through a very sleek filter. The result calls out pretty accurate signals. We tested it over a three-year period and our results can be viewed in the blog, HERE . Additionally, there is an accompanying technical analysis video to show you how to use it. The video is embedded in the blog for ease and convenience.
The indicator has two settings;
StartLen: The starting point where the math begins to gather data. The default value is 2.
There are two caveats we wanted to mention regarding the settings for “StartLen”;
The “StartLen” setting variable must not be less than zero.
The “StartLen” setting must beless than the “LOOKBACK_period”.
LOOKBACK_period: This is the number of historical data periods the math will include when generating the signal lines. The default value is 24.
How to use it;
Long: When the green signal line crosses above the magenta signal line.
Short: When the red signal line crosses above the green signal line.
Thanks for checking us out. Watch for additional indicators from us coming in the near future.
TWAP/VWAP AUTO SHIFTER Bands🟢 TWAP/VWAP AUTO SHIFTER Bands – NinjaTrader Logic + Dynamic Deviation Zones
📌 Overview
This powerful tool combines institution-grade price anchoring (VWAP/TWAP) with adaptive volatility bands and smart zone visualization. The core innovation: a toggleable VWAP logic engine, letting traders switch between:
* 🧠 Standard TradingView VWAP/TWAP
* 🧠 Custom NinjaTrader-style VWAP logic (faithfully ported for Pine Script 6)
Use it to visualize where price is anchored, where trend turns, and where hidden liquidity or mean-reversion zones may be forming.
🎯 What This Script Does
This indicator plots:
1. A central VWAP/TWAP line, anchored to -any timeframe or custom period-
2. Karma trend line using adaptive volatility envelopes
3. Dynamic bands that react to price range, volatility, and momentum
4. Optional range-based zones using Fibonacci-like ratios for structure detection
5. A visual "hidden fill" shading system to highlight bullish or bearish control
🚀 Unique Features
🧮 1. NinjaTrader VWAP Logic (Optional)
When enabled, this mode replaces TradingView’s default VWAP with a custom weighted average based on:
mean = average of ((high + low) and (open + close))
VWAP = sum(mean × volume) / sum(volume)
✔ Gives more stable center in volatile conditions
✔ Matches many institutional VWAP tools
Use the toggle:
☑️ “Use NinjaTrader VWAP Formula”
To activate this precision logic.
🕰 2. Anchor VWAP/TWAP to Any Timeframe
Choose your VWAP anchor from:
* D = Daily
* W = Weekly
* M = Monthly
* Or define your **own custom timeframe** (e.g., “240” or “15”)
This makes it:
⏳ Perfect for day traders anchoring intraday
🧭 Valuable for swing traders observing weekly bias
🧱 Solid for long-term positioning
📊 3. Karma Deviation Line (Trend Pulse)
The Karma line uses an adaptive efficiency ratio + fast/slow deviation logic to track momentum shifts.
* When it crosses above VWAP: possible bullish control
* When it falls below: possible reversion risk
It uses smoothed deviation bands to filter noise.
🎨 4. Hidden Fills & Range Bands
Zone shading makes this one of the most visual VWAP bands indicators out there:
* Red shade = aggressive push above VWAP
* Green shade = price collapsing under VWAP
* White “internal channel” = tight inner value zone
* Purple/gray bands = map structural levels for profit-taking, fading, or breakout watch
🧠 How to Use It
🧩 VWAP Anchoring
* Set timeframe to match your strategy horizon
* Use custom anchor (like 15m, 2h) to match intraday setups
🧠 Ninja Logic
* Enable to use VWAP matching NinjaTrader and institutional backends
* Recommended for high-volume or low-liquidity instruments
📈 Karma Bands
* Look for Karma line breaking VWAP from below → early trend
* Look for Karma curling down inside green zone → mean reversion
📐 Range Zones
* Use shaded fills to visualize exhaustion
* Watch for clean bounces off internal ratios
⚙️Recommended Settings
| Style | Setting |
| -------------------------------| ------------------------------------ |
| VWAP Mode | NinjaLogic ON (for precise behavior) |
| Anchor TF | Daily (or custom intraday like 30m) |
| Deviation | Fast: 50, Slow: 200 |
| Show Range Marks | ON |
| Hidden Zones | ON (for visual clarity) |
🧪 Tested On:
* BTC/ETH/USD
* Nifty Futures
* NASDAQ Stocks
* SPY/QQQ
* Crude Oil and Metals
📝 Author’s Note
Remember that this is an educational idea and past performance is not assurance of future performance.
🟢 Happy Anchoring!
Momentum Flow Matrix — VWAP × RSI × ADX × Volume🧠 Momentum Flow Matrix — VWAP × RSI × ADX × Volume
📌 OVERVIEW
The Momentum Flow Matrix is a compact yet powerful multi-factor market diagnosis tool.
It combines institutional-grade price anchoring (VWAP) with momentum and volume analytics (RSI, ADX, volume spikes) and displays the result as a clean dashboard widget on your chart.
You’ll instantly know:
1. Where price is anchored
2. Whether momentum is building or fading
3. Whether volume is supporting the move
4. Whether it’s a high-probability continuation or a risk of mean reversion
🚀 FEATURES
✅ 1. NinjaTrader VWAP Logic (Optional Toggle)
The VWAP calculation can be switched between:
📊 TradingView's native ta.vwap
🧠 Custom NinjaTrader-style VWAP, based on:
VWAP = sum( ((open+close)/2 + (high+low)/2)/2 × volume ) / sum(volume)
This more nuanced formula better reflects institutional execution levels.
⏰ 2. Anchor VWAP to Any Timeframe
Choose your VWAP anchor period from:
Daily, Weekly, Monthly
Intraday (e.g. 60-min, 240-min)
Custom (e.g. 15-min for scalpers)
This makes FlowM suitable for all timeframes and trading styles.
📉 3. RSI Monitoring with Color Zones
Dynamically highlights overbought/oversold conditions
Color-coded (red, green, gray) in the matrix
Can be used alone or combined with other signals
📈 4. ADX & DI Trend Strength Detection
Computes trend strength (ADX) and direction (DI+, DI–)
Classifies price action as:
✅ Bullish trend
🔴 Bearish trend
⚫ Neutral/no trend
🔥 5. Volume Spike Pulse
Flags when current volume exceeds historical average
Helps identify breakouts, panic dumps, or institutional interest
🧮 6. Momentum Score (0–100%)
A weighted combination of all components to produce a single momentum health score:
RSI state
ADX strength
Directional bias (DI)
Volume strength
Color-coded in real time:
🟢 Above 60%: Bullish bias
🔴 Below 40%: Bearish bias
⚪ Between: Neutral / Transition
🧑🏫 HOW TO TRADE WITH IT
📌 Setup Example 1 — Trend Continuation
VWAP rising (anchored to 1H or Daily)
RSI in the 50–60 range (not OB yet)
ADX > 25, DI+ > DI–
Volume spike present
✅ Matrix score > 70%
🟢 Trade idea: Long breakout entry with tight stop just under VWAP
📌 Setup Example 2 — Mean Reversion
Price above VWAP but RSI > 70
ADX < 20
Momentum % < 45%
Vol spike recently happened and faded
🔴 Trade idea: Short pullback into VWAP or fade extreme extension
📌 Setup Example 3 — Reversal Emerging
VWAP flat or down, but price just reclaimed it
RSI rising from oversold
ADX < 25 but DI+ crossing over DI–
Volume starting to rise
⚪ Trade idea: Early entry before full trend confirmation
🖼 VISUAL OUTPUT (Widget Example)
────────────────────────────
- Signal Value
────────────────────────────
- VWAP 45123.75
- RSI 61.2 🔴
- ADX 27.4 🟢 Bull
- Vol Spike 🔥 Yes
- Momentum % 75% 🟢
─────────────────────────────
✅ Positioned in the top-right of your chart
✅ Non-intrusive, always-on, highly visual
⚙️ CUSTOMIZATION OPTIONS
VWAP formula (Ninja vs TV)
Anchor timeframe
RSI, ADX lengths
Volume spike threshold
Toggle widget on/off
Clean and fast performance (optimized for Pine v6)
🧪 Best Use Cases
Intraday scalping (15m VWAP + short RSI/ADX)
Trend confirmation for swing entries (1H–4H anchors)
Momentum scoring for options traders
Exit management when scores begin to fade
🎁 Final Notes
FlowM was built to be intelligent, visually elegant, and truly multidimensional.
Whether you're a scalper, swing trader, or algo developer — this matrix simplifies complex conditions into clean, actionable insight.
👉 Try adding FlowM to your existing chart templates.
👉 Combine it with order flow or liquidity zones for maximum edge.
Please note that this is an educational idea and past performance may not be replicable in the future.
G8 Currency Strength IndicatorThe G8 Currency Strength Indicator displays the relative strength of all eight major currencies (USD, EUR, GBP, JPY, CHF, AUD, CAD, NZD) in real-time. It provides a clear visualization of which currencies are strengthening or weakening relative to each other.
Understanding the Scale
The indicator uses a percentage scale that shows how each currency has performed since the last reset point:
0% line: This is the baseline where all currencies start at each reset period
Positive values (above 0%): The currency has strengthened relative to the other currencies
Negative values (below 0%): The currency has weakened relative to the other currencies
How to Read the Values
The percentage values on the right scale represent the relative change in currency strength:
+2%: This currency has gained 2% in strength compared to the basket of other currencies since the reset
-1.5%: This currency has lost 1.5% in strength relative to others since the reset
Important : These percentages do NOT represent actual price movements in any specific currency pair. For example, if USD shows +2%, it doesn't mean EUR/USD has moved 2%.
Practical Interpretation
Compare currencies relative to each other: If USD is at +2% and EUR is at -1%, the USD is significantly stronger than EUR
Focus on the trends: Rising lines indicate strengthening currencies, falling lines indicate weakening
Look for divergences: Large gaps between currencies often present the best trading opportunities
The actual percentage values are less important than the relative positions and movements of the lines
The scale provides a normalized view that makes it easy to compare all eight currencies on equal footing, regardless of their individual exchange rates.
5DMA Optional HMA Entry📈 5DMA Optional HMA Entry Signal – Precision-Based Momentum Trigger
Category: Trend-Following / Reversal Timing / Entry Optimization
🔍 Overview:
The 5DMA Optional HMA Entry indicator is a refined price-action entry tool built for traders who rely on clean trend alignment and precise timing. This script identifies breakout-style entry points when price gains upward momentum relative to short-term moving averages — specifically the 5-day Simple Moving Average (5DMA) and an optional Hull Moving Average (HMA).
Whether you're swing trading stocks, scalping ETFs like UVXY or VXX, or looking for pullback recovery entries, this tool helps time your long entries with clarity and flexibility.
⚙️ Core Logic:
Primary Condition (Always On):
🔹 Close must be above the 5DMA – ensuring upward short-term momentum is confirmed.
Optional Condition (Toggled by User):
🔹 Close above the HMA – adds slope-responsive trend filtering for smoother setups. Enable or disable via checkbox.
Bonus Entry Filter (Optional):
🔹 Green Candle Wick Breakout – optional pattern logic that detects bullish momentum when the high pierces above both MAs, with a green body.
Reset Mechanism:
🔁 Signal resets only after price closes back below all active MAs (5DMA and HMA if enabled), reducing noise and avoiding repeated signals during chop.
🧠 Why This Works:
This indicator captures the kind of setups that professional traders look for:
Momentum crossovers without chasing late.
Mean reversion snapbacks that align with fresh bullish moves.
Avoids premature entries by requiring clear structure above moving averages.
Optional HMA filter allows adaptability: turn it off during choppy markets or range conditions, and on during trending environments.
🔔 Features:
✅ Adjustable HMA Length
✅ Enable/Disable HMA Filter
✅ Optional Green Wick Breakout Detection
✅ Visual “Buy” label plotted below qualifying bars
✅ Real-time Alert Conditions for automated trading or manual alerts
🎯 Use Cases:
VIX-based ETFs (e.g., UVXY, VXX): Catch early breakouts aligned with volatility spikes.
Growth Stocks: Time pullback entries during bullish runs.
Futures/Indices: Combine with macro levels for intraday scalps or swing setups.
Overlay on Trend Filters: Combine with RSI, MACD, or VWAP for confirmation.
🛠️ Recommended Settings:
For smooth setups in volatile names, use:
HMA Length: 20
Keep green wick filter ON
For fast momentum trades, disable the HMA filter to act on 5DMA alone.
⭐ Final Thoughts:
This script is built to serve both systematic traders and discretionary scalpers who want actionable signals without noise or lag. The toggleable HMA feature lets you adjust sensitivity depending on market conditions — a key edge in adapting to volatility cycles.
Perfect for those who value clean, non-repainting entries rooted in logical structure.
ES Institutional Orderlow free versionThis indicator helps identify potential institutional activity.
Watch for divergences between the line and ES price — they may hint at accumulation or distribution.
Heikin-Ashi EMA + RSI Color CustomMeu indicador personalizado simula um heikin ashi com media movel exponencial. estilo blackarrow.
ORB EST📊 ORB (Opening Range Breakout) Sessions
This script highlights opening range breakouts across key global market times. It draws high, low, and midline levels during selected sessions and extends them after the session ends for breakout tracking.
Sessions (EST):
7:00–7:05 AM – Pre-Market
9:30–9:45 AM – New York Open
1:30–1:45 PM – Midday 4H Close
3:30–3:45 PM – Market Close
6:00–6:01 PM – Post-Close Spike
6:00–6:15 PM – Market Open
8:00–8:05 PM – Asia Open
2:00–2:15 AM – Frankfurt Open
3:00–3:15 AM – London Open
3:45–4:00 AM – Optional London Extension
Yelober_Momentum_BreadthMI# Yelober_Momentum_BreadthMI: Market Breadth Indicator Analysis
## Overview
The Yelober_Momentum_BreadthMI is a comprehensive market breadth indicator designed to monitor market internals across NYSE and NASDAQ exchanges. It tracks several key metrics including up/down volume ratios, TICK readings, and trend momentum to provide traders with real-time insights into market direction, strength, and potential turning points.
## Indicator Components
This indicator displays a table with data for:
- NYSE breadth metrics
- NASDAQ breadth metrics
- NYSE TICK data and trends
- NASDAQ TICK (TICKQ) data and trends
## Table Columns and Interpretation
### Column 1: Market
Identifies the data source:
- **NYSE**: New York Stock Exchange data
- **NASDAQ**: NASDAQ exchange data
- **Tick**: NYSE TICK index
- **TickQ**: NASDAQ TICK index
### Column 2: Ratio
Shows the current ratio values with different calculations depending on the row:
- **For NYSE/NASDAQ rows**: Displays the up/down volume ratio
- Positive values (green): More up volume than down volume
- Negative values (red): More down volume than up volume
- The magnitude indicates the strength of the imbalance
- **For Tick/TickQ rows**: Shows the ratio of positive to negative ticks plus the current TICK reading in parentheses
- Format: "Ratio (Current TICK value)"
- Positive values (green): More stocks ticking up than down
- Negative values (red): More stocks ticking down than up
### Column 3: Trend
Displays the directional trend with both a symbol and value:
- **For NYSE/NASDAQ rows**: Shows the VOLD (volume difference) slope
- "↗": Rising trend (positive slope)
- "↘": Falling trend (negative slope)
- "→": Neutral/flat trend (minimal slope)
- **For Tick/TickQ rows**: Shows the slope of the ratio history
- Color-coding: Green for positive momentum, Red for negative momentum, Gray for neutral
The trend column is particularly important as it shows the current momentum of the market. The indicator applies specific thresholds for color-coding:
- NYSE: Green when normalized value > 2, Red when < -2
- NASDAQ: Green when normalized value > 3.5, Red when < -3.5
- TICK/TICKQ: Green when slope > 0.01, Red when slope < -0.01
## How to Use This Indicator
### Basic Interpretation
1. **Market Direction**: When multiple rows show green ratios and upward trends, it suggests strong bullish market internals. Conversely, red ratios and downward trends indicate bearish internals.
2. **Market Breadth**: The magnitude of the ratios indicates how broad-based the market movement is. Higher absolute values suggest stronger market breadth.
3. **Momentum Shifts**: When trend arrows change direction or colors shift, it may signal a potential reversal or change in market momentum.
4. **Divergences**: Look for divergences between different markets (NYSE vs NASDAQ) or between ratios and trends, which can indicate potential market turning points.
### Advanced Usage
- **Volume Normalization**: The indicator includes options to normalize volume data (none, tens, thousands, millions, 10th millions) to handle different exchange scales.
- **Trend Averaging**: The slope calculation uses an averaging period (default: 5) to smooth out noise and identify more reliable trend signals.
## Examples for Interpretation
### Example 1: Strong Bullish Market
```
| Market | Ratio | Trend |
|--------|---------|-----------|
| NYSE | 1.75 | ↗ 2.85 |
| NASDAQ | 2.10 | ↗ 4.12 |
| Tick | 2.45 (485) | ↗ 0.05 |
| TickQ | 1.95 (320) | ↗ 0.03 |
```
**Interpretation**: All metrics are positive and trending upward (green), indicating a strong, broad-based rally. The high ratio values show significant bullish dominance. This suggests continuation of the upward move with good momentum.
### Example 2: Weakening Market
```
| Market | Ratio | Trend |
|--------|---------|-----------|
| NYSE | 0.45 | ↘ -1.50 |
| NASDAQ | 0.85 | → 0.30 |
| Tick | 0.95 (105) | ↘ -0.02 |
| TickQ | 1.20 (160) | → 0.00 |
```
**Interpretation**: The market is showing mixed signals with positive but low ratios, while NYSE and TICK trends are turning negative. NASDAQ shows neutral to slightly positive momentum. This divergence often occurs near market tops or during consolidation phases. Traders should be cautious and consider reducing position sizes.
### Example 3: Negative Market Turning Positive
```
| Market | Ratio | Trend |
|--------|---------|-----------|
| NYSE | -1.25 | ↗ 1.75 |
| NASDAQ | -0.95 | ↗ 2.80 |
| Tick | -1.35 (-250) | ↗ 0.04 |
| TickQ | -1.10 (-180) | ↗ 0.02 |
```
**Interpretation**: This is a potential bottoming pattern. Current ratios are still negative (red) showing overall negative breadth, but the trends are all positive (green arrows), indicating improving momentum. This divergence often occurs at market bottoms and could signal an upcoming reversal. Look for confirmation with price action before establishing long positions.
### Example 4: Mixed Market with Divergence
```
| Market | Ratio | Trend |
|--------|---------|-----------|
| NYSE | 1.45 | ↘ -2.25 |
| NASDAQ | -0.85 | ↘ -3.80 |
| Tick | 1.20 (230) | ↘ -0.03 |
| TickQ | -0.75 (-120) | ↘ -0.02 |
```
**Interpretation**: There's a significant divergence between NYSE (positive ratio) and NASDAQ (negative ratio), while all trends are negative. This suggests sector rotation or a market that's weakening but with certain segments still showing strength. Often seen during late-stage bull markets or in transitions between leadership groups. Consider reducing risk exposure and focusing on relative strength sectors.
## Practical Trading Applications
1. **Confirmation Tool**: Use this indicator to confirm price movements. Strong breadth readings in the direction of the price trend increase confidence in trade decisions.
2. **Early Warning System**: Watch for divergences between price and breadth metrics, which often precede market turns.
3. **Intraday Trading**: The real-time nature of TICK and volume data makes this indicator valuable for day traders to gauge intraday momentum shifts.
4. **Market Regime Identification**: Sustained readings can help identify whether the market is in a trend or chop regime, allowing for appropriate strategy selection.
This breadth indicator is most effective when used in conjunction with price action and other technical indicators rather than in isolation.
Yelober - Sector Rotation Detector# Yelober - Sector Rotation Detector: User Guide
## Overview
The Yelober - Sector Rotation Detector is a TradingView indicator designed to track sector performance and identify market rotations in real-time. It monitors key sector ETFs, calculates performance metrics, and provides actionable stock recommendations based on sector strength and weakness.
## Purpose
This indicator helps traders identify when capital is moving from one sector to another (sector rotation), which can provide valuable trading opportunities. It also detects risk-off conditions in the market and highlights sectors with abnormal trading volume.
## Table Columns Explained
### 1. Sector
Displays the sector name being monitored. The indicator tracks six primary sectors plus the S&P 500:
- Energy (XLE)
- Financial (XLF)
- Technology (XLK)
- Consumer Staples (XLP)
- Utilities (XLU)
- Consumer Discretionary (XLY)
- S&P 500 (SPY)
### 2. Perf %
Shows the daily percentage performance of each sector ETF. Values are color-coded:
- Green: Positive performance
- Red: Negative performance
Positive values display with a "+" sign (e.g., +1.25%)
### 3. RSI
Displays the Relative Strength Index value for each sector, which helps identify overbought or oversold conditions:
- Values above 70 (highlighted in red): Potentially overbought
- Values below 30 (highlighted in green): Potentially oversold
- Values between 30-70 (highlighted in blue): Neutral territory
### 4. Vol Ratio
Shows the volume ratio, which compares today's volume to the average volume over the lookback period:
- Values above 1.5x (highlighted in yellow): Indicates abnormally high trading volume
- Values below 1.5x (highlighted in blue): Normal trading volume
This helps identify sectors with unusual activity that may signal important price movements.
### 5. Trend
Displays the current price trend direction with symbols:
- ▲ (green): Uptrend (today's close > yesterday's close)
- ▼ (red): Downtrend (today's close < yesterday's close)
- ◆ (gray): Neutral (today's close = yesterday's close)
## Summary & Recommendations Section
The summary section provides:
1. **Sector Rotation Detection**: Identifies when there's a significant performance gap (>2%) between the strongest and weakest sectors.
2. **Risk-Off Mode Detection**: Alerts when defensive sectors (Consumer Staples and Utilities) are positive while Technology is negative, which often signals investors are moving to safer assets.
3. **Strong Volume Detection**: Indicates when any sector shows abnormally high trading volume.
4. **Stock Recommendations**: Suggests specific stocks to consider for long positions (from the strongest sectors) and short positions (from the weakest sectors).
## Example Interpretations
### Example 1: Sector Rotation
If you see:
- Technology: -1.85%
- Financial: +2.10%
- Summary shows: "SECTOR ROTATION DETECTED: Rotation from Technology to Financial"
**Interpretation**: Capital is moving out of tech stocks and into financial stocks. This could be due to rising interest rates, which typically benefit banks while pressuring high-growth tech companies. Consider looking at financial stocks like JPM, BAC, and WFC for potential long positions.
### Example 2: Risk-Off Conditions
If you see:
- Consumer Staples: +0.80%
- Utilities: +1.20%
- Technology: -1.50%
- Summary shows: "RISK-OFF MODE DETECTED"
**Interpretation**: Investors are seeking safety in defensive sectors while selling growth-oriented tech stocks. This often occurs during market uncertainty or ahead of economic concerns. Consider reducing exposure to high-beta stocks and possibly adding defensive names like PG, KO, or NEE.
### Example 3: Volume Spike
If you see:
- Energy: +3.20% with Volume Ratio 2.5x (highlighted in yellow)
- Summary shows: "STRONG VOLUME DETECTED"
**Interpretation**: The energy sector is making a strong move with significantly higher-than-average volume, suggesting conviction behind the price movement. This could indicate the beginning of a sustained trend in energy stocks. Consider names like XOM, CVX, and COP.
## How to Use the Indicator
1. Apply the indicator to any chart (works best on daily timeframes).
2. Customize settings if needed:
- Timeframe: Choose between intraday (60 or 240 minutes), daily, or weekly
- Lookback Period: Adjust the historical comparison period (default: 20)
- RSI Period: Modify the RSI calculation period (default: 14)
3. To refresh the data: Click the settings icon, increase the "Click + to refresh data" counter, and click "OK".
4. Identify opportunities based on sector performance, RSI levels, volume ratios, and the summary recommendations.
This indicator helps traders align with market rotation trends and identify which sectors (and specific stocks) may outperform or underperform in the near term.
TS Multi-Indicator Trend DetectorDeveloped by KP
This indicator provides a visually clean and reliable trend overlay by combining multiple high-confidence technical indicators into a single floating line above price action. It’s designed for traders who want trend clarity without chart clutter.
⸻
🔍 What It Does:
• Uses EMA (21), RSI, MACD, ADX, and Directional Movement (DI) indicators to evaluate the market trend
• Assigns a “Bullish” or “Bearish” score based on how many indicators confirm the trend
• Plots a floating colored trend line above the price candles to avoid visual interference
• 🟡 Yellow Line = Bullish Trend
• 🔵 Blue Line = Bearish Trend
• Built with multi-timeframe compatibility (works on 5m to weekly charts)
• Minimalist, no noise — no arrows, no labels, just clarity
⸻
⚙️ How It Works:
• Trend shifts when 3 or more out of 5 conditions are met:
• Price above/below 21 EMA
• RSI > 50 or < 50
• MACD crossover
• ADX strength confirmation
• Directional movement dominance (+DI vs -DI)
⸻
🧠 Why Use This?
Unlike traditional moving averages or lagging signals, this tool filters market noise using a multi-indicator consensus approach, then visualizes it as a non-intrusive floating trend line — helping you focus only on meaningful price action.
⸻
✅ Best For:
• Swing traders, intraday trend followers, and algo developers
• Clean-chart enthusiasts who value signal quality over quantity
TS Multi-Indicator Trend DetectorDeveloped by KP
This indicator provides a visually clean and reliable trend overlay by combining multiple high-confidence technical indicators into a single floating line above price action. It’s designed for traders who want trend clarity without chart clutter.
⸻
🔍 What It Does:
• Uses EMA (21), RSI, MACD, ADX, and Directional Movement (DI) indicators to evaluate the market trend
• Assigns a “Bullish” or “Bearish” score based on how many indicators confirm the trend
• Plots a floating colored trend line above the price candles to avoid visual interference
• 🟡 Yellow Line = Bullish Trend
• 🔵 Blue Line = Bearish Trend
• Built with multi-timeframe compatibility (works on 5m to weekly charts)
• Minimalist, no noise — no arrows, no labels, just clarity
⸻
⚙️ How It Works:
• Trend shifts when 3 or more out of 5 conditions are met:
• Price above/below 21 EMA
• RSI > 50 or < 50
• MACD crossover
• ADX strength confirmation
• Directional movement dominance (+DI vs -DI)
⸻
🧠 Why Use This?
Unlike traditional moving averages or lagging signals, this tool filters market noise using a multi-indicator consensus approach, then visualizes it as a non-intrusive floating trend line — helping you focus only on meaningful price action.
⸻
✅ Best For:
• Swing traders, intraday trend followers, and algo developers
• Clean-chart enthusiasts who value signal quality over quantity
TS Multi-Indicator Trend DetectorDeveloped by KP
This indicator provides a visually clean and reliable trend overlay by combining multiple high-confidence technical indicators into a single floating line above price action. It’s designed for traders who want trend clarity without chart clutter.
⸻
🔍 What It Does:
• Uses EMA (21), RSI, MACD, ADX, and Directional Movement (DI) indicators to evaluate the market trend
• Assigns a “Bullish” or “Bearish” score based on how many indicators confirm the trend
• Plots a floating colored trend line above the price candles to avoid visual interference
• 🟡 Yellow Line = Bullish Trend
• 🔵 Blue Line = Bearish Trend
• Built with multi-timeframe compatibility (works on 5m to weekly charts)
• Minimalist, no noise — no arrows, no labels, just clarity
⸻
⚙️ How It Works:
• Trend shifts when 3 or more out of 5 conditions are met:
• Price above/below 21 EMA
• RSI > 50 or < 50
• MACD crossover
• ADX strength confirmation
• Directional movement dominance (+DI vs -DI)
⸻
🧠 Why Use This?
Unlike traditional moving averages or lagging signals, this tool filters market noise using a multi-indicator consensus approach, then visualizes it as a non-intrusive floating trend line — helping you focus only on meaningful price action.
⸻
✅ Best For:
• Swing traders, intraday trend followers, and algo developers
• Clean-chart enthusiasts who value signal quality over quantity
⸻
Market Regime Reversal TraderRKTHolder created this Pine Script titled "Market Regime Reversal Trader", a custom trading indicator designed to identify trend and volatility shifts using a double-smoothed TMA (Triangular Moving Average) and ATR-based Keltner Channels. The script intelligently classifies market conditions into four regimes—bullish high-vol, bullish low-vol, bearish high-vol, and bearish low-vol—to pinpoint precise entry and exit signals. Long trades are triggered when the market enters a bullish low-volatility phase, while short trades are signaled during bearish high-volatility conditions. Clear visual labels mark entries and exits on the chart, such as “Enter Call” or “Exit Put,” providing straightforward guidance. RKTHolder also included optional alert conditions so traders can stay informed in real time when regime changes occur.
MACD+ Enhanced 0.5The MACD+ Enhanced 0.5 is a sophisticated technical analysis tool that combines multiple indicators to provide a comprehensive view of market trends and potential trading opportunities. This indicator is designed to help traders identify market direction, strength, and potential reversal points with higher accuracy.
Key Features:
- Advanced MACD analysis with customizable parameters
- RSI integration for momentum confirmation
- Volume analysis for trade validation
- Trend strength visualization
- Divergence detection
- Real-time signal strength calculation
- Visual trend zones and trend change markers
- Comprehensive status table
How to Use:
1. The indicator displays three main components:
- MACD with signal line and histogram
- RSI (optional)
- Volume analysis (optional)
2. Trading Signals:
- Strong buy signals occur when multiple factors align (MACD crossover, RSI confirmation, high volume)
- Strong sell signals appear when bearish conditions are confirmed across indicators
- Divergence signals help identify potential trend reversals
3. Visual Guidance:
- Color-coded background indicates current trend (green for uptrend, red for downtrend)
- Trend change markers show when significant trend shifts occur
- Status table provides real-time analysis of all components
Important Notes:
- This indicator is designed as a supplementary tool and should not be used in isolation
- Always combine with other analysis methods and risk management strategies
- Past performance does not guarantee future results
- Recommended for use on multiple timeframes for confirmation
🧘 Daily Mindset Reminder🧘 Daily Trading Mindset Reminder – Stay Calm, Stay Disciplined
📌 Description:
This simple yet powerful indicator is designed to help intraday and options traders start their trading day with clarity, discipline, and purpose. At exactly 9:15 AM, it displays a calming checklist label on your chart to reinforce essential trading principles and avoid emotional decision-making.
✅ Use it as a daily anchor to:
Stay emotionally centered and focused
Avoid overtrading or impulsive reactions
Remember your pre-trade plan and stop-loss rules
Trade with purpose – not prediction
📋 Checklist Included:
✅ Calm Mind
✅ No Predictions – Just Reactions
✅ Trade Setup Ready
✅ Risk Defined
✅ Journal On
✅ Goal: Trade Well, Not Just Profit
🛠️ Works on any timeframe and chart. Non-intrusive and customizable.
🌟 Who Is It For?
Intraday Traders
Options Buyers (Bank Nifty, Nifty, Fin Nifty)
Discretionary Traders who want mental clarity and discipline
🧭 Why You Need It
Most traders lose not because of lack of strategy, but due to lack of mindset control. This simple tool keeps you grounded and reminds you of what matters before you place that first trade.
✨ “Mindset is the real edge. Let this script be your daily compass.”