21 EMA Wick Screener / Owl of Profit21 EMA Wick Finder
The 21 EMA Wick Finder is a custom TradingView indicator designed to identify candles that interact with the 21 Exponential Moving Average (EMA) on the daily chart. It highlights candles where:
The open price is above the 21 EMA.
The close price is also above the 21 EMA.
The low price touches or dips below the 21 EMA.
This tool is ideal for traders looking to spot pullbacks or potential bounce setups around the 21 EMA level. The indicator visually marks qualifying candles on the chart, helping traders quickly identify actionable opportunities without manually scanning through each chart.
Effortlessly integrate this indicator into your strategy to enhance precision and save time during market analysis! 🦉
Visit my website for more tools and strategies: bybitindicators.com
Happy trading!
Candlestick analysis
Sensitive Buy Signal Indicator Description: The Sensitive Buy Signal Indicator is designed for traders who aim to identify early buying opportunities with minimal delay. It combines momentum, trend, and volume-based conditions to generate precise and reliable buy signals. This indicator is perfect for swing traders and intraday traders who want a highly responsive tool for detecting upward price movements.
Key Features:
Momentum-Based Sensitivity:
Uses a shortened RSI (9) and Stochastic Oscillator (9) to quickly identify oversold and bullish momentum conditions.
Incorporates MACD bullish crossovers for additional confirmation of upward momentum.
Trend Alignment:
Ensures signals align with the trend using a 10-day fast moving average and a 20-day slow moving average crossover.
Volume and Volatility Detection:
Analyzes real-time volume spikes relative to a shorter average (10 periods) to confirm strong market participation.
Incorporates Bollinger Band proximity to identify potential reversal zones.
Compact Debugging Tools:
Displays optional small circles for each condition at the top of the chart, ensuring a clear and clutter-free visualization of candlesticks.
How It Works:
Buy Signal: The green "BUY" label appears below a candle when:
RSI is below 65 or crosses above 50.
Stochastic Oscillator indicates bullish momentum.
MACD line crosses above its signal line.
Fast moving average (10) crosses above the slow moving average (20).
Volume shows a slight spike above the 10-period average.
The price is near or below the lower Bollinger Band.
Recommendations:
Timeframe: Best used on daily timeframes for swing trading or shorter timeframes for intraday setups.
Confirmation: Pair this indicator with support/resistance levels, trendlines, or other tools for enhanced reliability.
Risk Management: Always set appropriate stop-loss and take-profit levels to manage risk effectively.
Ideal For:
Swing traders looking for early trend reversals.
Intraday traders seeking precise buy signals.
Traders who prefer clean and focused chart visuals.
MACD TAGMACD TAG Indicator
The MACD TAG indicator is designed to provide clear and actionable trading signals based on the MACD (Moving Average Convergence Divergence) crossover events. This indicator enhances the traditional MACD by introducing a tagging system that highlights buy and sell signals whenever a crossover occurs, allowing traders to make informed decisions quickly.
SMA Crossover with VWAP Filter ~Thiru Yadav, Hyd INAdd this script to your TradingView chart.
Adjust the SMA lengths, VWAP filter, and support/resistance lookback period as needed.
Look for buy and sell signals on the chart.
The support and resistance levels will automatically update based on the specified lookback period.
Fair Value Gap (FVG)i have created a indicator to indicate the values of gap
you can modified this indicator as yous own choice
Combined Indicators (Fractals, EMAs, CCI, Volume, SMMA)Combined Indicators (Fractals, EMAs, CCI, Volume, SMMA)
Engulfing and ATR-Imbalance [odnac]This Pine Script indicator combines two powerful concepts—Engulfing Candlestick Patterns and ATR Imbalance—to identify potential market reversal points with increased precision.
Engulfing Candlestick Patterns:
Bullish Engulfing: Identified when a candle closes higher than it opens, and it completely engulfs the previous candle (previous close is lower than the current open, and previous high is lower than the current close).
Bearish Engulfing: Identified when a candle closes lower than it opens, and it completely engulfs the previous candle (previous close is higher than the current open, and previous low is higher than the current close).
Bar Coloring: These patterns are highlighted with a customizable color (light gray by default) to make them easily identifiable.
ATR-Based Imbalance:
The Average True Range (ATR) is used to measure market volatility, and this script checks if the current candle’s range (difference between high and low) exceeds a defined multiple of the ATR, indicating a possible imbalance.
Imbalance Detection: If the current candle’s range is greater than ATR * imbalance multiplier (default multiplier: 1.5), it is marked as an ATR imbalance.
Bar Coloring: Candles with a significant imbalance (greater range than the ATR-based threshold) are highlighted in yellow, indicating an outlier or extreme price movement.
Engulfing + ATR Imbalance:
When both a Bullish Engulfing pattern and an ATR Imbalance are detected, a green triangle up is plotted below the bar, signaling a potential bullish reversal.
Conversely, when both a Bearish Engulfing pattern and an ATR Imbalance occur, a red triangle down is plotted above the bar, signaling a potential bearish reversal.
User Inputs:
Engulfing Plot: Enable or disable the plotting of Engulfing Candles.
ATR Length: Set the period used to calculate the ATR (default is 5).
Imbalance Multiplier: Adjust the multiplier to define the threshold for ATR imbalance detection (default is 1.5).
Bar Colors: Customizable color for both Engulfing candles and Imbalance candles.
Engulfing & Imbalance Plot: Enable or disable plotting of the combined conditions (Engulfing + ATR Imbalance) with arrows.
How This Indicator Helps:
By combining price action patterns with volatility analysis, this indicator highlights high-probability reversal points where significant price movement (imbalance) coincides with a clear Engulfing pattern. Traders can use these signals to time entries or exits based on both price action and market volatility.
LEXUS - Quick mSNRThe "LEXUS - Quick SNR" TradingView indicator identifies and plots support and resistance levels based on SNR highs and lows. It allows customization through inputs for SNR Factor, high/low level plotting, and close level plotting. The indicator highlights these levels on the chart using distinct colors, aiding traders in making informed decisions by visualizing key price points.
Strategy EngulfingThis script implements a trading strategy that identifies "engulfing" candlestick patterns and uses the Supertrend indicator to enter and exit trades.
Buy and Sell Signal with Moving Averages//@version=5
indicator("Buy and Sell Signal with Moving Averages", overlay=true)
// Define input parameters for moving averages and RSI
shortTermLength = input.int(9, title="Short-Term Moving Average Length", minval=1)
longTermLength = input.int(21, title="Long-Term Moving Average Length", minval=1)
rsiLength = input.int(14, title="RSI Length", minval=1)
rsiOverbought = input.int(70, title="RSI Overbought Level", minval=1)
rsiOversold = input.int(30, title="RSI Oversold Level", minval=1)
// Calculate short-term and long-term moving averages
shortTermMA = ta.sma(close, shortTermLength)
longTermMA = ta.sma(close, longTermLength)
// Calculate RSI
rsi = ta.rsi(close, rsiLength)
// Define Buy and Sell conditions
buyCondition = ta.crossover(shortTermMA, longTermMA) and rsi < rsiOversold
sellCondition = ta.crossunder(shortTermMA, longTermMA) or rsi > rsiOverbought
// Plot buy and sell signals
plotshape(series=buyCondition, location=location.belowbar, color=color.green, style=shape.labelup, title="Buy Signal", text="BUY")
plotshape(series=sellCondition, location=location.abovebar, color=color.red, style=shape.labeldown, title="Sell Signal", text="SELL")
// Plot moving averages
plot(shortTermMA, color=color.blue, title="Short-Term Moving Average")
plot(longTermMA, color=color.orange, title="Long-Term Moving Average")
EMA & MA Crossover StrategyEMA & MA Crossover Strategy
The EMA & MA Crossover Strategy is a comprehensive and versatile trading strategy designed to capture trend-following opportunities in the market. This script combines several advanced features, such as moving averages, percentage-based thresholds, swing lookbacks, and adaptive conditions, to provide reliable buy and sell signals. Key features of the strategy include:
Key Highlights:
Dual Moving Averages:
The strategy uses a Simple Moving Average (SMA) and an Exponential Moving Average (EMA) for crossover signals to determine trend direction and momentum.
Hull Moving Average (HMA) Ribbon:
Integrated HMA conditions enhance trend identification by ensuring alignment with momentum.
Dynamic Entry Filtering:
Incorporates a run-up threshold to exclude high-volatility candles and ignores the initial candles of a new day, reducing false signals in volatile markets.
Percentage-Based Calculations:
Utilizes the Williams %R indicator for dynamic upper and lower price levels, enhancing precision in overbought and oversold zones.
Swing High/Low Analysis:
Detects recent swing highs and lows within a customizable lookback period, adding flexibility for different trading styles.
Daily High/Low Monitoring:
Tracks and updates the intraday high and low levels in real time for added context to market conditions.
Buy & Sell Conditions:
Buy: Conditions include price above moving averages, bullish candle patterns, %R improvement, and alignment of EMA ribbons.
Sell: Triggered when prices fall below moving averages or %R hits oversold levels.
Customizable Parameters:
Adjustable lengths for moving averages, percentage thresholds, and swing lookback ensure adaptability to various market conditions and trading preferences.
Visual Enhancements:
Bar Colors: Green bars indicate potential buy zones, while red bars highlight sell zones, aiding quick visual recognition.
Dynamic Levels: Plots higher and lower lines based on %R calculations to provide dynamic support and resistance insights.
This script is a powerful tool for traders seeking a balance between technical indicators and adaptive filtering for improved signal reliability. It can be applied to a wide range of markets, including equities, forex, and cryptocurrencies. Experiment with the customizable settings to tailor the strategy to your trading style!
2-Candle Breakout StrategyTrade on buy sell signal works on 30min ...hourly timeframe... buy next candle of signal candle corssing high ...opposite for Sell
Kijun Sen MTF w/ Color CandlesKijun indicator with color candles
If Price action closes above Kijun line turns blue , opposite for below
🚀 Traderz h3lp3r - Combined Trend and ReversalThe " Traderz Helper " is a comprehensive trading indicator designed for trading in multi time frame, integrating several powerful analytical tools into one seamless overlay.
This indicator combines H4 EMA trend analysis, Bollinger Bands for reversal detection, and precise candlestick pattern identification to provide traders with a robust tool for identifying potential market movements.
Features:
H4 EMA Trend Lines:
Displays the H4 EMA (Exponential Moving Average) to identify the overall market trend. It uses a 240-minute timeframe to reflect the H4 period across all charts.
The trend line is conditionally displayed based on the selected timeframe, ensuring relevance and clarity in trend analysis.
Bollinger Bands Reversal Signals:
Utilizes Bollinger Bands to spot potential bullish and bearish reversal points. The indicator highlights when the price wicks beyond the bands but closes within, signaling possible price rejections.
Includes both Bullish and Bearish reversal detections, marked with upward ("▲") and downward ("▼") arrows for quick visual cues.
Candlestick Pattern Detection:
Detects critical candlestick formations that indicate tops and bottoms in the market. This feature spots "Hammer" and "Shooting Star" patterns that can signify turning points.
Displays an orange "T" above bullish candles that form potential tops and a "B" below bearish candles indicating possible bottoms, providing traders with immediate visual insights into candlestick behavior.
Utility:
This indicator is tailored for traders who need a multi-faceted approach to technical analysis. Whether you are looking to confirm trend directions, anticipate market reversals, or identify key candlestick patterns, the "Traderz Helper" provides all necessary tools in a single, user-friendly format. Ideal for both novice and experienced traders, this indicator enhances decision-making by integrating essential trading metrics directly on your chart.
Usage Tips:
Monitor the H4 EMA for broader market trends. Use the trend lines to align your trades with the market direction.
Pay close attention to the reversal signals from Bollinger Bands. These can offer valuable entry and exit points.
Use the candlestick pattern detection to refine your trading strategy during key market movements. Look for "T" and "B" signals as confirmation of potential tops and bottoms.
=================
If this script is useful for you and permit to make great profit, you can make a donation :)
solana : Dot5dRkKXeAwgX7uYwyv2P1yvTN7gNM1GkNHQGaVt3Mu
eth : 0x1ff24cbB85297cFA930B386953aC8094745BE3dc
sui : 0x15c57b6088691ed338b3348fa63a0380126b4abd716fd2b09a4007ae00c58a99
Malaysian SnR [by DanielM]The Malaysian SnR (Support and Resistance) levels are a popular trading concept that identifies specific price levels on charts which are considered significant for trading decisions. Here's a breakdown of the concepts:
A Levels and V Levels: These refer to specific types of SNR levels:
A Levels: These are formed at the highest points of price movements. The indicator highlights these levels with a red line.
V Levels: These are formed at the lowest points of price movements, typically observed as valleys in chart patterns. The indicator highlights these levels with a green line.
Fresh and Unfresh Levels:
Fresh Levels: These are price levels that have not been touched by a wick since their formation. They are considered more significant because they might provide a stronger reaction when the price touches these levels again.
Unfresh Levels: These are levels that have been touched by a wick since their formation. Each time a level is tested, it is considered less significant because it might offer weaker resistance or support. A level that has been tested can become fresh again if it's crossed by a candle body.
Gaps:
A gap occurs when you have two bullish candles or two bearish candles. It is defined as the area between the close of the first candle and the open of the next one. It is marked by drawing a line at the closing price of the first candle, thus representing the level where the gap was initially observed. The indicator highlights these levels with a blue lines for bullish gaps and violet lines for bearish gaps.
Fresh vs. Unfresh Gaps:
Similar to A and V levels, gaps can be classified as fresh or unfresh. A fresh gap is one that hasn't been touched by a wick after it was created. These are often considered more significant because they may hold stronger as potential support or resistance. Unfresh gaps have been touched by a wick, and they may be considered less significant. A gap that has been tested can become fresh again if it's crossed by a candle body.
Inputs:
Number of bars to look back to detect A levels, V levels, and Gaps.
Allows users to toggle the visibility of only fresh A and V levels.
Allows users to decide whether to display gap levels or not.
Allows users to decide whether to display only fresh gaps.
Allows the users to set the maximum number of A levels, V levels and gaps on the chart.
Señales de Compra y VentaDescripciòn
Medias Móviles:
Se utilizan dos medias móviles: una corta (9 períodos) y una larga (21 períodos). La señal de compra se genera cuando la media móvil corta cruza por encima de la media larga, indicando una tendencia alcista.
La señal de venta se genera cuando la media móvil corta cruza por debajo de la media larga, lo que indica una posible reversión bajista.
RSI (Índice de Fuerza Relativa):
El RSI es usado para detectar condiciones de sobrecompra (cuando el RSI es mayor a 70) o sobreventa (cuando el RSI es menor a 30).
Las condiciones de sobreventa se consideran como una oportunidad de compra, y las condiciones de sobrecompra se consideran como una señal de venta.
Señales en el gráfico:
Las señales de compra se marcan con un verde debajo de la barra.
Las señales de venta se marcan con un rojo encima de la barra.
RSI gráfico:
El RSI también se muestra en un gráfico en el panel inferior con líneas horizontales para marcar los niveles de sobrecompra (70) y sobreventa (30).
FVG Trading BotThe FVG Trading Bot for TradingView is a powerful indicator that automatically detects Fair Value Gaps (FVGs) on the chart, highlighting bullish and bearish zones with customizable colors and parameters. It supports dynamic trading logic, including stop-loss management and daily profit targets. The bot identifies FVGs based on precise conditions and allows users to configure thresholds, extend zones, and enable reversal strategies. Ideal for traders seeking efficient visual insights, this bot enhances decision-making by providing clear entry and exit signals. Designed for simplicity and adaptability, it’s perfect for various trading styles and timeframes. Automate alerts and optimize your strategy effortlessly!
First five-Minute Candle RangePersonal use First five-Minute Candle Range First five-Minute Candle Range
Advanced CAndle Pattern Long/Short SignalKey Features:
Candkestick Patterns: THe indicator defects key revarsal patterns such as - Bullish Engulfing, Bearish Engulfing, Hammer, Inverted Hammer, Morning Star, Evening Star, and more.
RSI Filter: Uses the Relative Strength Index (RSI) to ensure signl are aligned whit the market momentum. Long signals are triggered when RSI is above 50, and short signals when RSI is below 50.
Yash Zones Strategy v6Modern strategy declaration syntax
Proper commission settings
barmerge.gaps_off for security calls
Color management with color.new()
Null-coalescing operator (?:) removed in favor of ternary
Cleaner position sizing calculation
Improved visual plotting syntax
Full TypeScript-style type safety
Enhanced error handling for edge cases
Strategy Features:
Complete backtesting capability
Real-time trading alerts
Automatic position sizing
Trailing stop functionality
Multi-timeframe confirmation
Volume liquidity filters
Professional risk management parameters
Clear visual signal markers
This version includes all the latest Pine Script v6 features while maintaining the original Yash logic with enhanced reliability and performance.
🚀 Traderz h3lp3r - Combined Trend and ReversalThe "Traderz Helper" is a comprehensive trading indicator designed for the ETH/USDC pair, integrating several powerful analytical tools into one seamless overlay. This indicator combines H4 EMA trend analysis, Bollinger Bands for reversal detection, and precise candlestick pattern identification to provide traders with a robust tool for identifying potential market movements.
Features:
H4 EMA Trend Lines:
Displays the H4 EMA (Exponential Moving Average) to identify the overall market trend. It uses a 240-minute timeframe to reflect the H4 period across all charts.
The trend line is conditionally displayed based on the selected timeframe, ensuring relevance and clarity in trend analysis.
Bollinger Bands Reversal Signals:
Utilizes Bollinger Bands to spot potential bullish and bearish reversal points. The indicator highlights when the price wicks beyond the bands but closes within, signaling possible price rejections.
Includes both Bullish and Bearish reversal detections, marked with upward ("▲") and downward ("▼") arrows for quick visual cues.
Candlestick Pattern Detection:
Detects critical candlestick formations that indicate tops and bottoms in the market. This feature spots "Hammer" and "Shooting Star" patterns that can signify turning points.
Displays an orange "T" above bullish candles that form potential tops and a "B" below bearish candles indicating possible bottoms, providing traders with immediate visual insights into candlestick behavior.
Utility:
This indicator is tailored for traders who need a multi-faceted approach to technical analysis. Whether you are looking to confirm trend directions, anticipate market reversals, or identify key candlestick patterns, the "Traderz Helper" provides all necessary tools in a single, user-friendly format. Ideal for both novice and experienced traders, this indicator enhances decision-making by integrating essential trading metrics directly on your chart.
Usage Tips:
Monitor the H4 EMA for broader market trends. Use the trend lines to align your trades with the market direction.
Pay close attention to the reversal signals from Bollinger Bands. These can offer valuable entry and exit points.
Use the candlestick pattern detection to refine your trading strategy during key market movements. Look for "T" and "B" signals as confirmation of potential tops and bottoms.
Donchian Breakout Indicator apthaTo trade using the Donchian Breakout Indicator, you can follow a trend-following approach, where the goal is to catch strong price movements as they break out of a consolidation range. Here's a step-by-step guide on how you can trade with this indicator:
1. Identifying Breakouts
The Donchian Channels display the highest high and the lowest low over a certain period (20 periods by default). When price breaks above the upper channel, it signals a potential bullish breakout, and when it breaks below the lower channel, it signals a potential bearish breakout.
2. Bullish Breakout (Buying)
Entry Signal: Look for a bullish breakout when the price closes above the upper channel. This indicates that the price is moving higher, breaking out of a recent range.
Confirmation: The middle channel acts as an additional confirmation. If the price is above the middle channel (or multiplied by the confirmation factor), it further strengthens the buy signal.
Exit: You can exit the position either when the price falls back inside the channel or based on other indicators like stop losses, take profits, or another price action signal.
3. Bearish Breakout (Selling/Shorting)
Entry Signal: Look for a bearish breakout when the price closes below the lower channel. This indicates a potential downward move, where the price is breaking below a recent support level.
Confirmation: Similarly, if the price is below the middle channel (or multiplied by the confirmation factor), it provides more confidence in the short position.
Exit: Exit the short position when the price breaks back above the lower channel or based on other indicators/price action.
4. Stop Loss and Take Profit Suggestions
Stop Loss:
For long positions, set the stop loss below the upper channel breakout point, or use a percentage-based stop from your entry price.
For short positions, set the stop loss above the lower channel breakout point.
Take Profit: Consider using a risk-reward ratio (like 2:1 or 3:1). Alternatively, you could exit when price closes back inside the channel or use trailing stops for dynamic exits.
5. Trade Example:
Bullish Example (Long Trade)
Signal: The price closes above the upper Donchian channel, indicating a potential breakout.
Confirmation: The price is above the middle channel (optional for stronger confirmation).
Action: Enter a long position.
Stop Loss: Place a stop loss just below the upper channel or a set percentage under the breakout point.
Take Profit: Set a profit target based on a risk-reward ratio or exit when the price shows signs of reversing.
Bearish Example (Short Trade)
Signal: The price closes below the lower Donchian channel, signaling a potential bearish breakout.
Confirmation: The price is below the middle channel (optional for added confidence).
Action: Enter a short position.
Stop Loss: Place a stop loss just above the lower channel or a set percentage above the breakout point.
Take Profit: Set a profit target based on a risk-reward ratio or exit when the price shows signs of reversing.
Things to Keep in Mind:
False Breakouts: Occasionally, price might break out temporarily and then reverse, which is a false breakout. To minimize this risk, use volume confirmation, momentum indicators (like RSI), or wait for a couple of candlesticks to confirm the breakout before entering.
Market Conditions: This strategy works best in trending markets. In ranging or consolidating markets, breakouts might not always follow through, leading to false signals.
Risk Management: Always apply good risk management techniques, such as defining your position size, setting stop losses, and using a proper risk-reward ratio.