MACD Crosses SYMO2020//@version=5
indicator("MACD Crosses", overlay=true)
// إعدادات MACD
short_length = input.int(12, "Fast Length")
long_length = input.int(26, "Slow Length")
signal_length = input.int(9, "Signal Length")
// حساب MACD
= ta.macd(close, short_length, long_length, signal_length)
// تحديد التقاطعات
bullish_cross = ta.crossover(macdLine, signalLine)
bearish_cross = ta.crossunder(macdLine, signalLine)
// رسم الأسهم
plotshape(bullish_cross, title="Bullish MACD Cross", location=location.belowbar, color=color.green, style=shape.labelup, text="↑", textcolor=color.white, size=size.small)
plotshape(bearish_cross, title="Bearish MACD Cross", location=location.abovebar, color=color.red, style=shape.labeldown, text="↓", textcolor=color.white, size=size.small)
// تنبيهات عند حدوث التقاطع
alertcondition(bullish_cross, title="Bullish MACD Cross", message="Bullish MACD crossover detected!")
alertcondition(bearish_cross, title="Bearish MACD Cross", message="Bearish MACD crossunder detected!")
אינדיקטורים ואסטרטגיות
Smart LineSmart Line Indicator
The Smart Line Indicator is an advanced trend-following tool designed to help traders identify market trends with improved accuracy and clarity. Built upon the traditional SuperTrend concept, it incorporates adaptive ATR-based calculations and customizable multipliers to reduce noise and enhance trend detection.
Key Features:
✅ Dynamic Trend Identification – Uses a smart calculation method to adjust to market volatility and detect strong trends.
✅ Buy & Sell Signals – Clearly displayed Buy (Green Arrow) and Sell (Red Arrow) signals help traders make better entry and exit decisions.
✅ Color-Coded Trend Lines – Green for uptrend, Red for downtrend, providing a visually intuitive way to track price movement.
✅ Noise Reduction – Helps eliminate false breakouts and minimizes whipsaws, making trend-following more reliable.
✅ Multi-Market Compatibility – Suitable for stocks, forex, commodities, and crypto trading across various timeframes.
The Smart Line Indicator is ideal for traders looking for a simple yet powerful way to track market trends, confirm breakouts, and improve trading precision.
Scripted by: Patange Rahul
Maintained by: Macrocosm Global
Coinbase 比特币溢价指数The "Coinbase Bitcoin Premium Index" indicator is designed to measure the price difference between Bitcoin on the Coinbase exchange and the Binance exchange, presented as a percentage premium. Here's a detailed explanation of its meaning and function:
Support & Resistance with RSI BreakoutsThe script is a TradingView Pine Script (v5) indicator that identifies support and resistance levels using RSI (Relative Strength Index) breakouts. Here’s a breakdown of what it does:
Features:
RSI Calculation:
The script calculates the 14-period RSI (default) using the closing price.
The user can modify the RSI period through an input setting.
Buy and Sell Signals:
A buy signal is triggered when RSI drops below 20 (indicating oversold conditions).
A sell signal is triggered when RSI rises above 80 (indicating overbought conditions).
Visual Representation:
Buy signals are marked with a green upward arrow (↑) below the price bars.
Sell signals are marked with a red downward arrow (↓) above the price bars.
The arrows help traders easily spot potential trade opportunities.
Usage:
This script is useful for traders looking to buy at oversold conditions and sell at overbought conditions based on RSI.
It works best when combined with other indicators or price action strategies to confirm signals.
Nasdaq Mega-Cap BreadthThis algo is essentially and advance decline for just the top stocks on the nasdaq - removing all the noise frm companies that do not have much weight behind them
kedo BANAS C5 op3mntini merupakan indikator khusus Binary Option, dengan menggunakan informasi dari candle sinyal diberi tanda bulat putih, dan kemudian panah informasi dari candle sinyal itu buy(biru)/ sell(merah) nya baru dipasang pada candle ke-4 setelah candle sinyal. lakukan open posisi 3 menit setelah panah biru/merah muncul.
pastikan untuk melakukan latihan sebelum menggunakan dana asli anda. semoga sukses.
//@version=5
indicator("Kedo BANAS C5 op3mnt", overlay=true)
// Menghitung body, sumbu atas, dan sumbu bawah
body = math.abs(close - open)
upper_wick = close > open ? high - close : high - open
lower_wick = close > open ? open - low : close - low
// Menentukan apakah candle bullish atau bearish
is_bullish = close > open
is_bearish = close < open
// Definisi tipe candle sinyal
type1 = is_bullish and body > 0 and upper_wick >= 0.51 * body and upper_wick <= 1.00 * body and lower_wick >= 0.10 * body and lower_wick <= 0.50 * body
type2 = is_bullish and body > 0 and lower_wick >= 0.51 * body and lower_wick <= 1.00 * body and upper_wick >= 0.10 * body and upper_wick <= 0.50 * body
type3 = is_bearish and body > 0 and upper_wick >= 0.51 * body and upper_wick <= 1.00 * body and lower_wick >= 0.10 * body and lower_wick <= 0.50 * body
type4 = is_bearish and body > 0 and lower_wick >= 0.51 * body and lower_wick <= 1.00 * body and upper_wick >= 0.10 * body and upper_wick <= 0.50 * body
// Menentukan tipe sinyal: 0 = tidak ada sinyal, 1 = buy, 2 = sell
signal_type = type1 or type4 ? 1 : type2 or type3 ? 2 : 0
// Menampilkan panah putih pada candle sinyal
plotshape(signal_type != 0, title="Signal", location=location.abovebar, color=color.white, style=shape.arrowdown)
// Menampilkan panah buy (biru) atau sell (merah) pada candle ke-4 setelah sinyal
plotshape(signal_type == 1, title="Buy", location=location.belowbar, color=color.blue, style=shape.arrowup)
plotshape(signal_type == 2, title="Sell", location=location.abovebar, color=color.red, style=shape.arrowdown)
// Menghitung SMA 4 dan SMA 13
sma4 = ta.sma(close, 4)
sma13 = ta.sma(close, 13)
// Menampilkan SMA di grafik
plot(sma4, title="SMA 4", color=color.red, linewidth=2)
plot(sma13, title="SMA 13", color=color.yellow, linewidth=2)
RSI Zone by-sohamMomentum-Based RSI Zones with Supertrend Confirmation :
This indicator enhances the traditional RSI by identifying momentum zones and overlaying them with Supertrend confirmation, providing clear visual cues for trend direction and momentum shifts.
Features:
Bullish Momentum Zone: When RSI crosses above 65, a bullish momentum zone begins and continues until RSI crosses below 35.
Bearish Momentum Zone: When RSI crosses below 35, a bearish momentum zone begins and continues until RSI crosses above 65.
RSI Color Reflects Supertrend: The RSI line changes color based on the Supertrend signal:
Green RSI Line when Supertrend is bullish.
Red RSI Line when Supertrend is bearish.
Usage:
Momentum traders can use this to spot extended bullish or bearish momentum periods, filtering out noise from normal RSI oscillations.
The Supertrend color overlay adds a trend filter, helping traders avoid false signals by aligning RSI signals with the broader trend.
Multi-Timeframe Short StrategyShort nifty with this code. Has moving averages as indicator with multi time frame MA being used.
اندیکاتور پیشرفته سیگنال یاب//@version=5
indicator("اندیکاتور پیشرفته سیگنال یاب", overlay=true)
// 1️⃣ شرط حجم معاملات (۲ برابر میانگین هفته گذشته)
var float avgVolume = ta.sma(volume, 5) // میانگین حجم ۵ روز (هفته)
bool volumeSignal = volume >= 2 * avgVolume
// 2️⃣ تشخیص واگرایی عمومی (Regular/Hidden)
f_checkDivergence(src, upper=70, lower=30) =>
rsi = ta.rsi(src, 14)
bearishDiv = ta.highest(high, 5) > ta.highest(high, 5) and ta.highest(rsi, 5) < ta.highest(rsi, 5)
bullishDiv = ta.lowest(low, 5) < ta.lowest(low, 5) and ta.lowest(rsi, 5) > ta.lowest(rsi, 5)
= f_checkDivergence(close)
// 3️⃣ تشخیص نزدیکی به اوردر بلاک سازمانی (سطح کلیدی)
var float orderBlock = ta.valuewhen(ta.highest(volume, 10), high, 0) // فرض: اوردر بلاک = بالاترین حجم ۱۰ روزه
bool nearOrderBlock = math.abs(close - orderBlock) <= 0.02 * orderBlock // حاشیه ۲٪
// 4️⃣ تشخیص واگرایی RSI اختصاصی
rsiDiv = ta.crossover(ta.rsi(close, 14), 70) or ta.crossunder(ta.rsi(close, 14), 30)
// 5️⃣ تشخیص نزدیکی به POC والیوم پروفایل (موج قبلی)
pocPrice = request.security(syminfo.tickerid, "D", ta.valuewhen(ta.highest(volume, 20), close, 0)) // POC در تایمفریم روزانه
bool nearPOC = math.abs(close - pocPrice) <= 0.015 * pocPrice // حاشیه ۱.۵٪
// ترکیب همه سیگنالها 📊
bool buySignal = volumeSignal and divBull and nearOrderBlock and rsiDiv and nearPOC
bool sellSignal = volumeSignal and divBear and nearOrderBlock and rsiDiv and nearPOC
// نمایش سیگنالها
plotshape(buySignal, style=shape.triangleup, color=color.green, size=size.small)
plotshape(sellSignal, style=shape.triangledown, color=color.red, size=size.small)
// نمایش توضیحات
label.new(bar_index, high, str.tostring(buySignal ? "سیگنال خرید" : sellSignal ? "سیگنال فروش" : ""),
color=buySignal ? color.green : sellSignal ? color.red : na)
Nolino Multi-Method Pivot PointsMulti-Method Pivot Points Indicator
This indicator allows traders to plot pivot points on their TradingView charts using multiple calculation methods, providing flexibility and adaptability to various trading strategies.
Key Features:
Calculation Methods: Choose from Classic, Woodie, Camarilla, Fibonacci, and TDMark methods.
Timeframe Selection: Select the timeframe for pivot calculation, including daily, weekly, monthly, or custom periods (e.g., "D", "W", "M", "240").
Visual Clarity: Pivot point (PP) is plotted in blue, support levels in red, and resistance levels in green for easy identification.
Real-Time Updates: Automatically updates based on the latest chart data.
How to Use:
Add the indicator to your chart.
In the settings, select your preferred calculation method and timeframe.
Observe the plotted lines to identify potential support and resistance levels.
This indicator is ideal for traders looking to incorporate pivot points into their technical analysis, offering a comprehensive tool with multiple options to suit different market conditions and personal preferences.
Note: For TDMark's method, the calculation uses the current period's open price in addition to the previous period's data, which might be new if you’re used to other methods.
Première chandelle 15 min ORB strategy simplified. The lines will automatically extended from 9h30 to 16h. You will not have to do anything else.
5-Min ORB with Volume SpikeThis indicator identifies Opening Range Breakouts (ORB) based on the high and low of the first 5 minutes of the trading day and confirms the breakout with a volume spike.
🔍 What It Does:
Automatically captures the Opening Range High and Low from 9:30 AM to 9:35 AM (configurable).
Plots green (high) and red (low) lines across the chart once the opening range is set.
Highlights long breakout signals when price breaks above the OR High with above-average volume.
Highlights short breakout signals when price breaks below the OR Low with above-average volume.
Volume confirmation is based on a customizable 20-period simple moving average (SMA) of volume.
⚙️ Best Used On:
5-minute or lower intraday charts (e.g., SPY, QQQ, futures, etc.)
Highly liquid, high-volatility instruments
U.S. equity market open (customizable for other sessions)
📈 Trading Edge: This strategy helps traders identify strong, momentum-driven breakouts early in the trading session — especially when confirmed by increased institutional activity (volume spike).
Combined Support & Resistance IndicatorsPivot Points Calculation:
The script calculates the Pivot Point as the average of the high price (high), low price (low), and closing price (close) of the current bar.
The Pivot Point is plotted on the chart as a red line.
Support and Resistance Levels:
The Support Level is calculated as the lowest price over the last lookback bars.
The Resistance Level is calculated as the highest price over the last lookback bars.
These levels are displayed on the chart using horizontal lines: green for support and red for resistance.
Momentum Indicators:
RSI (Relative Strength Index): A momentum oscillator calculated based on the closing price over the last 14 bars. It is plotted as a yellow line.
MACD (Moving Average Convergence Divergence): An indicator consisting of the MACD line (blue) and the signal line (orange). It is calculated based on the closing price.
Moving Averages:
SMA 20: A simple moving average over the last 20 bars. It is plotted as a green line.
SMA 50: A simple moving average over the last 50 bars. It is plotted as a red line.
Dynamic Levels Drawing:
Instead of using hline (which does not support dynamic values), the script uses line.new to draw dynamic support and resistance levels. These lines are updated on each bar.
Range Detection SuiteDeveloped with ChatGPT.
Colour shaded bands on the chart show bull (green), bear (red) and range (grey).
ayogetit Trades™ Ultimate AVWAPsVWAP Calculation : The indicator calculates the VWAP by summing the product of price and volume over a given period and dividing it by the total volume. This is done for each anchor point (Inception, ATH, ATL, and Custom Date).
Standard Deviation Bands : The bands are calculated based on the standard deviation of price from the VWAP. These bands expand and contract based on market volatility, providing dynamic support and resistance levels.
52-Week High/Low : The indicator scans the last 52 weeks (or equivalent bars for different timeframes) to identify the highest and lowest price points, which are then plotted on the chart.
ULTIMATIVES BEAST (LSTM + XGBoost + GARCH + Trend & Momentum)
🧠 THE BEAST – Autonomous Multi-Layer AI for Real-Time Trade Decisions
🔓 Unleash THE BEAST.
This is not an indicator.
This is an autonomous trading intelligence system – built to make decisions like a professional trader, but without emotion, hesitation, or fatigue.
THE BEAST is aware of its environment.
It doesn’t just calculate signals – it understands setups. It questions momentum. It evaluates risk. It adapts its aggression. It even warns you when it’s unsure.
💡 Think of BEAST as your own embedded AI analyst, running 24/7, evaluating every candle, every pattern, and every micro-shift in the market landscape.
🧠 What makes BEAST unique?
✅ Multi-layer AI Architecture:
CNN + LSTM + Wavelet Analysis + Volatility Clustering + GCN Correlation + Confidence Evaluation + Adaptive Threshold Logic.
This is not scripted logic – this is algorithmic intelligence.
✅ It Thinks Like a Trader:
It combines technical pattern structure with contextual awareness (volatility, trend health, risk/reward alignment).
It filters noise. It ignores setups when the risk outweighs the opportunity.
✅ It Doubts Itself – On Purpose:
BEAST monitors its own confidence in real time.
If it triggers a trade despite missing ideal alignment – it tells you directly:
⚠️ “Entry despite internal hesitation.”
✅ Dynamic Risk Logic:
The system tracks trend clusters, adjusts SuperTrend, evaluates ADX momentum, and even tightens or loosens EntryThresholds based on market strength.
✅ Live Diagnostics Table:
You see everything – confidence %, setup state, entry score, mismatch status, and more.
Nothing is hidden. BEAST explains its every move.
✅ Confirmed Entries Only:
With barstate.isconfirmed, BEAST acts only on closed candles – avoiding flickers or false alerts.
✅ Intelligent Silence:
BEAST doesn’t trigger just because conditions are “close.”
It waits. It stalks. It strikes when conviction crosses the line.
🧪 Core Engine Components:
🧠 LSTM Pattern Layer – for historical structure learning
🎯 CNN Short-Term Classifier – to detect directional micro-setups
🌊 Wavelet Signal Forecast – to confirm or reject entry timing
🔗 GCN Correlation Check – detects inter-market alignment
⚖️ Confidence Score + Entry Mismatch Logic – tells you if BEAST truly believes
📊 Dynamic Entry Thresholds – based on ADX & volatility regimes
🚀 SuperTrend with Adaptive ATR – adjusts based on risk zone
🔍 Setup Status: READY | WAITING | NEUTRAL – full signal context at a glance
⚠️ Mismatch Warning System – when BEAST enters against its own internal logic
📈 How to Use BEAST:
Apply it to any 1H chart (crypto, stocks, FX, indices)
Choose a correlated market for GCN (e.g., COINBASE:BTCUSD)
Monitor the table – trust only ✅ READY entries (unless you trade with beast-like instinct)
Use the Entry Mismatch Warning to gauge grey-zone trades
Let BEAST observe, wait, and strike for you
Don’t trade harder. Trade smarter – with the beast by your side
🔥 Final Words:
“BEAST doesn’t chase markets. It stalks them.”
It doesn’t react emotionally.
It doesn’t repaint.
It doesn’t guess.
It thinks. It doubts. It adapts. It acts.
Power Balance Bull&Bear - CoffeeKillerPower Balance Bull&Bear - CoffeeKiller Indicator Guide
Welcome traders! This guide will walk you through the Power Balance Bull&Bear indicator, a unique and powerful market analysis tool developed by CoffeeKiller that visualizes the ongoing battle between buyers and sellers in any market.
Core Concept: Buyers vs. Sellers
The foundation of this indicator rests on a simple yet profound concept: every price movement in the market represents a battle between buyers and sellers.
Positive Green Line: Buyer Power
- Represents cumulative buying pressure in the market
- Tracks positive directional movement over a specified period
- Rising positive line indicates increasing buying momentum
- Peaks in the positive line show moments of maximum buyer dominance
Negative Red Line: Seller Power
- Represents cumulative selling pressure in the market
- Tracks negative directional movement over a specified period
- Falling negative line indicates increasing selling momentum
- Troughs in the negative line show moments of maximum seller dominance
Master Line: Market Balance
- Calculated as the difference between positive and negative movements
- Above zero: buyers are in control
- Below zero: sellers are in control
- Peaks and troughs: moments of extreme buyer or seller dominance
Core Components
1. Directional Movement Analysis
- Cumulative measurement of price changes in both directions
- Normalization for consistent visualization
- Optional smoothing for clearer signals
- Custom box size for sensitivity control
2. Distance Measurement
- Calculation of separation between buyer and seller lines
- Convergence and divergence thresholds
- Dynamic fill coloring based on distance trends
- Distance trend visualization
3. Peak Detection System
- Identification of local maxima and minima in buyer/seller dominance
- Background highlighting of significant peaks
- Zero-line cross detection for trend changes
- Visual cues for market extremes
4. Trend Analysis
- Buyer/seller line crossovers for major trend signals
- Distance trending for momentum confirmation
- Status monitoring (Near, Far, Normal)
- Direction tracking for both buyer and seller lines
Main Features
Time Resolution Settings
- Normal mode: calculations based on chart timeframe
- Custom resolution mode: calculations based on specified timeframe
- Multi-timeframe analysis capabilities
- Flexible time projection options
Visual Elements
- Color-coded buyer and seller lines
- Dynamic fill coloring based on convergence/divergence
- Background highlighting for significant peaks
- Distance line with threshold markers
Signal Generation
- Buyer/seller crossover alerts
- Convergence/divergence notifications
- Peak detection signals
- Status change alerts
Analysis Table(I personally don't use the table it was coded to take longer signals to show strength or weakness in overall trend)
- Current distance measurement
- Distance trend indication
- Status monitoring (Near, Far, Normal)
- Buyer and seller line trend tracking
Trading Applications
1. Trend Identification
- Buyer line crossing above seller line: bullish trend beginning
- Seller line crossing above buyer line: bearish trend beginning
- Distance between lines: trend strength
- Distance trending: momentum confirmation
2. Reversal Detection
- Peak formation after extended trend: potential exhaustion
- Buyer/seller line convergence: decreasing trend strength
- Distance falling below convergence threshold: potential trend change
- Background highlighting: visual cue for significant peaks
3. Momentum Analysis
- Increasing distance: accelerating trend
- Decreasing distance: decelerating trend
- Distance above divergence threshold: strong momentum
- Distance below convergence threshold: weak momentum
4. Market Balance Assessment
- Buyer line trend: indicates strength/weakness of bulls
- Seller line trend: indicates strength/weakness of bears
- Master line position relative to zero: overall market bias
- Distance between lines: consensus or disagreement in the market
Optimization Guide
1. Period Settings
- Longer period: smoother signals, less noise, fewer false signals
- Shorter period: more responsive, captures minor moves, potentially more noise
- Default (20): balanced approach for most timeframes
2. Box Size Parameter
- Smaller box size: more sensitive to price changes
- Larger box size: less sensitive, focuses on major moves
- Default (0.001): calibrated for typical price ranges
3. Distance Thresholds
- Convergence threshold: determines when lines are considered "near"
- Divergence threshold: determines when lines are considered "far"
- Adjusting these based on volatility of the instrument
4. Color Customization
- Positive Green line: representing buyer strength
- Negative Red line: representing seller strength
- Diverging fill: when the gap between buyers and sellers is increasing
- Converging fill: when buyers and sellers are moving closer together
Best Practices
1. Signal Confirmation
- Wait for buyer/seller crossovers to confirm
- Look for background highlighting at peaks
- Check distance trends for momentum confirmation
- Use the analysis table for additional context
2. Timeframe Selection
- Lower timeframes: more signals, potential noise
- Higher timeframes: cleaner signals, less frequent
- Custom resolution: allows comparison across timeframes
- Consider using multiple timeframes for confirmation
3. Market Context
- Strong buyer line rising + weak seller line: very bullish
- Strong seller line falling + weak buyer line: very bearish
- Both lines rising: volatile uptrend
- Both lines falling: volatile downtrend
4. Combining with Other Indicators
- Use with trend indicators for confirmation
- Pair with oscillators for overbought/oversold conditions
- Combine with volume analysis for validation
- Consider support/resistance levels when peaks form
Advanced Trading Strategies
1. Buyer/Seller Balance Strategy
- Enter long when buyer line crosses above seller line
- Enter short when seller line crosses above buyer line
- Use distance trend for filtering quality of signals
- Exit when distance falls below convergence threshold
2. Peak Trading Strategy
- Identify significant peaks with background highlighting
- Look for consecutive lower peaks in buyer line for shorting opportunities
- Look for consecutive higher troughs in seller line for buying opportunities
- Use master line crosses through zero as confirmation
3. Convergence/Divergence Strategy
- Enter positions when distance exceeds divergence threshold (strong trend)
- Take partial profits when distance starts decreasing
- Exit fully when distance falls below convergence threshold
- Re-enter when a new trend forms with increasing distance
4. Line Trend Combination Strategy
- Strongest bullish signal: Rising buyer line + falling seller line + increasing distance
- Strongest bearish signal: Falling buyer line + rising seller line + increasing distance
- Potential reversal signal: Decreasing distance + peak formation + line trend change
- Continuation signal: Consistent buyer/seller dominance + increasing distance after consolidation
Practical Analysis Examples
Bullish Market Scenario
- Buyer line trends upward as buying pressure increases
- Seller line remains flat or trends downward as selling pressure decreases
- Distance between lines expands, showing divergence (strong trend)
- Positive background highlights appear at new peaks in buyer dominance
- Master line moves further above zero
Bearish Market Scenario
- Seller line trends downward as selling pressure increases
- Buyer line remains flat or trends downward as buying pressure decreases
- Distance between lines expands, showing divergence (strong trend)
- Negative background highlights appear at new troughs in seller dominance
- Master line moves further below zero
Consolidation Scenario
- Buyer and seller lines move sideways
- Distance between lines narrows, showing convergence
- Few or no new peak highlights appear
- Master line oscillates close to the zero line
- Analysis table shows "Stable" trends for both buyer and seller lines
Understanding Market Dynamics Through Power Balance
At its core, this indicator provides a unique lens to visualize the ongoing battle between bulls and bears:
1. **Relative Strength**: When the buyer line rises faster than the seller line, bulls are gaining strength relative to bears - a bullish signal. When the seller line falls faster than the buyer line, bears are dominating - a bearish signal.
2. **Market Consensus**: Convergence between lines suggests market participants are reaching consensus about price direction. Divergence suggests growing disagreement and potential for stronger moves.
3. **Exhaustion Signals**: Major peaks in either line that are highlighted by background colors suggest moments where one side (buyers or sellers) has reached maximum strength - often precursors to reversals.
4. **Trend Confirmation**: The status indicators (Near, Far, Normal) provide context about the current market phase, helping confirm whether a trend is establishing, continuing strongly, or potentially fading.
Remember:
- Combine signals from buyer/seller lines, distance measurements, and peak formations
- Use appropriate timeframe settings for your trading style
- Monitor the analysis table for additional context
- Consider market conditions and correlate with price action
This indicator works best when:
- Used as part of a comprehensive trading system
- Combined with proper risk management
- Applied with an understanding of current market conditions
- Signals are confirmed by price action and other indicators
**DISCLAIMER**: This indicator and its signals are intended solely for educational and informational purposes. They do not constitute financial advice. Trading involves significant risk of loss. Always conduct your own analysis and consult with financial professionals before making trading decisions.
Supertrend with Touch DetectionUsing the Supertrend indicator this also adds markers to the chart to signify situations where the price action touches the trend line and maintains the structure upon candle close.
Some think this is a useful tool for opening long and short positions, but I haven't seen an indicator that flags it.