Bitcoin HODL Indicator// Bitcoin Buy & Hold Indicator (HODL Signal)
//@version=5
indicator("Bitcoin HODL Indicator", overlay=true)
// Moving Averages
ma_200w = ta.sma(close, 1400) // Approximate 200-week MA for daily chart
plot(ma_200w, color=color.blue, linewidth=2, title="200WMA")
// MVRV Z-Score Approximation (Using RSI as a Proxy for Simplicity)
mvrv = ta.rsi(close, 90)
low_mvrv = 25 // Adjust based on BTC history
high_mvrv = 70 // Overbought zone
// Pi Cycle Bottom Approximation
ma_111 = ta.sma(close, 111)
ma_350x2 = ta.sma(close, 350) * 2
// Buy Signal Logic
buy_signal = ta.crossover(close, ma_200w) or (mvrv < low_mvrv and ta.crossover(ma_111, ma_350x2))
// Plot Buy Signals
plotshape(buy_signal, location=location.belowbar, color=color.green, style=shape.labelup, size=size.small, title="BUY Signal")
// Alerts
alertcondition(buy_signal, title="Bitcoin Buy Signal", message="Bitcoin is in an accumulation zone! 🚀")
// Background Color for Accumulation Zones
bgcolor(buy_signal ? color.green : na, transp=90)
Pattern grafici
RSI + EMA + WMA + SMC + FVG + CVDĐây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn. nbt
RSI + EMA + WMA + SMC + FVG + CVDĐây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn
FractalsThis indicator is based on the classic Williams Fractals concept. It scans the price chart to identify potential reversal points by looking for fractal patterns in the highs and lows. Here's what it does:
Customizable Periods: You can set the number of bars (using the n input) that the indicator examines on both sides of a central bar.
Up Fractals: An up fractal is detected when the current bar's high is higher than the highs of the preceding n bars, and it is also confirmed by additional conditions checking the following bars.
Down Fractals: Similarly, a down fractal is identified when the current bar's low is lower than the lows of the preceding n bars, with further validation from subsequent bars.
Visual Markers: Once identified, up fractals are marked by a small upward-pointing triangle above the bar, while down fractals are marked by a small downward-pointing triangle below the bar. The shapes are kept minimal (using size.auto) to avoid cluttering the chart.
This setup helps traders spot potential support and resistance areas, providing visual cues for possible trend reversals.
RSI + EMA + WMA + SMC + FVG + CVDĐây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn
Candle Range-BarsThe Candle Range Bars indicator visually represents the range of each candlestick in either pips or ticks, depending on your preference. It plots vertical bars to show the size of each candle, making it easy to identify periods of high or low volatility. The indicator also displays the exact range value (in pips or ticks) above each bar, with customizable text size and color for better readability.
Key Features
Pips or Ticks Mode:
Choose to display the candle range in pips (for forex traders) or ticks (for other instruments).
Customizable Text:
Adjust the text color and text size (Tiny, Small, Normal, Large) to suit your chart style.
Clear Visuals:
Bars are colored green for bullish candles and red for bearish candles, making it easy to distinguish between up and down moves.
Flexible Use:
Ideal for analyzing volatility, identifying consolidation zones, and comparing candle ranges across different timeframes.
How to Use:
Add the indicator to your chart.
Customize the settings:
Choose between pips or ticks.
Adjust the text color and text size for the range values.
Observe the bars and their corresponding range values to analyze market volatility.
Why Use This Indicator?:
Simplify Range Analysis: Quickly see the size of each candlestick without manual calculations.
Customizable: Tailor the appearance to match your trading style.
Versatile: Works on any instrument and timeframe.
Settings:
Show Pips (Otherwise Ticks): Toggle between pips and ticks mode.
Text Color: Choose the color of the range value text.
Text Size: Select the size of the range value text (Tiny, Small, Normal, Large).
Ideal For:
Forex, stocks, commodities, and crypto traders.
Traders who focus on volatility and range analysis.
Anyone looking for a clear and customizable way to visualize candle ranges.
This description highlights the key features, benefits, and usability of your indicator, making it appealing to other TradingView members. Let me know if you'd like to tweak it further! 😊
RSI + EMA + WMA + SMC + FVG + CVD(dinhquoctuan)Đây là một chỉ báo kết hợp RSI, EMA, WMA, SMC, FVG và CVD để xác định tín hiệu giao dịch chính xác hơn
Range Candle IndicatorCet indicateur sert à identifier et tracer la première bougie qui délimite une plage ("range") de trading. Voici un résumé de ses fonctionnalités :
- **Définition du Range :**
Il sélectionne la première bougie (peu importe le jour ou l'heure) et trace ses niveaux hauts, bas et son niveau médian (50%). Cette bougie sert de référence tant qu'aucune bougie ne clôture en dehors de ces niveaux.
- **Mise à jour Automatique :**
Dès qu'une bougie clôture au-dessus ou en-dessous du range établi, la bougie en cours devient la nouvelle bougie-range et ses niveaux sont tracés.
- **Signaux de Retournement :**
L'indicateur peut afficher des signaux (triangles) lorsque le prix teste l'une des limites du range via une mèche, puis clôture à l'intérieur. Cela peut indiquer un retournement potentiel.
- **Applicabilité Multi-Timeframes :**
Il fonctionne sur n'importe quel timeframe (Daily, 4H, etc.), sans se limiter à un jour ou une heure spécifique.
En résumé, cet indicateur aide à repérer visuellement des zones de support/résistance définies par une bougie clé et à détecter des signaux potentiels d'inversion de tendance basés sur les comportements de clôture par rapport à ce range.
Lit Entry Helper - Entry ConfirmationLit Entry Helper Equals this. take any entry confirmation before Buy or Sell
Supertrend with 1% Target and 1% StoplossSupertrend Calculation: The Supertrend indicator is calculated using the Average True Range (ATR) and a factor. The factor and ATR length can be adjusted in the inputs.
Long and Short Conditions: The strategy enters a long position when the price crosses above the Supertrend line and a short position when the price crosses below it.
Target and Stop Loss: The strategy places a 1% target and a 1% stop loss for both long and short positions.
Visuals: The stop loss and take profit levels are plotted on the chart for better visibility.
MH Strategy – Hull Moving Average-Based Trading StrategyThe MH Strategy is a TradingView strategy that leverages the Hull Moving Average (HullMA) to generate precise buy and sell signals. This strategy is designed to identify trend reversals and momentum shifts using a combination of weighted moving averages and HullMA-based calculations.
Key Features:
✅ Hull Moving Average-Based Signals – Uses a modified HullMA calculation to detect trend changes.
✅ Dynamic Support & Resistance – The strategy plots adaptive levels that act as dynamic entry and exit points.
✅ Trend-Based Entries & Exits – Generates long (buy) signals when the price moves above the calculated Hull retraction level and short (sell) signals when the price moves below it.
✅ Automated Trade Execution – Integrates with TradingView’s strategy function to open and close trades automatically based on signal conditions.
✅ Customizable Parameters – Allows users to adjust the HullMA period and price data source to optimize performance across different markets and timeframes.
How It Works:
HullMA Calculation: The strategy calculates a smoothed Hull Moving Average (HullMA) using a two-step weighted moving average method.
Trend Confirmation: The difference between the HullMA values helps determine trend direction and retraction levels.
Entry Conditions:
A buy signal is generated when the price is above the retraction level, and the previous price confirms the trend.
A sell signal is triggered when the price is below the retraction level with trend confirmation.
Exit Conditions:
The strategy closes long trades when the price drops below a threshold.
It closes short trades when the price rises above a set level.
Ideal Use Cases:
🔹 Swing & trend traders looking for momentum-based entries and exits.
🔹 Traders aiming for reduced lag compared to traditional moving averages.
🔹 Markets with strong price trends, such as forex, stocks, and crypto.
Try the MH Strategy and enhance your trading decisions with a refined HullMA-based trend detection system! 🚀
Nihad indicator 3000This indicator uses the crossover of the 20-EMA (short) and the 50-EMA (long) along with the RSI to generate buy and sell signals. A **buy signal** occurs when the 20-EMA crosses above the 50-EMA and the RSI is above 50. A **sell signal** appears when the 20-EMA crosses below the 50-EMA and the RSI is below 50. The indicator displays the EMAs, RSI, and signal markers on the chart, with background colors indicating the trend. Alerts can be set for both signals.
SMA10 & SMA50 Crossover Strategy//@version=5
strategy("SMA10 & SMA50 Crossover Strategy", overlay=true, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
// Calculate the SMAs
sma10 = ta.sma(close, 10)
sma50 = ta.sma(close, 50)
// Plot the SMAs on the chart
plot(sma10, color=color.blue, title="SMA10")
plot(sma50, color=color.red, title="SMA50")
// Define the crossover conditions
// Buy when SMA10 becomes >= SMA50 and the previous bar had SMA10 < SMA50
buySignal = (sma10 >= sma50) and (sma10 < sma50 )
// Sell when SMA10 becomes <= SMA50 and the previous bar had SMA10 > sma50
sellSignal = (sma10 <= sma50) and (sma10 > sma50 )
// Generate entries based on the conditions
if buySignal
strategy.entry("Long", strategy.long)
if sellSignal
strategy.entry("Short", strategy.short)
RSI Divergence with Trendline wavywade3Settings
RSI Length: Number of bars for RSI calculation. (Default: 14)
RSI Source: Price source for RSI (close, open, high, low).
Overbought / Oversold Levels: For visual reference only (70/30 by default).
Take Profit %: Percentage gain at which the strategy will close the position. (Default: 5%)
Stop Loss %: (Optional) Percentage drop at which the strategy will stop out. (Default: 0%, i.e., disabled.)
Best Practices
Choose an Appropriate Timeframe
Depending on your trading style (day trading vs. swing trading), divergences might appear more or less frequently. You may get more whipsaws on lower timeframes, so always backtest on multiple timeframes before going live.
Adjust Pivots
The number of bars used to confirm a pivot (in the script it’s set around 2–5 bars) can significantly affect the sensitivity. You can tweak those settings if you want fewer or more frequent divergences.
Combine with Other Tools
Divergences can be powerful signals, but they’re not foolproof. This script works best if combined with other confluences such as support/resistance lines, volume analysis, or higher-timeframe trends.
Paper Trade & Backtest
Always test any new strategy in a demo environment or with TradingView’s backtesting to see its historical performance, then forward-test in live market conditions with minimal risk.
Risk Management
Since markets can move quickly, consider using the optional stop-loss parameter or external stop management. The hidden divergence exit can help reduce drawdowns, but no exit strategy is perfect.
In Summary
If you’re looking to trade RSI divergences automatically, this strategy simplifies the process by drawing and extending RSI trendlines, confirming entries on their break, and exiting trades at a fixed profit target or upon detecting a hidden divergence in the opposite direction. Customize the RSI settings, take-profit percentage, and (optionally) a stop loss to fit your preferences. Always remember to backtest thoroughly and employ sound risk management.
Ultimate Multi-Factor Profitable Indicator suraj paswan69This Pine Script is designed to combine multiple trading concepts into a single TradingView indicator. It currently integrates Relative Strength Index (RSI) for momentum analysis and provides a framework to incorporate additional strategies like liquidity sweeps, fair value gaps (FVGs), order flow analysis, and other confluences for profitable trading decisions.
Electronic Trading Hours Session/CandlesThis indicator visually distinguishes the electronic trading session, spanning from the prior day's close (e.g., 5:00 PM EST) through the overnight period until the next day's opening bell (e.g., 9:30 AM EST).
It can be customized to highlight this period with a shaded zone or colored candles depending on the trader’s preference.
The overnight levels that create the opening range gap often act as critical zones of liquidity.
The indicator provides a clear visual cue of potential price magnets that smart money (institutional traders) may target during the opening bell session to trigger liquidity sweeps.
Sholzy Algo buy Indicator Sholzy Algo Indicator using the 15min.
Indicator works best on XAUUSD, Use it in line with your primary trading analysis and strategy as it is only an advise. Be cautious of your account, plotting it on a 1:3 RR.
Daily and Weekly Divider / Separator, ICTReal Candle Daily & Weekly Divider.
Feel free to make a request!
AI Quantum Reversal MACD DadsInvestment How to Read This MACD-Style Quantum Indicator
✔ Green Histogram Bars = Bullish Bottom Reversal (BUY)
✔ Red Histogram Bars = Strong Downtrend Momentum (SELL or Avoid)
✔ Quantum Line (Blue) Crosses Above Signal Line (Orange) = Buy Setup
✔ Quantum Line (Blue) Crosses Below Signal Line (Orange) = Sell Setup
🔹 Best Timeframes for Swing Trading
🏆 4H → Captures Medium-Term Swings
🏆 1D → Best for Swing Trade Reversals
🏆 1W → Strongest Long-Term Trend Reversals
🔥 This is now a MACD-style indicator with AI-driven bottom detection for high-probability reversals.
🔥 Much easier to read while keeping quantum-level accuracy.
🔥 Best used on 4H, 1D, and 1W timeframes for big trade setups.
🔹 Next Steps for You:
✅ Add it to TradingView and test it on 4H, 1D, and 1W charts.
✅ Use alerts so you never miss a perfect bottom reversal.
✅ Fine-tune settings if needed (adjust EMA lengths for different market conditions).
✅ Stack profits & retire early. 😎
Enhanced Doji Candle StrategyYour trading strategy is a Doji Candlestick Reversal Strategy designed to identify potential market reversals using Doji candlestick patterns. These candles indicate indecision in the market, and when detected, your strategy uses a Simple Moving Average (SMA) with a short period of 20 to confirm the overall market trend. If the price is above the SMA, the trend is considered bullish; if it's below, the trend is bearish.
Once a Doji is detected, the strategy waits for one or two consecutive confirmation candles that align with the market trend. For a bullish confirmation, the candles must close higher than their opening price without significant bottom wicks. Conversely, for a bearish confirmation, the candles must close lower without noticeable top wicks. When these conditions are met, a trade is entered at the market price.
The risk management aspect of your strategy is clearly defined. A stop loss is automatically placed at the nearest recent swing high or low, with a tighter distance of 5 pips to allow for more trading opportunities. A take-profit level is set using a 2:1 reward-to-risk ratio, meaning the potential reward is twice the size of the risk on each trade.
Additionally, the strategy incorporates an early exit mechanism. If a reversal Doji forms in the opposite direction of your trade, the position is closed immediately to minimize losses. This strategy has been optimized to increase trade frequency by loosening the strictness of Doji detection and confirmation conditions while still maintaining sound risk management principles.
The strategy is coded in Pine Script for use on TradingView and uses built-in indicators like the SMA for trend detection. You also have flexible parameters to adjust risk levels, take-profit targets, and stop-loss placements, allowing you to tailor the strategy to different market conditions.
Fortuna Trend Predictor🔹 Основные функции скрипта
Определение тренда
Рассчитывает разницу между короткой EMA (20) и длинной EMA (50).
Нормализует её через ATR, чтобы оценить относительную силу тренда (trendStrength).
Расчёт индикатора ADX (Average Directional Index)
Определяет силу тренда, рассчитывая положительное (plusDI) и отрицательное (minusDI) движение.
Вычисляет ADX, усредняя DX (Directional Index), который показывает разницу между plusDI и minusDI.
Фильтр объёма
Определяет средний объём за последние 20 свечей и проверяет, превышает ли текущий объём этот уровень.
Фильтр волатильности
Проверяет, превышает ли текущий ATR его скользящее среднее, умноженное на atrThreshold (1.5 по умолчанию).
Если да, значит рынок находится в состоянии высокой волатильности.
Вероятность направления движения
Рассчитывает probability, которая показывает, насколько сильным является тренд.
Если значение probability больше 50 — вероятен восходящий тренд.
Если меньше 50 — вероятен нисходящий тренд.
📊 Что рисует этот индикатор?
✅ Линия вероятности направления движения (Probability) — синяя
✅ Линия ADX — оранжевая
✅ Горизонтальные линии:
50 (серый, Midline) — нейтральный уровень
70 (красный, Overbought) — перекупленность
30 (зелёный, Oversold) — перепроданность
📌 Вывод
Этот индикатор помогает находить надёжные точки входа, фильтруя шум и определяя силу тренда с учётом объёма и волатильности. 🚀