MILLION MEN - Sheep HunterWhat it is
MILLION MEN – Sheep Hunter is an RSI-based context tool designed to visually highlight extreme sentiment zones. It draws Overbought (herd/FOMO) and Oversold (panic/liquidity) boxes on price, and labels rare events (Whale / Wolf / Sheep / TP10) for easier discretionary analysis. It is not an entry signal generator, but a tool to understand crowd behavior at extremes.
How it works
RSI core: Adjustable length and custom OB/OS thresholds.
Zones:
• Red box = RSI between 80–90 (overbought pocket)
• Green box = RSI ≤ 20 (oversold pocket)
• Box height auto-scales using True Range for clear visibility
• Boxes persist for X bars after exit, keeping context visible
Marks (optional):
• Whale (deep oversold)
• Wolf Entry (oversold threshold)
• Sheep (extreme FOMO)
• TP10 (RSI ≤ 10, potential exit area)
How to use
Use zones and marks as context or confluence, not automatic entries. Oversold areas may hint at exhaustion or liquidity grabs; overbought areas can warn of crowd chasing tops. Combine with structure, HTF bias, volume or price action.
Originality & value
Unlike standard RSI lines, this tool projects extremes directly onto price with persistent, padded zones and minimal marks for clarity. It helps traders see sentiment pockets over time, rather than momentary RSI spikes.
Tested markets
This tool has been primarily tested on major crypto assets (BTC, XRP, ETH, BNB, LTC).
Behavior on other markets may vary and should be validated before use.
Limitations
RSI can stay extreme during strong trends.
Marks are context labels, not buy/sell signals.
Non-standard chart types are not supported.
No future data is used. This is not financial advice.
يعرض مناطق تشبع شرائي/بيعي على السعر مباشرة (صناديق حمراء وخضراء) مع علامات لحالات قصوى مثل Whale / Sheep. الهدف هو فهم سلوك السيولة والجمهور عند التطرف وليس إعطاء إشارات دخول مباشرة. تمت تجربة الأداة على العملات الرئيسية (BTC, XRP, ETH, BNB, LTC) وقد يختلف الأداء في الأسواق الأخرى.
지표 및 전략
Indicateur d'executionThis indicator is based on a 50-period RSI and a 50-period SMA. It allows you to visualize the rebounds between the different curves. These rebounds have proven to be relevant for execution.
Le vrai parmi les trois
Smart Supply & Demand Map — Multi-Timeframe Zones 🧭 Smart Supply & Demand Map automatically detects and displays institutional supply and demand zones from multiple higher timeframes directly on your current chart — helping you trade in alignment with true market intent.
See Daily, 4H, or 1H zones while trading on lower timeframes like 1m or 5m, without switching charts. Perfect for Smart Money Concept (SMC) and Price Action traders who rely on imbalance and liquidity zone confluence.
Features:
🧱 Auto-detects Supply (distribution) and Demand (accumulation) zones
⏱️ Displays higher-timeframe zones on your current timeframe
⚡ Zones auto-update and expire when broken or mitigated
🎨 Customizable zone colors, opacity, and border style
🧩 Works across all timeframes and markets
📢 Optional alerts when price enters or breaks a zone
🎯 Use it to spot institutional footprints, align lower-timeframe entries with higher-timeframe zones, and trade confidently with the flow of smart money.
🦊 Telegram 🦊 : @FoxTradingCr 🚀
EMA 9 + VWAP Lower Band Buy SignalEMA 9 + VWAP Lower Band Buy Signal. It uses Ema 9 and VWAP lower band. Has buy alerts
Correlation Tracker - Joe v1Correlation Tracker – Joe v1
This indicator calculates the correlation between a selected ticker and an index over a user-defined period. It visualizes correlation with color-coded lines, thresholds, and a descriptive rating, helping traders quickly gauge the strength and direction of correlation.
________________________________________
Options and What They Do
General Settings
• Symbol: Select the ticker you want to analyze.
• Use Chart Symbol: If enabled, the script will use the symbol of the current chart instead of a manually selected symbol.
• Index: Choose the reference index or asset to compare the correlation against. Default is NASDAQ:QQQ.
• Length: Sets the number of periods used to calculate correlation via a moving average. Shorter lengths respond faster; longer lengths smooth correlation.
Correlation Rating Settings
• Show Correlation Rating: Display a textual description of correlation strength (e.g., Ultra Strong, Moderate, Weak).
• Position: Choose where the correlation rating table will appear on the chart (Top/Bottom, Left/Center/Right).
Correlation Line Settings
• Positive Color: Line color when correlation is above the positive threshold. Default: green.
• Negative Color: Line color when correlation is below the negative threshold. Default: red.
• Neutral Color: Line color when correlation is between thresholds. Default: gray.
Correlation Thresholds
• Positive – From: Minimum correlation value considered positive. Default: 0.5 (range 0–0.9).
• Positive Color BG: Background color fill for positive correlation range.
• Negative – From: Maximum correlation value considered negative. Default: -0.5 (range -0.9–0).
• Negative Color BG: Background color fill for negative correlation range.
________________________________________
How It Works
1. Calculates correlation between the selected ticker and the index using logarithmic returns.
2. Plots the correlation line with colors based on thresholds: positive (green), negative (red), neutral (gray).
3. Displays a correlation rating table showing strength (Ultra Weak → Ultra Strong) and absolute correlation on a 0–1 scale.
4. Allows customization of visual appearance, thresholds, and position of rating for clarity on any chart.
Treasury Cash-Futures Basis Estimator (stable)An estimation of the Treasury Cash-Futures Basis with help from GPT
ADX +DI/-DI with Buy/Sell Signals//@version=5
indicator("ADX +DI/-DI with Buy/Sell Signals", overlay=true)
// Inputs
adxLength = input.int(14, "ADX Length")
threshold = input.float(25.0, "ADX Threshold")
// Directional Movement
upMove = ta.change(high)
downMove = -ta.change(low)
plusDM = (upMove > downMove and upMove > 0) ? upMove : 0.0
minusDM = (downMove > upMove and downMove > 0) ? downMove : 0.0
// True Range and Smoothed Values
tr = ta.rma(ta.tr, adxLength)
plusDI = 100 * ta.rma(plusDM, adxLength) / tr
minusDI = 100 * ta.rma(minusDM, adxLength) / tr
dx = 100 * math.abs(plusDI - minusDI) / (plusDI + minusDI)
adx = ta.rma(dx, adxLength)
// Buy/Sell Conditions
buySignal = ta.crossover(plusDI, minusDI) and adx > threshold
sellSignal = ta.crossover(minusDI, plusDI) and adx > threshold
// Plot Buy/Sell markers
plotshape(buySignal, title="BUY", location=location.belowbar,
color=color.new(color.lime, 0), style=shape.triangleup, size=size.large, text="BUY")
plotshape(sellSignal, title="SELL", location=location.abovebar,
color=color.new(color.red, 0), style=shape.triangledown, size=size.large, text="SELL")
// Optional ADX + DI lines (hidden by default)
plot(adx, title="ADX", color=color.yellow, linewidth=2, display=display.none)
plot(plusDI, title="+DI", color=color.green, display=display.none)
plot(minusDI, title="-DI", color=color.red, display=display.none)
hline(threshold, "ADX Threshold", color=color.gray, linestyle=hline.style_dotted)
// Alerts
alertcondition(buySignal, title="BUY Alert", message="ADX Buy Signal Triggered")
alertcondition(sellSignal, title="SELL Alert", message="ADX Sell Signal Triggered")
Forex FX V2.1💠 Forex FX — Smart Liquidity & FVG Engine
Forex FX is an advanced indicator designed for the forex market, combining multi-timeframe analysis, liquidity zones, and Fair Value Gaps (FVG) to highlight high-probability trading areas.
It automatically detects the market bias (Bull/Bear/Flat), current session activity, and H4–M5 FVG confluence, generating contextual Buy/Sell signals filtered by quality conditions.
🔹 Key Features
• Automatic detection of Bullish & Bearish Fair Value Gaps (FVG) across multiple timeframes
• Identification of Buy/Sell liquidity zones and exhaustion levels
• Real-time market state detection (trend, correction, or idle)
• Session filters optimized for EURUSD (15:00–22:00) and XAUUSD (Full-time)
• Contextual signal states (“Wait”, “Buy”, “Sell”) displayed in a clean on-chart panel
• Automatic LIMIT order expiration to avoid outdated setups
🎯 Purpose:
To provide traders with a visual map of liquidity and fair-value imbalance zones, enabling precise entries only when technical structure, bias, and timing align.
NY Session Range Box with Labeled Time MarkersShows opening time ny session by timing with lines to inform traders to avoid 11:30am to 1:30pm for choppy sessions and mark early and power hour .
BTC Pi Cycle Top + 50W MA To indicate BTC TOP using pi cycle top + weekly 50 MA
Both overlay in a chart.
by ahmadzombie
19.10.2025
Scalping m15 indicator RovTradingScalping Indicator Combining UT Bot and Linear Regression Candles.
UT Bot uses ATR Trailing Stop to identify entry points.
Linear Regression Candles smooth price action and provide trend signals.
The indicator is suitable for scalping trading on the M15 timeframe.
Multi-TF FVG Viewer — Smart Money Imbalance Zones🧠 HTF FVG Map brings higher-timeframe Fair Value Gaps (FVGs) directly into your current chart, allowing you to visualize institutional imbalances and premium/discount zones without switching timeframes.
Ideal for Smart Money Concept (SMC) and ICT-based traders who use FVGs as liquidity and imbalance reference points.
Features:
🔍 Plots Fair Value Gaps from higher timeframes (e.g. 1H, 4H, Daily) on lower charts
⚡ Auto-updates as new gaps form and fill
🧭 Works across any market or timeframe
🎨 Customizable color themes and transparency
📢 Optional alerts when price re-enters an HTF FVG
Use it to spot high-probability trade zones, refine entries on lower timeframes, and align with institutional structure.
🦊 Telegram 🦊 : @FoxTradingCr 🚀
Phase Pattern Detector v2Phase Pattern Detector
This indicator identifies and highlights structural price phases—areas where market behavior tends to repeat or shift. It visualizes the rhythm of price action rather than measuring momentum or volatility. Each phase is represented by visual zones that help traders recognize potential transitions between market states.
The tool does not provide buy or sell signals, nor does it predict future movement. It simply exposes patterns in price behavior to support analytical observation.
Users are solely responsible for any trading decisions made based on its visual cues. This indicator is meant for context and awareness, not for execution.
Always combine structural analysis with your own judgment, broader market context, and proper risk management.
Order Blocks & Breaker Blocks Plus [SunanLabs]🟦 Order Blocks & Breaker Blocks Plus V1.0
© SunanLabs — Creative Commons Attribution 4.0 International (CC BY 4.0)
Version: 1.0 – Breaker Marker Build
Pine Script Version: v6 (Fully Compliant)
Category: Technical Analysis → Smart Money Concepts / Supply & Demand
🧭 Overview
Order Blocks & Breaker Blocks Plus is a precision-engineered visualization tool designed for institutional-style Smart Money Concepts (SMC) trading.
It automatically detects, plots, and updates Order Blocks (OBs) and Breaker Blocks (BBs) in real time — with full control over transparency, marker shape, and size, directly from the TradingView UI.
Built for both professional traders and educational use, it visually clarifies how structure shifts occur when liquidity is swept and rebalanced by market makers.
⚙️ Core Features
✅ Real-Time Order Block Detection
• Bullish and Bearish OBs automatically marked based on swing structure.
• Uses either wicks or candle bodies (configurable).
✅ Breaker Block Tracking
• When an OB fails, a dashed breaker line is drawn at the exact invalidation point.
• Perfect for visualizing liquidity flips or structural breaks.
✅ Marker System (Customizable)
• Choose between two styles: "▲ / ▼" or "⇑ / ⇓", or disable markers completely.
• Marker sizes from tiny → huge for all chart styles and resolutions.
✅ Fully Reactive Colors
• Direct opacity control via TradingView color picker (no hardcoded alpha).
• Separate color sets for OBs and Breaker Blocks.
✅ Built-in Alerts
• Automatic alerts when new OBs form or when a Breaker Block triggers.
• Alerts include symbol, timeframe, and current price context.
✅ Ultra-Stable Build
• Pine v6 compliant (no line continuations, undeclared variables, or runtime warnings).
• Modular, efficient, and built for expansion.
🧩 Usage Guide
1. Swing Lookback – Controls sensitivity: higher = stronger, fewer OBs; lower = more reactive zones.
2. Show Last Bullish/Bearish OB – Limits how many zones are displayed for visual clarity.
3. Use Candle Body – Toggles between wick-based and body-based zone boundaries.
4. Marker Style – Select from:
▲ / ▼ traditional solid arrows
⇑ / ⇓ arrowhead-with-tail style
none to disable markers
5. Marker Size – Choose from tiny, small, normal, large, or huge.
6. Colors – All opacity levels controlled directly through the color configuration UI.
📚 Concept Notes
• Order Block (OB): The last bullish/bearish candle before a strong opposing move; represents institutional order placement zones.
• Breaker Block (BB): A former OB invalidated by price; it flips polarity and often acts as support/resistance.
• Swing Lookback: Determines how the indicator identifies local highs/lows for OB anchoring.
⚠️ Disclaimer
This indicator is provided for educational and research purposes only.
It does not constitute financial advice or a guarantee of trading performance.
Always test indicators thoroughly in simulation before live trading.
🧾 License
This script is released under the
Creative Commons Attribution 4.0 International License (CC BY 4.0).
You are free to use, modify, and share it for any purpose —
with proper credit to “SunanLabs.”
🧠 Attribution
Developed and maintained by SunanLabs
Part of the SunanLabs Smart Money Concepts Suite
Built to the SunanLabs PineScript Standards for reliability, modularity, and clarity.
VolCandle_Start_End BarsThe “VolCandle_Start_End Bars” Pine Script is a custom TradingView indicator designed to calculate and display volume-based candle statistics between two user-defined time points. It visually summarizes trading activity across a specific date range by comparing up-candle and down-candle volumes.
Functionality
The script allows users to select a start and end bar (dates) using the input fields “Select starting Bar” and “Select ending Bar.” It then examines all candles within this range to calculate:
Total volume for up candles (candles where the close is higher than the previous candle).
Total volume for down candles (candles where the close is lower than the previous candle).
Difference and ratio between up and down volumes.
Count of up and down candles within the period.
Calculation Logic
A loop checks each bar's closing price and compares it with the previous one.
For every matching bar within the chosen time range:
If the close increases → its volume is added to up volume.
If the close decreases → its volume is added to down volume.
The process continues for up to 1000 historical bars, counting each bar type and accumulating total volumes.
Display and Labeling
The script calculates an appropriate label position using recent highs and lows, then dynamically creates a label on the chart showing:
Up_Candles volume
Down_Candles volume
Volume difference and ratio
Total bar count with up/down candle counts
The text is displayed in a soft pink tone using the label.new() function for visual clarity.
Utility
This indicator helps traders easily analyze buying vs. selling volume pressure across custom time intervals. It is particularly useful for comparing sentiment in specific trading phases (for example, before and after a consolidation or breakout).
All computations are done locally on the chart — the indicator does not place trades or alter candles.
In short, this script provides a compact visual and statistical summary of market volume distribution between rising and falling candles in a chosen date window, offering insight into the dominant market force during that time range.
DAMMU Swing Trading PRODammu Scalping Pro – Short Notes
1️⃣ Purpose:
Scalping and swing trading tool for 15-min and 1-min charts.
Designed for trend continuation, pullbacks, and reversals.
Works well with Heikin Ashi candles (optional).
2️⃣ Core Components:
EMAs:
Fast: EMA5-12
Medium: EMA12-36 Ribbon
Long: EMA75/89 (1-min), EMA180/200 (15-min), EMA540/633
Price Action Channel (PAC): EMA-based High, Low, Close channel.
Fractals: Regular & filtered (BW) fractals for swing recognition.
Higher Highs / Lower Highs / Higher Lows / Lower Lows (HH, LH, HL, LL).
Pivot Points: Optional display with labels.
3️⃣ Bar Coloring:
Blue: Close above PAC
Red: Close below PAC
Gray: Close inside PAC
4️⃣ Alerts:
Swing Buy/Sell arrows based on PAC breakout and EMA200 filter.
Optional “Big Arrows” mode for visibility.
Alert messages: "SWING_UP" and "SWING_DN"
5️⃣ Workflow / Usage Tips:
Set chart to 15-min (for trend) + 1-min (for entry).
Optionally enable Heikin Ashi candles.
Trade long only above EMA200, short only below EMA200.
Watch for pullbacks into EMA channels or ribbons.
Confirm trend resumption via PAC breakout & bar color change.
Use fractals and pivot points to draw trendlines and locate support/resistance.
6️⃣ Optional Filters:
Filter PAC signals with 200 EMA.
Filter fractals for “Pristine/Ideal” patterns (BW filter).
7️⃣ Visuals:
EMA ribbons, PAC fill, HH/LL squares, fractal triangles.
Pivot labels & candle numbering for patterns.
8️⃣ Notes:
No extra indicators needed except optionally SweetSpot Gold2 for major S/R levels.
Suitable for scalping pullbacks with trend confirmation.
If you want, I can make an even shorter “one-screen cheat sheet” with colors, alerts, and EMAs, perfect for real-time charT
EMA 3 Lines✅ JP
1つのインジケーター枠内に3本のEMA(短期・中期・長期)を表示します。
初期設定では 8(青)/50(赤)/200(緑)の期間が適用されます。
設定画面から期間・ラインカラー・太さを自由にカスタマイズできます。
✅ EN
This indicator displays three EMAs (short-term, mid-term, and long-term) within a single indicator window.
By default, the EMA periods are set to 8 (blue), 50 (red), and 200 (green).
You can freely customize the EMA lengths, line colors, and line thickness from the settings panel.
nartdivad 111This indicator will show you levels based on the price you enter. Each level is 111 points apart. In the middle of this range, there is an equilibrium at 50%, and 37 points above and below this equilibrium, there are discount and premium zones.