Buy and Sell Pressure Signals (Clean)This script identifies strong buy and sell pressure based purely on candlestick structure — no indicators, no clutter. It highlights key reversal or momentum candles using minimal visuals:
🔼 Green Triangle (Buy Pressure): A bullish candle with a large body and small upper/lower wicks, indicating strong upward momentum and buyer control.
🔽 Red Triangle (Sell Pressure): A bearish candle with a large body and small wicks, showing strong downward momentum and seller dominance.
Designed for traders who prefer clean, price-action-based signals without text labels or distracting overlays. Ideal for scalping, trend confirmation, or identifying exhaustion zones.
圖表形態
Breakout Alert (High + Volume)//@version=5
indicator("Breakout Alert (High + Volume)", overlay=true)
length = input.int(10, title="Lookback for Resistance", minval=1)
volMultiplier = input.float(1.5, title="Volume Multiplier", minval=1.0)
recentHigh = ta.highest(high, length)
recentVolume = ta.sma(volume, length)
// Breakout Conditions
isBreakout = close > recentHigh and volume > (recentVolume * volMultiplier)
plotshape(isBreakout, title="Breakout Signal", location=location.abovebar, color=color.green, style=shape.labelup, text="Breakout", size=size.small)
// Optional lines for visual aid
plot(recentHigh, title="Recent High", color=color.red, linewidth=1, style=plot.style_line)
My scriptWhat is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum
AMD Trading StrategyThis Pine Script implements a trading strategy based on the AMD Model (Accumulation, Manipulation, Distribution), segmented across three main trading sessions:
Asia Session (00:00 - 08:00 GMT)
London Session (08:00 - 16:00 GMT)
New York Session (16:00 - 23:59 GMT)
1️⃣ Session Detection
The script first defines the time ranges for each major market session using timestamp:
Asia: 00:00 to 08:00 GMT
London: 08:00 to 16:00 GMT
New York: 16:00 to 23:59 GMT
It then checks the current time against these ranges to see which session is active (is_asia, is_london, is_newyork).
2️⃣ Buy and Sell Signals
The script calculates:
Buy Signal:
During the Asia session, if the current high is greater than the previous high (high > high ).
During the London session, if the current low is less than the previous low (low < low ).
Sell Signal:
During the New York session, if the closing price is lower than the previous close (close < close ).
These signals are plotted on the chart:
Green BUY label below the candle when a Buy condition is met.
Red SELL label above the candle when a Sell condition is met.
3️⃣ Take Profit Calculation
A dynamic Take Profit Level is calculated:
The TP level is set to 0.5% above the current closing price.
This level is plotted as a blue line for visual reference.
4️⃣ Error Handling
Basic error handling is in place:
If there is missing data (na values) in the high, low, or close, it drops a red label on the chart indicating a "Data Issue".
5️⃣ Multi-Timeframe Support
The script allows you to visualize the strategy in different timeframes:
You can select a timeframe (15m, 1h, 4h, etc.) through the input options.
The price is plotted as a gray line for multi-timeframe reference.
Summary
This script:
Identifies key trading sessions (Asia, London, New York).
Generates Buy and Sell signals based on specific price movements within each session.
Plots a Take Profit line to visualize exit opportunities.
Supports multiple timeframes for broader analysis.
200-Day SMA & EMA with StdDev Bands and Cross TrackingLocks everything to the daily chart, regardless of which timeframe you’re viewing.
Plots two main moving averages:
A 200‑period Simple Moving Average (SMA).
A 200‑period Exponential Moving Average (EMA).
Draws shaded “bands” around each average at ±0.5σ, ±1σ, ±1.5σ, ±2σ, ±2.5σ, and ±3σ, with progressively fainter lines as you move farther from the mean.
Highlights a “stable zone” in the background when price has stayed within one standard deviation of the SMA for more than a user‑defined number of bars.
Detects and marks “deviation crossovers” between the SMA and EMA bands at 2σ, 2.5σ, and 3σ levels:
Draws a small circle at the crossover point.
Extends a line forward 500 bars at that price.
Automatically removes that line if price later touches it.
Marks Golden and Death Crosses (when the 50‑day EMA crosses the 200‑day EMA):
“GC” for Golden Cross, plotted in green.
“DC” for Death Cross, plotted in red, with the same forward‑extending line logic.
Intraday session start indicatorThis simple tool helps intraday traders by drawing a vertical line at the start of each new daily session. It’s useful for identifying session boundaries and analyzing price action around the open.
✅ Customizable line color
✅ Clean and lightweight – no clutter
🚫 No buy/sell signals – purely a visual guide
Great for scalpers and day traders who want to keep track of daily opens on lower timeframes.
ATR-Based Target & Stop-Loss📈 ATR-Based Stop Loss & Target Finder Indicator – Description
The ATR-Based SL & Target Finder is a dynamic risk management tool designed to calculate optimal stop loss and target levels based on market volatility. It leverages the Average True Range (ATR)—a popular volatility indicator—to adaptively scale your risk according to current market conditions.
🔧 How It Works:
Input Parameters:
ATR Length (Default: 14): Determines the period over which ATR is calculated.
Risk Multiplier (for SL): The SL is calculated as a multiple of the ATR (e.g., 1.5× ATR).
Reward Multiplier (for Target): The target is calculated as a multiple of the ATR (e.g., 2× or 3× ATR).
Entry Candle Logic:
You define the entry candle (either via strategy logic or manual marking).
The indicator uses the high/low of this entry candle to place the SL and target.
Stop Loss & Target Levels:
For Long Positions:
SL = Entry Candle Low − (Risk Multiplier × ATR)
Target = Entry Price + (Reward Multiplier × ATR)
For Short Positions:
SL = Entry Candle High + (Risk Multiplier × ATR)
Target = Entry Price − (Reward Multiplier × ATR)
Visuals on Chart:
Horizontal lines or labels indicating SL and target levels.
Option to enable/disable real-time labels and color-coded zones.
✅ Key Features:
Volatility-Adjusted: Adapts to market conditions automatically.
Customizable Multipliers: Supports various risk-reward ratios (e.g., 1:2, 1:3).
Intraday & Positional: Works across timeframes (5-min to daily).
Trend-Agnostic: Can be paired with any entry strategy (EMA cross, candle rating, RSI/VWAP, etc.).
🎯 Ideal Use Case:
Traders seeking objective, emotion-free exits based on volatility—especially in fast-moving instruments like Nifty/Bank Nifty, stocks, or crypto. The indicator fits seamlessly with both manual trading setups and algo executions that require SL/target auto-calculation.
MA Dispersion+MA Dispersion+ — read the “breathing space” between your moving-averages
Get instant feedback on trend strength, volatility expansion and mean-reversion — across any timeframe.
MA Dispersion+ turns the humble moving-average stack into a single, easy-to-read oscillator that tells you at a glance whether price is coiling or fanning out.
🧩 What it does
Plugs into your favourite MA setup
• Pick the classic 5 / 20 / 50 / 200 lengths or disable any combination with one click.
• Choose the MA engine you trust — SMA, EMA, RMA, VWMA or WMA.
• Works on any timeframe thanks to TradingView’s security() engine.
Measures “spread”
For every bar it calculates the absolute distance of each selected MA from their average.
The tighter the stack, the lower the value; the wider the fan, the higher the value.
Adds professional-grade controls
• Weighting — let short-term MAs dominate (Inverse Length), keep everything equal, or dial in your own custom weights.
• Normalisation — convert the raw distance into a percentage of price, ATR multiples, or scale by the MAs’ own mean so you can compare symbols of any price or volatility.
🔍 How traders use it
Trend confirmation – rising dispersion while price breaks out = momentum is genuine.
Volatility squeeze – dispersion parking near zero warns that a big move is loading.
Multi-TF outlook – drop one pane per timeframe (e.g. 5 m, 1 h, 1 D) and see which layer of the market is driving.
Mean-reversion plays – spikes that fade quickly often coincide with exhaustion and snap-backs.
⚙️ Quick-start
Add MA Dispersion+ to your chart.
Set the pane’s timeframe in the first input.
Tick the MA lengths you actually use.
(Optional) Pick a weighting scheme and a normaliser.
Repeat the indicator for as many timeframes as you like — each instance keeps its own settings.
✨ Why you’ll love it
Zero clutter – one orange line tells you what four separate MAs whisper.
Configurable yet bullet-proof – all lengths are hard-coded constants, so Pine never complains.
Context aware – normalisation lets you compare BTC’s $60 000 chaos with EURUSD’s four--decimals calm.
Lightweight – no labels, no drawings, no background processing — perfect for mobile and multi-pane layouts.
Give MA Dispersion+ a try and let your charts breathe — you’ll never look at moving-average ribbons the same way again.
Happy trading!
RSI + Bull Bear Power TrendThis indicator is a combination of three key indicators that I use in my trading. You can observe and evaluate how to use it by yourself, as I won’t be able to explain exactly how it works. However, I believe it will definitely be useful for users. Thank you.
RSI Divergence StrategyFeatures:
RSI Divergence Detection:
Identifies bullish divergence (price makes lower low, RSI makes higher low).
Identifies bearish divergence (price makes higher high, RSI makes lower high).
Entry Signals:
Buy signal plotted when bullish divergence is detected.
Sell signal plotted when bearish divergence is detected.
Take Profit (TP) and Stop Loss (SL):
Plotted on the chart for both long and short trades.
Uses a 1:2 Risk/Reward ratio.
Visual Representation:
Green lines for Take Profit.
Red lines for Stop Loss.
Labels for Buy and Sell signals.
Alerts:
Alerts configured for both Buy and Sell signals.
Enhancements:
Multi-Timeframe Confirmation:
Added an input to select a higher timeframe (15m by default).
RSI on the higher timeframe is checked:
Bullish Divergence: Requires the higher timeframe RSI to be below the lower level.
Bearish Divergence: Requires the higher timeframe RSI to be above the upper level.
Logic Adjustment:
The entry signals are now filtered to only trigger if the higher timeframe RSI matches the trend.
Custom Timeframe Selection:
You can adjust the confirmation timeframe directly from the indicator settings in TradingView.
Nasdaq 50-Point Zonespoint zones separating pirice increments point zones separating pirice increments point zones separating pirice increments point zones separating pirice increments
Buy/Sell Signals: SMA + RSI (No Repeat)Price crossed above 20 SMA and RSI greater than 50 and vice versa for buy sell signals
WAD LineThis is Williams Advance Decline Line as proposed in the book, Technical Analysis from A to Z by Steven B. Achelis. I have tweaked it slightly, or you might say updated it. It works like OBV, but is more responsive to the price volatility.
Opti-EnvelopeUse Cases
Trend Confirmation: Confirm strong trending conditions via HMA slope and bar colors.
Overbought/Oversold Alerts: Spot potential reversal zones when price breaks the envelope bands.
Volatility Monitoring: Track market volatility through the widening and narrowing of the envelope.
VWPAZ - Volume Weighted Price Action ZonesDisclaimer: The content provided in my scripts, indicators, ideas, algorithms, and systems is for educational and informational purposes only.
This indicator was developed for high-volatility assets like GME, this adaptive indicator dynamically maps the zones where price and volume converge, revealing key buy/sell territory, institutional footprints, and areas of high trade interest.
📌 What It Does:
Calculates a Volume-Weighted Average Price (VWAP) across the session(s) of your choice
Builds high-probability support/resistance zones using ATR-based deviations
Automatically tracks and adapts to 1-day, 3-day, or weekly price behavior
Visually highlights the zone with shaded regions, giving you clear trade zones at a glance
🔧 Features:
🧩 Session Toggle: Switch between 1D, 3D, or Weekly zones for swing/intraday context
🔶 VWAP Line: Anchors the average price weighted by volume
🔼🔽 ATR Zones: Defines realistic price extremes around VWAP using true range
🟧 Shaded Forecast Channel: Gives a “volume-approved” path forward
📈 How to Use It:
Inside the orange shaded zone? Expect price to stall or consolidate — institutions may be active here.
Breaking above the green ATR band? Momentum breakout — watch for volume confirmation.
Rejecting near the red ATR band? Potential reversal zone or liquidity trap.
👨💻 Ideal For:
Day and swing traders
Volume-based analysts
Volatile tickers (e.g., GME, TSLA, crypto)
Anyone seeking real volume acceptance levels vs. subjective trendlines
Candle Rating (1–5)This “Candle Rating (1–5)” indicator measures where each bar’s close sits within its own high-low range and assigns a simple strength score:
Range Calculation
It computes the candle’s total range (high − low) and finds the close’s position as a percentage of that range (0 = close at low, 1 = close at high).
Five-Point Rating
1 (Strong Buy): Close in the top 20% of the range
2 (Moderate Buy): 60–80%
3 (Neutral): 40–60%
4 (Moderate Sell): 20–40%
5 (Strong Sell): Bottom 20%
Visual Feedback
It plots the numeric rating above each bar (colored green → red), giving you an at-a-glance read of candle momentum and potential reversal strength across any timeframe.
SAN BTC StochRSI Indicator with RSI and KGS SMA (Daily)buys bitcoin if below SMA 2, stoch as oversold and RSI above oversold, take 100 % profit after stoch RSI is overbought and Stoch RSI is overbought, SL in SMA3
nico weinstein2025Technical indicator based on Stan Weinstein's four-stage market cycle. Uses a configurable moving average (SMA or EMA) to determine the current phase of the asset. Classifies price action into Stage 1 (consolidation), Stage 2 (uptrend), Stage 3 (top/distribution), and Stage 4 (downtrend). Fully colors candles (body, border, and wicks) according to the detected stage: gray for Stage 1, green for Stage 2, orange for Stage 3, and red for Stage 4. Includes an option to display the moving average on the chart. Compatible with any timeframe. Helps visually identify market behavior for strategic decision-making.
nico weinstein2025Technical indicator based on Stan Weinstein's four-stage market cycle. Uses a configurable moving average (SMA or EMA) to determine the current phase of the asset. Classifies price action into Stage 1 (consolidation), Stage 2 (uptrend), Stage 3 (top/distribution), and Stage 4 (downtrend). Fully colors candles (body, border, and wicks) according to the detected stage: gray for Stage 1, green for Stage 2, orange for Stage 3, and red for Stage 4. Includes an option to display the moving average on the chart. Compatible with any timeframe. Helps visually identify market behavior for strategic decision-making.
超級指標wxApocalypse890131使用方式:依照任何一条压力或支撑线的次数来判断其强度,次数越高代表到达这个点位会有一个强支撑或强反弹,若次数越少可以忽略不看因为风险太高,若出现个位数(ex:x3)次数的线势必会到下一个三位数(ex:x100)次数的线,所以不要着急进去做空或做多再继续观望,推荐直接看4小时和8小时的图表提前挂单接针就可以了,挂单同时记得设置下个有三位数密集触碰次数的点位,防止不必要的亏损,若担心可以分批见仓保证不会亏!
How to use: judge the strength of any pressure or support line according to the number of times it is touched. The higher the number, the stronger the support or rebound will be when it reaches this point. If the number is less, it can be ignored because the risk is too high. If a line with a single-digit number (ex: x3) appears, it will inevitably reach the next three-digit number (ex: x100) line. So don't rush to go short or long and continue to wait and see. It is recommended to directly look at the 4-hour and 8-hour charts to place orders in advance. When placing orders, remember to set the next point with a three-digit intensive touch number to prevent unnecessary losses. If you are worried, you can open positions in batches to ensure that you will not lose money!
RSI and Stochastic MACD CombinedThis indicator is a combination of three key indicators that I use in my trading. You can observe and evaluate how to use it by yourself, as I won’t be able to explain exactly how it works. However, I believe it will definitely be useful for users. Thank you.