Enhanced Price Direction Predictor📊 Core Mechanism: Rule-Based Scoring:
The indicator relies on a simplified scoring model where it checks for nine specific conditions on the bullish side and nine corresponding conditions on the bearish side.
Bullish/Bearish Score Calculation:The script initializes bullish_score and bearish_score to $0.0$.It then checks a predefined list of features (e.g., $5$-period Rate of Change, $5/20$ EMA crossover, RSI level, Order Flow direction) and adds a fixed point value (weight) to the appropriate score if the condition is met.
Overbought/Oversold Penalty:It includes a built-in risk-management element by applying a $-0.10$ penalty if the RSI is in extreme territory:RSI(14) $>$ 70 (Overbought) $\rightarrow$ Penalty to bullish_score.RSI(14) $<$ 30 (Oversold) $\rightarrow$ Penalty to bearish_score.
Probability Conversion:The probability_up is calculated by taking the ratio of the bullish_score to the total_score (sum of bullish and bearish scores):$$\text{Probability\_Up} = \frac{\text{Bullish\_Score}}{\text{Bullish\_Score} + \text{Bearish\_Score}}$ MIL:IF the total_score is zero (i.e., no strong conditions are met), the probability defaults to $0.5$ (neutral).
Wskaźniki rozpiętości rynku
⚡ Zero-Lag 60s Binary Predictor🧠 Core Anti-Lag Philosophy
The indicator's primary goal is to overcome the inherent lag of traditional indicators like the Simple Moving Average (SMA) or standard Relative Strength Index (RSI). It achieves this by focusing on:
Leading Indicators: Using derivatives of price/momentum (like acceleration and jerk—the second and third derivatives of price) to predict turns before the price action is clear.
Instantaneous Metrics: Using short lookback periods (e.g., ta.change(close, 1) or fastLength = 5) and heavily weighting the most recent data (e.g., in instMomentum).
Market Microstructure: Incorporating metrics like Tick Pressure and Order Flow Imbalance (OFI), which attempt to measure internal bar dynamics and buying/selling aggression.
Zero-Lag Techniques: Specifically, the Ehlers Zero Lag EMA, which is mathematically constructed to eliminate phase lag by predicting where the price will be rather than where it was.
Relative Volume (Multi-TF, D, W, M)Relative Volume (Multi-TF, Candle-Matched Colors)
This indicator measures Relative Volume (RVOL) — the ratio of current volume to average historical volume — across any higher timeframe (Daily, Weekly, or Monthly) and displays it as color-coded columns that match the candle colors of the chart you’re viewing.
RVOL reveals how active today’s market participation is compared to its typical rhythm.
RVOL = 1.0 → normal volume
>1.5 → rising interest
>2.0–3.0 → strong institutional participation
>5.0 → climax or exhaustion levels
Features
Works on any chart timeframe while computing RVOL from your chosen higher timeframe (e.g., show Daily RVOL while trading on a 5-minute chart).
Column colors automatically match your chart’s candle colors (green/red/neutral).
Adjustable lookback period (len) and selectable source timeframe (D, W, or M).
Pre-drawn horizontal guide levels at 1.0, 1.2, 1.5, 2, 3, and 5 for quick interpretation.
Compatible with all chart types, including Heikin Ashi or custom color schemes.
Typical Use
Swing trading:
Look for quiet bases where RVOL stays 0.4–0.9, then expansion ≥2 on breakout days.
Confirm follow-through when green days keep RVOL ≥1.2–1.5 and red pullbacks stay below 1.0.
Day trading:
Watch intraday RVOL (on 1–5m charts) for bursts ≥2 that sustain for several bars — this signals crowd engagement and valid momentum.
Interpretation Summary
RVOL Value Meaning Typical Action
0.4–0.9 Quiet base / low interest Watch for setup
1.0 Normal activity Neutral
1.2–1.5 Valid participation Early confirmation
2–3 Strong expansion Momentum / breakout
≥5 Climax / exhaustion Take profits or avoid new entries
Author’s note:
RVOL isn’t directional; it tells how many players are active, not who’s winning. Combine it with structure (levels, VWAP, or trend) to see when the market crowd truly commits.
Frankator BBRSI🧭Strategy Description of Frankator BBRSI: Bollinger Bands + RSI Signal (only on 5 min chart)
Overview
This indicator combines Bollinger Bands and the Relative Strength Index (RSI) to identify potential overbought and oversold market conditions.
It generates buy and sell signals when the price reaches extreme levels confirmed by RSI momentum — helping traders anticipate potential reversals or continuation setups.
📊 How It Works
Bollinger Bands
The script plots three lines:
Upper Band: SMA + (Standard Deviation × Multiplier)
Basis (Middle Band): Simple Moving Average (SMA)
Lower Band: SMA - (Standard Deviation × Multiplier)
When the price touches or breaks the upper band, it may indicate an overbought market.
When the price touches or drops below the lower band, it may indicate an oversold market.
RSI Confirmation
RSI measures momentum to confirm whether the market is truly overbought or oversold.
Default RSI levels:
Overbought: RSI > 70
Oversold: RSI < 30
Signal Conditions
Buy Signal:
Price closes at or below the lower Bollinger Band
RSI < 30 (oversold)
A green triangle appears below the candle
Sell Signal:
Price closes at or above the upper Bollinger Band
RSI > 70 (overbought)
A red triangle appears above the candle
Alerts
You can set TradingView alerts for automatic notifications when either a Buy or Sell condition is met.
Go to “Add Alert” → “Condition” → Choose this indicator → Select Buy/Sell Signal, or Any alert for both alerts.
⚠️ Disclaimer
This indicator is a technical analysis tool, not a guarantee of future performance. Always use proper risk management and confirm signals with other indicators or price patterns before entering trades.
Fib Time Projections aFib Time Projections aFib Time Projections aFib Time Projections aFib Time Projections a
Simple Moving AveragesIn Pine Script v6, the standard method for plotting indicators is still the plot function, and it should be recognized. However, if you are getting an "Undeclared identifier 'plot'" error, double-check these points:
Make sure your script is still using indicator() (not study()) at the top.
The script must not use indentation or syntax errors that break context.
Confirm Pine Script version is set correctly with //@version=6.
Here is a fully corrected Pine Script v6 template for your moving averages scenario using
PDH & PDL Levels This indicator mark previous day high and low lines on current day. Lines will start at opening of the market and will remain there till end of the day. Lines are marked with PDH and PDL labels
1800 Standart Deviation1800 Standard Deviation
This script automatically plots standard deviation levels calculated from the 18:00 open price (based on your selected timezone). It provides a clear visual framework to analyze market volatility and key price zones around the session open.
How it works
At 18:00 (configurable timezone), the script records the open price and calculates multiple standard deviation levels above and below it.
Each level is expressed in points (or pips) relative to the open.
Horizontal lines are drawn and extended automatically as new bars appear.
Labels display the corresponding deviation value.
Colored boxes highlight important ranges between levels, such as neutral or high-volatility zones.
Customization
Adjustable timezone (GMT, Paris, or others).
Option to enable or disable the 18:00 deviation drawing.
Automatic daily refresh at the specified time.
Use cases
Identify volatility zones and price deviation ranges around 18:00.
Determine potential reversal or entry zones based on standard deviations.
Use as a technical reference for intraday or swing trading setups.
Notes
The calculations are purely statistical and price-based — no indicators or moving averages are used.
This script is visual only and does not generate buy/sell signals.
SECTOR ROTATION Sector Rotation Indicator with Auto Chart Symbol
This indicator helps traders track relative performance across multiple indices/sectors simultaneously, making it easy to identify sector rotation and market leadership.
Key Features:
✅ 21 Symbols Tracking: Monitor 20 customizable symbols + your current chart symbol automatically(DIVIDEND SYMBOL)
✅ Percentage Performance: All moving averages show percentage gain/loss from 1 timeframe period ago
✅ Color-Coded Visualization: Heat map coloring (red to green) based on relative performance ranking
✅ Flexible Timeframes: Works on any timeframe from 1-minute to 12-month charts
✅ Performance Table: Quick-view table showing candle performance with inside/outside bar detection
✅ Indian Market Ready: Pre-configured with NSE indices (NIFTY, BANKNIFTY, and sectoral indices)
Default Symbols (Customizable):
NIFTY, CNXSMALLCAP, CNXMIDCAP, BANKNIFTY
Sector indices: IT, AUTO, PHARMA, METAL, ENERGY, FMCG, etc.
Plus your current chart symbol (automatically added)
How It Works:
Select your preferred timeframe (1D, 1W, 1M, etc.)
The indicator calculates percentage performance from given period ago
Moving averages show smoothed performance trends
Colors indicate relative strength: Green = outperformers, Red = underperformers
Perfect For:
Sector rotation analysis
Relative strength comparison
Market breadth assessment
Index/ETF traders
Swing and position traders
Settings:
Adjustable MA length (default: 20)
Customizable colors and table position
Show/hide percentage labels
Horizontal or vertical table layout
This is not any buy or sell signal or recommendation, consult with your advisor first.
OBV (Delta or regular)This is a quite simple script to apply some choices to OBV.
You can choose to use regular OBV values or you can choose to use delta OBV values.
Delta OBV values calculates the delta between selling volume and buying volume per bar to find discrepancies.
You can make the OBV a smoothed line or just keep the normal rigid line. Rigid line is default.
A secondary smoothed OBV line is added automatically with color change if the OBV is above or below the smoothed line.
You can set your desired MA from SMA, EMA, VWMA and WMA, The same will be applied to both lines if chosen to smooth them both.
Both lines are editable from the styles tab (visibility, color and line type)
If you for some reason don't want color change on the secondary line, chose the same color for both color 1 and 2.
Simple delta OBV example:
If a red bar has a long lower wick, OBV will calculate the entire bar towards bearish volume, while the delta will check if there's more buying or selling happening in total. Some times you'll be able to catch divergences in the volume which implies a reversal might be in the making.
For instance more selling on a green candle making the OBV drop instead of increasing or vise versa.
Hopefully someone finds is useful.
Mohit-Fixed 4H & 15M Basesbase concept script
taught by Team ATM
A Trading Monk
-Nitin Makhija
-Akhilesh Pandey
Fibonacci levels MTF 2WEEK KKKKA Fibonacci arc trading strategy uses circular arcs drawn at Fibonacci retracement levels (38.2%, 50%, 61.8%) to identify potential support and resistance zones, often intersecting with a trend line. This strategy helps traders anticipate price reversals or pullbacks, and it should be used in conjunction with other indicators
Fibonacci Retracement MTF/LOG 3 WEEK KKKKA Fibonacci arc trading strategy uses circular arcs drawn at Fibonacci retracement levels (38.2%, 50%, 61.8%) to identify potential support and resistance zones, often intersecting with a trend line. This strategy helps traders anticipate price reversals or pullbacks, and it should be used in conjunction with other indicators
Fibonacci Retracement MTF/LOG 2WEEK KKKKFibonacci retracment should be used to create a line of lines to justify the rest of indicators to reduce stress in indicators because we should not shout
TI65**TI65 (Trend Intensity 65)** is a technical indicator designed to measure the strength and momentum of a trend over two distinct periods. It compares a short-term 7-period simple moving average (SMA) with a long-term 65-period SMA, producing a ratio that helps traders identify shifts in market momentum and trend direction.
- When the **TI65 value is greater than 1**, it indicates that the short-term moving average is above the long-term average, suggesting increasing momentum and a potentially bullish trend.
- When the **TI65 value drops below 1**, it signals weakening short-term momentum relative to the longer-term trend, often interpreted as a bearish or consolidating phase.
This indicator can be applied to both price and volume data, making it useful for identifying periods of strong volume surges or price movements. By observing changes in the TI65 ratio, traders can pinpoint low-risk entry points for trend-following strategies and quickly recognize periods of market transition.
TI65 is commonly used by momentum and breakout traders for screening strong candidates and confirming the sustainability of ongoing trends. It is simple, effective, and easily implemented via custom scripts on popular platforms like TradingView.
Volume TI65**TI65 (Trend Intensity 65)** is a technical indicator designed to measure the strength and momentum of a trend over two distinct periods. It compares a short-term 7-period simple moving average (SMA) with a long-term 65-period SMA, producing a ratio that helps traders identify shifts in market momentum and trend direction.
- When the **TI65 value is greater than 1**, it indicates that the short-term moving average is above the long-term average, suggesting increasing momentum and a potentially bullish trend.
- When the **TI65 value drops below 1**, it signals weakening short-term momentum relative to the longer-term trend, often interpreted as a bearish or consolidating phase.
This indicator can be applied to both price and volume data, making it useful for identifying periods of strong volume surges or price movements. By observing changes in the TI65 ratio, traders can pinpoint low-risk entry points for trend-following strategies and quickly recognize periods of market transition.
TI65 is commonly used by momentum and breakout traders for screening strong candidates and confirming the sustainability of ongoing trends. It is simple, effective, and easily implemented via custom scripts on popular platforms like TradingView.
DM Scalp 70% ConfluenceDM Scalp 70% Confluence indicator is a signal generator, not an automated strategy. That means it plots visual cues (triangles) to tell you when conditions are favorable for a scalp trade, but you have to enter the trade manually.
Let’s break it down step by step
1. Understand What the Indicator Does
When multiple bullish or bearish technical conditions agree.
Each signal checks 8 factors (EMA alignment, RSI, VWAP, volume, momentum, etc.).
If 70% (≥ 5.6/8) agree:
Green triangle (CALL) → bullish scalp signal
Red triangle (PUT) → bearish scalp signal
It’s optimized for SPY on 1-minute and 5-minute timeframes — short-term scalping setups.
2. Entry for Long (CALL) Trades
When you see a green triangle (triangle up) under a candle:
Confirm the setup:
The composite line (EMA+VWAP) is turning up and colored green.
Price is above the composite line or crossing above it.
RSI > 55 and increasing.
Volume is at or above its 20-bar average.
Entry timing:
Enter on the candle close of the signal bar.
Conservative traders may wait for the next candle to confirm continuation (e.g., higher close).
Stop-loss:
Place just below the composite line or below the last swing low.
For 1-minute scalp, typically 0.15–0.25% below entry on SPY.
Take-profit:
Aim for a 1:1.5 or 1:2 reward/risk ratio, or exit near resistance/VWAP.
3. Entry for Short (PUT) Trades
When you see a red triangle (triangle down) above a candle:
Confirm the setup:
The composite line is turning down (red).
Price is below the composite line or crossing under.
RSI < 45 and falling.
Volume is elevated.
Entry timing:
Enter on candle close of the signal bar.
Conservative: confirm with next candle closing lower.
Stop-loss:
Just above the composite line or previous swing high.
Take-profit:
Same 1:1.5–1:2 risk/reward ratio, or exit near support/VWAP.
4. Optional: Multi-Timeframe Confirmation
You can use:
1m chart for entries.
5m chart to confirm the broader direction (if 5m trend matches 1m signal → stronger confluence).
If your 1m chart shows a CALL signal and the 5m EMAs are bullish too, it’s a higher-probability trade.
8 Médias Exponenciais (Config.)This indicator provides a highly flexible system of eight fully customizable moving averages (MAs), allowing traders to visualize short-, medium-, and long-term market trends with precision and adaptability. Each of the eight moving averages can be independently configured by the user, both in period length and type — supporting either Simple Moving Average (SMA) or Exponential Moving Average (EMA).
ApexSniperI have Tested this Indicator Manually for about 2 months now and its been amazing.Ive been working with pine code for a really long time now, took me about 6 months to build this script, hopefully it works well for you.very good for trading. will help you out a lot
st 47Усредненный Ишимоку (Custom: 9/48/96) [V6]st47 — Volume in Clouds
This indicator is a custom Ichimoku Cloud modification that dynamically reacts to market volume.
The color intensity of the Kumo (cloud) changes depending on the current trading volume — brighter clouds indicate stronger activity, while dimmer ones reflect low participation.
Key Features:
• Based on the Ichimoku Cloud system (8/48/96 settings)
• Volume-sensitive cloud visualization
• Works on any timeframe and pair
• Supports multi-ticker averaging (BTCUSDT, BTCUSDT.P, etc.)
• Displays additional volume histogram below the chart
Purpose:
Helps visualize both trend structure and the strength behind it by combining Ichimoku logic with real-time volume dynamics.






















