Current Trade Value DisplayThis indicator gives a large display of the current trade value at the bottom of the screen.
อินดิเคเตอร์และกลยุทธ์
FRXFORTUNE GOLD ADVANCEThis indicator helps traders analyze gold price reaction after economic news releases.
You can manually input the Actual and Forecast values from news data.
Based on the difference, it shows a side box signal:
- If USD is strong → Gold sell signal
- If USD is weak → Gold buy signal
It also provides alerts when strong reactions are detected.
Signal PainterSignal Painter is a trend-focused technical indicator that paints buy/sell signals only when a strong directional move is confirmed. It combines a momentum oscillator with a volatility filter to ensure signals occur during robust trends. In practice, the algorithm waits for price movement and momentum to exceed certain thresholds (for example, requiring both a surge in momentum and price range expansion) before marking a potential up-trend entry or down-trend entry on the chart. This means the system performs best in well-defined trending markets where such conditions are met consistently. In sideways or range-bound conditions, however, these strict requirements can be triggered by random fluctuations, reducing the indicator’s effectiveness (it may generate false or choppy signals when the market lacks clear direction). To adapt to a choppier market, traders can apply Signal Painter on a lower timeframe to make it more reactive to smaller price swings. This increases the frequency and quickness of signals (capturing short-term moves sooner) but at the cost of signal strength and reliability – lower-timeframe signals carry more noise and are less robust compared to signals on higher timeframes. In summary, Signal Painter is designed to highlight significant trend breakouts with visual cues on the chart, excelling during trending phases and cautioning users that its performance will degrade during sideways market conditions.
FRXFORTUNE NEWS EXPERTThis indicator helps traders analyze gold price reaction after economic news releases.
You can manually input the Actual and Forecast values from news data.
Based on the difference, it shows a side box signal:
- If USD is strong → Gold sell signal
- If USD is weak → Gold buy signal
It also provides alerts when strong reactions are detected.
SCALPERSAURUS HISTOHisto pane
- Red cross, serve as 1 sell confirmation, and remains intact until the next blue cross appearing
- similarly blue cross serves as 1 buy confirmation, and remains intact until the next red cross appearing
Strong Levels (Safe Version)Strong Levels (Safe Version)
This indicator automatically detects and plots strong support and resistance levels based on pivot highs/lows and the number of touches. It’s designed to highlight only the most reliable levels by filtering with ATR tolerance and minimum touch requirements.
Features:
Detects pivot-based support and resistance zones
Adjustable left/right candles for pivot sensitivity
Minimum touches filter to confirm significant levels
ATR-based tolerance for flexible clustering of nearby levels
Maximum levels limit for cleaner charts
Automatic color coding (teal = support, red = resistance)
Safe version with optimized handling of line objects (up to 500 lines)
Parameters:
Left / Right candles – sensitivity of pivot detection
Min. touches – minimum confirmations required to display a level
ATR period & multiplier – tolerance range for grouping nearby levels
Max levels – limits the number of active levels
Colors – customize support and resistance lines
Usage:
This tool helps traders quickly identify the strongest price levels where market reactions are most likely. Use it to find high-probability entry, exit, or stop-loss zones in any market and timeframe.
NY 4H High/Low Levels — VIPINWhat this script does
This indicator automatically marks the first 4 hours of each New York trading day (00:00–03:59, America/New_York time). It calculates the High and Low of that period and plots them as horizontal levels. The lines extend only until the end of the same New York day. Optionally, you can display the previous N days’ levels for additional context.
Why it is useful
The New York session is one of the most active trading sessions. The first 4 hours often set intraday liquidity pools and reference levels that many traders monitor for breakouts or reversals. This tool helps traders identify and visualize those ranges quickly on the chart.
How it works
• Uses TradingView’s time() function to detect bars within 00:00–03:59 America/New_York.
• Accumulates the highest high and lowest low during that 4-hour window.
• At the end of the window, draws High and Low lines for the current day (extend until that day ends).
• Optionally stores and displays levels from a chosen number of previous days.
• Option to show a shaded box highlighting the 4-hour window.
Settings
• Timezone (default: America/New_York)
• Show 4H Window Box (on/off)
• Line colors, width
• Show previous days’ levels (on/off, with how many days to keep)
How to use
• Best applied on intraday timeframes (1m–1h).
• Use these levels as reference points for your own strategy (e.g., breakout, mean reversion, or confluence with other tools).
• The indicator is a utility tool: it does not generate buy/sell signals by itself.
Notes
This script is original: it is not a mashup of multiple public indicators but a dedicated tool to highlight a specific, well-defined trading session.
It is provided for educational purposes only and is not financial advice.
Multiple EMAMultiple EMA Indicator
This script overlays five customizable Exponential Moving Averages (EMAs) on your chart with color styling and transparency matching TradingView’s palette (≈65% opacity).
🔹 Features
Five EMAs with fully customizable lengths (default: 6, 13, 26, 52, 104)
Thicker line weights for longer-term EMAs (26, 52, 104) to emphasize trend bias
Short-term EMAs (6, 13) hidden by default but toggleable in settings
Custom color codes with opacity applied (35% transparency) for a smoother look
Adjustable price source input (close, open, hl2, etc.)
🔹 Best For
Swing traders and trend followers
Traders seeking a clear, color-coded, and visually optimized EMA setup
SMC Structures and FVGlegRange = math.abs(structureHigh - structureLow) // <-- เปลี่ยนชื่อจาก range -> legRange
if showCurrentStruct and not na(structureHigh) and not na(structureLow)
if na(curHighLine) == false
line.delete(curHighLine)
if na(curLowLine) == false
line.delete(curLowLine)
curHighLine := line.new(sHighIdx, structureHigh, bar_index, structureHigh, xloc.bar_index, color=currentStructColor, style=currentStructStyle, width=currentStructWidth)
curLowLine := line.new(sLowIdx, structureLow, bar_index, structureLow, xloc.bar_index, color=currentStructColor, style=currentStructStyle, width=currentStructWidth)
// ---------- Fibonacci on current leg ----------
if showFibo and legRange > 0
for k = 0 to array.size(fLevels) - 1
lvl = array.get(fLevels, k)
price = sDir == 1 ? structureHigh - (legRange - legRange * lvl)
: structureLow + (legRange - legRange * lvl)
l = line.new(sDir == 1 ? sHighIdx : sLowIdx, price, bar_index, price, xloc.bar_index, color=fiboColorMain, style=fiboStyle, width=fiboWidth)
label.new(bar_index + 10, price, str.tostring(lvl) + " (" + str.tostring(price) + ")", style=label.style_none, textcolor=fiboColorMain)
SMC + FVG + EMA + TrendlinesSMC + FVG + EMA + Trendlines legRange = math.abs(structureHigh - structureLow) // <-- เปลี่ยนชื่อจาก range -> legRange
if showCurrentStruct and not na(structureHigh) and not na(structureLow)
if na(curHighLine) == false
line.delete(curHighLine)
if na(curLowLine) == false
line.delete(curLowLine)
curHighLine := line.new(sHighIdx, structureHigh, bar_index, structureHigh, xloc.bar_index, color=currentStructColor, style=currentStructStyle, width=currentStructWidth)
curLowLine := line.new(sLowIdx, structureLow, bar_index, structureLow, xloc.bar_index, color=currentStructColor, style=currentStructStyle, width=currentStructWidth)
// ---------- Fibonacci on current leg ----------
if showFibo and legRange > 0
for k = 0 to array.size(fLevels) - 1
lvl = array.get(fLevels, k)
price = sDir == 1 ? structureHigh - (legRange - legRange * lvl)
: structureLow + (legRange - legRange * lvl)
l = line.new(sDir == 1 ? sHighIdx : sLowIdx, price, bar_index, price, xloc.bar_index, color=fiboColorMain, style=fiboStyle, width=fiboWidth)
label.new(bar_index + 10, price, str.tostring(lvl) + " (" + str.tostring(price) + ")", style=label.style_none, textcolor=fiboColorMain)
SM - 1 v6SM-1 v6 is a technical analysis tool that detects and visualizes Support/Resistance levels, fractals, and Fair Value Gaps. It provides real-time plotting of key price levels, highlights active zones, and issues customizable alerts. Includes options for showing/hiding visuals, adjusting strength/lookback, and limiting alerts to once per event.
session Zone Hunter 🚀 | Session + Ignition + LiquidityTitle: session Zone Hunter | Session + Ignition + Liquidity
Description:
1. Indicator Philosophy and Originality
This indicator is an integrated trading framework designed to analyze market behavior through the lens of trading sessions and high-probability liquidity zones. The core philosophy is that the most significant trading opportunities arise from the interplay between session context and liquidity events.
The originality of this script lies in its synergistic combination of two distinct but complementary modules:
A Session Analysis Engine: This module defines the temporal context, identifying the high, low, and behavioral characteristics (e.g., Trend, Consolidation) of each trading session.
An Ignition Zone Module: This module identifies potent supply and demand zones created by "explosive" price moves, which often signal institutional intent.
By overlaying these two analyses, a trader can answer critical questions that are not possible by using separate indicators: "Did this 'Ignition' demand zone form at the low of the London session?" or "Is the price currently consolidating near the high of the Asian session, preparing for a liquidity grab?" This fusion of "when" (session context) and "where" (liquidity zones) provides a unique and powerful analytical edge.
2. Module 1: Session Analysis
This is the foundational layer of the indicator, providing a structured view of the market based on the major trading sessions (Asia, Europe, US).
Session Boxes & Timing: The script automatically draws colored boxes for each session based on user-defined start and end times (in UTC minutes). It also includes a countdown table showing the time left in the current session and when the next one begins.
Session Behavior Analysis: At the close of each session, the indicator analyzes the price action within that session and classifies its behavior into one of four categories:
Trend Up/Down: Characterized by a strong directional move and a large price range.
Consolidation: Characterized by a tight, non-directional price range.
Manipulation: Characterized by significant wicks on both sides of the candle body, suggesting a battle between buyers and sellers with no clear winner.
Range: Any behavior that doesn't fit the above criteria.
Closing Price Bias: In addition to the overall behavior, the indicator analyzes where the session's price closed relative to its range (e.g., "Strong Bullish Close" if it closes in the top 40% of its range). This provides insight into the final sentiment of the session.
Session Edge Traps (Liquidity Grabs): This sub-module identifies potential liquidity grabs. It triggers a "Sell Trap" alert if price creates a new session high but the candle body is bearish, and a "Buy Trap" if price creates a new session low but the candle body is bullish. These signals can be filtered to only appear near the edges of the session range.
3. Module 2: Ignition Alert Zones (Supply & Demand)
This is an independent, embedded module designed to detect high-probability supply and demand zones based on the concept of "Ignition" candles.
Zone Creation Logic: A zone is identified when a "boring" (low momentum) candle is followed by an "explosive" (high momentum) candle.
Boring Candle: A candle where the total length of the wicks is greater than the body size by a user-defined ratio.
Explosive Candle: A candle with a strong directional body that is significantly larger than the preceding "boring" candle's body.
A bullish (Demand) zone is created from the high/low of the boring candle that precedes an explosive up-move. A bearish (Supply) zone is created from the boring candle preceding an explosive down-move.
Zone Management:
Non-Repaint & Close-Only Checks: The logic is designed to be non-repainting by confirming signals only on bar close.
Overlap Policy: To maintain chart clarity, the indicator has a built-in policy to handle overlapping zones, either by keeping the most "Current" zone or using a "Strict" policy that prevents any overlap.
Zone Lifecycle: Zones can be configured to be automatically deleted after being filled, broken, or after a certain number of bars have passed (aging). They can also be set to "dim" (become more transparent) after the first price touch.
Comprehensive Alerts: A full suite of alerts is available for every event in a zone's life, including: New Zone Created, Zone Filled, First Retest, Any Touch, and Zone Break/Invalidation.
By combining these two powerful modules, the Session Zone Hunter aims to provide traders with a complete system for identifying high-probability setups based on session dynamics and institutional liquidity footprints
Sri - Custom RSI Candle/Heikinashi Colors on MTFSri - Custom RSI Candle/Heikinashi Colors (TF RSI + EMA50 + Daily Trend Marker)
Short title: Sri - RSI EMA TF
Version: Pine Script v5
Overlay: Yes
Overview
This script enhances the standard RSI indicator by combining multiple features to visually represent market momentum and trend strength on both custom and daily timeframes. It recolors candlesticks or draws custom candles based on RSI levels relative to its EMA, offering a clear, intuitive way to identify trend direction and overbought/oversold conditions.
Key benefits include:
Multi-timeframe RSI & EMA analysis.
Optional Heikin Ashi or normal price source for RSI calculation.
Custom candle coloring for immediate visual insights.
Daily trend markers for longer-term trend context.
Features
Custom Timeframe RSI + EMA50
Calculate RSI on any user-selected timeframe (default: 5 min).
Apply a 50-period EMA on the RSI to identify trend direction.
Visual differentiation based on RSI relative to EMA:
Uptrend: RSI > EMA and above 50 → Blue candles
Downtrend: RSI < EMA and below 50 → Yellow candles
Conflict zones: RSI and EMA in opposite directions → Red or Green borders
Daily Trend Marker
Plots a tiny circle below each candle showing the daily RSI trend for additional context.
Helps align short-term trades with longer-term market direction.
Candle Visualization Options
Recolor built-in bars (default)
Custom candles with transparent bodies + colored borders
Overbought (RSI ≥ 70) → Dark Green
Oversold (RSI ≤ 30) → Orange
Heikin Ashi Support
Users can choose between Normal or Heikin Ashi candle prices as the RSI source.
Provides a smoother view of trends when using Heikin Ashi.
Transparency for Neutral Zones
Neutral or sideways RSI conditions are represented by transparent candles, reducing visual clutter.
Inputs
Input Description
Custom RSI Timeframe Select timeframe for RSI calculation (default: 5 min)
RSI Length Period for RSI calculation (default: 14)
EMA Length EMA period applied on RSI (default: 50)
Use custom candles True → draws custom candles with colored borders; False → recolors default bars
Price Source for RSI "Normal" or "Heikin Ashi"
Color Scheme
Condition Body Color Border Color
RSI ≥ 70 (Overbought) Dark Green Dark Green
RSI ≤ 30 (Oversold) Orange Orange
RSI ≥ 50 and RSI ≥ EMA Blue Blue
RSI < 50 and RSI ≤ EMA Yellow Yellow
RSI < 50 and RSI ≥ EMA Transparent Red (Conflict)
RSI ≥ 50 and RSI ≤ EMA Transparent Green (Conflict)
How to Use
Add the script to your chart.
Choose whether to use custom candles or recolor standard bars.
Set your preferred RSI timeframe and EMA length.
Optional: Switch between Normal or Heikin Ashi as the RSI source.
Observe candle colors and daily circles for trend alignment:
Green/Blue → Uptrend
Red/Yellow → Downtrend
Transparent → Neutral/conflict zones
Trading Insights
Candle colors quickly indicate short-term momentum relative to RSI and EMA.
Daily trend markers allow alignment of short-term trades with broader market context.
Conflict zones (transparent bodies with red/green borders) highlight caution areas where trend direction may be ambiguous.
Combining multiple timeframes (custom + daily) increases the accuracy of trend-based decision-making.
Notes
Works best when combined with other indicators (volume, support/resistance) for confirmation.
Ideal for scalping, intraday, or swing trading strategies.
Compatible with most symbols and timeframes supported by TradingView.
BTC 1D — Trend START/END Signals (clean, no repaint)
This strategy is designed primarily for BTC on the daily (1D) timeframe in TradingView.
BUY (start of uptrend)
Fast EMA is above Slow EMA.
Price breaks above the previous Donchian high.
Optional filters (if enabled): volume surge and strong momentum/RSI.
Only one BUY per uptrend—no additional buys until a SELL occurs.
SELL (end of uptrend)
Price falls below the previous Donchian low, or
Price drops below the Slow EMA, or
Momentum flips bearish (DI− > DI+ or RSI ≤ threshold).
One SELL marks the end of the uptrend.
MultiPrem+Detailed Description of MultiPrem+
MultiPrem+ is a versatile TradingView Pine Script indicator designed to enhance the analysis of multi-leg option strategies by calculating and visualizing the combined premium of various predefined option setups. It allows users to select from a comprehensive list of popular option strategies, such as Short Straddle, Iron Condor, Butterfly Call, and more, and dynamically computes the net premium, Greeks (Delta and Theta), volume, and other key metrics for the selected strategy. The indicator overlays these calculations on the chart, providing real-time insights into the potential profitability and risk of the strategy based on the underlying asset's price movement.
The core functionality revolves around fetching data for up to four option legs (e.g., calls and puts at different strikes) using TradingView's `request.security` function. It supports indices like NIFTY, BANKNIFTY, and SENSEX, with customizable ATM strike levels, strike width multipliers, and expiry dates. The script calculates the combined premium by summing the premiums of each leg, adjusted for position direction (long or short), and displays the results in a compact table on the chart. It also includes technical indicator overlays (e.g., SMA, RSI, MACD) to contextualize the strategy within market trends, and generates alerts with strategy metrics for automated notifications.
The indicator is particularly suited for option traders who want to monitor strategy performance without manual calculations, offering a blend of quantitative metrics and visual feedback. It operates on any timeframe but is optimized for intraday or short-term trading, where option premiums fluctuate rapidly.
### Unique Features
MultiPrem+ stands out from standard option analysis tools on TradingView due to several innovative features:
1. **Dynamic Multi-Leg Strategy Support**: Unlike basic option chain indicators that focus on single legs or simple spreads, MultiPrem+ supports a wide range of advanced multi-leg strategies (e.g., Iron Condor Wide, Reverse Iron Condor, Butterfly Call/Put). It automatically configures strike prices, directions, and approximate Greeks based on the selected strategy, saving time and reducing errors in setup.
2. **Combined Premium Visualization**: The indicator plots the net premium as a line on the chart, colored based on whether it's a credit or debit strategy and its relation to a selected technical indicator (e.g., green if below SMA for potential buys). This unique visualization helps traders see how the strategy's value evolves over time, providing an at-a-glance view of profitability.
3. **Integrated Greeks Calculation**: It computes net Delta (directional risk) and net Theta (time decay) for the entire strategy, factoring in leg directions. For credit strategies like Short Straddle, Theta is positive to reflect time decay benefits, a nuance not commonly found in free indicators.
4. **Strategy Suggestion Engine**: Based on RSI and net Theta, it suggests alternative strategies (e.g., "Bear Put Spread" if RSI is overbought). This AI-like recommendation system is unique, helping novices or busy traders pivot quickly to more suitable setups.
5. **Customizable Alerts**: The script generates JSON-formatted alerts with key metrics (premium, net Delta, net Theta, etc.), which can be integrated with TradingView's alert system or external tools for automated trading signals.
6. **Compact Table Display**: A dynamic table shows leg-specific details (Type, Strike, Position, Premium, Qty, Delta, Theta, Volume) without cluttering the chart. It's positionable and sized for usability.
### How a User Can Gain Valuable Analysis from It
MultiPrem+ empowers users to conduct sophisticated option strategy analysis, offering insights that can improve decision-making and risk management. Here's how users can leverage it for valuable outcomes:
1. **Strategy Evaluation and Selection**: Traders can quickly test different strategies by changing the selection and ATM strike. For instance, in a sideways market, selecting "Short Straddle" shows the net credit and positive Theta, highlighting potential profits from time decay. The suggestion engine further aids by recommending alternatives if current conditions (e.g., high RSI) suggest a mismatch, helping users optimize for market volatility or direction.
2. **Risk Assessment with Greeks**: Net Delta indicates directional bias (e.g., near zero for delta-neutral strategies like Iron Condor), allowing users to hedge against price moves. Net Theta quantifies daily time decay, crucial for theta-positive strategies—users can analyze how much profit they might gain per day if the underlying asset stays range-bound. This is especially valuable for income-focused traders.
3. **Premium and Volume Monitoring**: By plotting combined premium, users can track strategy value in real-time, identifying entry/exit points when premium crosses a moving average (e.g., buy when below EMA). Volume data per leg helps gauge liquidity, avoiding low-volume options that could lead to poor fills.
4. **Integration with Technical Indicators**: Overlaying strategies on RSI or MACD enables hybrid analysis. For example, a user might enter a Bull Call Spread when RSI is oversold, using the indicator's plot to visualize potential premium gains alongside RSI crossovers.
5. **Alert-Driven Trading**: Custom alerts notify users of premium changes or suggested strategy shifts, enabling hands-off monitoring. This is useful for busy traders, who can set notifications for when net Theta exceeds a threshold, signaling favorable decay conditions.
6. **Educational and Backtesting Tool**: Beginners can experiment with strategies to understand how strikes and widths affect outcomes. Advanced users can backtest by replaying historical data, analyzing how strategies performed in past markets.
Overall, MultiPrem+ transforms option trading from manual spreadsheet work into an interactive, visual experience, helping users spot opportunities, manage risks, and optimize returns with data-driven insights. For best results, combine it with external option pricing tools for precise Greeks, as the script uses approximate values.
Updated timestamp for alerts: `2025-09-06 13:50:00` (1:50 PM IST, September 06, 2025).
LUCEO ENVLUCEO ENV — 순차 분할매수 & 타임아웃·익절 관리 인디케이터
개요
LUCEO ENV는 중심선(SMA) 기준 하단 엔벨로프(L1/L2/L3)에 닿을 때 1·2·3차 순차 분할매수를 가정하고, 체결마다 평단을 재계산하여 **평단대비 목표익절(TP)**을 제시합니다. 각 단계 진입 후에는 **타임아웃(예: 20시간)**이 독립적으로 적용되어, 목표가 도달 전 일정 시간이 지나면 강제 종료(타임아웃 청산) 신호를 제공합니다.
동일 봉에서 L1·L2·L3가 동시에 충족되면 동시에 모두 체결될 수 있도록 설계되어 있습니다.
핵심 기능
엔벨로프 기반 3단계 분할매수: L1/L2/L3(%)에 도달 시 단계별 가중치(w1/w2/w3)만큼 매수 가정
동일 봉 다중 체결 허용: L1·L2·L3가 한 캔들에서 동시에 충족되어도 순차/동시 체결 처리
평단/익절 자동 갱신: 체결마다 평단가 및 익절 목표가(평단 × (1+TP%)) 재계산
단계별 타임아웃 종료: 1·2·3차 각각의 마지막 진입 시각으로부터 설정 시간 경과 시 “타임아웃 종료”
리셋 조건 단순화: 익절 또는 타임아웃 시에만 상태·평단·TP 전부 초기화 (중심선 돌파 리셋 없음)
알림(Alerts): 1차/2차/3차 매수, 익절, 타임아웃에 대한 즉시 알림 제공
---------------------------------------------------------------------------------------------------------------------
LUCEO ENV — Sequential Scale-In & Timeout / Take-Profit Management Indicator
Overview
LUCEO ENV assumes 1st/2nd/3rd staged entries when price touches the lower envelopes (L1/L2/L3) built from an SMA baseline. After each fill, it recalculates the weighted average entry and projects a take-profit relative to the average entry (TP). An independent timeout (e.g., 20 hours) starts after each stage is filled; if price fails to hit the target before the timer expires, a forced exit (timeout close) signal is generated.
If L1/L2/L3 are all touched within the same candle, the script allows all stages to fill in that bar.
Key Features
Envelope-based 3-stage scale-in: When price reaches L1/L2/L3 (%), assumes a buy with the corresponding weights (w1/w2/w3).
Same-bar multi-fills allowed: If L1–L3 are met within a single candle, sequential/simultaneous fills are handled.
Auto average/TP updates: After each fill, recalculates the average entry and updates the TP (Average × (1 + TP%)).
Stage-specific timeouts: From the last fill time of each stage; once elapsed, emits a “Timeout Exit”.
Simplified reset logic: Fully resets state/average/TP only on take-profit or timeout (no SMA-cross reset).
Alerts: Instant alerts for 1st/2nd/3rd buy, take-profit, and timeout.
Multiple Asset note_table Sections### Features
- **Expanded to 10 independent Sections**: Each Section has a title, content, and associated asset
- **Asset-based filtering**: Section only displays when the Section's asset name is empty or matches the current chart asset
- **Empty asset setting retained**: If Section asset name is left blank, that Section will display across all assets
- **Automatic display of current asset**: Current asset name is automatically shown in the header and footer
### Usage Instructions
1. Each Section can be assigned a specific asset name, such as "BTCUSDT", "ETHUSDT", etc.
2. A Section will only display when the current chart asset matches the asset specified for that Section
3. If you want a Section to display across all assets, simply leave the asset name blank for that Section
4. Each Section has independent title and content that can be customized as needed
5. When switching to different trading instruments, the indicator automatically displays notes relevant to the current instrument
TEMA Ribbon 9/13/15/21 – Smooth trend shifts, less lag, clearer“TEMA Ribbon 9/13/15/21 – Smooth trend shifts, less lag, clearer bias.”
Plots four Triple Exponential Moving Averages (9, 13, 15, 21) with shaded zones for quick trend visualization. Helps identify short- vs. medium-term momentum shifts with reduced lag compared to standard EMAs.
Recommended Usage:
Best applied on 5M–1H intraday charts for momentum and trend confirmation.
Use the 9 & 13 TEMA for short-term momentum shifts.
Use the 15 & 21 TEMA for medium-term bias.
Look for crossovers and alignment (all fast TEMAs above/below slow ones) to confirm bullish or bearish conditions.
Shaded zones help visualize when the short- and medium-term trends converge or diverge, signaling potential entry or exit points.
Combine the TEMA Ribbon with VWAP or session-based trading (e.g., London/New York Killzones) to filter signals.
Trade only in the direction of VWAP bias (price above VWAP → favor longs, below → favor shorts).
Within Killzones, use TEMA alignment (9/13 above 15/21 = bullish trend, or opposite for bearish) as confirmation before entries.
This reduces false signals and locks entries to periods of high liquidity and volatility, where TEMA shines.
//@version=5
indicator("TEMA 9/13/15/21", overlay=true)
// Quelle
src = close
// Funktion: TEMA
tema(src, length) =>
e1 = ta.ema(src, length)
e2 = ta.ema(e1, length)
e3 = ta.ema(e2, length)
3.0 * e1 - 3.0 * e2 + e3
// TEMA-Berechnung
t9 = tema(src, 9)
t13 = tema(src, 13)
t15 = tema(src, 15)
t21 = tema(src, 21)
// Plots
p9 = plot(t9, "TEMA 9", color=color.teal, linewidth=2)
p13 = plot(t13, "TEMA 13", color=color.aqua, linewidth=2)
p15 = plot(t15, "TEMA 15", color=color.orange, linewidth=2)
p21 = plot(t21, "TEMA 21", color=color.fuchsia, linewidth=2)
// Einfaches Fill (zwischen schnellstem und langsamstem)
fill(p9, p21, color=color.new(color.gray, 85))
fill(p13, p15, color=color.new(color.gray, 92))
Session Volume Profile HVNSession Volume Profile HVN - Comprehensive Indicator Description
Overview
The Session Volume Profile HVN is an advanced volume analysis indicator that provides traders with a visual representation of volume distribution across price levels within defined trading sessions. This powerful tool combines traditional volume profile analysis with High Volume Node (HVN) detection and Volume Point of Control (VPOC) tracking to help identify key support and resistance areas based on trading activity.
Key Features
1. Dynamic Volume Profile Visualization
Creates a comprehensive volume profile for each trading session (daily, weekly, or custom timeframes)
Displays volume distribution as a horizontal histogram, showing where the most trading activity occurred
Automatically scales to fit the price range of each session
Customizable number of price levels (rows) for granular or broad analysis
Profile extension capability to project volume areas into subsequent sessions
2. Volume Point of Control (VPOC)
Automatically identifies and marks the price level with the highest volume in each session
Displays VPOC as a prominent horizontal line that can extend into future sessions
Tracks multiple historical VPOCs with customizable extension limits
Optional date labels for easy identification of when each VPOC was formed
Particularly useful for identifying potential support/resistance levels based on peak trading activity
3. High Volume Node (HVN) Detection
Sophisticated algorithm that identifies significant volume clusters within the profile
Validates HVNs based on customizable strength criteria
Two display options:
Levels: Shows HVNs as horizontal lines (solid for VPOC, dotted for other nodes)
Areas: Displays HVNs as shaded boxes covering the full price range of the node
Color-coded based on price position relative to previous close:
Bullish color for HVNs below the previous close (potential support)
Bearish color for HVNs above the previous close (potential resistance)
4. Multi-Timeframe Analysis
Profile Timeframe: Defines the session boundaries (e.g., daily, weekly, monthly)
Resolution Timeframe: Uses lower timeframe data for more accurate volume distribution
Automatically adjusts to ensure compatibility with chart timeframe
Enables precise volume analysis even on higher timeframe charts
Practical Applications
Support and Resistance Identification
VPOCs and HVNs often act as significant support/resistance levels
Multiple confluent HVNs can indicate strong price zones
Historical VPOC levels provide context for potential price reactions
Trading Strategy Development
Entry/exit points near HVN boundaries
Stop loss placement beyond significant volume nodes
Trend continuation or reversal signals when price breaks through HVN areas
Market Structure Analysis
Identify accumulation/distribution zones
Recognize price acceptance or rejection at specific levels
Understand market participant behavior through volume concentration
Customization Options
Visual Settings
Adjustable colors for profile, VPOC lines, and HVN areas
Line width controls for better visibility
Label size options from tiny to huge
Profile transparency for chart clarity
Technical Parameters
Number of price levels (rows) for profile resolution
HVN detection strength for sensitivity adjustment
VPOC extension count for historical reference
Profile extension percentage for future projection
Display Preferences
Toggle VPOC visibility
Enable/disable HVN display
Choose between line or area representation for HVNs
Control date label display based on timeframe
Best Practices
Timeframe Selection: Choose profile timeframes that align with your trading style (day traders might use hourly profiles, swing traders daily or weekly)
HVN Strength Calibration: Adjust the HVN strength parameter based on market volatility and desired sensitivity
Multiple Timeframe Confirmation: Use different profile timeframes to identify confluence zones
Combination with Other Indicators: Enhance analysis by combining with trend indicators, momentum oscillators, or price action patterns
Performance Considerations
The indicator is optimized for smooth performance while maintaining accuracy through:
Efficient data processing algorithms
Smart memory management for historical data
Automatic cleanup of old visual elements
Scalable architecture supporting up to 500 visual elements
Ideal For
Day Traders: Identifying intraday support/resistance levels
Swing Traders: Finding multi-day accumulation zones
Position Traders: Analyzing longer-term volume structures
Market Analysts: Understanding market participant behavior
Algorithmic Traders: Incorporating volume-based levels into automated strategies
Advance Bradley Siderograph: [BlueprintResearch]🔭 Advanced Bradley Siderograph
What it is
A research indicator that computes Bradley’s terms with a private planetary ephemeris, then projects the curves forward on your chart. The ephemeris is my own library, built from scratch, with arc-second targets across modeled planets. The libraries supports both geocentric and heliocentric calculations; this model uses geocentric only. In addition to the core Bradley line, the script plots a derived rate-of-change (ROC) curve to surface acceleration, slowing, and zero crossings.
How it works
The indicator evaluates geocentric planetary relationships for each bar using my ephemeris, applies Bradley’s long-term, mid-term, and declination components, and combines them into a sidereal potential line. Aspect influence is controlled by an orb setting and component weights. Future projections are deterministic: the script computes planetary positions for bars ahead and carries the same component math into the forward window so you can see the curve beyond the last bar. The ROC curve is derived directly from the projected and historical Bradley line.
Key features
• Private planetary ephemeris with local computation and no network calls
• Future projections for all curves up to 500 bars ahead
• Rate-of-change line for acceleration, slowdowns, and inflection risk
• Component controls for long-term, mid-term, and declination with independent visibility and weights
• Display controls for colors, opacity, smoothing, and label size
Inputs
• Aspect orb (± degrees): 0 to 15
• Look-ahead bars: up to 500
• Component multipliers for long-term and ROC scaling
• Visibility toggles for sidereal potential, long-term, mid-term, declination, and ROC
• Text size: Auto, Tiny, Small, Normal, Large
Interpretation notes
This is a contextual barometer for planning and study. It does not generate trade signals. Combine the Bradley line and ROC with your own forecasting frameworks for timing and risk management.
Originality and provenance
This invite-only script runs on a planetary ephemeris library I built from the ground up. No portion of TradingView’s open-source Astrolib is used. There are no Astrolib functions, no imported third-party planetary libraries, and no external API calls. I can provide code-source evidence to TradingView moderators on request.
My open-source Bradley Siderograph on TradingView was released for education and backtesting and intentionally omitted forward projections. The number one user request has been to see the curve ahead. This advanced edition delivers that capability by projecting the Bradley line and components forward in time, up to 500 bars. To my knowledge, forward planetary projections of this kind are rare on the platform, and this edition was created specifically to provide that functionality while keeping the educational version separate and open.
Lineage
To my knowledge, I brought the first open-source Bradley Siderograph to TradingView since Donald A. Bradley’s 1947 work. This edition advances that effort with a private ephemeris, forward projections, and ROC.
Credits
Inspired by Donald A. Bradley’s planetary barometer.
3-Candle Swing Highs & Lows//@version=5
indicator("3-Candle Swing Highs & Lows", overlay=true, max_lines_count=1000)
// Inputs
highColor = input.color(color.red, "Swing High (Unbroken)")
highBreachCol = input.color(color.green, "Swing High (Breached)")
lowColor = input.color(color.blue, "Swing Low (Unbroken)")
lowBreachCol = input.color(color.orange, "Swing Low (Breached)")
// Arrays for storing lines and prices
var line highLines = array.new_line()
var float highPrices = array.new_float()
var line lowLines = array.new_line()
var float lowPrices = array.new_float()
// --- Swing High condition ---
// We check candle (the middle one) against candle and candle
isSwingHigh = high > high and high > high
// --- Swing Low condition ---
isSwingLow = low < low and low < low
// If swing high found (confirmed after bar closes)
if isSwingHigh
newHigh = line.new(bar_index - 1, high , bar_index, high , extend=extend.right, color=highColor, width=2)
array.push(highLines, newHigh)
array.push(highPrices, high )
// If swing low found (confirmed after bar closes)
if isSwingLow
newLow = line.new(bar_index - 1, low , bar_index, low , extend=extend.right, color=lowColor, width=2)
array.push(lowLines, newLow)
array.push(lowPrices, low )
// Update line colours for swing highs
for i = 0 to array.size(highLines) - 1
ln = array.get(highLines, i)
lvl = array.get(highPrices, i)
if close > lvl
line.set_color(ln, highBreachCol)
else
line.set_color(ln, highColor)
// Update line colours for swing lows
for i = 0 to array.size(lowLines) - 1
ln = array.get(lowLines, i)
lvl = array.get(lowPrices, i)
if close < lvl
line.set_color(ln, lowBreachCol)
else
line.set_color(ln, lowColor)
TRADE ORBIT:Dual MACD Histogram Background + Buy/SellDescription:
This indicator combines two MACD systems to provide clear trend, buy/sell signals, and identifies potential discount and premium zones for smarter entries and exits.
Features:
MACD #1 (100, 200, 50) – Trend & Background Coloring
Histogram > 0 → Green background (Bullish trend)
Histogram < 0 → Red background (Bearish trend)
MACD #2 (34, 144, 9) – Buy/Sell Signals
Buy Signal: Histogram crosses above zero and MACD #1 background is green
Sell Signal: Histogram crosses below zero and MACD #1 background is red
Signals are plotted as tiny labels directly on the chart
Discount & Premium Zones
Discount Zone: Price below MACD #1 slow EMA → highlighted in green
Premium Zone: Price above MACD #1 slow EMA → highlighted in red
Helps identify “cheap” (potential buy) and “expensive” (potential sell) areas relative to trend
Reference Plots (Optional)
MACD #1 & #2 histograms plotted as columns for visual confirmation
Usage:
Use MACD #1 background to identify the prevailing trend.
Wait for MACD #2 cross signals aligned with trend for buy/sell confirmation.
Discount and premium zones help time entries and exits more efficiently.
Ideal For:
Swing traders and position traders who want to combine trend-following signals with overbought/oversold zones.