Liquidity Compression Coil (Full Recovery)TLDR:
This indicator maps key market structure levels with clear visual cues and emojis:
Swing High/Low Detection:
Identifies swing highs (Monastery) and swing lows (School) as key market pivot points.
Trendlines & Rays:
Draws trendlines connecting these pivots and horizontal rays extending into the future for visual reference.
Dynamic Swing Labels:
Each pivot is labeled with its price and a positive percentage that tells you how far the live price must move to reach that level.
If the live price is below the pivot, it shows the percentage "up" needed.
If above, it shows the percentage "down" needed.
Range Calculations:
🧱 Structure Origin: The original range between the swing high and low.
🎯 Projection Bracket: The current active price range.
🌪️ Volatility Span: The total range including extreme price movements.
Dynamic Tracker & Alerts:
📊 Position Metric: Displays where the live price sits within the current range.
⚠️ Breakout/Breakdown Alerts: Signals when the price moves beyond the tracked range.
Overall, it’s a comprehensive tool that visually communicates where price is relative to key support/resistance levels and alerts you to potential reversals or breakouts—all in a straightforward, emoji-enhanced format.
Bande e canali
Shan Alerts v6This indicator appears to be a volatility-based trailing stop system that generates buy and sell signals. It uses ATR (Average True Range) to determine stop levels and can work with either regular price data or Heikin-Ashi candles.
Strengths
ATR-Based Stops: The use of ATR makes the stops adaptive to market volatility, which is generally better than fixed percentage stops.
Heikin-Ashi Option: The ability to use Heikin-Ashi candles can help filter out some market noise, potentially reducing false signals.
Visual Clarity: The indicator provides clear visual signals with colored bars and buy/sell labels.
Alert Functionality: The built-in alert conditions make it practical for real-world trading.
2m 20T Trend Reversal SignalsI don't understand this generation. I kissed like 5 fricking girls and one of them have a boyfriend. I swear at one point she was gonna start fricking me. Like what the frick.
STFS-EZ, SMA200, FI TriggerThe Force Index is a technical indicator that measures the strength behind a price movement by combining three elements:
1. Price direction (up or down)
2. Price range (the difference between prices)
3. Trading volume
Liquidity Compression Coil (6 Lines, 8-Bar Breakout)✅ The script you posted is fully compliant, error-free, and ready to run in Pine Script v6 with no issues. You’ve structured it clearly and modularly.
Here’s a quick breakdown of the enhancements you've implemented in this version:
✅ Fully Modular User Control
Color Controls for All Labels:
Anchor Range
Projection Range
Total Range (Volatility Span)
Position Metric
Breakout / Breakdown Alerts
Separate Line Width Control:
Independent thickness for composite bars vs. pivot rays.
Dynamic Line Style Selector:
Choose between solid, dashed, and dotted for pivots and rays.
Custom Label Sizes and Transparency for background fills.
📊 Key Features Recap
Swing High/Low Detection with adjustable lookback.
Dynamic Trendlines from pivot to current price.
Projection & Anchor Boxes rendered as vertical bars in logical back-to-front stacking.
Percentage Distance Tracking between price and swings.
Position Tracker (% within latest range).
Breakout / Breakdown Alert Zones visually triggered when price exits the latest range.
Full Label Customization including emojis, label size, and color transparency.
💡 What You Could Add Next (Optional Ideas):
Historical Box Trail Option:
Keep a configurable number of previous range boxes as visual memory (for structure replay).
Alerts:
Use alertcondition() to trigger sound/notification when:
Price exits coil range (breakout/breakdown).
Compression level tightens below threshold.
Compression Score Display:
Add a visual label or plot for (projLen / originLen) ratio to measure tightening.
Color Modes by State (e.g.):
If projLen < originLen * 0.75, color could shift to signal “tight compression”.
Cảnh báo Breakout nâng cao (Sideway + Volume + RSI)Sideway Zone High and Low Calculation Conditions: You have used ta.highest() and ta.lowest() to calculate the high and low correctly.
Volume Spike: You have used SMA to determine if the current volume is above average.
RSI Check: The condition for RSI has also been checked correctly.
Smart Buy Sell (RSI + MACD + EMA + Price Action)//@version=5
indicator("Smart Buy Sell (RSI + MACD + EMA + Price Action)", overlay=true)
// === RSI Settings ===
rsiSource = close
rsiPeriod = input.int(14, title="RSI Period")
rsi = ta.rsi(rsiSource, rsiPeriod)
// === MACD Settings ===
= ta.macd(close, 12, 26, 9)
// === EMA Settings ===
ema50 = ta.ema(close, 50)
plot(ema50, title="EMA 50", color=color.orange)
// === Price Action: Previous High/Low ===
prevHigh = ta.highest(high, 10)
prevLow = ta.lowest(low, 10)
// === Buy Signal ===
buyCond = rsi > 30 and ta.crossover(macdLine, signalLine) and close > ema50 and close > prevHigh
// === Sell Signal ===
sellCond = rsi < 70 and ta.crossunder(macdLine, signalLine) and close < ema50 and close < prevLow
// === Plot Buy/Sell Signals ===
plotshape(buyCond, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.labelup, text="BUY")
plotshape(sellCond, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.labeldown, text="SELL")
Support & Resistance LevelsSupport & Resistance Levels (MTF) is an indicator that highlights key support and resistance zones using data from higher timeframes. It helps traders spot strong price levels and align entries with the broader market trend.
OBV-SMA-BBOn-Balance Volume (OBV) is a technical indicator that measures buying and selling pressure by adding volume on rising days and subtracting it on falling days. It helps traders identify trends and confirm price movements. An increasing OBV suggests strong buying pressure, while a decreasing OBV indicates selling pressure.
Nifty Range % and Points by Time BlocksPine Script that gives you day-wise intraday range percentage for these 3 time blocks (9:16–10:45, 10:45–1:15, 1:15–3:15), we can:
Detect time blocks during the day
Track High/Low for each block
Calculate range % for each block:
\text{Range %} = \frac{(High - Low)}{\text{Previous Day Close}} \times 100
Plot / Label it on the chart at the end of each block
5-Minute Price Action Scalper5-Minute Scalping Strategy Based on Price Action:
Timeframe & Chart Setup:
Chart Timeframe: 5-minute chart for analysis.
Indicators (if any): Although price action is key, you could use simple tools like trendlines and support/resistance levels for additional context. For your strategy, we can skip most indicators to keep the setup minimal.
Price Action Setup:
Candlestick Patterns: Focus on common patterns like pin bars, engulfing candles, inside bars, and doji patterns. These patterns are significant for potential reversals or continuation signals.
Support & Resistance Levels: Mark clear levels of support and resistance on the 5-minute chart. These levels will be crucial for identifying entry points.
Break of Structure (BoS): Identify market structure shifts. For instance, if the price breaks above a recent high (uptrend), it could signal a continuation of the trend.
Trend Confirmation (Optional):
Higher Timeframe Trend Analysis (15-minute or 1-hour): To avoid trading against the trend, check the higher timeframe (15-minute) for a broader trend. This ensures you're trading with the market’s momentum.
Trendlines: Draw trendlines to capture the overall market direction. If the market is trending up, look for buy signals at support. If it's trending down, look for sell signals at resistance.
Entry Strategy:
Buy Entry: Look for a strong bullish candlestick pattern near a support level. Entry should be taken after the candlestick pattern is confirmed, with a stop loss placed just below the support zone.
Sell Entry: Similarly, look for a bearish candlestick pattern near a resistance level. A sell can be triggered once the pattern is confirmed, with a stop loss above the resistance zone.
Breakout Strategy: If the price breaks out above resistance or below support with a strong candlestick (like an engulfing candle), consider entering in the direction of the breakout.
Exit Strategy:
Target 1-2 R:R (Risk-Reward Ratio): Set a target that provides a good risk-reward ratio (typically 1:1 to 1:2).
Exit at Opposing Zone: You could exit at the next key support or resistance level, or if you see price action signaling exhaustion, such as a long upper wick on a bullish candle or a strong reversal pattern.
Risk Management:
Stop Loss: Always place a stop loss below/above key levels (support/resistance) depending on whether you're in a buy or sell trade.
Position Size: Ensure proper position sizing to risk a small percentage of your account (usually 1-2%) on each trade
FOR EDUCATIONAL PURPOSE ONLY
Swing Breakout StrategyPrice Action & Bollinger band base indicator.
1. It will mark Swing High & Swing Low.
2. Bollinger band Standard Deviation 2, 3 these are outer band, while 0.2 & 0.3 are inside band.
3. Wait for Extreme Swing High & Extreme Swing Low to form.
4. Entry Two types :
a) For Reversal can entry at Second Swing high or low taking resistance or support at previous Extreme Swing high or low.
b) Take breakout entry on the basis of Price action with proper crossover above 0.2 & 0.3 BB band.
EMA Crossover 9/21 📈 **EMA Crossover Signal Line**
Created by **Ahmet AKSOY (tugeday)**
This indicator visualizes the crossover between two EMAs using a single dynamic-colored line.
✅ **How it works:**
- The script calculates two EMAs: a short-period EMA and a long-period EMA.
- Only the **short EMA line** is displayed on the chart.
- When the short EMA **crosses above** the long EMA (bullish crossover), the line color turns **green**.
- When the short EMA **crosses below** the long EMA (bearish crossover), the line color turns **red**.
- The line color remains based on the last crossover signal.
🎛️ **Customizable Inputs:**
- Short EMA period (default: 9)
- Long EMA period (default: 21)
All EMA periods can be adjusted from the settings panel, allowing traders to fine-tune the indicator to match their strategy.
Simple, clean, and effective.
Developed by **Ahmet AKSOY (tugeday)** — enjoy and trade smart!
ICT & SMC Multi-Timeframe by [KhedrFX]Transform your trading experience with the ICT & SMC Multi-Timeframe by indicator. This innovative tool is designed for traders who want to harness the power of multi-timeframe analysis, enabling them to make informed trading decisions based on key market insights. By integrating concepts from the Inner Circle Trader (ICT) and Smart Money Concepts (SMC), this indicator provides a comprehensive view of market dynamics, helping you identify potential trading opportunities with precision.
Key Features
- Multi-Timeframe Analysis: Effortlessly switch between various timeframes (5 minutes, 15 minutes, 30 minutes, 1 hour, 4 hours, daily, and weekly) to capture the full spectrum of market movements.
- High and Low Levels: Automatically calculates and displays the highest and lowest price levels over the last 20 bars, highlighting critical support and resistance zones.
- Market Structure Visualization: Identifies the last swing high and swing low, allowing you to recognize current market trends and potential reversal points.
- Order Block Detection: Detects significant order blocks, pinpointing areas of strong buying or selling pressure that can indicate potential market reversals.
- Custom Alerts: Set alerts for when the price crosses above or below identified order block levels, enabling you to act swiftly on trading opportunities.
How to Use the Indicator
1. Add the Indicator to Your Chart
- Open TradingView.
- Click on the "Indicators" button at the top of the screen.
- Search for "ICT & SMC Multi-Timeframe by " in the search bar.
- Click on the indicator to add it to your chart.
2. Select Your Timeframe
- Use the dropdown menu to choose your preferred timeframe (5, 15, 30, 60, 240, D, W) for analysis.
3. Interpret the Signals
- High Level (Green Line): Represents the highest price level over the last 20 bars, acting as a potential resistance level.
- Low Level (Red Line): Represents the lowest price level over the last 20 bars, acting as a potential support level.
- Last Swing High (Blue Cross): Indicates the most recent significant high, useful for identifying potential reversal points.
- Last Swing Low (Orange Cross): Indicates the most recent significant low, providing insight into market structure.
- Order Block High (Purple Line): Marks the upper boundary of a detected order block, suggesting potential selling pressure.
- Order Block Low (Yellow Line): Marks the lower boundary of a detected order block, indicating potential buying pressure.
4. Set Alerts
- Utilize the alert conditions to receive notifications when the price crosses above or below the order block levels, allowing you to stay informed about potential trading opportunities.
5. Implement Risk Management
- Always use proper risk management techniques. Consider setting stop-loss orders based on the identified swing highs and lows or the order block levels to protect your capital.
Conclusion
The ICT & SMC Multi-Timeframe by indicator is an essential tool for traders looking to enhance their market analysis and decision-making process. By leveraging multi-timeframe insights, market structure visualization, and order block detection, you can navigate the complexities of the market with confidence. Start using this powerful indicator today and take your trading to the next level.
⚠️ Trade Responsibly
This tool helps you analyze the market, but it’s not a guarantee of profits. Always do your own research, manage risk, and trade with caution.
Moving Average Tolerance BandsDraws a set of Moving Averages with a dynamic band around each average. The band acts as tolerance, to recognize even near-by touches of specified moving averages.
Liquidity Compression Coil (Full Composite, Separate Thickness)✅ The script you posted is fully compliant, error-free, and ready to run in Pine Script v6 with no issues. You’ve structured it clearly and modularly.
Here’s a quick breakdown of the enhancements you've implemented in this version:
✅ Fully Modular User Control
Color Controls for All Labels:
Anchor Range
Projection Range
Total Range (Volatility Span)
Position Metric
Breakout / Breakdown Alerts
Separate Line Width Control:
Independent thickness for composite bars vs. pivot rays.
Dynamic Line Style Selector:
Choose between solid, dashed, and dotted for pivots and rays.
Custom Label Sizes and Transparency for background fills.
📊 Key Features Recap
Swing High/Low Detection with adjustable lookback.
Dynamic Trendlines from pivot to current price.
Projection & Anchor Boxes rendered as vertical bars in logical back-to-front stacking.
Percentage Distance Tracking between price and swings.
Position Tracker (% within latest range).
Breakout / Breakdown Alert Zones visually triggered when price exits the latest range.
Full Label Customization including emojis, label size, and color transparency.
💡 What You Could Add Next (Optional Ideas):
Historical Box Trail Option:
Keep a configurable number of previous range boxes as visual memory (for structure replay).
Alerts:
Use alertcondition() to trigger sound/notification when:
Price exits coil range (breakout/breakdown).
Compression level tightens below threshold.
Compression Score Display:
Add a visual label or plot for (projLen / originLen) ratio to measure tightening.
Color Modes by State (e.g.):
If projLen < originLen * 0.75, color could shift to signal “tight compression”.
12 Week Low and Cummulative 5 Week dropThis script is designed to identify and visually highlight specific candlestick bars on a TradingView chart where two custom conditions overlap:
Additionally, it filters and flags only the latest overlapping candle within the last 5 candles.
Shan AlertsKey Features:
ATR-Based Trailing Stop:
Uses Average True Range (ATR) to determine stop distance
Adjustable multiplier (1.0 by default) for sensitivity
Configurable ATR period (10 by default)
Flexible Price Source:
Can use either regular candles or Heikin-Ashi candles
Toggle with the "Use Heikin-Ashi Candles" input
Visual Elements:
Plots the trailing stop line in orange
Shows BUY/SELL labels (configurable)
Colors bars green/red based on position
Trading Signals:
Generates BUY signals when price crosses above the trailing stop
Generates SELL signals when price crosses below the trailing stop
Includes alert conditions for both signals
Debug Information:
Shows current stop value and position on the last bar
Nifty 1m EMA Pullback Scalper Signals
### **Master the Market with the Sniper Scalping Strategy for Nifty (1-Minute Timeframe)**
Unlock the power of precision trading with this expertly crafted **Sniper Scalping Strategy**, designed specifically for the Nifty index on a lightning-fast 1-minute timeframe. Perfect for traders who thrive on quick decisions and small, consistent profits, this strategy combines multiple indicators to deliver razor-sharp entries and exits—ideal for India’s dynamic market.
#### **Why This Strategy Stands Out**
- **Pinpoint Accuracy**: Harness the synergy of the **5 EMA and 10 EMA crossover** to lock onto the short-term trend, while the **Stochastic Oscillator (14,3,3)** times your entries and exits with surgical precision.
- **Fast and Effective**: Tailored for the 1-minute chart, this strategy capitalizes on Nifty’s volatility, targeting **10-point profits** with a tight **5-point stop-loss**—keeping your risk low and rewards high.
- **Trend + Momentum**: Blend trend-following (EMAs) with momentum signals (Stochastic) for a robust, multi-dimensional approach that cuts through market noise.
#### **How It Works**
- **Buy Signal**: Enter long when the 5 EMA crosses above the 10 EMA and the Stochastic rises above 20—catching the uptrend at its sweet spot.
- **Sell Signal**: Go short when the 5 EMA dips below the 10 EMA and the Stochastic falls below 80—riding the downtrend with confidence.
- **Exit Like a Pro**: Take profits at 10 points or when the Stochastic hits overbought/oversold extremes, ensuring you’re in and out before the market shifts.
#### **Perfect for Nifty Scalpers**
Built for the fast-paced world of Nifty trading, this strategy shines during high-volatility sessions like the market open or global overlaps. Whether you’re a beginner honing your skills or a seasoned trader seeking consistency, the Sniper Scalping Strategy offers a clear, actionable framework to scalp profits with discipline and precision.
#### **Get Started**
Test it in a demo account, refine it to your style, and watch your scalping game soar. Trade smart, stay focused, and let the Sniper Scalping Strategy turn Nifty’s 1-minute moves into your edge!