Adaptive Risk Levels with ATR🛡️ Risk Levels with ATR — Pine Script Description (for TradingView)
Overview:
This script helps traders visualize dynamic risk levels based on the Average True Range (ATR). It calculates stop-loss and take-profit zones relative to current price action, adapting to market volatility in real time.
⸻
🔧 Key Features:
• ✅ Dynamic Risk Bands: Automatically plots upper and lower risk levels using the ATR.
• 📈 Volatility-Aware Zones: Adapts to changing market conditions — wider in high volatility, tighter in calm markets.
• 🎯 Customizable Multiplier: Control how aggressive or conservative the risk zones are.
• 🕵️♂️ Ideal for Swing & Day Trading: Helps define entries, exits, and stop placements.
⸻
📐 How It Works:
• The script calculates the ATR (Average True Range) over a user-defined period.
• Then it draws:
• Upper Risk Level = Close + (ATR × Multiplier)
• Lower Risk Level = Close - (ATR × Multiplier)
• These bands represent risk boundaries — useful for:
• Stop-loss and take-profit calibration
• Volatility-based position sizing
• Breakout or mean-reversion signals
⸻
⚙️ Settings:
• ATR Period – Length for ATR calculation (default: 14)
• ATR Multiplier – Adjust how far the risk bands are (e.g., 1.5x, 2x)
⸻
Example Use Cases:
• 📉 Stop Loss: Set your stop just below the lower band in long trades.
• 📊 Take Profit: Use upper band for risk-reward calculations.
• 🚨 Breakout Entry: Confirm breakouts when price exceeds upper/lower band.
อินดิเคเตอร์และกลยุทธ์
Earnings [theUltimator5]This indicator highlights daily price changes on earnings announcement days using dynamic colors, labels, and optional earnings markers.
🔍 Key Features:
Earnings Detection:
Highlights only the days when an earnings event occurs.
Price Change Calculation:
Computes the percentage change from open to close on earnings day.
Color-coded Labels:
Displays the % change as a floating label above the chart on earnings days.
Color intensity reflects the size and direction of the move:
Bright green for large gains (≥ +10%)
Bright red for large losses (≤ -10%)
White for negligible change
Gradient fades between those extremes
Optional "Earnings" Marker:
A small label marked “Earnings” appears beneath the % change label, controlled by a user toggle.
Background Highlight:
The chart background is shaded on earnings days with a semi-transparent color based on the % change.
⚙️ User Input:
✅ Show 'E' Marker: Toggles the visibility of the "Earnings" label below the main price change label.
✅ Ideal Use Case:
Use this indicator to visually analyze how a stock reacts on earnings days, helping traders spot consistent behavior patterns (e.g., post-earnings rallies or selloffs).
IMIT 936+Turn Input Values off at the bottom of the first settings for cleaner look.
This indicator automatically plots the high and low price ranges of key trading sessions, including New York, Asia, and Australia. Use these levels to identify potential support, resistance, and breakout opportunities throughout the trading day.
Multi-Indicator Buy/Sell Signals (EMA, RSI, MACD)// This source code is subject to the terms of the Mozilla Public License 2.0
// mozilla.org
// © buy and sell signals gio1
//@version=5
indicator("Multi-Indicator Buy/Sell Signals (EMA, RSI, MACD)", overlay=true)
// --- Inputs for Moving Averages ---
fastMALen = input.int(10, title="Fast EMA Length", minval=1)
slowMALen = input.int(20, title="Slow EMA Length", minval=1)
// --- Inputs for RSI ---
rsiLength = input.int(14, title="RSI Length", minval=1)
rsiOB = input.int(70, title="RSI Overbought Level", minval=50, maxval=90)
rsiOS = input.int(30, title="RSI Oversold Level", minval=10, maxval=50)
// --- Inputs for MACD ---
macdFastLen = input.int(12, title="MACD Fast Length", minval=1)
macdSlowLen = input.int(26, title="MACD Slow Length", minval=1)
macdSigLen = input.int(9, title="MACD Signal Length", minval=1)
// --- Calculate Indicators ---
// EMA
fastMA = ta.ema(close, fastMALen)
slowMA = ta.ema(close, slowMALen)
// RSI
rsi = ta.rsi(close, rsiLength)
// MACD
= ta.macd(close, macdFastLen, macdSlowLen, macdSigLen)
// --- Define Buy and Sell Conditions ---
// EMA Crossover Condition
emaBuy = ta.crossover(fastMA, slowMA)
emaSell = ta.crossunder(fastMA, slowMA)
// RSI Condition
rsiBuy = rsi < rsiOS and rsi > rsiOS // Crossing up from oversold
rsiSell = rsi > rsiOB and rsi < rsiOB // Crossing down from overbought
// MACD Condition
macdBuy = ta.crossover(macdLine, signalLine)
macdSell = ta.crossunder(macdLine, signalLine)
// --- Combine Conditions for Final Signals ---
buySignal = emaBuy and rsiBuy and macdBuy
sellSignal = emaSell and rsiSell and macdSell
// --- Plot Signals on Chart ---
plotshape(buySignal, title="Buy Signal", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(sellSignal, title="Sell Signal", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
// --- Add Alert Conditions ---
alertcondition(buySignal, title="Buy Alert", message="🔔 BUY signal triggered!")
alertcondition(sellSignal, title="Sell Alert", message="🔔 SELL signal triggered!")
Liquidity Hunter ProLiquidity Hunter Pro
The Liquidity Hunter Pro is an indicator designed to identify a specific, high-probability trading setup based on the concept of institutional liquidity hunts. The core philosophy is that major market moves are often initiated after large players engineer liquidity by sweeping obvious swing highs or lows, tricking retail traders before revealing their true direction.
This tool automates the detection of this entire sequence, acting as your assistant to filter out market noise and highlight moments of clear institutional intent. It's designed for precision on lower timeframes (like M1) but is fully customizable for any trading style.
Key Features
Multi-Timeframe (MTF) Bias: A simple, on-chart panel shows you the dominant trend from a higher timeframe (default: 15min). This acts as your master filter, ensuring you always trade with the larger market flow.
Intelligent Sweep Detection: Instead of flagging every minor break, the LHP identifies significant liquidity sweeps below/above confirmed swing points, marking them with a minimalist 🧹 icon.
Momentum-Filtered CHoCH: A simple break of structure isn't enough. A Change of Character (CHoCH) is only confirmed if the breakout candle has strong momentum, filtering out weak and indecisive reversals.
Clear Visual Cues: The indicator plots clean, minimalist lines for both the swept level (dashed) and the CHoCH confirmation (solid), giving you a clear visual map of the setup.
High-Probability FVG Detection: Automatically highlights Fair Value Gaps (FVGs) that are created during the powerful CHoCH move, pinpointing an A+ entry zone.
Customizable Alerts: Never miss a setup. Set alerts for two key events: an early warning on a Liquidity Sweep and the main Setup Ready alert once a sweep is confirmed by a CHoCH.
How to Use: The Optimal Entry Method (A Quick Guide)
The "Liquidity Hunter Pro" is designed to be used with a disciplined, step-by-step approach.
Step 1: Follow the Bias
Look at the HTF Bias Panel in the top-right corner.
If BULLISH, you are ONLY looking for long (buy) setups.
If BEARISH, you are ONLY looking for short (sell) setups.
Step 2: Wait for the Sweep (The Trigger)
Patiently wait for the indicator to plot the 🧹 icon and a dashed horizontal line. This signals that liquidity has been taken and a potential setup is forming.
Step 3: Get Confirmation (The Validation)
You must wait for the indicator to print the solid horizontal CHoCH line and label. This validates that the reversal after the sweep has strength. If no CHoCH appears, the setup is invalid.
Step 4: Identify Your Point of Interest (The Entry Zone)
Once the CHoCH is confirmed, it's time to find your entry.
A+ Entry: The indicator will automatically draw a colored FVG Box if a valid one is created. This is your highest-probability entry zone.
B+ Entry: If no FVG appears, your next best entry zone is the "Inducement Order Block" (the last opposite-colored candle right before the sweep occurred).
*** DISCLAIMER ***
This indicator is a tool for analysis and education; it is not financial advice or a signal service. Trading financial markets involves substantial risk and is not suitable for every investor. Past performance is not indicative of future results. Always use proper risk management and never risk more than you are prepared to lose. The author is not responsible for any profits or losses that may result from using this tool.
Sniper Radar Indicator (SRI)🔍 Sniper Radar Indicator (SRI) — Official Description
The Sniper Radar Indicator (SRI) is a clean, real-time flow detection tool designed to spot high-confluence shifts in market behavior — before price makes its move.
This tool does not use or copy any other indicator, and is built from scratch to monitor three key behaviors:
1. High Inflow (White Dots) – Detects real-time bursts of volume and momentum entering the market. When you see white, buyers are stepping in aggressively.
2. Bearish Drain (Purple Dots) – Tracks subtle exits in money flow where price hasn’t dropped yet, but buyers are drying up. These are early warnings for potential weakness.
3. Heavy Sell Impulse (Red Dots) – Flags aggressive sell pressure. Volume is high, candles are large, and money is rushing out fast.
To keep your chart clean:
• All signals are shown as low-opacity colored dots
• Background shading lightly marks temporary “flow zones” so you know where action just built up or drained out
• The script uses adaptive filters to ignore noise and focus only on meaningful shifts in buyer or seller interest
⸻
🧠 Who It’s For:
Whether you’re a scalper, swing trader, or just watching price unfold, SRI helps you catch early signs of big moves without crowding your chart.
• No fancy names
• No waves
• Just dots, zones, and real-time momentum
⸻
✅ Key Features:
• 100% original — built from scratch by Snipers-R-Us
• Real-time volume + money flow + impulse detection
• Lightweight visual style with minimal noise
• Works on any coin or asset, any timeframe
PM + BOS + FVG Indicator & AlertsHey team it's Tanner, I have created Nitros strategy into a custom indicator, it's only the PM BOS FVG model, I will add a HOD/LOD BOS FVG custom indicator eventually, this indicator is setup to give you alerts as well. or if you just want a clean FVG indicator and or PM level indicator this works too. mess with the settings to your liking and DM me on circle or discord if you have feedback or questions, thanks team.
Vertical Lines at Specific NY Timesthese time zones indicates london session and new york session accumulation manipulation and distribution at than spesific time zones
Intraday Spark Chart [AstrideUnicorn]The Intraday Spark Chart (ISC) is a minimalist yet powerful tool designed to track an asset’s performance relative to its daily opening price. Inspired by Nasdaq’s real-time analytics analog dashboards. It visualizes intraday percentage changes as a color-coded sparkline, helping traders quickly gauge momentum and session bias.
Ideal for: Day traders, scalpers, and multi-asset monitors.
Best paired with: 1m to 4H timeframes (auto-warns on higher TFs).
Key metrics:
Real-time % change from daily open.
Final daily % change (updated at session close).
Daily open price labels for orientation.
HOW TO USE
Visual Guide
Sparkline Plot:
A green area/line indicates price is above the daily open (bullish).
A red area/line signals price is below the daily open (bearish).
The baseline (0%) represents the daily open price.
Session Markers:
The dotted vertical lines separate trading days.
Gray labels near the baseline show the exact daily open price at the start of each session.
Dynamic Labels:
The labels in the upper left corner of each session range display the current (or final) daily % change. Color matches the trend (green/red) for instant readability.
Practical Use Cases
Opening Range Breakouts: Spot early momentum by observing how price reacts to the daily open.
Multi-Asset Screening: Compare intraday strength across symbols by applying the indicator to multiple charts.
Session Close Prep: Anticipate daily settlement by tracking the final % change (useful for futures/swing traders).
SETTINGS
Asset (Input Symbol): Defaults to the current chart symbol. Switch to monitor other assets.
NEOs TDI + Sharkfin Scanneri have to type a long description so here i go typing something about nothing. tada
NEOs TDI + Sharkfin ScannerTDI + alert scanner for sharkfins use with Fibs and or support resistance for confluence
10/20 MA Coil: Progressive Colors & Multi-Day BreakoutThis indicator detects price “coil” setups and highlights potential breakout or breakdown opportunities using moving average alignment and volatility compression.
Features:
• Coil Detection:
• Identifies consolidation when:
• The 10 and 20 MAs are tightly aligned (within user-defined tolerance)
• Price is above both MAs and within 1.5x ADR of them
• The 50 MA is rising
• Progressive Coil Coloring:
• Coil candles are colored in progressively darker orange as the streak continues
• Bullish Breakout Signal:
• Triggers when a green candle follows a coiled bar
• The candle’s body must be greater than or equal to 1 ATR
• Colored lime green
• Bearish Breakdown Signal:
• Triggers when a red candle follows a coiled bar
• The candle’s body must be greater than or equal to 1 ATR to the downside
• Colored black
• Custom Candle Rendering:
• Candle body color represents coil or breakout state
• Wick and border are red or green to reflect price direction
• Optional Debug Tools:
• Coil streak, ATR, and distance from MAs can be plotted for deeper analysis
This script is designed for traders looking to spot price compression and prepare for high-probability moves following low-volatility setups.
Mercurio Retrógrado y CorrelaciónUser Guide: "Mercury Retrograde and Correlation" Indicator
This custom indicator for TradingView is designed to explore possible relationships between astrological Mercury Retrograde periods and market behavior. TradingView is a versatile platform that allows you to analyze markets and use custom tools like this one.
The indicator combines two tools in one:
Mercury Retrograde Period Display: Automatically highlights on the chart the dates when Mercury is retrograde.
Correlation Analysis: Measures and displays how synchronized the movement of the asset you are monitoring is with another asset of your choice (e.g., the S&P 500).
What do you see on the chart?
When you apply this indicator to your chart in TradingView, you will see the following elements:
Purple Background: The purple shaded areas show you exactly when the Mercury Retrograde periods occurred or will occur in 2024 and 2025. This allows you to identify at a glance if a specific candle or price movement occurred during one of these events.
Correlation Line (Orange): This line, displayed on the main panel, measures the relationship between the asset on your chart and the asset you choose in the settings.
Near +1.0: It means the two assets are moving in the same direction (if one goes up, the other goes down).
Near -1.0: It means they are moving in opposite directions (if one goes up, the other goes down).
Near 0: There is no clear relationship in their movements.
Reference Lines (Green and Red): The dotted lines at +0.7 (green) and -0.7 (red) help you quickly identify when the correlation is strong, either positive or negative.
EMA 50 + Highs and LowsEMA 50 + Highs and Lows of Session market opens and close, to watch where liquidity is
TRIX Strong Hand - DidiTrix (or TRIX) is a technical analysis oscillator developed in the 1980s by Jack Hutson, editor of Technical Analysis of Stocks and Commodities magazine. It shows the slope (i.e., the derivative) of a triple-smoothed exponential moving average. The name Trix comes from "triple exponential."
The TRIX is a triple-smoothed exponential moving average used in technical analysis to track trends.
This is a customized version for use in conjunction with other indicators in the Didi Aguiar's CST Method. It has a standard setting of 9 periods and a 4-period average to signal crossovers. It is used as one of the indicators to detect trade exits, nicknamed "Strong Hand" and described as having "three coconuts between the legs" due to its strong confidence that the trade can continue in the trend.