SPX +10 / -10 From 9:30 Open//@version=5
indicator("SPX +10 / -10 From 9:30 Open", overlay=true)
// Exchange Time (New York)
sess = input.session("0930-1600", "Regular Session (ET)")
// Detect session and 9:30 AM bar
inSession = time(timeframe.period, sess)
// Capture the 9:30 AM open
var float open930 = na
if inSession
// If this is the first bar of the session (9:30 AM)
if time(timeframe.period, sess) == na
open930 := open
else
open930 := na
// Calculate movement from 9:30 AM open
up10 = close >= open930 + 10
dn10 = close <= open930 - 10
// Plot reference lines
plot(open930, "9:30 AM Open", color=color.orange)
plot(open930 + 10, "+10 Level", color=color.green)
plot(open930 - 10, "-10 Level", color=color.red)
// Alert conditions
alertcondition(up10, title="SPX Up +10", message="SPX moved UP +10 from the 9:30 AM open")
alertcondition(dn10, title="SPX Down -10", message="SPX moved DOWN -10 from the 9:30 AM open")
// Plot signals on chart
plotshape(up10, title="+10 Hit", style=shape.labelup, color=color.green, text="+10", location=location.belowbar, size=size.tiny)
plotshape(dn10, title="-10 Hit", style=shape.labeldown, color=color.red, text="-10", location=location.abovebar, size=size.tiny)
Indicators and strategies
Advanced VolumeAdvanced Volume is a modular volume analysis suite designed to uncover hidden buying and selling pressure that standard volume bars often miss. Instead of cluttering your chart with multiple oscillators, this tool combines five institutional metrics—Chaikin Money Flow (CMF), Money Flow Index (MFI), Volume RSI, Relative Volume (RVOL), and Volume Oscillator—into a single, adaptive pane.
The script features a "Hero Metric" system, allowing you to choose which oscillator is visualized on the chart, while an intelligent dashboard monitors the remaining metrics in the background to generate a composite "Total" market bias score.
Key Features
5-in-1 Architecture: Switch the main view between CMF, MFI, Volume RSI, RVOL, or Volume Oscillator without removing the indicator.
Divergence Engine: Automatically detects and labels bullish and bearish discrepancies between price action and the selected volume metric.
Hidden Liquidity Detection: Identifies "Churn" candles—specifically Dojis with unusually high relative volume—often signaling absorption or a potential reversal.
Live Dashboard: A real-time table displaying the status of all five metrics simultaneously, culminating in an aggregate Bullish/Bearish/Neutral score.
How to Use
1. The Hero Metric (Main Oscillator) By default, the indicator displays Chaikin Money Flow (CMF).
Green Bars: Buying pressure (Inflow).
Red Bars: Selling pressure (Outflow).
Customization: You can change this in the settings to MFI, Volume RSI, or RVOL depending on your trading style.
2. Divergence Signals The script looks for pivot points where price and volume disagree.
Bullish Div (Label Up): Price makes a lower low, but volume momentum makes a higher low. This suggests selling exhaustion.
Bearish Div (Label Down): Price makes a higher high, but volume momentum makes a lower high. This suggests weak buying conviction.
3. Hidden Liquidity (Yellow Diamonds) Small yellow diamond markers appear above candles when a specific condition is met: The candle is a Doji (indecision) BUT Relative Volume is extremely high (default > 2.0x average). This indicates a battle between buyers and sellers where significant volume was exchanged with zero net price movement—often a sign of a localized top or bottom.
4. The Dashboard Located on the chart, this panel provides a summary of the broader market health:
Money Flow: Tracks CMF status.
MFI: Checks for Overbought (>80) or Oversold (<20) conditions.
Rel Vol: Displays the current volume multiplier (e.g., 2.5x).
Vs VWAP: Checks if the price is above or below the Volume Weighted Average Price.
TOTAL: Sums up the signals from all metrics to give a final trend bias (Bullish, Bearish, or Neutral).
Disclaimer This indicator is provided for educational and informational purposes only. It does not constitute financial advice, investment recommendations, or a guarantee of future results.
Displacement Intelligence Channel (DIC) @darshaksscThe Displacement Intelligence Channel (DIC) is a clean, minimal, non-repainting analytical tool designed to help traders observe how price behaves around its dynamic equilibrium.
It does not generate buy/sell signals, does not predict future price movement, and should not be interpreted as financial advice.
All calculations are based strictly on confirmed historical bars.
⭐ What This Indicator Does
Price constantly fluctuates between expansion (large moves) and compression (small moves).
The DIC analyzes these changes through:
Displacement (how far price moves per bar)
ATR response (how volatility reacts over time)
Dynamic width calculation (channel widens or tightens as volatility changes)
EMA-based core midline (a smooth equilibrium reference)
The result is a smart two-line channel that adapts to market conditions without cluttering the chart.
This is NOT a fair value gap, moving average ribbon, or premium/discount model.
It is a purely mathematical displacement-ATR engine.
⭐ How It Works
The indicator builds three elements:
1. Intelligence Midline
A smooth EMA that acts as the channel’s core “equilibrium.”
It gives a stable reference of where price is gravitating during the current session or trend.
2. Adaptive Upper Boundary
Calculated using displacement + ATR.
When volatility increases, the channel expands outward.
When volatility compresses, the channel tightens.
3. Adaptive Lower Boundary
Mirrors the upper boundary.
Also expands and contracts based on market conditions.
All lines update only on confirmed bar closes, keeping the script non-repainting.
⭐ What to Look For (Purely Analytical)
This indicator does not imply trend continuation, reversal, or breakout.
Instead, here’s what traders typically observe:
1. Price Reactions Around the Midline
Price often oscillates around the midline during equilibrium phases.
Strong deviation from the midline highlights expansion or momentum phases.
2. Channel Expansion / Contraction
Wider channel → increased volatility, displacement, and uncertainty
Tighter channel → compression and calm conditions
Traders may use this for context only — not for decision-making.
3. Respect of Channel Boundary
When market structure respects the upper/lower channel lines, it simply indicates volatility boundaries, not overbought/oversold conditions.
⭐ How to Add This Indicator
Open TradingView
Select any chart
Click Indicators → Invite-Only Scripts / My Scripts
Choose “Displacement Intelligence Channel (DIC)”
The channel will appear automatically on the chart
⭐ Recommended Settings (Optional)
These settings do not change signals (because the indicator has none).
They only adjust sensitivity:
Center EMA Length (default 34)
Smoother or faster midline
Displacement Lookback (default 21)
Controls how much recent displacement affects width
ATR Lookback (default 21)
Governs how volatility is interpreted
Min/Max Multipliers
Limits how tight or wide the channel can expand
Adjust them cautiously for different timeframes or asset classes.
⭐ Important Notes
This tool is non-repainting
It does not use future data
It does not repaint previous channel widths
It follows TradingView House Rules
It contains no signals, no alerts, and no predictions
The DIC is designed for visual context only and should be used as an analytical overlay, not as a stand-alone decision tool.
⭐ Disclaimer
This script is strictly for informational and educational purposes only.
It does not provide or imply any trading signals, financial advice, or expected outcomes.
Always do your own research and consult a licensed financial professional before making trading decisions.
EMA 7/21 + SuperTrend DEFINITIVOhe Ultimate 7/21 Signal: Trend-Filtered by Supertrend 🚀Tired of signals that trade against the main trend? This powerful indicator features the 7/21 EMA Crossover as its core signal, but with a massive upgrade in confirmation:Trend Alignment: Only signals that move in the direction of the Supertrend are confirmed, drastically reducing false entries.Momentum Filter: The ADX DI ensures the move has directional strength.Conviction Check: A Volume Filter validates the signal with market participation.This multi-stage filter provides clean, high-conviction signals for the $7/21$ strategy. The intuitive Informative Panel clearly shows when all conditions are met for a BUY or SELL.Trade with the trend. Trade with conviction.
Elastic Volume-Weighted Momentum 🔥Elastic Volume-Weighted Momentum (EVWM) is a hybrid oscillator that measures the "force" of a price move by combining distance from the mean (elasticity) with relative trading volume. Unlike standard momentum indicators that only look at price speed, EVWM assumes that volume is the fuel for sustainable trends.
The indicator calculates a baseline (default: Hull Moving Average) and measures how far price stretches away from it, normalized by market volatility (ATR). This "elasticity" is then multiplied by a Volume Factor. The result is a histogram and signal line that distinguishes between high-conviction moves (high volume) and weak speculation (low volume).
How to Use
The EVWM is designed to filter false breakouts and identify mean-reversion opportunities through three distinct signal types:
1. Ignition Signals (Triangles) These occur when the momentum breaks outside the standard deviation bands with high volume.
Signal: Yellow Triangles.
Interpretation: This represents a valid breakout. The market has stretched away from the average with significant participation. This is often a signal to enter in the direction of the breakout.
2. Zombie Signals (X Marks) These occur when the momentum breaks outside the bands with low volume.
Signal: Grey "X".
Interpretation: This is a "fakeout" or a trap. The price moved, but there is no volume supporting it. Traders should exercise caution or consider fading the move, as it lacks the energy to sustain the trend.
3. Snap-Back Signals (Circles) These occur when the momentum line returns inside the bands after being overextended.
Signal: Red/Green Circles.
Interpretation: The "rubber band" is snapping back. This is a classic mean-reversion signal, often used to take profits on an existing position or to enter a counter-trend trade targeting the baseline.
4. Divergences The indicator includes an optional feature to detect discrepancies between price action and momentum.
Bearish Divergence: Price makes a higher high, but EVWM makes a lower high.
Bullish Divergence: Price makes a lower low, but EVWM makes a higher low. These patterns often precede a trend reversal.
Configuration Guide
Lookback Length: Controls the speed of the indicator. Use lower values (21) for scalping and higher values (50+) for swing trading.
Baseline Type: Selects the moving average used as the center of gravity. "Hull MA" is the default for its responsiveness, while "SMA" offers a smoother, slower baseline.
Trend Filter: A safety mechanism that checks a higher timeframe (e.g., 4-hour or Daily). If enabled, the indicator will block "Buy" signals if the higher timeframe trend is bearish, helping traders stay on the right side of the market.
Volume Threshold: Adjusts what defines "High Volume." Increasing this value makes "Ignition" signals rarer but potentially more reliable.
Disclaimer: This indicator is provided for educational purposes only. Past performance does not guarantee future results.
PyraTime Harmonic 369Concept and Methodology PyraTime Harmonic 369 is a quantitative time-projection tool designed to apply Modular Arithmetic to market analysis. Unlike linear time indicators, this tool projects non-linear integer sequences derived from Digital Root Summation (Base-9 Reduction).
The core logic utilizes the mathematical progression of the 3-6-9 constants. By anchoring to a user-defined "Origin Pivot," the script projects three distinct harmonic triads to identify potential Temporal Confluence—moments where mathematical time cycles align with price action.
Technical Features This script focuses on the Standard Scalar (1x) projection of the Digital Root sequence:
The Root-3 Triad (Red): Projects intervals of 174, 285, 396. (Mathematical Sum: 1+7+4=12→3)
The Root-6 Triad (Green): Projects intervals of 417, 528, 639. (Mathematical Sum: 4+1+7=12→3, inverted)
The Root-9 Triad (Blue): Projects intervals of 741, 852, 963. (Mathematical Sum: 7+4+1=12→3... completion to 9)
How to Use
Set Anchor: Input the time of a significant High or Low in the settings.
Select Resolution: This tool is optimized for 1-minute (Micro-Harmonics) and 15-minute (Intraday Harmonics) charts.
Analyze Clusters: The vertical lines represent calculated harmonic intervals. Traders look for "Clusters" where a Root-3 and Root-9 cycle land on adjacent bars, indicating a high-probability pivot.
System Architecture & Version Comparison This script represents the foundational layer of the PyraTime ecosystem.
This Script (PyraTime Harmonic 369):
Scalar: Standard 1x Multiplier only.
Focus: Intraday & Micro-structure (1m, 15m).
Engine: Core Digital Root Integers.
PyraTime Harmonic Matrix (Advanced Edition):
Scalar Engine: Unlocks Quad-Fractal (4x), Tri-Fractal (3x), and Bi-Fractal (2x) multipliers for institutional cycle analysis.
Apex Logic: Auto-detection of the "963" Completion Sequence (Gold Highlight).
Event Horizon: Includes a live Predictive Dashboard that calculates the time-delta to the next harmonic event across all scalar groups.
Disclaimer This tool is for the educational analysis of Number Theory in financial markets. It projects time intervals and does not predict price direction. Past performance does not guarantee future results.
Shock Wave 9/21 EMA Ribbon9 ema and 21 ema script, with background plot. All colors, and settings toggle on and off. Simple but effective.
Thirdeyechart Gold DoomsdayThirdeyechart Gold Doomsday – Full Description
Thirdeyechart Gold Simulation Final 3 is a professional-grade TradingView indicator designed to monitor the global gold market across multiple XAU pairs simultaneously. This version is engineered to provide a complete, multi-timeframe view of gold’s momentum while incorporating buy/sell simulation, trend strength, and safe/unsafe trade detection, all in a clean, visually organized table.
Key Functions and Features
Custom Pairs Input
Traders can specify any number of XAU-related pairs using a comma-separated input.
The script dynamically handles all pairs without requiring manual adjustments.
Percent Change Function (f_change)
Calculates the percentage change for a given symbol and timeframe:
pct_change = ((close_tf - open_tf) / open_tf) * 100
Supports weekly (W), daily (D), 4-hour (H4), and 1-hour (H1) timeframes.
Positive changes are colored blue, negative changes red for instant visual assessment.
Table Setup
Dynamically generates a table based on the number of XAU pairs.
Displays Symbol, Week %, Day %, H4 %, H1 %, BuySim, SellSim in a clean, boxed format.
Color-coded cells for easy recognition of positive vs negative momentum.
Buy & Sell Simulation
Separates each timeframe into positive (buy) and negative (sell) contributions:
Positive value → added to BuySim
Negative value → added to SellSim
Summed across all timeframes per symbol, allowing a macro-level simulation of market pressure.
Total BuySim / SellSim provides a clear view of dominance without signaling actual trades.
Total Row Calculation
Sums Week, Day, H4, H1 across all symbols to show aggregate market movement.
BuySim and SellSim totals highlight overall market pressure.
Provides context for trend alignment across multiple pairs.
Strength Row (f_strength)
Interprets total movement per timeframe:
>0 → Strong
<0 → Weak
0 → Neutral
Combined with BuySim/SellSim to display a trend bias: “Buy Bias” or “Sell Bias.”
Safe / Unsafe Trade Detection
Compares total BuySim and SellSim:
distance = abs(totalBuy - totalSell)
threshold = totalAll * 0.50
Trade considered safe if distance ≥ threshold → green label.
Trade considered unsafe if distance < threshold → red label.
Provides a reasoning context (e.g., “clear dominance by buyers” or “sellers can dominate the market”), allowing quick risk assessment.
This function ensures traders know whether market momentum is decisive or uncertain.
Visual Design
Uses background colors for header, cells, total, and strength rows to improve readability.
All data is organized in a compact, easy-to-read table, with dynamic scaling depending on the number of pairs.
Why This Indicator is Advanced
Multi-Timeframe Analysis: Simultaneously monitors W, D, H4, H1 for each XAU pair.
Global Perspective: Shows aggregated momentum across 8 gold pairs to track overall market direction.
Risk Awareness: Safe/Unsafe trade detection helps identify strong trends versus indecisive conditions.
Institutional Approach: Combines global data and technical calculation similar to professional trading terminals.
Disclaimer
This indicator is educational and analytical only. It does not provide financial advice or direct trade signals. Users are responsible for their own trading decisions, and all markets carry risk.
© 2025 Thirdeyechart. All rights reserved. Redistribution or commercial use without permission is prohibited.
BHUVANA Fib 50–61.8 • Turn Alerts when FIB directions change
Detects step-up / step-down on both Fib 50 & 61.8 (your “stairs” logic).
Triggers BUY/SELL on that slope change (optionally also requires price to be above/below the line).Spot volatility compression around the 50%–61.8% Fibonacci mid-band of the current swing, then trade the first expansion with clean, rules-based entries and auto SL references.
Swing mapping: Finds the active high/low over a user-defined lookback and computes Fib 50% and Fib 61.8%.
Squeeze detection: Measures the distance between 50% and 61.8%. If the band width is ≤ (ATR × multiplier), the zone is flagged as a Squeeze.
Breakout entries (on close):
Long when price crosses up through 50% while squeezed.
Short when price crosses down through 61.8% while squeezed.
Risk framework: Auto-plots stop lines from the signal bar:
Long SL = swing low; Short SL = swing high.
Visuals: Fib lines (50/61.8) + optional yellow zone highlight during squeeze.
Signals evaluate on bar close (no forward-looking data).
Works well on XAUUSD / US30 intraday (5–15m) during London/NY sessions.
Add your own alertcondition() lines if you want push alerts on Long/Short entries.
SymFlex Band - MAD, RSI, ATRThe SymFlex Band is an adaptive volatility and momentum framework that merges
three independent band models into a unified analytical tool.
• The MAD Band measures deviation from the moving average using Median Absolute Deviation,
providing a stable view of range-based volatility.
• The RSI Momentum Band adjusts its upper and lower boundaries asymmetrically,
expanding in the direction of momentum and contracting against it.
• The ATR Band captures classical volatility expansion for breakout and trend-continuation conditions.
Rather than placing the three indicators separately on a chart, the script synchronizes
their center-line logic, compares their band distances, identifies the nearest active band,
and displays real-time correlation between their dynamic ranges.
This structure helps traders understand whether price behavior is dominated by
range compression, momentum imbalance, or volatility expansion.
The table summarizes:
• active band ranges
• breakout status
• distance from each band
• cross-band correlation
This indicator is designed purely for analysis. It does not generate trade entries.
50-Week EMA & 100-Week MA (any TF)50-Week EMA & 100-Week MA
EMA 50W retains your stepline style.
MA 100W uses a normal smooth line (you can change style to stepline if you want).
Works on any timeframe — weekly calculation
Thirdeyechart Index Weekly DoomsdayIndex Weekly – Version 3 (Dynamic Strength Ranking)
The Index Weekly Dynamic Ranking Version is a professional TradingView indicator designed to give traders a real-time, high-level view of global index momentum. Unlike static tables, this version dynamically ranks indices by weekly strength, placing the strongest index at the top and the weakest at the bottom. Each symbol is displayed with color-coded values—blue for positive weekly momentum, red for negative—making it immediately clear which markets are performing strongly and which are under pressure.
This indicator calculates weekly percentage changes for all selected indices using:
pct_week = ((close_week – open_week) / open_week) * 100
The results are compiled into a ranked table, so symbols automatically reorder themselves based on current strength. This dynamic ranking allows traders to quickly spot the most dominant indices and adjust their strategy accordingly. The table is fully visual and easy to read, with distinct coloring for up and down momentum, providing both clarity and speed for decision-making.
The version is ideal for traders who want to combine global macro perspective with technical setups, as it shows not only the direction of individual indices but also which markets are leading or lagging. By following the strongest index first, traders can align their positions with global momentum rather than relying on a single static chart.
This approach makes weekly index tracking more technical, more advanced, and closer to an institutional-style dashboard, similar to what professional terminals like Bloomberg offer, while remaining lightweight and easy to use on TradingView.
Disclaimer
This tool is for educational and analytical purposes only. It does not provide buy/sell signals or financial advice. Trading involves risk, and all decisions remain the responsibility of the user.
© 2025 Ajik Boy. All rights reserved. Redistribution or commercial use without permission is prohibited.
Railway Track Fixed Zone (Daily)Railway Track Fixed Zone (Daily)-- This indicator creates a railway track line per day, Below sell above buy
CSP Institutional Filter PRO This indicator evaluates whether a ticker qualifies for a high-probability Cash-Secured Put (CSP) based on an institutional options-selling framework. It checks RSI, momentum, support levels, ATR-based risk, IVR, DTE, and earnings timing to determine if the setup meets either the Standard CSP Module (30–45 DTE) or the Pre-Earnings CSP Module (7–21 days before earnings). The script visually marks valid setups, highlights risk zones, and provides an on-chart diagnostic summary.
Minervini VCP Pattern -Indian ContextThis script implements Mark Minervini's Trend Template and VCP (Volatility Contraction Pattern) pattern, specifically adapted for Indian stock markets (NSE). It helps identify stocks that are in strong uptrends and ready to break out.
Core Concepts Explained
1. What is the Minervini Trend Template?
Mark Minervini's method identifies stocks in Stage 2 uptrends - the sweet spot where institutional money is accumulating and stocks show the strongest momentum. Think of it as finding stocks that are "leaders" rather than "laggards."
2. What is VCP (Volatility Contraction Pattern)?
A VCP occurs when:
Stock price consolidates (moves sideways) after an uptrend
Price swings get tighter and tighter (like a coiled spring)
Volume dries up (fewer people trading)
Then it breaks out with force.
You can customize the strategy settings without editing code.
Key Settings:
Minimum Price (₹50): Filters out penny stocks that are too volatile
Min Distance from 52W Low (30%): Stock should be at least 30% above its yearly low
Max Distance from 52W High (25%): Stock should be within 25% of its yearly high (showing strength)
Moving Average Periods: 10, 50, 150, 200 days (industry standard)
Minimum Volume (100,000 shares): Ensures the stock is liquid enough to trade
Indian Market Adaptation: The default values (₹50 minimum, volume thresholds) are adjusted for NSE stocks, which behave differently than US markets.
The script pulls weekly chart data even when you're viewing daily charts.
Why it matters: Weekly trends are more reliable than daily noise. Professional traders use weekly charts to confirm the bigger picture.
What are Moving Averages (MAs)?
Simple averages of closing prices over X days
They smooth out price action to show trends
Think of them as the "average cost" of buyers over different time periods
The 4 Key MAs:
10 MA (Fast): Very short-term trend
50 MA: Short to medium-term trend
150 MA: Medium to long-term trend
200 MA: Long-term trend (the "grandfather" of all MAs)
Why Weekly MAs?
The script also calculates 10 and 50 MAs on weekly data for additional confirmation of the bigger trend.
The script Finds the highest and lowest prices over the past 52 weeks (1 year).
Why it matters:
Stocks near 52-week highs are showing strength (institutions buying)
Stocks far from 52-week lows have "room to run" upward
This is a psychological level that influences trader behaviour.
What is Volume here ?
The number of shares traded each day
High volume = many traders interested (conviction)
Low volume = lack of interest (weakness or consolidation)
Volume in VCP:
During consolidation (sideways movement), volume should dry up - this shows sellers are exhausted and buyers are holding. When volume spikes on a breakout, it confirms the move.
NSE Context: Indian stocks often have different volume patterns than US stocks, so the 50-day average is used as a baseline.
Relative Strength vs Nifty:
Example:
If your stock is up 20% and Nifty is up 10%, your stock has strong RS
If your stock is up 5% and Nifty is up 15%, your stock has weak RS (avoid it!)
Why it matters: The best performing stocks almost always have strong relative strength before major moves.
The 13 Minervini Conditions:-
Condition 1: Price > 50/150/200 MA
Meaning: Current price must be above ALL three major moving averages.
Why: This confirms the stock is in a clear uptrend. If price is below these MAs, the stock is weak or in a downtrend.
Condition 2: MA 50 > 150 > 200
Meaning: The moving averages themselves must be in proper order.
Analogy: Think of this like layers in a cake - short-term on top, long-term at bottom. If they're tangled, the trend is unclear.
Condition 3: 200 MA Rising (1 Month)
Meaning: The 200 MA today must be higher than it was 20 days ago.
Why: This confirms the long-term trend is UP, not flat or down. The means "20 bars ago."
Condition 4: 50 MA Rising
Meaning: The 50 MA today must be higher than 5 days ago.
Why: Confirms short-term momentum is accelerating upward.
Condition 5: Within 25% of 52-Week High
Meaning: Current price should be within 25% of its 1-year high.
Example:
52-week high = ₹1000
Current price must be above ₹750 (within 25%)
Why: Strong stocks stay near their highs. Weak stocks fall far from highs.
Condition 6: 30%+ Above 52-Week Low (OPTIONAL)
Meaning: Stock should be at least 30% above its yearly low.
Note: The script marks this as "SECONDARY - Optional" because the other conditions are more important. However, it's still a good confirmation.
Condition 7: Price > 10 MA
Meaning: Very short-term strength - price above the 10-day moving average.
Why: Ensures the stock hasn't just rolled over in the immediate term.
Condition 8: Price >= ₹50
Meaning: Filters out stocks below ₹50.
Why: In Indian markets, stocks below ₹50 tend to be penny stocks with poor liquidity and higher manipulation risk.
Condition 9: Weekly Uptrend
Meaning: On the weekly chart, price must be above both weekly MAs, and they must be properly aligned.
Why: Confirms the bigger picture trend, not just daily fluctuations.
Condition 10: 150 MA Rising
Meaning: The 150 MA is trending upward over the past 10 days.
Why: Another confirmation of medium-term trend health.
Condition 11: Sufficient Volume
Meaning: Average volume must exceed 100,000 shares (or your custom setting).
Why: Ensures you can actually buy/sell the stock without moving the price too much (liquidity).
Condition 12: RS vs Nifty Strong
Meaning: The stock's relative strength vs Nifty must be improving.
Why: You want stocks that are outperforming the market, not underperforming.
Condition 13: Nifty in Uptrend
Meaning: The Nifty 50 index itself must be above its 50 MA.
Why: "A rising tide lifts all boats." It's easier to make money in individual stocks when the overall market is bullish.
VCP Requirements:
Volatility Contracting: Price swings getting tighter (coiling spring)
Volume Drying Up: Fewer shares trading + trending lower
The Setup: When volatility contracts and volume dries up WHILE all 13 trend conditions are met, you have a VCP setup ready to explode.
What You See on Chart:
Colored Lines: 10 MA (green), 50 MA (blue), 150 MA (orange), 200 MA (red)
Blue Background: Trend template conditions met (watch zone)
Green Background: Full VCP setup detected (buy zone)
↟ Symbol Below Price: New VCP buy signal just triggered
Information Table:
What it does: Creates a checklist table on your chart showing the status of all conditions.
Table Structure:
Column 1: Condition name
Column 2: Status (✓ green = met, ✗ red = not met)
Final Row: Shows "BUY" (green) or "WAIT" (red) based on full VCP setup status.
Dos:
Example:
Account size: ₹5,00,000
Risk per trade: 1% = ₹5,000
Entry: ₹1000
Stop loss: ₹920 (8% below)
Distance to stop: ₹80
Shares to buy: ₹5,000 / ₹80 = 62 shares
Exit Strategy:
Sell 1/3 at +20% profit
Sell another 1/3 at +40% profit
Let the final 1/3 run with a trailing stop
Always exit if price closes below 10 MA on heavy volume
What This Script Does NOT Do:
Guarantee profits - No strategy works 100% of the time
Account for news events - Earnings, regulatory changes, etc.
Consider fundamentals - Company financials, debt, management quality
Adapt to market crashes - Works best in bull markets
Best Market Conditions:
✅ Nifty in uptrend (above 50 MA)
✅ Market breadth positive (more stocks advancing)
✅ Sector rotation happening
❌ Avoid in bear markets or high volatility periods
References:
Trade Like a Stock Market Wizard by Mark Minervini
Think & Trade Like a Champion by Mark Minervini
Chart attached: AU Small Finance Bank as on EoD dated 28/11/25
This script is a powerful tool for educational purpose only, remember: It's a tool, not a crystal ball. Use it to find high-probability setups, then apply proper risk management and patience. Good luck!
Follow BreakoutThe indicator tracks trend breakouts. It generates multiple signals during sideways trends.
RSI مبسط//@version=5
indicator("RSI مبسط", overlay=false)
// حساب RSI
rsiValue = ta.rsi(close, 14)
// رسم خط RSI
plot(rsiValue)
// رسم المستويات
plot(95, "Level 95")
plot(78.6, "Level 78.6")
plot(61.8, "Level 61.8")
plot(38.2, "Level 38.2")
plot(21.4, "Level 21.4")
plot(5, "Level 5")
MA Crossover Scalper [4H]//@version=5
indicator("MA Crossover Scalper ", overlay=false)
// Market Cap Filter (Volume as proxy)
volumeValid = volume >= 500000 and volume <= 4000000
// MA Crossover System
ma9 = ta.sma(close, 9)
ma21 = ta.sma(close, 21)
bullishCross = ta.crossover(ma9, ma21) and close > ma21
bearishCross = ta.crossunder(ma9, ma21) and close < ma21
// Volume Confirmation
volumeSpike = volume > ta.sma(volume, 20) * 1.3
// Final Signals
bullSignal = bullishCross and volumeSpike and volumeValid
bearSignal = bearishCross and volumeSpike and volumeValid
// Output for Screener
plot(bullSignal ? 1 : 0, "Bull MA Cross", color=color.green)
plot(bearSignal ? 1 : 0, "Bear MA Cross", color=color.red)
2-Close + Bar 5 Reversal (Scan Ready)Bulkowski's Bullish 2-Step Reversal
Bar 1 Any price bar.
Bar 2 Price makes a low below bar 1 with a lower close, too.
Bar 3 Price has a low below bar 2 but a close above bar 1 (which will also be above bar 2's close). Bars 1 to 3 form a 2-close reversal pattern.
Bar 4 Makes a close below bar 3's close.
Bar 5 Has a low below bar 4 but closes above bars 3 and 4.
Breakout Breaks out upward 79% of the time in stocks.
From his page: thepatternsite.com
1D & 1W Institutional Trend The 1D & 1W Institutional Trend is a multi-timeframe (MTF) trend-following system designed to align traders with major "macro" market moves. Instead of relying on noisy intraday data, this indicator pulls data from the Daily (1D) and Weekly (1W) timeframes to construct a robust trend baseline, regardless of the chart timeframe you are currently viewing.
The core logic is based on the interaction between a Fast Institutional EMA (Daily) and a Slow Institutional EMA (Weekly). When the Daily trend crosses above the Weekly trend, it signals a significant shift in market structure. To ensure signal quality, the script incorporates a "Smart Filter" engine that checks for Momentum (RSI) and Volatility (ATR) before generating entry signals, preventing trades during exhausted or dead markets.
Key Features
Multi-Timeframe Engine: Projects Daily and Weekly moving averages onto lower timeframe charts (e.g., 1H or 4H) to show the "Big Picture."
Non-Repainting Logic: Utilizes closed-bar data to ensure that historical signals match live trading conditions strictly.
Algorithmic Filtering:
Momentum Filter: Rejects Buy signals if RSI is overbought and Sell signals if RSI is oversold.
Volatility Filter: Rejects signals during low-volatility "compression" zones using ATR.
Institutional Dashboard: A data panel tracking the macro trend status, trend strength (Spread %), and filter conditions.
How to Use
1. The Trend Cloud The visual core of the indicator is the "Cloud" formed between the two Moving Averages.
Green Cloud: The Daily Average is above the Weekly Average. The macro trend is Bullish. Look for long positions.
Red Cloud: The Daily Average is below the Weekly Average. The macro trend is Bearish. Look for short positions.
The Midline: The gray line represents the "Fair Value" price between the two timeframes. It often acts as dynamic support or resistance during a trend.
2. Signal Triangles Discrete shapes appear only when a crossover is confirmed AND all filters are met.
Up Triangle: Confirmed Bullish Crossover (Daily crosses over Weekly) + RSI is not overbought + Volatility is active.
Down Triangle: Confirmed Bearish Crossover (Daily crosses under Weekly) + RSI is not oversold + Volatility is active.
3. The Dashboard Located in the bottom right, this table provides a health check of the current trend:
Macro Trend: Displays BULLISH or BEARISH based on the cloud direction.
Trend Spread %: Measures the distance between the two EMAs. A widening percentage indicates a strengthening trend, while a narrowing percentage suggests momentum loss.
RSI Condition: Displays "SAFE" (good to trade) or "EXTENDED" (too risky).
Volatility: Displays "EXPANSION" (good movement) or "COMPRESSION" (flat market).
4. Timeframe Rules Because this indicator uses Daily and Weekly data, your chart timeframe must be lower than the Fast Trend Timeframe.
Correct: Viewing a 1-Hour chart with 1D/1W settings.
Incorrect: Viewing a Weekly chart with 1D/1W settings (this will trigger an error message on the screen).
Disclaimer: This indicator is provided for educational and informational purposes only. It does not constitute financial advice, investment recommendations, or a guarantee of future results.
Fibonacci Degree System This Pine Script creates a sophisticated technical analysis tool that combines Fibonacci retracements with a degree-based cycle system. Here's a comprehensive breakdown:
Core Concept
The indicator maps price movements onto a 360-degree circular framework, treating market cycles like geometric angles. It creates a visual "mesh" where Fibonacci ratios intersect in both price (horizontal) and time (vertical) dimensions.
How It Works
1. Finding Reference Points
The script looks back over a specified period (default 100 bars) to identify:
Highest High: The peak price point
Lowest Low: The trough price point
Time Locations: Exactly which bars these extremes occurred on
These two points form the boundaries of your analysis window.
2. Creating the Fibonacci Grid
Horizontal Lines (Price Levels):
The script divides the price range between high and low into seven key Fibonacci ratios:
0% (Low) - Bottom boundary in red
23.6% - Minor retracement in orange
38.2% - Shallow retracement in yellow
50% - Midpoint in lime green
61.8% - Golden ratio in aqua (most significant)
78.6% - Deep retracement in blue
100% (High) - Top boundary in purple
Each line represents a potential support/resistance level where price might react.
Vertical Lines (Time Cycles):
The same Fibonacci ratios are applied to the time dimension between the high and low bars. If your high and low are 50 bars apart, vertical lines appear at:
Bar 0 (0%)
Bar 12 (23.6%)
Bar 19 (38.2%)
Bar 25 (50%)
Bar 31 (61.8%)
Bar 39 (78.6%)
Bar 50 (100%)
These suggest when price might make significant moves.
3. The Degree Mapping System
The innovative feature maps the time progression to degrees:
0° = Start point (0% time)
85° = 23.6% through the cycle
138° = 38.2% through the cycle
180° = Midpoint (50%)
222° = 61.8% through the cycle (golden angle)
283° = 78.6% through the cycle
360° = Complete cycle (100%)
This treats market movements as circular patterns, similar to how planets orbit or pendulums swing.
Visual Output
When you apply this indicator, you'll see:
A rectangular mesh extending beyond your high-low range (by 150% default)
Color-coded horizontal lines showing price Fibonacci levels
Matching vertical lines showing time Fibonacci intervals
Price labels on the right showing percentage levels
Degree labels at the bottom showing the angular position in the cycle
Intersection points creating a grid of potentially significant price-time coordinates
Trading Application
Traders use this to identify:
Support/Resistance Zones: Where horizontal and vertical lines intersect
Time Targets: When price might reverse (at vertical Fibonacci times)
Cycle Completion: When approaching 360°, a new cycle may begin
Harmonic Patterns: Geometric relationships between price and time
Customization Features
The script offers extensive control:
Lookback period: Adjust cycle length (10-500 bars)
Mesh extension: How far to project the grid forward
Visual toggles: Show/hide horizontal lines, vertical lines, labels
Styling: Line thickness, style (solid/dashed/dotted), colors
Label positioning: Fine-tune text placement for readability
The intersection at 61.8% time and 61.8% price at 222° becomes a key target zone.
This tool essentially converts the abstract concept of market cycles into a concrete, visual geometric framework that traders can analyze and act upon.
DISCLAIMER: This information is provided for educational purposes only and should not be considered financial, investment, or trading advice.
No guarantee of profits: Past performance and theoretical models do not guarantee future results. Trading and investing involve substantial risk of loss.
Not a recommendation: This script illustration does not constitute a recommendation to buy, sell, or hold any financial instrument.
Do your own research: Always conduct thorough independent research and consider consulting with a qualified financial advisor before making any trading decisions.






















