Enhanced Split Buy Sell VolumeCore Components and What They Show
1. Buy Volume (Green Columns Above Zero):
Represents estimated buying pressure: The portion of total volume attributed to buyers, calculated as volume * (close - low) / (high - low).
How to Read: Taller green bars indicate stronger buying interest in that candle. If the close is near the high, most volume is assigned to buys (green bar dominates).
Highlight (Lime Color): If buy volume exceeds the average volume by the threshold (default 1.5x), it turns lime. This signals a potential "buy climax" or surge in demand—watch for breakouts or reversals.
2. Sell Volume (Red Columns Below Zero):
Represents estimated selling pressure: The remainder of volume, calculated as volume * (high - close) / (high - low).
How to Read: Taller red bars (extending further below zero) show stronger selling. If the close is near the low, sell volume dominates.
Highlight (Fuchsia Color): Turns fuchsia for high sell volume, indicating a "sell climax" or heavy supply—could signal breakdowns or exhaustion.
3. Zero Line (Dotted Gray Horizontal Line):
Acts as a neutral divider: Green above = net buying; red below = net selling.
How to Read: Compare the "mirror image" of green and red heights. If green is consistently taller than red (e.g., over multiple candles), it suggests building bullish momentum.
4. Net Volume MA (Blue Line):
A moving average (default 14 periods) of net volume (buy volume minus sell volume).
How to Read:
Above zero and rising: Bullish volume trend—buyers are gaining control.
Below zero and falling: Bearish volume trend—sellers dominate.
Crosses zero: Potential shift in momentum (e.g., from bearish to bullish if crossing up).
Divergences: If price makes new highs but the MA flattens or drops, it could signal weakening momentum (bearish divergence).
อินดิเคเตอร์และกลยุทธ์
Dynamic SL/TP Helper (Symbol-Aware)This script will draw lines above and below the current candle that are equal in range (or a multiple of) the previous candle's range. You can set multiple take profits.
It will also automatically calculate the number of contracts for a predefined risk amount. This allows you to automatically see how many contracts you should buy/sell.
TMAD Algo Supply DemandThis Pine Script identifies supply and demand zones using volume profile analysis between pivot points or a fixed look-back period. It dynamically highlights these zones with color-coded boxes based on whether price is currently above (bullish) or below (bearish) each zone.
F2F Trading indicatorF2F trading indicator.
It helps to monitor:
PDH / PDL
PWH / PWL
Market sessions (Asia, Frankfurt, London, NY)
Sessions liquidity sweeps / confirms
iFVG
Using it and managing alerts on any event you like you can significantly improve your tading strategy.
Two MA Crossover with Labels//@version=5
indicator("Two MA Crossover with Labels", overlay=true)
// === Input Parameters ===
shortPeriod = input.int(10, title="Short MA Period")
longPeriod = input.int(100, title="Long MA Period")
// === Moving Averages ===
shortMA = ta.sma(close, shortPeriod)
longMA = ta.sma(close, longPeriod)
// === Plotting MAs ===
plot(shortMA, color=color.orange, title="Short MA")
plot(longMA, color=color.blue, title="Long MA")
// === Crossover Conditions ===
bullishCross = ta.crossover(shortMA, longMA)
bearishCross = ta.crossunder(shortMA, longMA)
// === Labels ===
if bullishCross
label.new(bar_index, low, "Buy", style=label.style_label_up, color=color.green, textcolor=color.white)
if bearishCross
label.new(bar_index, high, "Sell", style=label.style_label_down, color=color.red, textcolor=color.white)
Period Separator with DatesSimple period separator with dates. You can customize lines and colours. Feel free to customize and share your thoughts in the comment section. Remember time is the only thing you need to master the markets. Keep your charts clean and enjoy trading! ;)
D-LevelsThis indicator accepts a comma-separated list of price ranges as input and visualizes each range as a distinct zone on the chart, using randomized colors for distinction.
Enhanced Order Block Zones v6I created this indicator to identify orders blocks and label them on timeframes of 15 minutes and lower. This only identifies fairly recent orders blocks based off the performance of the markets. Always remember orders blocks are more accurate at higher timeframes. However, this can be utilized to see more real time orders blocks as they form.
RSI + TSV Kombi📊 RSI + TSV Combo Indicator (Intraday Reversal Tool)
This custom TradingView indicator is designed for intraday traders who want to combine price momentum (via RSI) with volume-based confirmation (via TSV). It’s particularly powerful for spotting short-term reversals around key market zones like VWAP, support/resistance, or options levels.
🧠 What does the Indicator show?
The indicator contains two elements in one pane:
🔹 Top Line – RSI (Relative Strength Index)
Type: RSI(7) – a short-term version of the classic RSI
Color-coded:
🟢 Green when RSI < 30 → potential oversold → bullish bias
🔴 Red when RSI > 70 → potential overbought → bearish bias
⚪ Gray in between → neutral
🔎 Purpose: Identifies overextended price moves — early warning for possible reversal zones.
🔸 Bottom Bars – TSV (Time Segmented Volume)
Formula: EMA(change(close) * volume, 9)
Color-coded histogram:
🟢 Green when TSV > 0 → bullish volume momentum
🔴 Red when TSV < 0 → bearish volume momentum
🔎 Purpose: Confirms whether price moves are supported by actual volume — helps filter false signals from RSI.
⚖️ How to Interpret the Indicator
✅ Long Setup
RSI is below 30 (green line)
TSV bars turn green or cross above 0
Ideally at a support level or near VWAP
➡️ Buy signal confirmed by volume
❌ Short Setup
RSI above 70 (red line)
TSV bars are red or turning red
Ideally at a resistance zone or VWAP deviation
➡️ Sell signal confirmed by selling pressure
⚠️ Avoid trades when...
RSI is oversold/overbought, but TSV disagrees
(e.g. RSI < 30 but TSV is red → weak confirmation)
🧭 Practical Usage in Intraday Trading (e.g. 5-minute chart)
Step What to look for
Setup Zone RSI hits extreme level (under 30 or above 70)
Volume Confirmation TSV bars flip color (red → green or vice versa)
Entry Price breaks candle high/low with volume support
Exit VWAP, volume node, or next support/resistance zone
🔧 Options for Expansion
This script is already running cleanly, but you could easily extend it with:
📍 Buy/Sell Arrows on chart when both RSI + TSV align
🔔 Alerts for instant trade triggers
💡 Overlay version that places symbols directly on the price chart
🔒 Filter to only show signals above/below VWAP
Let me know — I can build any of these for you.
✅ Summary
This RSI + TSV Combo is a simple yet powerful tool to:
Spot momentum reversals
Confirm trades with volume
Stay disciplined and rule-based in fast-moving intraday setups
It’s especially useful when combined with:
VWAP
Volume Profile Zones (HVNs/LVNs)
Key psychological or options levels
ATR HUDThis script displays the Average True Range value for your chart's timeframe and displays it in a small tidy table. ATR is a valuable indicator for position sizing, stop placement, profit expectancy and other trade planning considerations. With this script you can keep the current ATR value visible without taking up much precious window space. You can select your preferred smoothing method, lookback period, and window position in the settings. Enjoy!
Curry US30 Breakout Strategy - Enhanced## 🧠 HOW TO USE THE “Curry US30 Breakout Strategy” Indicator
This tool is designed to help you identify high-probability buy and sell opportunities on **US30** using the **5-minute chart**. Here's how to use it effectively:
---
### ✅ Step 1: Load the Indicator
* Go to your **TradingView** chart.
* Select **US30 (5-minute timeframe)**.
* Apply the **"Curry US30 Breakout Strategy - Enhanced"** indicator.
---
### ✅ Step 2: Follow the Labels
* When you see a **green “BUY✓” label** appear, the system has detected a potential buying opportunity.
* When you see a **red “SELL✓” label**, the system has detected a potential selling opportunity.
* These labels appear **only when all internal confirmations align** — so no guesswork is required.
---
### ✅ Step 3: Look for Price Levels
Each signal comes with three important lines automatically drawn:
* **Entry Line (Aqua)** – Suggested price to enter the trade.
* **Take Profit (Green)** – Projected target for the move.
* **Stop Loss (Red)** – Risk management level.
Use these lines to guide your decision-making and manage your trades responsibly.
---
### ✅ Step 4: Enable Alerts (Optional)
* You can turn on **Telegram or TradingView alerts** with one click in the settings.
* This allows you to receive instant notifications when a trade setup appears — no need to stare at the charts all day.
---
### ✅ Step 5: Stick to the Rules
* **Only use this on the 5-minute chart**.
* It’s designed specifically for **US30**, but you're welcome to test other assets if you'd like.
* The system works during **any session** — day or night — so feel free to trade when it fits your schedule.
---
### 💡 Bonus Tips:
* Watch how price reacts near the **highlighted support and resistance zones**.
* Pay attention to background color shifts or debug symbols — they give subtle clues about market conditions.
---
If you stick to the visual cues and practice proper risk management, this tool can become one of your most trusted guides in the market.
\#TradeSmart #FollowTheSignal #BreakoutMastery #CurryStrategy #US30Execution
Previous Day High/Low/Close - Static Daily Lines (Custom Colors)previous day high low closing
statick line can be change with tihe time frame 5 to 15
Nifty 50 Gainers Losers Table
How it Works
1. Dropdown List Selection
allows for dynamic interaction, making it flexible and user-friendly.
Scripts added to list as per Their Weightage Allocated in Nifty_50 Index.
Switch Lists Option: to Check Complete List of 50 ( List is Splitted Because of Restriction to use of 40)
Use the dropdown to switch between "Main 40" and "Remaining 10" lists dynamically.
2. Interpret Values
User Setting to Show Hide Column : Unchanged
Gainers (Green): Number of stocks that closed higher than the previous day.
Losers (Red): Number of stocks that closed lower.
Unchanged (Gray): No change in close from the previous day.
3. Compact Table Display :
User Setting to show Hide Table & Table Position As per Need (TOP,Bottom,Middle Etc)
is smartly placed and keeps the layout clean and readable.
4. User Input to Set Text Size. you can change Text Size as per Need.
✅ How to Use This Indicator Effectively
🔹 Step-by-Step User Flow:
Add to Chart
Apply this indicator to any chart—ideally NIFTY or NIFTY FUTURES (to keep contextually relevant).
Use in Decision Making
Use this internally as a market breadth tool.
If Gainers >> Losers, the market is strong/bullish.
If Losers >> Gainers, the market is weak/bearish.
If balanced, market is range-bound or sector-specific moves dominate.
Goldbach Swing Points [z3nius]This script checks if the swing point's time (hour + minute) is a Goldbach number. Only works on CME futures charts.
Ai Golden Support and Resistance 🔰 Ai Golden Support & Resistance — by GoldenCryptoSignals
This advanced tool automatically identifies high-probability support and resistance zones using adaptive smart analysis driven by price action behavior and dynamic market conditions. It provides AI-enhanced detection of potential reversal areas, offering traders precise levels to watch for possible entries, exits, or stop placements.
🧠 Key Features:
AI-style Adaptive Zones: Dynamically generated support and resistance levels based on changing volatility and price behavior.
Breakout & Retest Visualization: Highlights critical price levels and potential reaction zones when the market breaks key levels.
Explosive Move Detection: Alerts traders to areas where the price previously made strong directional moves, indicating possible institutional footprints.
Flexible Risk Profiles: Choose between High, Medium, or Low Risk zone sensitivity — adapt the algorithm to your trading style.
Smart Zone Persistence: Zones remain visible until invalidated, helping traders visually track active supply and demand levels.
Auto Labeling and Color Coding: Easy-to-understand visuals showing market structure, zone type, and breakout signals.
Optimized for Clarity: Minimal chart clutter with elegant layout, auto-zoning boxes, and breakout signals that assist decision-making.
🔎 Use Cases:
Spot institutional levels where price is likely to react.
Use zones for confluence with other strategies or indicators.
Anticipate potential breakout or fakeout areas.
Track active vs inactive zones dynamically.
⚠️ Disclaimer:
This script is designed to assist in analysis and does not provide financial advice. Always manage your own risk and test any tool before using it in live trading. This is a closed-source indicator developed by GoldenCryptoSignals.
Activity and Volume Orderflow Profile [JCELERITA]A volume and order flow indicator is a trading tool that analyzes the relationship between trade volume and the flow of buy and sell orders in the market. Unlike traditional indicators that rely solely on price action, this type of indicator provides insight into market sentiment by revealing whether buying or selling pressure is dominant at a given time. It typically uses data from the order book and executed trades (such as footprint charts or delta volume) to show imbalances, helping traders identify potential reversals, breakouts, or hidden strength/weakness in price movements. This makes it especially valuable for scalpers and day traders aiming to time entries and exits with precision.
Dynamic SL/TP Helper (Multi TP)This script will draw lines above and below the current candle that are equal in range (or a multiple of) the previous candle's range.
Gold Sniper ProGold Sniper Pro is a private invite-only indicator that provides precise BUY and SELL signals based on a combination of moving averages, price action, and candlestick patterns. The script automatically plots TP (Take Profit) and SL (Stop Loss) lines to help traders plan their exits visually.
Recommended timeframes are 15 minutes, 30 minutes 1 hour, and 4 hours.
It is suitable for Forex, crypto, gold, and indices.
Latest update:
- Added EMA lines for better trend confirmation
- Improved entry signal accuracy
- Enhanced overall system performance
This tool is designed for traders who want a premium and semi-automated experience on TradingView.
Please contact the FX Daddy team for access.
Smart Range Zones [Waqas Pro Edition - Straight Lines]🔰 Smart Range Zone – Waqas Pro Edition 🔰
By: Waqas Crypto Hunter
This premium indicator is designed for professional traders who rely on daily high–low range dynamics to identify key price zones for scalping, intraday, and breakout strategies.
📌 Features:
✅ Auto-Updated Daily Range
Automatically draws the High, Low, and Midrange lines from your selected higher timeframe (default: Daily).
✅ Straight Line Zones (Non-Repainting)
Clear and clean horizontal lines that stay fixed throughout the day — perfect for zone-based decision-making.
✅ Color-Coded Levels
🔴 High: Resistance zone
🟠 Midrange: Equilibrium level
🟢 Low: Support zone
✅ Multi-Timeframe Input
You can choose your preferred timeframe to draw Smart Zones (e.g. D, 4H, 1H).
✅ Minimalist and Clean Layout
Optimized for neat charting — no background colors, no clutter — just pure professional zone mapping.
🎯 How to Use:
Range Breakout Strategy:
Price breaking above the High = potential Long breakout.
Price breaking below the Low = potential Short breakout.
Range Reversal Strategy:
Price rejecting the High or Low with confirmation = reversal entry opportunity.
Scalping Midrange:
Midrange acts as a magnet and support/resistance flip zone.
📊 Ideal For:
Crypto Scalping
Forex Intraday
Futures Breakout Trading
Smart Money Concept (SMC) Zone Mapping
📢 Note: This is part of the Waqas Pro Indicator Series — built with precision, no repaint, and ready for serious traders.
Altcoin Breakout Detector//@version=5
indicator("Altcoin Breakout Detector", overlay=true)
resistanceLevel = input.float(50.0, "Resistance Level", minval=0.0, maxval=100.0)
breakoutZoneTop = input.float(25.0, "Breakout Zone Top", minval=0.0, maxval=100.0)
shortMA = ta.sma(close, 5) // 5-period moving average for trend confirmation
// Define buy signal conditions
lastPrice = close
secondLastPrice = close
lastVolume = volume
avgVolume = ta.sma(volume, 20) // 20-period simple moving average of volume
buySignal = lastPrice > resistanceLevel and secondLastPrice <= resistanceLevel and lastVolume > avgVolume * 1.5 and lastPrice > shortMA
// Plot buy signal
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
// Highlight breakout zone
hline(breakoutZoneTop, "Breakout Zone", color=color.orange, linestyle=hline.style_dashed)
bgcolor(color.new(color.orange, 90)) // Constant shading for the breakout zone (0 to 25.00)