TrendZoneTrendZone - Fibonacci Trendline Indicator
TrendZone is a custom Pine Script indicator that automatically draws fibonacci-based trendlines between key pivot points on your chart.
Key Features:
3 Pivot Points: Set start point, major pivot (reversal), and end point
Dual Trendlines: First trendline (Point 1 → 2) and second trendline (Point 2 → 3)
Fibonacci Levels: Automatically draws 25%, 50%, and 100% fibonacci levels for each trendline
Auto Trend Detection: Automatically identifies bullish/bearish trends and adjusts colors accordingly
Customizable: Full control over colors, line styles, and widths for each fibonacci level
How it Works:
The indicator uses your selected pivot points to create two connected trendline systems. Point 2 serves as the major pivot where the first trend ends and the reversal begins. Each trendline system includes fibonacci retracement levels that extend to the right, helping identify potential support/resistance zones.
Use Cases:
Identifying trend reversals at key pivot points
Finding potential support/resistance levels using fibonacci projections
Visualizing market structure changes between different time periods
Planning entries/exits based on fibonacci trendline interactions
Perfect for traders who use fibonacci analysis combined with trend structure to identify high-probability trading zones.
Bandas e Canais
RAA Buy Sell[RanaAlgo]Overview
The RAA (RanaAlgo Adaptive Average) Buy Sell indicator is a trend-following tool that helps identify potential buy and sell signals based on price deviation from an adaptive moving average. It uses a combination of:
(Fractal Adaptive Moving Average) – Adjusts its sensitivity based on market volatility.
RAA Bands – Dynamic upper/lower bands calculated using a multiplier applied to the average deviation.
🔹 Key Features
Trend Identification
Bullish Trend →
Bearish Trend →
Signal Generation
Visual Enhancements
Colored candles (green for bullish, red for bearish).
Dynamic bands to visualize trend strength.
Alerts
Customizable buy/sell alerts for real-time notifications.
🔹 Usefulness in Trading
✅ Trend Confirmation – Helps confirm trend direction before entering trades.
✅ Reduces False Signals – Uses adaptive bands to filter out noise.
✅ Works Across Timeframes – Effective on intraday, swing, and long-term trading.
✅ Customizable – Adjustable length and multiplier for different market conditions.
🔹 Best Used For
Trend-following strategies (riding strong trends).
Breakout trading (entering when price confirms momentum).
Avoiding choppy markets (since the adaptive bands widen in volatility).
Eulers Exponential VolatilityRImplements an approximation to Patrik's Euler's Exponential for BTC
See X @GallantCryptoYT
KIORI - VWAP mit StdDev + 0,25 Bändern🎯 VWAP Enhanced - Professional Standard Deviation Bands with Precision Zones
This advanced VWAP indicator provides comprehensive price movement analysis through multi-layered standard deviation bands with additional 0.25 precision zones.
🔥 Key Features:
VWAP core line (blue) - Volume Weighted Average Price
3-tier standard deviation bands (1x, 2x, 3x) with individual color coding
0.25 precision zones around EVERY standard deviation line (above/below)
Complete band filling for better visual orientation
Flexible anchor periods (Session, Week, Month, Quarter, Year, Earnings, Dividends, Splits)
📊 Color Coding:
🔵 VWAP + 0.25 zones (Light Blue)
🟢 1x StdDev + 0.25 zones (Green/Light Green)
🟡 2x StdDev + 0.25 zones (Yellow/Light Yellow)
🔴 3x StdDev + 0.25 zones (Red/Light Red)
⚡ Trading Applications:
Support/Resistance at standard deviation lines
Precise entry/exit points through 0.25 zones
Volatility measurement across multiple levels
Mean-reversion strategies with clear target areas
Breakout detection when exceeding outer bands
🎨 Optimized for:
Day trading and scalping
Swing trading strategies
Volatility-based positioning
Multi-timeframe analysis
This indicator combines proven VWAP methodology with high-precision standard deviation zones, providing traders with a professional tool for precise market analysis and positioning
Fixed First Candle Levels by TF with UTCFixed First Candle Levels by TF with UTC
This script draws High and Low levels of the first candle of each day based on a custom timeframe selected by the user (15m, 30m, 1h, 2h, 4h) and adjusted for the UTC offset.
Features:
✅ Automatically detects the first candle of the day for the selected timeframe
✅ Plots horizontal lines from the start of the day to the end of the day
✅ Highlights the actual candle’s range using a translucent background box
✅ Works across all chart timeframes
✅ Ideal for identifying potential support/resistance zones based on early market structure
You can customize:
Target timeframe (independent from current chart TF)
UTC offset
Useful for intraday traders, breakout strategies, and pre-market planning.
Angel RsiRsi but on the chart itself all the settings are in Russian, convenient, understandable and most importantly useful to use
Growth Makers indicator//@version=5
indicator(title='Growth Makers indicator', overlay=true)
src = input(defval=close, title='Source')
per = input.int(defval=100, minval=1, title='Sampling Period')
mult = input.float(defval=3.0, minval=0.1, title='Range Multiplier')
smoothrng(x, t, m) =>
wper = t * 2 - 1
avrng = ta.ema(math.abs(x - x ), t)
smoothrng = ta.ema(avrng, wper) * m
smoothrng
smrng = smoothrng(src, per, mult)
rngfilt(x, r) =>
rngfilt = x
rngfilt := x > nz(rngfilt ) ? x - r < nz(rngfilt ) ? nz(rngfilt ) : x - r : x + r > nz(rngfilt ) ? nz(rngfilt ) : x + r
rngfilt
filt = rngfilt(src, smrng)
upward = 0.0
upward := filt > filt ? nz(upward ) + 1 : filt < filt ? 0 : nz(upward )
downward = 0.0
downward := filt < filt ? nz(downward ) + 1 : filt > filt ? 0 : nz(downward )
hband = filt + smrng
lband = filt - smrng
filtcolor = upward > 0 ? color.lime : downward > 0 ? color.red : color.orange
barcolor = src > filt and src > src and upward > 0 ? color.lime : src > filt and src < src and upward > 0 ? color.green : src < filt and src < src and downward > 0 ? color.red : src < filt and src > src and downward > 0 ? color.maroon : color.orange
filtplot = plot(filt, color=filtcolor, linewidth=3, title='Range Filter')
hbandplot = plot(hband, color=color.new(color.aqua, 100), title='High Target')
lbandplot = plot(lband, color=color.new(color.fuchsia, 100), title='Low Target')
fill(hbandplot, filtplot, color=color.new(color.aqua, 90), title='High Target Range')
fill(lbandplot, filtplot, color=color.new(color.fuchsia, 90), title='Low Target Range')
barcolor(barcolor)
longCond = bool(na)
shortCond = bool(na)
longCond := src > filt and src > src and upward > 0 or src > filt and src < src and upward > 0
shortCond := src < filt and src < src and downward > 0 or src < filt and src > src and downward > 0
CondIni = 0
CondIni := longCond ? 1 : shortCond ? -1 : CondIni
longCondition = longCond and CondIni == -1
shortCondition = shortCond and CondIni == 1
plotshape(longCondition, title='Buy Signal', text='Buy', textcolor=color.new(color.white, 0), style=shape.labelup, size=size.normal, location=location.belowbar, color=color.new(color.green, 0))
plotshape(shortCondition, title='Sell Signal', text='Sell', textcolor=color.new(color.white, 0), style=shape.labeldown, size=size.normal, location=location.abovebar, color=color.new(color.red, 0))
alertcondition(longCondition, title='Buy Alert', message='BUY')
alertcondition(longCondition, title='Buy Alert', message='BUY')
alertcondition(longCondition, title='Buy Alert', message='BUY')
alertcondition(shortCondition, title='Sell Alert', message='SELL')
TeeLek-BestPositionThis indicator is used to indicate the best buying and selling points.
This indicator will calculate the best buying points (blue) and selling points (orange). The working principle is that the blue point is the point where the RSI is Over Sold, the orange point is the point where the RSI is Over Bought. After that, we will use the Highest Line 100 and Lowest Line 100 to filter the points another layer. And because when Over Bought/Over Sold occurs, there will be continuous signals that are repeated, causing confusion. Therefore, there is a feature to leave a time frame. Set the default value to 24 hours. If a signal occurs, it will be left out.
The appropriate point for buying is:
The point where Over Sold occurs and Closes lower than the Lowest Line 100.
Leave a time frame for 24 hours before a new signal occurs.
The appropriate point for selling is:
The point where Over Bought occurs and Closes higher than the Highest Line 100.
Leave a time frame for 24 hours before a new signal occurs.
It helps us to gradually buy and collect/sell for profit easily without confusion.
อินดิเคเตอร์นี้ใช้ สำหรับบอกจุดซื้อจุดขายที่ดีที่สุด
อินดิเคเตอร์นี้ จะคำนวณจุดซื้อ (สีฟ้า) และจุดขาย (สีส้ม) ที่ดีที่สุดมาให้ โดยหลักการทำงาน คือ จุดสีฟ้า คือจุดที่ RSI Over Sold จุดสีส้ม คือจุดที่ RSI Over Bought หลังจากนั้นเราจะใช้เส้น Highest Line 100 และ Lowest Line 100 เพื่อกรองจุดอีกชั้นหนึ่ง และเนื่องจากเมื่อเกิด Over Bought/Over Sold แล้ว มันจะเกิดสัญญาณต่อเนื่องซ้ำๆ ทำให้สับสน จึงได้มีฟีเจอร์ในการเว้นระยะเวลา ตั้งค่าไว้เริ่มต้นที่ 24 ชั่วโมง ถ้าเกิดสัญญาณแล้วก็จะเว้นระยะออกไป
จุดที่เหมาะสมกับการซื้อ คือ
จุดที่เกิด Over Sold และ Close ต่ำกว่าเส้น Lowest Line 100
เว้นระยะไป 24 ชั่วโมงจึงจะเกิดสัญญาณใหม่อีกครั้ง
จุดที่เหมาะสมกับการขาย คือ
จุดที่เกิด Over Bought และ Close สูงกว่าเส้น Highest Line 100
เว้นระยะไป 24 ชั่วโมงจึงจะเกิดสัญญาณใหม่อีกครั้ง
ช่วยให้เราสามารถ ทยอยซื้อเก็บสะสม/ทยอยขายทำกำไร ได้ง่ายไม่สับสน
TeeLek-HedgingLineIf we are DCA some assets and it happens to be in a downtrend, sitting and waiting is the best way, but it is not easy to do. There are other ways that allow us to buy DCA and keep collecting more. While the market is falling, don't be depressed. The more you buy, the more it drops. Should you continue buying? Plus, if it goes back to an uptrend, you will also get extra profit. Let's go check it out.
ถ้าเรา DCA ทรัพย์สินอะไรซักอย่างนึงอยู่ แล้วมันดันเป็นขาลงพอดี จะนั่งรอเฉยๆ เป็นวิธีที่ดีที่สุด แต่ไม่ได้ทำกันได้ง่ายๆ นะ ยังมีวิธีอื่นอีก ที่ให้เราสามารถ ซื้อ DCA เก็บของเพิ่มได้เรื่อยๆ ระหว่างที่ตลาดร่วง ไม่จิตตก ยิ่งซื้อ ยิ่งลง จะซื้อต่อดีไหม? แถมถ้า กลับมาเป็นขาขึ้น ยังมีกำไรแถมให้ด้วยนะ ไปหาดูกัน
4H FX London Strategy - 377EMA + BB + Supertrendthis strategy uses the high and lows of the sessions especially the London session you BUY when the price is ABOVE THE 377EMA and SELL when it is BELLOW THE 377 EMA
N-Pattern Detector (Advanced Logic)Introduction
The N-Pattern Detector (Advanced Logic) is a powerful Pine Script-based tool designed to identify a specific price structure known as the "N-pattern", which often indicates trend continuation or potential breakout points in the market. This pattern combines zigzag pivot logic, retracement filters, volume confirmation, and trend alignment, offering high-probability trading signals.
It is ideal for traders who want to automate pattern detection while applying smart filters to reduce false signals in various markets — including stocks, forex, crypto, and indices.
What is the N-Pattern?
The N-pattern is a 3-leg price formation consisting of points A-B-C-D. It typically follows this structure:
Bullish N-Pattern:
A → Low Pivot
B → Higher High (Impulse)
C → Higher Low (Retracement)
D → Breakout above B (Confirmation)
Bearish N-Pattern:
A → High Pivot
B → Lower Low (Impulse)
C → Lower High (Retracement)
D → Breakdown below B (Confirmation)
The pattern essentially reflects a trend–pullback–breakout structure, making it suitable for continuation trades.
Key Features
1. Intelligent ZigZag Pivot Detection
Uses pivot highs/lows to define key swing points (A, B, C).
Adjustable ZigZag depth to control pattern sensitivity.
Filters noise and avoids false signals in volatile markets.
2. Retracement Validation
Validates the B→C leg as a proper pullback using Fibonacci-based thresholds.
User-defined min and max retracement settings (e.g., 38.2% to 78.6% of A→B leg).
3. Trend Filter via EMA
Filters patterns based on trend direction using a customizable EMA (e.g., 200 EMA).
Only detects bullish patterns above EMA and bearish patterns below EMA (optional).
4. Volume Confirmation
Ensures that impulse legs (A→B, C→D) are supported by stronger volume than the correction leg (B→C).
Adds another layer of confirmation and reliability to detected patterns.
5. Target Projections
Automatically draws 100% A→B projected target from point C.
Optional Fibonacci extensions at 1.272 and 1.618 levels for take-profit planning.
Visually plotted on the chart with colored dashed/dotted lines.
6. Clear Visuals & Labels
Connects all pattern points with colored lines.
Clearly labels points A, B, C, D on the chart.
Uses customizable colors for bullish and bearish patterns.
Includes real-time alerts when a valid pattern is detected.
How to Use It
Add to Chart
Apply the indicator to any chart and time frame. It works across all asset classes.
Adjust Inputs (Optional)
Set ZigZag Depth to control pivot detection sensitivity.
Define Min/Max Retracement levels to match your trading style.
Enable or disable Trend and Volume filters for cleaner signals.
Customize EMA length (default: 200) for trend validation.
Wait for Pattern Confirmation
The indicator constantly scans for valid N-patterns.
A pattern is confirmed only after point D forms (breakout or breakdown).
You’ll see the full pattern drawn with target levels.
Set Alerts
Alerts trigger automatically on confirmation of a bullish or bearish pattern.
You can customize these in TradingView’s alerts panel.
VWAP with Prev. Session BandsVWAP with Prev. Session Bands is an advanced indicator based on TradingView’s original VWAP. It adds configurable standard deviation or percentage-based bands, both for the current and previous session. You can anchor the VWAP to various timeframes or events (like Sessions, Weeks, Months, Earnings, etc.) and selectively show up to three bands.
The unique feature of this script is the ability to display the VWAP and bands from the previous session, helping traders visualize mean reversion levels or historical volatility ranges.
Built on top of the official TradingView VWAP implementation, this version provides enhanced flexibility and visual clarity for intraday and swing traders alike.
Dominancia USDT + USDC con fondoUSDT DOMINANCE + USDC DOMINANCE. It helps me identify future resistances and new BTC ATHs, as well as potential selling zones.
Bollinger Bottom + Middle Lines with Inline TextThis script visualizes key Bollinger Band levels based on two different SMAs (20 & 50 periods), with clear labeling and a smart price table.
🔸 Features:
Draws lower and middle Bollinger Band lines for both SMA(20) and SMA(50)
Inline text at the end of each line instead of default labels (cleaner view)
A dynamic table in the top-right corner, sorted from highest to lowest level
Color-coded rows:
▪️ Orange → BB20 Mid & BB20 Lower
▪️ Green → BB50 Mid & BB50 Lower
Auto-updates each bar without cluttering the chart
✅ Ideal for identifying technical accumulation zones
✅ Suitable for investors using scaling-in strategies or mean-reversion logic
3D Surface Modeling [PhenLabs]📊 3D Surface Modeling
Version: PineScript™ v6
📌 Description
The 3D Surface Modeling indicator revolutionizes technical analysis by generating three-dimensional visualizations of multiple technical indicators across various timeframes. This advanced analytical tool processes and renders complex indicator data through a sophisticated matrix-based calculation system, creating an intuitive 3D surface representation of market dynamics.
The indicator employs array-based computations to simultaneously analyze multiple instances of selected technical indicators, mapping their behavior patterns across different temporal dimensions. This unique approach enables traders to identify complex market patterns and relationships that may be invisible in traditional 2D charts.
🚀 Points of Innovation
Matrix-Based Computation Engine: Processes up to 500 concurrent indicator calculations in real-time
Dynamic 3D Rendering System: Creates depth perception through sophisticated line arrays and color gradients
Multi-Indicator Integration: Seamlessly combines VWAP, Hurst, RSI, Stochastic, CCI, MFI, and Fractal Dimension analyses
Adaptive Scaling Algorithm: Automatically adjusts visualization parameters based on indicator type and market conditions
🔧 Core Components
Indicator Processing Module: Handles real-time calculation of multiple technical indicators using array-based mathematics
3D Visualization Engine: Converts indicator data into three-dimensional surfaces using line arrays and color mapping
Dynamic Scaling System: Implements custom normalization algorithms for different indicator types
Color Gradient Generator: Creates depth perception through programmatic color transitions
🔥 Key Features
Multi-Indicator Support: Comprehensive analysis across seven different technical indicators
Customizable Visualization: User-defined color schemes and line width parameters
Real-time Processing: Continuous calculation and rendering of 3D surfaces
Cross-Timeframe Analysis: Simultaneous visualization of indicator behavior across multiple periods
🎨 Visualization
Surface Plot: Three-dimensional representation using up to 500 lines with dynamic color gradients
Depth Indicators: Color intensity variations showing indicator value magnitude
Pattern Recognition: Visual identification of market structures across multiple timeframes
📖 Usage Guidelines
Indicator Selection
Type: VWAP, Hurst, RSI, Stochastic, CCI, MFI, Fractal Dimension
Default: VWAP
Starting Length: Minimum 5 periods
Default: 10
Step Size: Interval between calculations
Range: 1-10
Visualization Parameters
Color Scheme: Green, Red, Blue options
Line Width: 1-5 pixels
Surface Resolution: Up to 500 lines
✅ Best Use Cases
Multi-timeframe market analysis
Pattern recognition across different technical indicators
Trend strength assessment through 3D visualization
Market behavior study across multiple periods
⚠️ Limitations
High computational resource requirements
Maximum 500 line restriction
Requires substantial historical data
Complex visualization learning curve
🔬 How It Works
1. Data Processing:
Calculates selected indicator values across multiple timeframes
Stores results in multi-dimensional arrays
Applies custom scaling algorithms
2. Visualization Generation:
Creates line arrays for 3D surface representation
Applies color gradients based on value magnitude
Renders real-time updates to surface plot
3. Display Integration:
Synchronizes with chart timeframe
Updates surface plot dynamically
Maintains visual consistency across updates
🌟 Credits:
Inspired by LonesomeTheBlue (modified for multiple indicator types with scaling fixes and additional unique mappings)
💡 Note:
Optimal performance requires sufficient computing resources and historical data. Users should start with default settings and gradually adjust parameters based on their analysis requirements and system capabilities.
GOLD 4H - 355 EMA + Supertrendwhen trading this strategy you only BUY when the current Market Price is Above the 355 EMA and only short or SELL the the current Market Price is Bellow the 355 EMA as we fellow the Super tend direction as well
Dual Donchian Channels + Death CrossDual Donchain Channels with a 50/200 day angel/death cross indicator built in. Intended to be used on the daily time frame.
RSI with Background Colorhis script implements a trading strategy based on an EMA (Exponential Moving Average) crossover, confirmed by the RSI (Relative Strength Index), and includes a built-in stop-loss and take-profit.
Crypto Sentiment + Correlation📊 Crypto Sentiment + Correlation Indicator
Key Features:
- 🔄 Sentiment Aggregation: Measures price momentum vs moving averages across BTC, LTC, ETH, XRP, and SOL.
- ⚖️ Flexible Weighting Options: Choose between equal weight, market cap weighting, or volume-driven sentiment for tailored insights.
- 📈 Visual Candles & Background Signals: Uses sentiment-based candle overlays and color-coded signals to indicate potential shifts or divergence.
- 📊 BTC Correlation Map: Tracks correlation strength and direction between combined sentiment and Bitcoin’s price movement.
- 🧠 Technical Overlays: EMA and Bollinger Bands help contextualize sentiment trends with traditional indicators.
- 🎨 Stylized SMA Layers: Adds intuitive multi-format SMA visualization with area fill and stepped markers for easy spotting of trend shifts.
Why Use It:
Whether you're swing trading or refining entries on crypto positions, this tool gives you a snapshot of what the “mood” across major coins looks like—are the markets in harmony or diverging from BTC’s path? Use it to stay ahead of trend reversals, spot overextended rallies, or confirm bullish sentiment before you jump in.
Linear Regression Channel – shiftableThis is the built-in Linear Regression Channel with an extra parameter to shift it back N days.
ZYTX CCI SuperTrendZYTX CCI SuperTrend
The definitive integration of CCI and SuperTrend trend-following indicators, delivering exemplary performance in automated trading bots.
ZYTX SuperTrend V1ZYTX SuperTrend V1 Indicator
Multi-strategy intelligent rebalancing with >95% win rate
Enables 24/7 automated trading
BBOB: Breaker + Order + Overlapping Blocks + Buy/Sell💎 Smart OBX Premium – Order Block, Breaker Block & Overlap Zones
Unleash the power of institutional trading levels with Smart OBX Premium, a next-generation indicator designed to identify Order Blocks, Breaker Blocks, and Overlap Zones with pinpoint precision and stunning visuals.
🔷 Key Features:
✅ Order Blocks (OB)
Detects bullish and bearish order blocks from smart money footprints. Zones are colored elegantly with clear, labeled boxes for instant recognition.
✅ Breaker Blocks (BB)
Identifies failed OBs that act as strong reversal or continuation zones. Visually distinct with premium-quality styling and easy-to-read tags.
✅ Overlap Zones
Highlights powerful confluence areas where OB and BB intersect — the most high-probability reaction zones. These are shaded uniquely with gold gradient tones for instant visual edge.
✅ Zone Labels & Reactions
All blocks are clearly labeled on chart with names like:
• 🔵 Bullish OB
• 🔴 Bearish OB
• 🟢 Bullish Breaker
• 🟠 Bearish Breaker
• ⭐ Overlap Zone
✅ Professional Design
Ultra-clear visuals with soft shadows, rounded edges, transparent layers, and precise alignment. Perfect for content creators and serious traders.
✅ Buy/Sell Signal Points
Automatic arrows or labels appear above/below candles whenever price reacts strongly to OB/BB/Overlap zones.
🧠 Smart Money Concept-Based
Built entirely on institutional price behavior — the same logic used by banks, hedge funds, and top-level smart money traders.