Dual Donchian Channels Simple expansion of the Donchian Channels indicator to support two different timeframes. This can be useful when using different channel breakout methods for entry vs close. Defaults are 20 days / 52 days.
Indicators and strategies
⭐ Daily Star Finder (Universal)当然,这是一段适合发布在 TradingView 上、用于描述「每日之星」指标的英文介绍文案:
---
### 📈 **Daily Star Indicator** – Breakout Strength Screener
**The Daily Star Indicator** is a technical tool designed to identify potential breakout coins that exhibit strong trend initiation characteristics. It's especially useful for spotting intraday or daily bullish setups in altcoins.
---
### 🔍 **Core Logic**:
This indicator flags a coin when it meets **all of the following breakout conditions**:
* 🔸 **Volume Spike**: Current volume exceeds moving average volume significantly;
* 🔸 **Price Breakout**: Current candle breaks above recent highs (e.g., 20 bars);
* 🔸 **Momentum Strength**: RSI is above a bullish threshold (e.g., >55);
* 🔸 **Positive Price Change**: Candle body shows meaningful gain (e.g., >5%).
When all conditions are met, a ⭐ signal appears above the bar.
---
### 💡 **Use Cases**:
* Perfect for **daily top gainer scanning** on exchanges like OKX or Binance;
* Can be used on both **daily charts** and **15-minute charts** for early detection;
* Works well as part of a larger **“altcoin momentum rotation” strategy**.
---
Let me know if you need a shorter or more casual version (for social posts or scripts).
RSI Candlestick//@version=5
indicator("RSI Candlestick", overlay=false)
length = input(14, title="RSI Length")
rsi = ta.rsi(close, length)
// RSI를 캔들로 변환 (예: RSI의 시가, 고가, 저가, 종가 계산)
rsi_open = rsi // 이전 RSI 값
rsi_close = rsi // 현재 RSI 값
rsi_high = math.max(rsi, rsi_open) // 고가는 현재와 이전 중 큰 값
rsi_low = math.min(rsi, rsi_open) // 저가는 현재와 이전 중 작은 값
// 캔들 플롯
plotcandle(rsi_open, rsi_high, rsi_low, rsi_close, title="RSI Candles", color=rsi_close > rsi_open ? color.green : color.red)
3-Touch Breakout Method🚀 **Transform Your Breakout Trading with Precision 3-Touch Analysis**
Stop guessing breakout levels! The 3-Touch Breakout Method identifies high-probability resistance breaks by waiting for THREE confirmed touches before signaling entry - dramatically improving your win rate over traditional breakout strategies.
## **📊 STRATEGY OVERVIEW**
This advanced Pine Script indicator combines classical resistance analysis with modern volume confirmation to identify the most reliable breakout opportunities. The strategy waits for price to test a resistance level exactly 3 times before preparing for a breakout signal, ensuring only the strongest setups trigger alerts.
## **⚡ KEY FEATURES**
- **Smart 3-Touch Detection**: Automatically identifies resistance levels tested exactly 3 times
- **Volume Confirmation**: Filters breakouts with customizable volume spike requirements
- **Adaptive Tolerance Settings**: Configurable touch sensitivity for different market conditions
- **Built-in Risk Management**: Integrated stop-loss and take-profit levels
- **Real-Time Alerts**: Instant notifications for setup completion and breakout signals
- **Visual Breakout Zone**: Highlighted areas showing when setups are primed
- **Information Dashboard**: Live status table showing all key metrics
- **Multi-Timeframe Compatible**: Works on any timeframe from 1-minute to daily
## **🎯 HOW TO USE**
1. **Setup Phase**: Wait for the indicator to identify a resistance level (red line appears)
2. **Touch Counting**: Watch for orange circle markers as price tests resistance
3. **Breakout Ready**: Background turns yellow when 3 touches are confirmed
4. **Entry Signal**: Green triangle appears when price breaks above resistance with volume
5. **Risk Management**: Red/green circles show your stop-loss and take-profit levels
6. **Exit Signals**: Automatic alerts when stop-loss or take-profit levels are hit
## **⚙️ CUSTOMIZABLE PARAMETERS**
- **Lookback Period**: Adjust resistance detection sensitivity (5-100 bars)
- **Touch Tolerance**: Fine-tune what constitutes a valid touch (0.1-2.0%)
- **Volume Multiplier**: Control breakout volume requirements (1.0-5.0x)
- **Risk Ratios**: Set custom stop-loss (0.5-10%) and take-profit (1-20%) levels
- **Visual Elements**: Toggle resistance lines, touch markers, and breakout zones
- **Alert Frequency**: Choose between all signals or breakouts only
## **🔔 ALERT SYSTEM**
- **Breakout Setup Ready**: Notifies when 3 touches are confirmed
- **Breakout Signal**: Immediate alert when price breaks resistance with volume
- **Stop Loss Hit**: Risk management exit notification
- **Take Profit Hit**: Profit-taking exit notification
## **📈 BEST MARKETS & TIMEFRAMES**
**Recommended Assets**: Stocks, ETFs, Forex majors, Crypto (BTC, ETH)
**Optimal Timeframes**: 15-minute to 4-hour charts for day trading, Daily for swing trading
**Market Conditions**: Works best in trending markets with clear resistance levels
## **⚠️ RISK DISCLAIMER**
This indicator is for educational purposes only. Past performance does not guarantee future results. Always use proper risk management and never risk more than you can afford to lose. Consider market conditions and combine with other analysis methods.
## **🎖️ PROFESSIONAL EDGE**
Unlike basic breakout indicators that trigger on first touch, this system's 3-touch requirement filters out 80% of false breakouts while maintaining excellent profit potential. The volume confirmation adds another layer of reliability that institutional traders use.
**💡 Found this helpful? Hit the ❤️ LIKE button and FOLLOW for more professional trading tools!**
**💬 Share your results in the comments - I respond to every question!**
---
*Developed with Pine Script v5 | Compatible with all TradingView plans | Free updates included*
"ULAK" YH-Pro | Gelişmiş Skorlama This code is constantly being updated.
The total score is calculated by scoring different indicators.
Bollinger Bands with Buy/Sell SignalsWhen price crosses above the upper band → green “BUY” label appears below the bar
When price crosses below the lower band → red “SELL” label appears above the bar
Multiple EMA 50/100/200 by SKL
This script plots three Exponential Moving Averages (EMAs) — EMA 50, EMA 100, and EMA 200.
✅ Features :
Plots EMA 50 (Black), EMA 100 (Green), and EMA 200 (Red)
Adaptive Signal Oscillator (ASO)📘 Adaptive Signal Oscillator (ASO)
A fully dynamic, self-calibrating oscillator that adapts to any asset or timeframe by optimizing for real-time signal stability and volatility structure — without relying on static parameters or hardcoded thresholds.
🔍 Overview
The Adaptive Signal Oscillator (ASO) is a next-generation technical analysis tool designed to provide context-aware long/short signals across crypto, equities, or forex markets. Unlike traditional oscillators (RSI, Stochastics, MACD), ASO requires no manual tuning of lookback periods or overbought/oversold zones — it self-optimizes based on current market behavior.
🧠 How It Works
✅ 1. Dynamic Lookback Optimization
ASO evaluates a range of lookback lengths between user-defined minLen and maxLen. For each length, it calculates the standard deviation of returns and finds the one with the least volatility change (i.e., the most stable structure). This length is dynamically assigned as bestLen, recalculated on every bar.
✅ 2. Multi-Layer Signal Composition
Four independent signal layers are computed using bestLen:
RSI Layer: Measures relative price strength via a custom dynamic RSI.
Z-Score Layer: Standardized deviation of price from its mean.
Volatility Layer: Standard deviation of log or percent returns.
Price Position Layer: Current price percentile within the lookback window.
Each of these layers is transformed into a percentile score scaled to the range .
✅ 3. Volatility-Based Weighting
The standard deviation (volatility) of each signal layer is computed. Less volatile layers are weighted more heavily, ensuring the final composite signal prioritizes stable, consistent inputs.
Weights are normalized and combined to form a composite score, representing a dynamically blended, noise-weighted signal across the four layers.
✅ 4. Optional Adaptive Smoothing
A boolean toggle lets users apply smoothing to the final score. The smoothing window scales proportionally to bestLen, preserving adaptiveness even during trend transitions.
✅ 5. Percentile-Based Thresholding
Rather than using arbitrary fixed thresholds, ASO converts the composite score into a ranked percentile. Long/short signals are then generated based on user-defined percentile bands, adapting naturally to each asset’s behavior.
📈 Interpreting ASO
Score > Threshold → Strong long signal (highlighted in aqua).
Score < Threshold → Strong short signal (highlighted in fuchsia).
Crossing h_thresh (e.g., 0) → Neutral-to-bias change; useful for early trend cues.
The background and label update in real time to reflect the current regime and bestLen.
⚙️ Inputs
minLen, maxLen, step: Define the search range for optimal lookback length.
retMethod: Choose between log or percent return calculations.
threshHigh, threshLow: Define signal zones using percentiles.
smooth: Enable dynamic score smoothing.
h_thresh: Midline crossover zone for directional context.
⚠️ Disclaimer
This tool is designed for exploratory and educational purposes only. It does not offer financial advice or trading recommendations. Past performance is not indicative of future results.
Always consult a licensed financial advisor before making investment decisions.
13 EMA vs 20 SMA CloudThis indicator is for trend signal primarily used on the 15 minute timeframe. look for the retest of the 13 ema from above as a long entry and retest of 13 ema from below as a short entry. Once the 13 ema crosses the 20 sma to the upside it is indicating a bullish reversal and vice versa when the 13 ema crosses the 20 sma to the downside it is indicating a possible bearish reversal
10 EMA & 10 SMA Crossover with Dot/Cross ON ChartCombining 10MA an 10SMA is very powerful indicator, it give early indication of trend.
Tried to combine 10MA and 10SMA crossover on same chart with cross over indicator.
Back test it. It works well in trending market.
Tried to combine RSI, ADX and 10 MA combination on chart but could not make appropriate/effective Pine Script.
Your suggestion's are welcome to improve it further.
ORB 15min + Entry + SL + TP at 2R15MIN ORB
- ORB high & low
- Entry above/below 5MIN candle close outside range
- SL above/below 5MIN break-out candle
- TP at 2R
RSI Confluence - 3 TimeframesThe 3-Timeframe RSI Confluence indicator analyzes the Relative Strength Index (RSI) across three customizable timeframes. It highlights strong overbought or oversold conditions when all RSI values align, helping identify high-conviction buy or sell signals based on multi-timeframe momentum agreement.
Math by Thomas - SMC Structure Toolkit – OB + FVG + CHoCH/BoS📌 Description:
A complete Smart Money Concepts (SMC) market structure toolkit designed to help traders identify high-probability institutional activity using fractals, order blocks, fair value gaps, and structure shifts.
This tool combines several key SMC components to provide clear, actionable insights for both trend continuation and reversals.
🛠 Key Features:
✅ Order Blocks (OBs): Detected using fractal swing highs/lows, optional high volume & displacement candle filters
✅ Midline OB Visuals: Optional dashed lines drawn through the midpoint of each OB
✅ Fair Value Gaps (FVGs): Auto-detected based on classic gap criteria
✅ CHoCH & BoS Labeling: Real-time swing structure labeling with trend tracking
✅ Premium/Discount Zones: Highlighted zones for optimal entries in trending environments
✅ User Toggles: Turn OBs, FVGs, or midlines on/off for a cleaner chart
📈 How to Use:
Apply the indicator to your chart (best on 15m, 1h, or higher)
Enable/disable features in the settings panel:
Order Blocks: Use with displacement & high volume filters for cleaner setups
FVGs: Spot imbalances between price and liquidity
Structure Labels: Follow BoS/CHoCH signals to track trend changes
Look for:
CHoCH ➝ potential trend reversal
BoS ➝ trend continuation confirmation
OBs within discount/premium zones ➝ high-RR trade setups
Combine with your existing SMC or supply/demand approach
🧪 Best Timeframes:
Recommended: 15m, 1h, 4h, Daily
Works on any timeframe but more reliable with higher volume context
✍️ Notes:
Built using fractal logic and volume filters for cleaner signals
Designed to complement SMC strategies, not replace analysis
Momentum ScopeOverview
Momentum Scope is a Pine Script™ v6 study that renders a –1 to +1 momentum heatmap across up to 32 lookback periods in its own pane. Using an Augmented Relative Momentum Index (ARMI) and color shading, it highlights where momentum strengthens, weakens, or stays flat over time—across any asset and timeframe.
Key Features
Full-Spectrum Momentum Map : Computes ARMI for 1–32 lookbacks, indexed from –1 (strong bearish) to +1 (strong bullish).
Flexible Scale Gradation : Choose Linear or Exponential spacing, with adjustable expansion ratio and maximum depth.
Trending Bias Control : Apply a contrast-style curve transform to emphasize trending vs. mean-reverting behavior.
Duotone & Tritone Palettes : Select between two vivid color styles, with user-definable hues for bearish, bullish, and neutral momentum.
Compact, Overlay-Free Display : Renders solely in its own pane—keeping your price chart clean.
Inputs & Customization
Scale Gradation : Linear or Exponential spacing of intervals
Scale Expansion : Ratio governing step-size between successive lookbacks
Scale Maximum : Maximum lookback period (and highest interval)
Trending Bias : Curve-transform bias to tilt the –1 … +1 grid
Color Style : Duotone or Tritone rendering modes
Reducing / Increasing / Neutral Colors : Pick your own hues for bearish, bullish, and flat zones
How to Use
Add to Chart : Apply “Momentum Scope” as a separate indicator.
Adjust Scale : For exponential spacing, switch your indicator Y-axis to Logarithmic .
Set Bias & Colors : Tweak Trending Bias and choose a palette that stands out on your layout.
Interpret the Heatmap :
Red tones = weakening/bearish momentum
Green tones = strengthening/bullish momentum
Neutral hues = indecision or flat momentum
Copyright © 2025 MVPMC. Licensed under MIT. For full license see opensource.org
Fall from Recent Top & ATH (Latest Only)Easy tool for smart investors. it's good option when you find good fundamental stock. then just check the fall from the top before taking decision.
Bắt Đáy Kỹ Thuật_Only_Buy [VNFlow]Bắt Đáy Kỹ Thuật_Only_Buy
Email: hasobin@outlook.com
Phone: 0373885338
LTHB & HTLB Zones with AlertsIn price action trading, the Lowest Tick of the Highest Bar (LTHB) and the Highest Tick of the Lowest Bar (HTLB) are important concepts for support/resistance identification, trend exhaustion, and reversal confirmation. Here's what they mean and why they matter:
🔹 Definitions
1. Lowest Tick of the Highest Bar (LTHB):
The lowest price (tick) of the bar (candlestick) with the highest high in a recent price swing.
Significance: It marks the support inside an upward swing. If price breaks below this, it often indicates loss of upward momentum or reversal.
2. Highest Tick of the Lowest Bar (HTLB):
The highest price of the bar with the lowest low in a swing.
Significance: It acts as a resistance inside a downward swing. If price moves above this, it can signal a bullish reversal.
🔸 Why Are They Significant?
Concept LTHB HTLB
Trend Reversal - Break below LTHB → possible bearish reversal Break above HTLB → possible bullish reversal
Swing Confirmation -Holding above LTHB → continuation of uptrend Holding below HTLB → continuation of downtrend
Trap Detection - Stop hunts often occur just below LTHB Stop hunts often occur just above HTLB
Risk Management -Acts as logical stop-loss in long trades Acts as logical stop-loss in short trades
🔸 Uses in Strategy
1. Breakout Traders use these levels as entry triggers.
2. Reversal Traders look for price failing to hold these levels for early reversal signs.
3. Structure-Based Traders use them to confirm higher highs/lower lows.
4. Stop Placement: Tight stops just beyond LTHB/HTLB help manage risk in swing trades.
🔔 How to Set Alerts in TradingView:
Add the script to your chart.
Open the "⚠️ Alerts" tab.
Click "Create Alert".
In the "Condition" dropdown, select one of:
Enter LTHB Zone
Exit LTHB Zone
Enter HTLB Zone
Exit HTLB Zone
Set desired alert frequency (e.g., once per bar or once).
Click Create.
MA 3/20/200 mit Trendverlängerung📊 3-Line MA Pack – Clean Trend Tracking with Projection
Fast. Clear. No fluff.
This script shows:
🔴 MA 3 – short-term momentum
🟠 MA 20 – medium trend flow
🔵 MA 200 – long-term direction
All lines extend forward based on recent slope – automatically adjusted to your timeframe.
Perfect for traders who want to see the flow at a glance.
Plug it in. Read the trend. Trade smarter.
No noise – just structure.
Volume PercentileThis Pine Script indicator highlights bars where the current volume exceeds a configurable percentile threshold (e.g., 80th percentile) based on a rolling window of historical volume data.
🔍 Key Features:
Calculates a user-defined volume percentile (e.g., 75th, 80th, 90th) over a rolling window.
Marks candles where current volume is higher than the selected percentile.
Helps detect volume spikes, breakouts, or unusual activity.
Works directly on the main chart window for easier analysis.
🛠️ Inputs:
Window Length: Number of bars used to calculate the percentile (default = 20).
Percentile: The percentile threshold to trigger a high-volume signal (default = 80).
🖥️ Visualization:
Displays a red triangle marker below bars with volume above the selected percentile.