EMA + VWMA + ATR Smoothed BuySell (merged) - TOM ZENG 202509Logic and Functionality Analysis
The script is divided into three main logical sections: EMA trend analysis, ATR-based signal generation, and VWMA smoothing.
1. EMA Trend Analysis (EMA Fan) 📈
This section uses a series of Exponential Moving Averages (EMAs) to identify trends. You've wisely chosen a set of EMA lengths (8, 21, 50, 200) that are commonly used in trading. These numbers are often derived from the Fibonacci sequence and are believed to offer a good balance of sensitivity to recent price action while still reflecting the underlying trend.
Purpose: The EMAs serve as dynamic support and resistance levels. When the price is above the EMAs and they are fanned out in ascending order (short-term EMA above long-term EMA), it indicates a strong uptrend. Conversely, a descending order indicates a downtrend.
Customization: The code allows you to easily adjust the EMA lengths in the inputs section, giving you control over the sensitivity of your trend analysis.
2. ATR Trailing Stop (Buy/Sell Signals) 🎯
This is the core of the indicator's signal-generating capability. It uses the Average True Range (ATR) to create a dynamic trailing stop line. The ATR measures volatility, so the stop line adjusts automatically to wider price swings.
Logic: The script uses a var float variable xATRTrailingStop to store the value of the stop line from the previous bar. The code then determines the current bar's stop line by comparing the current price to the previous bar's stop line and using math.max and math.min to smoothly move the line along with the trend.
Signal Generation: The pos variable tracks whether the trend is long (pos = 1) or short (pos = -1). The isLong and isShort variables act as a state machine, ensuring that the "Buy" and "Sell" signals are only triggered once at the exact point of a crossover, rather than on every subsequent bar.
Visuals & Alerts: The plotshape functions create labels directly on the chart, and the barcolor function changes the color of the candlesticks, providing a clear visual representation of the current trend state. The alertcondition functions are crucial for automation, allowing you to set up notifications for when a signal occurs.
3. VWMA and Combined Average 🌊
This section introduces a Volume-Weighted Moving Average (VWMA), which gives more weight to periods of high trading volume. This makes the VWMA more responsive to significant moves that are backed by strong institutional buying or selling.
Combined Logic: The avg1 variable creates a new line by averaging the VWMA and the xATRTrailingStop line. This is an innovative approach to blend two different types of analysis—volume-based trend and volatility-based risk management—into a single, smoothed line. It can act as an additional filter or a unique trading signal on its own.
Summary
Your code is a very effective and clean example of a multi-faceted indicator. It correctly implements a robust ATR trailing stop for signals while also providing valuable trend context through EMAs and volume analysis through VWMA. The combination of these elements makes it a powerful tool for a trader looking for a comprehensive view of the market.
Padrões gráficos
Victor_Indicator_DayTrade_Buy_SellIndicator for Buy and Sell for Day traders. Works best on 5 min chart.
Weekly GridWeekly Grid Indicator
What It Does
Weekly Grid tracks Sunday 4:00 PM to Monday 4:00 PM (UTC-7) price ranges and plots high/low horizontal lines with vertical period markers. Helps identify weekly support/resistance levels.
Key Features
Period: Sun 4PM - Mon 4PM (UTC-7)
Lines: 2px thick high/low levels with price labels
Verticals: Green lines marking period boundaries
Alerts: Price breaks above high/below low
Lookback: Adjustable historical periods (default 1000 bars)
Trading Applications
Breakouts: Trade breaks of weekly high/low
Range: Fade approaches to extreme levels
Support/Resistance: Use as key weekly pivots
Alerts: Get notified of level breaks
Best For
Day traders seeking weekly structure
Swing traders using weekly pivots
Anyone wanting Sunday-Monday momentum levels
Simple weekly levels. Clear trading signals.
Copy the Pine Script code, add to TradingView, and start trading the levels.
A M T Transaction v2An indicator that assists in decision-making regarding whether to sell or buy through multiple timeframes, relying entirely on numbers and artificial intelligence. Additionally, this script draws breakout detection zones called “Smart Money Breakout Channels” based on volatility-normalized price movement and visualizes them as dynamic boxes with volume overlays. It identifies temporary accumulation or distribution ranges using a custom normalized volatility metric and tracks when price breaks out of those zones—either upward or downward. Each channel represents a structured range where smart money may be active, helping traders anticipate key breakouts by providing context from volume delta, up/down volume, and a visual gradient gauge for momentum bias.
Breakout Probability BBto identify breakout using BB RSI and Volume
Will help traders to identify the breakout
Volume Spread Analysis — Educational (VSA Study)Volume Spread Analysis — Educational (VSA Study)
Overview
This study is an educational tool built around classic Volume Spread Analysis (VSA), the methodology introduced by Tom Williams.
VSA looks at the relationship between volume, price spread, and closing position to highlight potential supply and demand imbalances.
The script is designed for learning and visual study, not for trade signals. It highlights well-known VSA events directly on the chart and adds reference lines and a colored moving average to help contextualize strength and weakness.
What It Shows
Major VSA Events: Stopping Volume (SV), Selling Climax (SC), Shakeout (SO), No Supply (NS), No Demand (ND), Buying Climax (BC), Upthrust (UT), Supply Coming In (SCI), End of Rising Market (EoRM), and Test Bars.
Trigger Lines: When a strong VSA bar appears, the script draws horizontal levels at the bar’s high and low. These act as educational “zones” where future price reactions can be studied.
Context Moving Average: A dotted MA changes color with price context (black or green when strength is confirmed, red when weakness dominates).
How It Works
Each event is identified using a blend of conditions:
Volume vs. its average
Spread vs. its average
Close location within the bar
Wick analysis (upper/lower shadows)
Short-term trend filters (5- and 10-period SMAs)
By combining these elements, the script maps chart activity to classical VSA definitions.
How to Study With It
Signs of Strength
Look for SC, SV, or SO bars.
Wait until price trades above the blue trigger line drawn from those bars.
Watch for a No Supply (NS) test bar in that zone.
Confirmation comes when the immediate next bar closes up and strong, with higher volume than the prior two bars.
The dotted MA should shift to black or green, showing supportive background strength.
Signs of Weakness
Watch for Supply Coming In, BC, or UT events.
Wait until price trades below the red trigger line.
Look for a No Demand (ND) bar in that area.
Confirmation comes when the following bar closes down and weak, with higher volume than the prior two bars.
The dotted MA should be red, reinforcing weakness.
Originality
This script was written from scratch with a focus on education and clarity. While VSA concepts themselves are public domain, the implementation here is unique:
It combines event detection, trigger zones, and a contextual MA in one framework.
It avoids acting as a trading system and instead provides a practical study workflow that traders can follow step by step.
Disclaimer
This indicator is for educational purposes only.
It does not generate buy or sell signals and should not be used as financial advice.
Trading involves risk; always perform your own analysis and risk management.
Long Multi-TimeframeTo be used on a 30 minute time frame with Market Bias changing from red to light red or green, 4 or more consecutive red dots on the 15 minute and 30 minute frames inside the market bias, and a red to green Bx-Trender, backed up with good flow (real-time plus green net cumulative flow).
SHACC v2 — by SupersonicFXImproved version of SHACC v1. Now the entry candles are plotted. English translation will follow.
Enjoy
ATR Stop Loss# ATR Stop Loss Indicator - Professional Trading Tool
## English Description
### 🎯 **ATR-Based Stop Loss Calculator - Your Risk Management Assistant**
**Never guess your stop loss again!** This professional indicator automatically calculates your optimal stop loss levels using the proven ATR (Average True Range) method.
#### ✨ **Key Features:**
- **Real-time ATR calculation** with customizable periods (default: 14 days)
- **Smart stop loss pricing** based on market volatility
- **Flexible ATR multiplier** (50%-300%) - adjust risk to your trading style
- **Live percentage tracking** - see exactly how much you're risking
- **Professional display** with 9 positioning options
- **Fully customizable** colors, text size, and transparency
- **Always visible** - stays on screen when you scroll or change timeframes
#### 📊 **What You See:**
```
ATR(14): $2.45
ATR Multiplier: 110%
STOP: $87.31 (-2.8%)
```
#### 🚀 **Why This Indicator is Essential:**
- **Professional Risk Management** - Set stops based on actual market volatility, not emotions
- **Saves Time** - No more manual calculations or guesswork
- **Reduces Losses** - Prevents premature stops while protecting capital
- **Improves Consistency** - Standardize your exit strategy across all trades
- **Perfect for All Styles** - Day trading, swing trading, or long-term investing
#### 💡 **How It Works:**
The indicator calculates the Average True Range over your chosen period, multiplies it by your risk preference (110% default), and subtracts from current price. This gives you a scientifically-backed stop loss that adapts to market conditions.
**Perfect for traders who want to:**
- ✅ Eliminate emotional decision-making
- ✅ Base stops on market volatility
- ✅ Maintain consistent risk management
- ✅ Save time on calculations
- ✅ Improve trading performance
---
## תיאור בעברית
### 🎯 **מחשבון Stop Loss מתקדם מבוסס ATR**
**תפסיק לנחש את רמת ה-Stop Loss שלך!** האינדיקטור המקצועי הזה מחשב אוטומטית את רמות ה-Stop Loss האופטימליות שלך בעזרת שיטת ה-ATR המוכחת.
#### ✨ **תכונות מרכזיות:**
- **חישוב ATR בזמן אמת** עם אפשרות התאמת תקופות (ברירת מחדל: 14 ימים)
- **תמחור חכם של Stop Loss** על בסיס תנודתיות השוק
- **מכפיל ATR גמיש** (50%-300%) - התאם את הסיכון לסגנון המסחר שלך
- **מעקב אחוזים חי** - ראה בדיוק כמה אתה מסכן
- **תצוגה מקצועית** עם 9 אפשרויות מיקום
- **התאמה אישית מלאה** - צבעים, גודל טקסט ושקיפות
- **תמיד גלוי** - נשאר על המסך כשאתה גולל או משנה טווחי זמן
#### 📊 **מה שתראה:**
```
ATR(14): $2.45
ATR Multiplier: 110%
STOP: $87.31 (-2.8%)
```
#### 🚀 **למה האינדיקטור הזה חיוני:**
- **ניהול סיכונים מקצועי** - קבע Stop על בסיס תנודתיות אמיתית של השוק, לא רגשות
- **חוסך זמן** - בלי עוד חישובים ידניים או ניחושים
- **מפחית הפסדים** - מונע Stop מוקדם מדי ובו זמנית מגן על ההון
- **משפר עקביות** - תקנן את אסטרטגיית היציאה שלך בכל העסקות
- **מושלם לכל הסגנונות** - Day Trading, Swing Trading או השקעות ארוכות טווח
#### 💡 **איך זה עובד:**
האינדיקטור מחשב את הממוצע של True Range על פני התקופה שבחרת, מכפיל בהעדפת הסיכון שלך (110% כברירת מחדל), ומחסיר מהמחיר הנוכחי. זה נותן לך Stop Loss מבוסס מדעית שמתאים לתנאי השוק.
**מושלם לטריידרים שרוצים:**
- ✅ לחסל קבלת החלטות רגשית
- ✅ לבסס Stop על תנודתיות השוק
- ✅ לשמור על ניהול סיכונים עקבי
- ✅ לחסוך זמן על חישובים
- ✅ לשפר את ביצועי המסחר
---
### 🏷️ **Tags:** ATR, Stop Loss, Risk Management, Trading Tools, Volatility, Technical Analysis
Super SignalWhen all lines are below the 20 line its a super signal to buy. When all trends are above the 80 line it is a super signal to sell.
SatoshiFrame Fibonacci Golden CloudGolden Fibonacci Cloud
This indicator highlights key support and resistance zones using Fibonacci levels, visualized as golden clouds on the chart. Adjustable colors, transparency, and period make it perfect for professional technical analysis.
Auto Fibonacci levels: 0.236, 0.382, 0.5, 0.618, 0.786
Two golden clouds marking important zones
Clear and fixed visuals across all timeframes
童貞2_MACDUp and down arrows will appear to let you know which way to place it. It is important to be able to analyze the chart before using this indicator. We recommend using our homemade MACD at 15 minutes.
Simple Pivot Zones (Error-free) — v11. Core Idea
The indicator we built is a “pivot-based zone detector with breakout signals.”
It does three things:
1. Finds important swing highs and swing lows in price (pivots).
2. Creates support and resistance zones around those pivots using volatility (ATR).
3. Watches price action to see if those zones get broken, then gives signals.
________________________________________
2. What is a Pivot?
A pivot high happens when the price makes a local peak — a bar is higher than the bars around it.
A pivot low happens when the price makes a local dip — a bar is lower than the bars around it.
These are natural turning points in the market, showing where buyers or sellers had strong control temporarily. Traders often use them to draw support (pivot lows) and resistance (pivot highs).
________________________________________
3. Why Use ATR for Zones?
ATR (Average True Range) measures the average volatility of a market. Instead of drawing just a flat line at the pivot, we create a zone above and below it, sized according to ATR.
Example:
• If ATR is 20 points and zone size is 0.5, then the zone extends 10 points above and below the pivot level.
This turns thin “lines” into thicker areas of interest. Real markets don’t respect razor-thin levels, but zones are more realistic.
________________________________________
4. How Support & Resistance Zones Work
• Resistance zones are created at pivot highs. They mark where sellers were strong before.
• Support zones are created at pivot lows. They mark where buyers were strong before.
Over time, these zones extend forward until the price interacts with them.
________________________________________
5. Breakout Detection
The indicator checks whether the price closes beyond the last pivot high or low:
• If price closes above the last pivot high, it means buyers have broken resistance.
• If price closes below the last pivot low, it means sellers have broken support.
These moments are significant because they often trigger trend continuation.
________________________________________
6. Parameters It Uses
1. Pivot Length – how many bars to look back and forward to confirm a pivot. A higher length makes pivots less frequent but stronger.
2. ATR Length and Multiplier – defines the size of the zones (wider zones in more volatile markets).
3. Max Zones to Keep – avoids clutter by keeping only the most recent zones.
4. Colors & Styling – helps traders visually separate bullish and bearish zones.
________________________________________
7. How It Helps Traders
• Visual clarity: Instead of guessing support and resistance, the chart automatically highlights them.
• Dynamic adjustment: Zones adapt to volatility using ATR, making them useful in both calm and volatile markets.
• Breakout signals: Traders get notified when price actually breaks key levels, instead of reacting late.
• Cleaner charts: Instead of dozens of hand-drawn lines, the tool manages zones for you, deleting old ones.
________________________________________
8. The Logic in One Sentence
It finds important swing highs and lows, turns them into support/resistance zones scaled by volatility, and alerts you when the market breaks through them.
________________________________________
👉 In practice, this helps traders spot where the market is likely to bounce or break, and gives a framework to plan trades — for example, buying on bullish breakouts or selling on bearish breakouts.
________________________________________
KARAMAN Swing High/LowThis Pine Script indicator detects and visualizes swing highs/lows, daily levels, and Fair Value Gaps (FVGs) with full customization:
Swing points:
Validated swings are shown as small triangles (red = high, green = low).
Optional rays extend from swing points, and a ZigZag line connects them.
Daily high/low:
Tracks daily extremes (UTC+3).
Draws right-extended rays from the previous day’s high/low.
Fair Value Gaps (FVGs):
Automatically detects bullish and bearish FVGs.
Draws boxes and three rays (top, middle, bottom).
When price touches the middle line, the box and two lines are deleted, leaving only the untouched boundary.
If price fully breaks the FVG, all elements are removed.
Settings panel:
Every element (swing candidates, valid swings, rays, ZigZag, daily levels, FVG boxes/rays) can be turned on or off.
HTF Double TF Candle Projections by Pahto\ HTF Candle Projections (Dual Timeframe)\
This indicator projects higher-timeframe candles directly onto your chart, allowing you to see how larger structures are forming in real time. Instead of waiting for a higher-timeframe bar to close, it builds and updates projected candles tick-by-tick.
\ Key Features\
* \ Dual timeframe support\ – plot two higher-timeframe levels at once for deeper context.
* \ Custom opening times\ – align HTF candles to session opens or specific market times.
* \ Flexible candle types\ – choose between regular or Heikin Ashi projections.
* \ Projection lines\ – live open, high, and low levels extend from the current HTF candle.
* \ Configurable visuals\ – body, wick, border colors, label sizes, margins, and offsets.
* \ OHLC labels\ – optional price markers for open, high, low, and close of projected candles.
\ Use Cases\
* Anticipate higher-timeframe levels while trading on lower timeframes.
* Track evolving HTF opens, highs, and lows during live sessions.
* Compare two higher-timeframe perspectives side-by-side without switching charts.
This tool is designed for traders who rely on multi-timeframe confluence, price action mapping, or session-based analysis. It keeps HTF structure visible at all times so you can trade lower-timeframe setups with bigger-picture alignment.
Custom indictrbuy sell idicator inal output is the EMA Index, which is a smoothed exponential moving average of the Raw Demand Index. This EMA acts as the primary signal line, providing a clearer, less noisy reading that is easier to interpret.
Candle Colored by Volume Z-score with S/R [Morty]All Credits to :
I have just added Support and Resistance line
This indicator colors the candles according to the z-score of the trading volume. You can easily see the imbalance on the chart. You can use it at any timeframe.
In statistics, the standard score (Z-score) is the number of standard deviations by which the value of a raw score (i.e., an observed value or data point) is above or below the mean value of what is being observed or measured. Raw scores above the mean have positive standard scores, while those below the mean have negative standard scores.
This script uses trading volume as source of z-score by default.
Due to the lack of volume data for some index tickers, you can also choose candle body size as source of z-score.
features:
- custom source of z-score
- volume
- candle body size
- any of above two
- all of above two
- custom threshold of z-score
- custom color chemes
- custom chart type
- alerts
default color schemes:
- green -> excheme bullish imbalance
- blue -> large bullish imbalance
- red -> excheme bearish imbalance
- purple -> large bearish imbalance
- yellow -> low volume bars, indicates "balance", after which volatility usually increases and tends to continue the previous trend
Examples:
* Personally, I use dark theme and changed the candle colors to black/white for down/up.
Volume as Z-score source
TradeIQ Trend Reversal Signal [EN]TradeIQ is designed to guide traders with predictive arrows that highlight potential market peaks and reversal zones. It also provides entry point guidance along with suggested TP/SL zones, giving you a practical framework for trade planning.
✅ Key Features:
• Predictive arrows for possible turning points
• Visual guide for entry opportunities
• Suggested TP/SL zones for trade management
• Scalping signals to capture quick, short-term opportunities
• Real-time momentum strength with intuitive up/down power arrows
• Multi-timeframe view of trend and momentum
• Regression Channel with dynamic Support & Resistance views
• Built-in Alerts so you never have to watch the screen all day
• Works across Forex, Gold, Crypto, and Indices
• Fully customizable to match your trading style
Built from years of trading experience, TradeIQ gives traders a clear visual roadmap to support decision-making — not rigid signals.
👉 Perfect for traders who want guidance, structure, and clarity in the markets.
Silver LTCSilver LTC — это эксклюзивный индикатор, который помогает визуально отслеживать ключевые уровни на графике #LTC к серебру. Он упрощает принятие решений, показывая важные зоны исторического интереса. Идеален для трейдеров, которые ценят наглядность и точность.
На графике отображается благоприятные зоны к покупке LTC и также его частичной фиксации! Все риски вы берете на себя, это дополнительный инструмент для принятия решения! Работает только на графике LTCUSD!
🔥 Следите за обновлениями и полезными советами на моём канале в Telegram:
— инвестируем только когда страх и всё красное! 💰
English:
Silver LTC is an exclusive indicator designed to highlight key historical levels on the #LTC to silver chart. It helps traders make informed decisions by visually showing areas of potential interest. Perfect for those who value clarity and precision.
The chart displays favorable zones for buying LTC and partially locking in some of its value! You assume all risks; this is just an additional tool for making decisions! Only works on the LTCUSD chart.
🔥 Follow my Telegram channel for updates and insights:
— we invest only when fear dominates and everything turns red! 💰
CandleMap — MTF Inside Bars ToolCandleMap — MTF Inside Bars Tool
This indicator highlights multi-timeframe inside bar structures directly on the chart.
It allows traders to visualize and compare inside bars from different higher timeframes
overlaid on lower timeframe charts.
How it works:
- Up to 4 custom higher timeframes can be enabled at once.
- For each selected timeframe, the script tracks whether the current bar is forming
inside the previous bar’s high and low range.
- When an inside bar is detected, a colored box and label are drawn to mark its range.
- An optional midline (average of high and low) can be displayed.
How to use:
- Inside bars can be used to identify consolidation zones and potential breakout levels.
- Each timeframe is color-coded to distinguish overlapping structures.
- Combine with your own confirmation tools or market context analysis.
Notes:
- This is an invite-only script. Access must be requested from the author.
Global Session Opens + 4H Background (한글: 글로벌 세션 개장 + 4시간 배경 표시)📌 추천 설명 (Description)
English
This indicator highlights two key elements for intraday and swing traders:
Global Session Opens (Asia, Europe, US)
Small session markers at candle open times (Asia 09:00 KST, Europe 16:00 KST, US 22:00 KST). Colors: Yellow = Asia, Red = Europe, White = US. Easy to spot, non-intrusive, and customizable placement.
4H Background Blocks kr.tradingview.com
Alternating faint background (5% opacity) every 4 hours. Helps track how lower timeframes (1m, 5m) move within the higher timeframe (4H).
✅ Perfect for scalpers and intraday traders who want to keep track of global liquidity flows without cluttering the chart.
한국어
이 인디케이터는 단타 및 스윙 트레이더를 위한 두 가지 핵심 기능을 제공합니다:
글로벌 세션 개장 (아시아, 유럽, 미국)
캔들 위에 개장 시간마다 작은 점으로 표시됩니다. (한국시간 기준: 아시아 09:00, 유럽 16:00, 미국 22:00)
색상: 아시아 = 노란색, 유럽 = 빨간색, 미국 = 흰색. 차트 가독성을 해치지 않으며 위치는 자유롭게 조정 가능합니다.
4시간 배경 블록
4시간마다 교차하는 희미한 배경(투명도 95%)이 표시됩니다. 분봉(1분, 5분)의 움직임이 4시간 캔들 안에서 어떻게 전개되는지 파악하는 데 큰 도움이 됩니다.
✅ 심플하지만 강력한 보조 도구로, 차트 분석 시 심리적 흔들림을 줄이고 글로벌 유동성 흐름을 쉽게 추적할 수 있습니다.