RIFMA - Ruiz Icochea Fibonacci MA"RIFMA, created by Pharaoh BRC-20, is a powerful technical analysis tool harnessing Fibonacci sequence-aligned moving averages (5, 8, 13, 21, 55, 89, 144, 233, 377, 610, 987, 1597). Designed for precision, it dynamically adjusts colors—vivid green for short periods, transitioning through red to deep brown for longer ones—reflecting trends against a dark backdrop. With thin lines for short-term MAs and thicker ones for long-term, RIFMA excels at identifying trends, supports, and resistances across any market. Optimized for TradingView, it’s an essential companion for traders seeking clarity and actionable insights in their charts."
Padrões gráficos
QQE Reversal Strategy for GoldThis script provides a solid foundation for using the QQE indicator to identify potential reversal points in Gold. Always backtest the strategy and combine it with other tools (e.g., support/resistance, trendlines) for better accuracy.
Optimized Target Trend Strategy v2This script works well for 15 min timeframe on NQ chart with with rate over 74 percent and profit factor 2.4
Nobitadqt trading systemXác nhận có quán tính hoặc cấu trúc đỉnh đáy
Xác định xu hướng chính trên khung D1/D2
Điều kiện vào lệnh Long & Short
Wick Reversal Strategy with Body ConditionThe Wick Reversal strategy identifies potential trend reversals by analyzing candlestick patterns, focusing on wick length and body closure. When a candle closes near its high or low after forming a long wick, it signals a possible reversal. A long upper wick with a close near the low suggests bearish reversal potential, while a long lower wick with a close near the high indicates bullish reversal potential. This code automates the detection of such patterns, enabling traders to capitalize on early reversal signals. By incorporating body closure direction, it enhances accuracy, providing actionable insights for both uptrend and downtrend scenarios.
It is recommended to use this on 15 minutes, 30 minutes and 1hr time frames.
Alden Trading SystemĐây là một chỉ báo kết hợp RSI,để xác định tín hiệu giao dịch chính xác hơn nobitadinhquoctuan
Black Rhino : EMA and SMAUsed to determine the underlying trend direction.
Day Trade - 5 EMA over 10 EMA
Short Term Uptrend - 20 EMA over 40 EMA
Medium Term Uptrend - 50 SMA over 150 SMA
Long Term Uptrend - Price over 200 SMA
Long Term Uptrend Order
50 SMA over 100 SMA; 100 SMA over 150 SMA, 150 SMA over 200 SMA
Watch for Dip on Uptrend - Price bounce of 50/100/150 or 200 SMA
Alden Trading SystemĐâ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 - nobitadinhquoctuan
ICP Staking Dashboard - EnhancedScript for ICP Based of staking supply and real supply etc, then calulated the real pirce
Scalp Precision Matrix//@version=5
indicator("Scalp Precision Matrix", overlay=true)
// EMA
emaFast = ta.ema(close, 5)
emaSlow = ta.ema(close, 13)
plot(emaFast, color=color.green)
plot(emaSlow, color=color.red)
// Volume Filter
volAvg = ta.sma(volume, 10)
volSurg = volume > volAvg * 1.2
// Levels
support = ta.lowest(low, 20)
resistance = ta.highest(high, 20)
// ATR Filter
atr = ta.atr(14)
atrAvg = ta.sma(atr, 20)
atrConf = atr > atrAvg
// RSI
rsi = ta.rsi(close, 7)
// Signals
buySignal = ta.crossover(emaFast, emaSlow) and volSurg and close > support and atrConf and rsi < 70
sellSignal = ta.crossunder(emaFast, emaSlow) and volSurg and close < resistance and atrConf and rsi > 30
plotshape(buySignal, title="Buy", location=location.belowbar, color=color.green, style=shape.triangleup, size=size.small)
plotshape(sellSignal, title="Sell", location=location.abovebar, color=color.red, style=shape.triangledown, size=size.small)
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)
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.
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! 🚀
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.
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.