day trading check indicatorDay Trading Check Indicator
By Trades per Minute · Creator: Trader Malik
Overview
The Day Trading Check Indicator is an on‐chart status panel that gives you a quick “go/no-go” snapshot of four key metrics—MACD, VWAP, Float, and Bearish Sell-Off—directly in TradingView’s top-right corner. It’s designed for fast decision-making during high-velocity intraday sessions, letting you instantly see whether each metric is “bullish” (green) or “bearish” (red), plus live float data.
What It Shows
Column Description
Metric The name of each metric: MACD, VWAP, Float, Bearish Sell-Off
Status/Value A color-coded status (“GREEN”/“RED” or “YES”/“NO”) or the float value formatted in K/M/B
Metrics & Calculations
MACD (1-Minute)
Calculation: Standard MACD using EMA (12) – EMA (26) with a 9-period signal line, all fetched from the 1-minute timeframe via request.security().
Status:
GREEN if MACD ≥ Signal
RED if MACD < Signal
VWAP (Session-Anchored)
Calculation: Built-in session VWAP (ta.vwap(close)) resets each new trading session.
Status:
GREEN if current price ≥ VWAP
RED if current price < VWAP
Float
Calculation: Retrieves syminfo.shares_outstanding_float (total float), then scales it into thousands (K), millions (M), or billions (B), e.g. “12.3 M.”
Display: Always shown as the absolute float value, white on semi-transparent black.
Bearish Sell-Off
Calculation: Checks the last five 1-minute bars for any “high-volume down” candle (volume above its 20-bar SMA and close < open).
Status:
YES if at least one such bar occurred in the past 5 minutes
NO otherwise
Key Features
Dynamic Table: Automatically shows only the metrics you enable via the Display Options group.
Size Selector: Choose Small, Medium, or Large text for easy visibility.
Clean Styling: Distinct header row with custom background, consistent row shading, centered status text, and a subtle gray border.
Lightweight Overlay: No cluttering plots—just a concise status panel in the corner.
Published by Trader Malik / Trades per Minute
Version: Pine Script v5
Indice di volume positivo (PVI)
Volumen Promedio 20This script calculates the 20-period simple moving average (SMA) of volume and sets a dynamic threshold by multiplying that average by a user-defined factor (default: 1.2).
🔍 When the current volume exceeds this dynamic threshold, the indicator:
- Highlights the background in light green
- Plots an upward green triangle above the bar
- Triggers an optional alert ("High Volume")
🟦 Blue bars: actual volume
🟧 Orange line: 20-period volume average
🟩 Green line: dynamic volume threshold
✅ Useful for detecting volume spikes, accumulation/distribution phases, or unusual activity relative to recent volume history.
Customizable:
- Volume threshold factor (sensitivity)
- Visual and alert signals
Ideal for intraday, swing, or trend analysis.
Custom LuxAlgo-like Indicator//@version=5
indicator("Custom LuxAlgo-like Indicator", overlay=true)
// پارامترهای ورودی
length = input.int(14, title="Period", minval=1)
overbought_level = input(70, title="Overbought Level")
oversold_level = input(30, title="Oversold Level")
// محاسبه RSI
rsi_value = ta.rsi(close, length)
// سیگنالها
buy_signal = ta.crossover(rsi_value, oversold_level)
sell_signal = ta.crossunder(rsi_value, overbought_level)
// رسم سیگنالها
plotshape(series=buy_signal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(series=sell_signal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
// رسم RSI
hline(overbought_level, "Overbought", color=color.red)
hline(oversold_level, "Oversold", color=color.green)
plot(rsi_value, title="RSI", color=color.blue, linewidth=2)
// اورلیها (مثلاً میانگین متحرک)
ma_length = input.int(50, title="MA Length", minval=1)
ma_value = ta.sma(close, ma_length)
plot(ma_value, title="Moving Average", color=color.orange, linewidth=2)
Volume Sentiment Pro (NTY88)Volume Sentiment Edge: Smart Volume & RSI Trading System
Description:
Unlock the power of volume-driven market psychology combined with precision RSI analysis! This professional-grade indicator identifies high-probability trading opportunities through:
🔥 Key Features
1. Smart Volume Spike Detection
Auto-detects abnormal volume activity with adaptive threshold
Clear spike labels & multi-timeframe confirmation
RSI-Powered Sentiment Analysis
Real-time Bullish/Bearish signals based on RSI extremes
Combined volume-RSI scoring system (Strong Bull/Bear alerts)
2. Professional Dashboard
Instant sentiment status table (bottom-right)
Color-coded momentum strength visualization
Customizable themes for all chart styles
3. Institutional-Grade Tools
HTF (Daily/Weekly) volume confirmation
EMA trend-filtered momentum signals
Spike-to-Threshold ratio monitoring
4. Trade-Ready Alerts
Pre-configured "Bullish Setup" (Spike + Oversold RSI)
"Bearish Setup" (Spike + Overbought RSI)
Why Traders Love This:
✅ Real-Time Visual Alerts - SPIKE markers above bars + table updates
✅ Adaptive Thresholds - Self-adjusting to market volatility
✅ Multi-Timeframe Verification - Avoid false signals with HTF confirmation
✅ Customizable UI - 10+ color settings for perfect chart integration
Usage Scenarios:
Day Traders: Catch volume surges during key sessions
Swing Traders: Confirm reversals with RSI extremes
All Markets: Works equally well on stocks, forex & crypto
Confirmation Tool: Combine with your existing strategy
Sample Setup:
"Enter long when:
5. RED SPIKE label appears
Table shows 'Oversold RSI'
Momentum status turns 'Bullish'
Volume exceeds daily average (Confirmed)"
📈 Try Risk-Free Today!
Perfect for traders who want:
Clean, non-repainting signals
Institutional-level volume analysis
Professional visual feedback
Customizable trading rules
⚠️ Important: Works best on 15m-4h timeframes. Combine with price action for maximum effectiveness.
📜 Legal Disclaimer
By using this indicator, you agree to the following terms:
Not Financial Advice
This tool provides technical analysis only. It does NOT constitute investment advice, financial guidance, or solicitation to trade.
High Risk Warning
Trading financial instruments carries substantial risk. Past performance ≠ future results. Never risk capital you cannot afford to lose.
No Guarantees
Signals are based on historical data and mathematical models. Market conditions may change rapidly, rendering previous patterns ineffective.
User Responsibility
You alone bear 100% responsibility for trading decisions. We expressly disclaim liability for any profit/loss resulting from this tool's use.
Professional Consultation
Always consult a licensed financial advisor before taking positions. This tool should NEVER be used as sole decision-making criteria.
Educational Purpose
This indicator is provided "as is" for informational/educational use only. No representation is made about its accuracy or completeness.
Third-Party Data
We do not verify exchange data accuracy. Use signals at your own discretion after independent verification.
Volume & Price Counter**User Guide for Volume & Price Counter (Candle Structure)**
### 1. Introduction to Volume & Price Counter
The **Volume & Price Counter** (Candle Structure) is a momentum analysis indicator that helps identify which side—buyers or sellers—is dominating the market by counting candles based on the combination of volume and price movement.
The indicator classifies candles into 4 groups:
- **Volume Up, Price Up (Vol ↑ & Price ↑)** – Indicates strong buying pressure.
- **Volume Down, Price Up (Vol ↓ & Price ↑)** – Price is rising but buying momentum is weakening.
- **Volume Up, Price Down (Vol ↑ & Price ↓)** – Indicates strong selling pressure.
- **Volume Down, Price Down (Vol ↓ & Price ↓)** – Price is falling but selling momentum is weakening.
---
### 2. How the Indicator Works
The Volume & Price Counter calculates the number of each candle type over a specific time period to determine which side is currently in control:
- **Green Background**: When the total of (Vol ↑ & Price ↑) + (Vol ↓ & Price ↑) is greater than the total of (Vol ↑ & Price ↓) + (Vol ↓ & Price ↓) → Buyers are in control.
- **Red Background**: When the total of (Vol ↑ & Price ↓) + (Vol ↓ & Price ↓) is greater than the total of (Vol ↑ & Price ↑) + (Vol ↓ & Price ↑) → Sellers are in control.
---
### 3. How to Use the Indicator in Trading
**a) When the background is green**:
- The market is in an uptrend; consider buying during pullbacks to support zones.
- If the green background continues and the number of (Vol ↑ & Price ↑) candles dominates, the price may continue to rise.
- If the green background is present but there are many (Vol ↓ & Price ↑) candles, be cautious as buying strength may be fading.
**b) When the background is red**:
- The downtrend is prevailing; it's better to stay out or look for selling opportunities during pullbacks.
- If the red background continues with a high number of (Vol ↑ & Price ↓) candles, the price may continue to fall.
- If there are many (Vol ↓ & Price ↓) candles during a red background, selling pressure may be weakening—watch for reversal signals.
**c) When the background shifts from red to green**:
- This is a positive signal, indicating buyers are returning to the market.
- Additional volume confirmation is needed to validate a true uptrend.
**d) When the background shifts from green to red**:
- This warns of a potential trend reversal to the downside.
- If volume spikes during the red shift, consider closing long positions.
---
### 4. Combining Volume & Price Counter with Other Indicators
**Combine with support/resistance levels**:
If a green background appears at a strong support zone, it may signal a potential buying opportunity.
PVSRA Volume Suite with Volume DeltaPVSRA Volume Suite with Volume Delta
🔹 Overview
This indicator is a Volume Suite that enhances PVSRA (Price, Volume, Support, Resistance Analysis) by incorporating Volume Delta and AI-driven predictive alerts. It is designed to help traders analyze volume pressure, market trends, and price movements with color-coded visualizations.
📌 Key Features
PVSRA Volume Color Coding – Highlights vector candles based on extreme volume/spread conditions.
Volume Delta Analysis – Tracks buying/selling pressure using up/down volume data.
AI-Powered Predictive Alerts – Identifies potential trend shifts based on volume and trend context.
Volatility-Adjusted Thresholds – Dynamically adapts volume conditions based on ATR (Average True Range).
Customizable MA & Symbol Overrides – Allows traders to tweak settings for personalized market insights.
Debug & Diagnostic Labels – Shows statistical z-scores, thresholds, and volume dynamics.
How It Works
PVSRA Color Coding – The script classifies candles into four categories based on volume and spread analysis:
🔴 Red Vector → Extreme bearish volume/spread
🟢 Green Vector → Extreme bullish volume/spread
🟣 Violet Vector → Above-average bearish volume
🔵 Blue Vector → Above-average bullish volume
Volume Delta Calculation – Uses lower timeframe volume analysis to estimate up/down volume differentials.
Trend & Predictive Alerts – Combines EMA crossovers with statistical volume analysis to detect potential trend shifts.
Volatility Adaptation – Adjusts volume thresholds based on ATR, making signals more reliable in changing market conditions.
Custom Symbol Override – Fetches PVSRA data from a different instrument, useful for index-based volume analysis.
Customizable Inputs
PVSRA Color Settings – Modify candle color schemes for better visual clarity.
Volume Delta Colors – Customize delta volume body, wick, and border colors.
AI Settings – Tune z-score thresholds, lookback periods, and enable predictive alerts.
Symbol Overrides – Analyze volume from a different market or asset.
Moving Average (MA) Settings – Display a volume-based moving average for trend confirmation.
Important Notes
Works best on intraday timeframes where volume data is reliable.
Lower timeframe volume delta estimates might not be precise for all assets.
No guarantees of accuracy – Use alongside other confluence tools for decision-making.
Credits & Open-Source Notice
This script is based on PVSRA methodologies and integrates Volume Delta analysis. Special thanks to Traders Reality and TradingView for their contributions to volume-based analysis.
Daily Buy/Sell Volumeindicator that The Daily Buy/Sell Volume Indicator is a custom-built tool that helps traders track and visualize the buying and selling volumes throughout a trading day. This indicator separates the total volume into two categories:
1. Buy Volume: Calculated when the closing price is higher than the opening price for a given candle. This represents the volume of bullish (buy) activity for the day.
2. Sell Volume: Calculated when the closing price is lower than the opening price for a given candle. This represents the volume of bearish (sell) activity for the day.
Key Features:
• Buy/Sell Volume Calculation: The indicator tracks the buying and selling volumes based on the relationship between the open and close prices of each candle.
• Daily Reset: The indicator resets at the start of each trading day, providing fresh calculations for the daily buy and sell volumes.
• Visual Representation: The buy volume is shown with a green line, while the sell volume is displayed with a red line, making it easy to identify bullish and bearish activity over the course of the day.
Momentum Flow OscillatorIndicator Overview: Momentum Flow Oscillator (MFO)
The Momentum Flow Oscillator (MFO) is a powerful tool for detecting shifts in market momentum. It combines a momentum-based calculation with a dynamic ribbon of moving averages to help traders identify trend reversals, continuations, and market consolidations. The MFO offers a clear visual representation of market conditions and assists traders in making informed decisions based on the relationship between momentum and its underlying trends.
The MFO line (green) is plotted alongside a Base Line (black) and a series of moving averages (ribbon). The ribbon is composed of five moving averages of different lengths, which allow traders to spot trends, momentum shifts, and potential trade opportunities. It is important to note that the ribbon tends to be a slower-moving component of the indicator, providing long-term trend signals rather than quick, reactive signals.
Components of the Indicator:
Momentum Flow Index (MFI):
This green line is the core of the indicator, representing market momentum derived from price and volume action. It reacts to changes in market dynamics and helps identify periods of strength and weakness.
Base Line (Black Line):
The black line is a 200-period moving average of the momentum flow. This acts as a dynamic support/resistance level for the MFI, smoothing out the price action over a longer period and providing a clearer trend signal.
Moving Averages Ribbon:
The ribbon is composed of five moving averages with different periods (100, 125, 150, 175, and 200). These moving averages create a visual "ribbon" that helps identify trends and consolidations, allowing traders to visualize the market’s momentum over different time frames.
The ribbon acts as a slower-moving indicator, helping to confirm long-term trends. Traders should keep in mind that the ribbon provides signals with a lag, making it ideal for trend-following rather than quick, short-term trades.
How to Use the Momentum Flow Oscillator (MFO):
1. Bullish Momentum Signals:
When the MFI (green line) crosses above the Base Line and the SMA ribbon, it indicates increasing momentum in the market. This signal is particularly strong when the MFI stays above the ribbon for an extended period.
Trade Example: Traders can use this as a buy signal when the MFI crosses above the ribbon, indicating that momentum is shifting to the upside. If the ribbon starts fanning out, it suggests the market is trending strongly upward, which may support a long position.
2. Bearish Momentum Signals:
When the MFI crosses below the Base Line and the SMA ribbon, it signals decreasing momentum. This is a bearish sign, indicating that the market may be preparing for a downturn.
Trade Example: A trader can use the cross below the ribbon as a sell signal or consider entering a short position when momentum weakens. If the ribbon fans out in a downward direction, it suggests the market is trending lower, and a short position may be warranted.
3. Neutral or Caution Signals:
When the MFI fluctuates within the SMA ribbon or crosses in and out frequently, the market may be in a consolidation phase or range-bound. In this situation, the trend is uncertain, and momentum is not strong enough to break decisively in either direction.
Trade Example: Traders may want to avoid taking new positions when the MFI is moving sideways within the ribbon, as this indicates indecision in the market. Waiting for a breakout above or below the ribbon can provide clearer signals for trading.
4. Trend Confirmation with Ribbon Expansion:
When the SMA ribbon expands, it indicates strong momentum in the direction of the trend. A clear widening of the ribbon with the MFI above (bullish) or below (bearish) signals a strong, sustainable trend.
Trade Example: As the ribbon expands, it confirms the strength of the trend, and traders can use this as confirmation to either hold an existing position or add to it.
5. Reversal Signals from Ribbon Contraction:
When the SMA ribbon contracts or the MFI crosses back and forth over the Base Line, it signals a potential reversal or a weakening of the existing trend.
Trade Example: In these cases, traders might consider closing positions or preparing for a reversal, as the contraction often signals a potential breakout in the opposite direction.
Example of Using the MFO in Trading:
In the provided chart image, you can see the MFI moving below the Base Line and the SMA ribbon for an extended period. This indicates bearish momentum, and traders could use this signal to enter a short position or avoid long positions until the MFI shows signs of crossing back above the ribbon. When the MFI crosses above the ribbon, it can signal a potential bullish reversal, indicating it might be time to re-enter long positions or close short positions.
Additional Trading Tips:
Combine with Other Indicators: The MFO can be used in combination with other technical tools such as volume-based indicators, trendlines, or oscillators like RSI or MACD to confirm signals and increase accuracy.
Use Different Time Frames: Traders can apply the MFO on different time frames (e.g., daily, weekly) to capture both short-term and long-term trends. Crossovers in longer time frames provide stronger confirmation of trend direction.
Conservative Entry: For more conservative traders, waiting for the MFI to fully cross above or below the ribbon (rather than within it) can help filter out false signals and avoid entering trades during consolidation phases.
Conclusion:
The Momentum Flow Oscillator offers traders a versatile and visual approach to gauging market momentum and trend strength. By observing the interaction between the MFI and the SMA ribbon, traders can spot trend changes early, confirm existing trends, and stay out of choppy, sideways markets. Keep in mind that the ribbon is a slower-moving part of the indicator—perfect for trend-following strategies but less ideal for fast, reactive trades. Use this indicator to increase your confidence in your trading decisions and improve your ability to capture trends in the market.
Ice Cream Volume Profile [Visible range]While exploring the new Pine Script feature, Polylines, I've created a fun project called the
Ice Cream Volume Profile for the visible range.
This fun project serves several purposes:
It displays the level at which the most trades (volume) occur.
It provides Delta volume information.
It counts how many times a bar closed within this level.
It assists in drawing support and resistance zones.
It aids in interpreting volume data.
The top part of the ice cream cone changes color as follows:
Green: When the bullish volume exceeds 55% of the total volume.
Red: When the bearish volume surpasses 55% of the total volume.
Yellow: When neither Green nor Red exceeds 55% of the total volume.
Polylines are an excellent feature that enables us to create even more intriguing visuals in Pine Script.
Volume moving Use with cryptocurrencies only is highly recommended.
If the volume in a currency is not visible, adjust the "Factor" number higher in the "Inputs" tab.
.
There will be a noticeable jump in the scale of the indicator if it is set too high.
The "Factor" is scaled at a baseline for SHIB prices. Any lower price scales than SHIB's will not show the volume.
i can be recommended this indicator day chart and use 20 moving average for this
Real Cummulative Delta (New TV Function)Thanks to the new TradingView indicator Up/Down Volume, it is now possible to get accurate information on Agression (market buying vs market selling)
However, as they only provide the value of delta, I've made this indicator to show the cummulative value, in the form of candles.
It is great to detect divergences in the macro and in the micro scale (As in divergences in each candle and divergences in higher or lower tops or bottoms)
Hope you can make good use of it!
Positive Volume Index + Negative Volume IndexThis is my version of plotting the classic Positive Volume Index and Negative Volume Index. They can be wildly different sometimes and not very helpful with entry and exit points but I hope this helps clearly identify buy and sell signals. Buy when the indicator is green and sell when it is red
This was a special request so let me know when you want more scripts from me!
Volume Flow v3DepthHouse Volume Flow indicator is used to help determine trend direction strictly based on Negative and Positive volume data.
How to Read:
- Moving Average crossovers are used to help determine a possible trend change or retracement.
- The area cloud on the bottom is calculated by the difference of the moving averages. This could be used to help determine the trending volume strength.
- Bright colored volume bars are large volume spikes calculated by the x factor in the options.
Other changes:
- DepthHouse is going open source with numerous of its indicators. This is only one of many!
- Volume is now displayed without being altered for calculations.
DepthHouse Dual Volume Price Strength Index - VPSIDepthHouse Dual Volume Price Strength Index , or VPSI for short, is used to compare Bullish and Bearish Strength Indexes to help determine bull & bear dominance and exhaustion.
The Oscillator Displays both a Bullish and Bearish Strength Index.
It does this a via a series of calculations between price and volume .
A crossover of one or the other generally represents bullish or bearish dominance at that moment.
While their vertical placements represents the Bullish or Bearish Exhaustion level.
In this case it is read much like an RSI, levels over 70 generally represent exhaustion and levels under 30 represents the opposite.
Since these bands act very similar to a RSIs, this can be a great tool to spot divergences.
--Settings--
note: This indicator works best on higher time frames. I typically have it set to at least 1 hr.
Weighted vs. Non-Weighted
This changes the base calculations of the bands. the default is Weighted, which compares both Price and Volume. The Non-Weighted option removes price calculations, and makes it entirely volume based. Depending on what I am trading, I will switch between these two.
Length
Alters the band length. Default is 14.
Smoothing
This option smooths the VPSI bands. Especially comes in handy on lower time frames.
I prefer to leave this on with a smoothing between 2 and 3.
Built-in Alerts
I have 2 preset alerts made for this indicator.
"Bull Crossover" which is a crossover of the Bull and Bear bands
"Bear Crossover" which is a crossover of the Bear and Bull bands
Set these up by going over to the alerts tab and hitting the add alert button.
From there select this indicator as the main condition. The drop-down below should then contain these two alert options.
Try this indicator for FREE! Just leave a comment, visit my website, or feel free to send me a PM
Dual Volume Divergence Index [DW]This is an experimental variation of Paul L. Dysart's Positive Volume Index and Negative Volume Index that tracks the divergences between the PVI and its EMA, and the NVI and its EMA, then plots both together for comparison.
This tool can be used to identify trending price activity.