Relative Strength Index + Golden Cross + MACDThis script is a high-performance, cleanly visualized indicator designed for swing traders and intraday scalpers. It combines multiple classic and modern techniques to help identify momentum trends, crossover signals, and smart entry zones.
🔧 Key Features:
RSI (Relative Strength Index) with gradient bands (overbought/oversold zones)
Golden Cross & Death Cross (SMA 50/200) with green/red + markers
SMA 50 over 150 (bullish crossover) with a blue + marker
MACD Crossover Dots (green for bullish, red for bearish)
Supertrend Dots for direction confirmation (lime/fuchsia)
Smart Entry Dot when RSI > 50, MACD bullish, and SMA50 > SMA200 (teal triangle)
Background Highlight for strong trend momentum using custom ADX + RSI filter
🎯 Ideal For:
Scalping with momentum confirmation
Swing trading on multi-timeframe alignment
Combining traditional indicators with clean visuals
🧪 Suggested Use:
Use this indicator in combination with support/resistance or price action. Filter out low-probability trades by focusing on:
Smart Entry signals during momentum backgrounds
Cross-check with Supertrend direction and RSI slope
Göstergeler ve stratejiler
Top 5 Sector Performancehe indicator creates a table showing:
Top 5 performing sectors for 3 timeframes: 1-day, 10-day, and 20-day periods
Performance data including sector name and percentage change
Color-coded results: Green (positive), Red (negative), Gray ("N/A" for missing data)
Key Features
Table Structure:
Columns: Rank | 1-Day | 10-Day | 20-Day
Rows: Top 5 sectors for each timeframe
Header: Dark gray background with white text
Rows: Alternating dark gray shades for readability
CVD - Cumulative Volume Delta CandlesCumulative Volume Delta with CVD level Alerts for finding Absorption - statistically the strongest CVD divergence.
Select your CVD levels in Settings > Inputs ("Upper Y Scale Alert Level" / "Lower Y Scale Alert Level") then right click on the green/red levels to create an alert for when CVD crosses.
If CVD hits a new high/low without price doing the same, there is Absorption
Reach out on X @cvolumeprofile to find out on which charts this works best
CVD by @cvolumeprofile also shows candle by candle divergences - highlighted with a green background. This is when a market goes down on more buyers or when a market goes up on more sellers - often signalling market inflection points
XAUT Box with RSI Div(Dynamic Adjustment + MA + Short + English)Strategy Overview: Box Range with RSI Divergence (Dynamic Adjustment - OKX Signal Format)
This Pine Script strategy, "XAUT Box with RSI Div (Dynamic Adjustment + MA + Short + English )", is designed for trading within a box range while leveraging RSI divergences and moving average trends. It is optimized for use with OKX signal credentials and integrates TradingView alerts for automated trading.
Optimal Configuration
Take-Profit: 18% return rate.
Initial Margin: $50.
Total Margin: $800 USDT.
Expected Monthly Return: 10%+.
MC TQQQ Alpha v1Plots the difference between the stock 1 / 3 month performance and the NASDAQ:TQQQ 1 / 3 month performance (pre-enabled is the 1 month performance, but you can also enable the 3 month performance).
NEIROCTO Impulse Watcher (Alert Ready)
📡 Zazulya Radar — Full System
This indicator combines key elements for short-term trend identification and volume-driven impulse detection:
- EMA 9 and EMA 21 for trend phase analysis
- VWAP for intraday price equilibrium
- Bollinger Bands for volatility breakout zones
- RSI for identifying overbought/oversold moments
- Volume + SMA(20) for accumulation/distribution patterns
Perfect for scalping, grid trading and sniper entries in volatile markets.
[Myth Busting] [ORB] Casper SMC - 16 JunJust showcase of YouTube strategy claimed to be profitable and fool proof. Not on every asset and not long-term though
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Trap Watcher (Downside Alert)", overlay=true)
// === Условия ===
rsi = ta.rsi(close, 14)
rsi_down = rsi < ta.sma(rsi, 5)
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Сигнал ===
condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Графика ===
bgcolor(condition ? color.new(color.red, 85) : na)
plotshape(condition, title="DROP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text=⚠️")
// === Алерт ===
alertcondition(condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ NEIROCTO: RSI ↓, Волатильность >3%, объёмы растут. Возможен откат!")
Confirmed Candlestick Pattern DetectorConfirmed Candlestick Pattern Detector, such as Evening Star, Morning Star etc.
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Trap Watcher (Downside Alert)", overlay=true)
// === Условия ===
rsi = ta.rsi(close, 14)
rsi_down = rsi < ta.sma(rsi, 5)
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Сигнал ===
condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Графика ===
bgcolor(condition ? color.new(color.red, 85) : na)
plotshape(condition, title="DROP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерт ===
alertcondition(condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ NEIROCTO: RSI ↓, Волатильность >3%, объёмы растут. Возможен откат!")
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Combo Watcher (Pump vs Dump)", overlay=true)
// === RSI и его производные ===
rsi = ta.rsi(close, 14)
rsi_sma = ta.sma(rsi, 5)
rsi_up = rsi > rsi_sma
rsi_down = rsi < rsi_sma
// === Волатильность ===
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
// === Объёмы ===
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Условие пампа ===
pump_condition = rsi > 45 and rsi_up and volatility_trigger and volume_up
// === Условие отката ===
dump_condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Фон ===
bgcolor(pump_condition ? color.new(color.green, 85) : na)
bgcolor(dump_condition ? color.new(color.red, 85) : na)
// === Метки ===
plotshape(pump_condition, title="🚀 PUMP Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="🚀")
plotshape(dump_condition, title="⚠️ DUMP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерты ===
alertcondition(pump_condition, title="🚀 NEIROCTO: Возможен памп!", message="🚀 RSI ↑, Волатильность >3%, Объёмы высокие — возможен памп!")
alertcondition(dump_condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ RSI ↓, Волатильность >3%, объёмы растут — возможен откат!")
NEIROCTO Impulse Watcher (Alert Ready)//@version=5
indicator("NEIROCTO Combo Watcher (Pump vs Dump)", overlay=true)
// === RSI и его производные ===
rsi = ta.rsi(close, 14)
rsi_sma = ta.sma(rsi, 5)
rsi_up = rsi > rsi_sma
rsi_down = rsi < rsi_sma
// === Волатильность ===
volatility = math.abs(close - close ) / close * 100
volatility_trigger = volatility > 3
// === Объёмы ===
volume_sma = ta.sma(volume, 20)
volume_up = volume > volume_sma
// === Условие пампа ===
pump_condition = rsi > 45 and rsi_up and volatility_trigger and volume_up
// === Условие отката ===
dump_condition = rsi < 40 and rsi_down and volatility_trigger and volume_up
// === Фон ===
bgcolor(pump_condition ? color.new(color.green, 85) : na)
bgcolor(dump_condition ? color.new(color.red, 85) : na)
// === Метки ===
plotshape(pump_condition, title="🚀 PUMP Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="🚀")
plotshape(dump_condition, title="⚠️ DUMP Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="⚠️")
// === Алерты ===
alertcondition(pump_condition, title="🚀 NEIROCTO: Возможен памп!", message="🚀 RSI ↑, Волатильность >3%, Объёмы высокие — возможен памп!")
alertcondition(dump_condition, title="⚠️ NEIROCTO: Возможен откат!", message="⚠️ RSI ↓, Волатильность >3%, объёмы растут — возможен откат!")
Stock Performance Dashboard + Sector PerformanceThis indicator, Stock Performance Dashboard + Sector Performance, provides a comprehensive visual analysis of both individual stock performance and sectoral trends directly on your TradingView chart.
Key Features:
Performance Dashboard Table:
Displays the stock’s returns over multiple timeframes (1, 5, 10, 20, 50, 200 days) and compares them to a selected benchmark index (default: NIFTYMIDSML400).
Highlights whether the stock is outperforming the index for each period, shows the difference in performance, and includes an RSI (Relative Strength Index) column for additional momentum insight.
Calculates and displays a “conviction” score and level based on how often the stock outperforms the index across periods.
Sector Performance Table:
Ranks and displays the top-performing sectors from a predefined list of major NSE sector indices over four key periods (1D, 5D, 30D, 50D).
For each period, the top 5 sectors are shown, with color-coded performance for quick visual assessment.
Customization:
Includes options for dark/light mode, table size, position, and which columns to display.
Supports a compact “mini mode” for simplified visualization.
Usage:
This tool is ideal for traders and investors who want a quick, at-a-glance comparison of a stock’s short- and long-term momentum versus its benchmark, as well as a live snapshot of sector rotation and leadership in the Indian market. All data is presented in clear, color-coded tables for actionable decision-making.
2025 Stratejik Sinyal İndikatörüThe strategy indicator, which generates buy-sell signals on the chart and can set alarms for indicators such as Supertrend, RSI, Stochastic RSI, Squeeze Momentum, MACD, 10 Moving Average and Price indicator PPO, will guide you while trading.
MT Daily ZonesMT Daily Zones
A precision market structure tool from Mindfluential Trading, combining daily CPR, PDH/PDL zones, EMAs/SMAs - all optimized for intraday traders.
🔹 Core Features
🔵 CPR (Central Pivot Range)
Plots Pivot, TC, and BC from the previous day
Helps define the market's fair value zone and compression/breakout areas
Royal blue color ensures clarity on both light and dark themes
🟠 PDH / PDL Zones
Accurately plots Previous Day’s High and Low
Useful for breakout scalps, reversal traps, and trend continuation setups
🟢 Smart Trend Filters
Toggle EMAs (8, 20, 50) and SMAs (50, 100, 200)
Smooth color-coded display for dynamic trend alignment
✅ Clean Visuals. Real Structure. No Clutter.
⚠️ Disclaimer
This indicator is for educational purposes only. Do your own research before making trading decisions.
May 27
Release Notes
MT Daily Zones
A precision market structure tool from Mindfluential Trading, combining daily CPR, PDH/PDL zones, EMAs/SMAs - all optimized for intraday traders.
🔹 Core Features
🔵 CPR (Central Pivot Range)
Plots Pivot, TC, and BC from the previous day
Helps define the market's fair value zone and compression/breakout areas
Royal blue color ensures clarity on both light and dark themes
🟠 PDH / PDL Zones
Accurately plots Previous Day’s High and Low
Useful for breakout scalps, reversal traps, and trend continuation setups
🟢 Smart Trend Filters
Toggle EMAs (8, 20, 50) and SMAs (50, 100, 200)
Smooth color-coded display for dynamic trend alignment
✅ Clean Visuals. Real Structure. No Clutter.
⚠️ Disclaimer
This indicator is for educational purposes only. Do your own research before making trading decisions.
Stock World 23.0Stock World is an authorised training partner of BFSI Sector skill council of India ...
We have our own trademark...
if you want to use this indicator then you should have proper strategy , money management & hedging ...
all the best
MACD Candle HighlightCandle close above previous low and MACD negative crossover state can be sell signal
and vice versa... higher time frame view is important to follow this
Señal Divina 2If 1 point is worth \$12.50, you're trading the **E-mini S\&P 500 Futures (symbol: ES)**. Each tick is 0.25 points and worth \$12.50, so 1 full point = 4 ticks = \$50. This means you're trading 1 contract of ES, not the Micro (MES), which is only \$1.25 per tick.
If 1 point is worth \$12.50, you're trading the **E-mini S\&P 500 Futures (symbol: ES)**. Each tick is 0.25 points and worth \$12.50, so 1 full point = 4 ticks = \$50. This means you're trading 1 contract of ES, not the Micro (MES), which is only \$1.25 per tick.
Asset Statistics Analysis 📊📊 Asset Drawdown Statistics — Full Analysis & Recommendation Tool
This indicator provides an in-depth statistical analysis of an asset’s drawdown behavior over a custom period and offers dynamic trade recommendations based on price action and moving average alignment.
🔍 Main Features:
✅ Drawdown Classification: Real-time classification of the current drawdown into 4 levels:
🟢 Low
🟡 Moderate
🟠 High
🔴 Critical
(Levels are calculated dynamically based on the asset's max drawdown in the selected period.)
⏱️ Average & Max Durations: Tracks how long the asset stays in each drawdown level on average and records the longest streaks (in bars).
📈 Dynamic Price Thresholds: Visual lines on the chart show key drawdown levels derived from peak equity.
📋 Statistical Dashboard: A floating table shows:
Current drawdown and classification
Time spent in each drawdown level (percentage)
Average and max duration per level
Live recommendation based on drawdown context and MA trend
📌 Trade Recommendations:
Based on the current drawdown + position relative to 3 moving averages (SMA):
🟢 Strong Buy / Buy
🟡 Accumulate / Hold
🟠 Reduce
🔴 Sell / Strong Sell
⚙️ Inputs:
Drawdown Period: Defines the number of bars used for peak drawdown calculation
3 customizable moving averages: Short / Medium / Long
✅ How to Use:
Use the drawdown classification to assess long-term risk phases.
Check the "Recommendation" box for guidance on timing entries/exits.
Combine with your own strategy or trend-following approach.
⚠️ Disclaimer
This script is provided for educational and informational purposes only and does not constitute financial, investment, or trading advice.
Always do your own research and consult with a qualified financial advisor before making any trading decisions.
The author assumes no responsibility for any losses or damages resulting from the use of this indicator.
Deep Z pi SP MA + 2 CC + OB + CPR + last 5 Minmy script with proper strike price, if strike price crosses R1, take put ex + hedge, if crosses s1 take call ex. bottom bc call normal and top bc put normal.
Stochastic Money Flow IndexThe Stochastic Money Flow Index (or Stochastic MFI ), is a momentum indicator that combines the Money Flow Index (MFI) and the Stochastic Oscillator to identify overbought and oversold conditions in a market.
It is a variation of the classic Stochastic RSI that uses the MFI rather than the Relative Strength Index (RSI) in its calculation. While the RSI focuses solely on price momentum, the MFI is a volume-weighted indicator, meaning it incorporates both price and volume data.
The Stochastic MFI is intended to provide a more precise and sensitive reading of the MFI by measuring the level of the MFI relative to its range over a specific period.
Settings
Stochastic Settings
%K Length : The number of periods used to calculate the Stochastic. (Default: 14)
%K Smoothing : The SMA length used to 'smooth' the %K line. (Default: 3)
%D Smoothing : The SMA length used to 'smooth' the %D line. (Default: 1)
Money Flow Index Settings
MFI Length : The number of periods used to calculate the Money Flow Index. (Default: 14)
MFI Source : The source used to calculate the Money Flow Index. (Default: close)
Additional Settings
Show Overbought/Oversold Gradients? : Toggle the display of overbought/oversold gradients. (Default: true)