Bollinger Band Breakout Signals **Bollinger Band Breakout Signals – Buy & Sell Alerts**
🚀 **Overview:**
This **Pine Script** generates **buy and sell signals** based on Bollinger Band breakouts. When the price crosses **below the lower Bollinger Band**, it triggers a **BUY signal** 📈. When the price crosses **above the upper Bollinger Band**, it triggers a **SELL signal** 📉.
🔔 **Key Features:**
✅ **Clear Buy & Sell Signals** – Visual markers on the chart for easy trading decisions.
✅ **Automatic Alerts** – Get notified instantly when breakouts occur.
✅ **Customizable Bollinger Bands** – Uses a 20-period moving average with 2 standard deviations (default settings).
✅ **Works on Any Market** – Use it on **stocks, crypto, forex, or commodities**.
📊 **How It Works:**
- **BUY Alert**: When price crosses **below** the lower Bollinger Band.
- **SELL Alert**: When price crosses **above** the upper Bollinger Band.
- Green **BUY arrows** appear below bars for buy signals.
- Red **SELL arrows** appear above bars for sell signals.
⚙️ **How to Set Up Alerts:**
1️⃣ Add the script to your TradingView chart.
2️⃣ Click the **Alerts (🔔) button** and select `"Bollinger Band Breakout Signals"`.
3️⃣ Choose **"Any alert function call"** to enable alerts.
4️⃣ Select your **preferred notification method** (popup, email, SMS, or webhook).
📢 **Perfect for traders looking to capitalize on momentum breakouts with precision!** 💰🔥
#TradingView #BollingerBands #BreakoutTrading #BuySellSignals #Crypto #Forex #Stocks
Candlestick analysis
[EmreKb] Pinbar AnalysisDescription
The Pinbar Analyzer tool will count how many ltf candles are inside the wick and the total volume inside the wick.
How it works?
Calculate candle count of inside wick and volumes. Than display like below image
T/iW: Total Candle / Total inside Wick
ROiW: Rate of inside wick candle count
TV/WV: Total volume / Wick volume
NR7 Highlight (Day Timeframe Only) by rsavalagiNr7 Highlight by rsavalagi works in Daily time frame only
BullDozz MA-CandlesticksBullDozz MA-Candlesticks 🏗️📊
The BullDozz MA-Candlesticks indicator transforms traditional candlesticks by replacing their Open, High, Low, and Close values with various types of Moving Averages (MAs). This helps traders visualize market trends with smoother price action, reducing noise and enhancing decision-making.
🔹 Features:
✅ Choose from multiple MA types: SMA, EMA, WMA, DEMA, TEMA, LSMA
✅ Customizable MA period for flexibility
✅ Candlestick colors based on trend: Green for bullish, Red for bearish
✅ Works on any market and timeframe
This indicator is perfect for traders who want a clearer perspective on price movement using moving average-based candlesticks. 🚀 Try it now and refine your market analysis! 📈🔥
Bollinger Bands with EMA & SMA Bollinger Bands with customizable moving averages (SMA, EMA) and additional Exponential (EMA) & Simple Moving Averages (SMA) for trend analysis. It calculates Bollinger Bands using a user-defined moving average and standard deviation multiplier. The script also overlays 8, 13, 21, and 55-day EMAs and 50, 100, and 200-day SMAs
Custom MA Crossover (1-10min)//@version=5
indicator("Custom MA Crossover (1-10min)", overlay=true, shorttitle="CMA Cross 1-10min")
// Inputs
fast_length = input.int(5, title="Fast MA Length", minval=1) // Adjusted for shorter timeframes
slow_length = input.int(14, title="Slow MA Length", minval=1) // Adjusted for shorter timeframes
ma_type = input.string(title="MA Type", options= , defval="EMA")
use_timeframe_filter = input.bool(true, title="Restrict to 1-10min Timeframes?")
volume_filter = input.bool(true, title="Use Volume Filter?")
min_volume = input.float(1.5, title="Minimum Volume Multiplier", step=0.1) // Filter for higher volume candles
// Timeframe Check
is_allowed_timeframe = (timeframe.isminutes and timeframe.multiplier >= 1 and timeframe.multiplier <= 10) or not use_timeframe_filter
// Calculations
fast_ma = ma_type == "SMA" ? ta.sma(close, fast_length) : ta.ema(close, fast_length)
slow_ma = ma_type == "SMA" ? ta.sma(close, slow_length) : ta.ema(close, slow_length)
// Volume Filter
volume_avg = ta.sma(volume, 20) // 20-period average volume
is_high_volume = volume >= volume_avg * min_volume
// Crossover signals with filters
bullish = ta.crossover(fast_ma, slow_ma) and is_allowed_timeframe and (not volume_filter or is_high_volume)
bearish = ta.crossunder(fast_ma, slow_ma) and is_allowed_timeframe and (not volume_filter or is_high_volume)
// Plotting
plot(fast_ma, color=color.new(color.blue, 0), title="Fast MA")
plot(slow_ma, color=color.new(color.red, 0), title="Slow MA")
// Plot signals
plotshape(bullish, style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small, title="Bullish Signal")
plotshape(bearish, style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small, title="Bearish Signal")
// Alerts
alertcondition(bullish, title="Bullish Crossover", message="Fast MA crossed above Slow MA on a 1-10min chart")
alertcondition(bearish, title="Bearish Crossover", message="Fast MA crossed below Slow MA on a 1-10min chart")
[EmreKb] MTF FTRDescription
Multi time frame version of "Failed to Return by EmreKb" indicator.
What is FTR?
There is no definitive, fixed perspective on FTR. Some sources may choose the FTR zone differently. I will use the single bearish candle in an uptrend (or the single bullish candle in a downtrend) as the FTR in this indicator.
Settings
Update Last: Number of how many boxes will be updated in the new candle
Timeframes: Presets for timeframe option
Use Custom: For use custom timeframes
Custom Timeframes: Text area for write custom timeframes without space and separate with comma.
Last NR7 Highlight (Day Timeframe Only)This Indicator identifies and highlights the recent instances of NR7 (Narrowest Range 7) candles on your chart. NR7 candles are significant because they represent periods of consolidation, often preceding strong breakouts or trend reversals. The script makes it easy to spot these critical candles with clear visual cues, helping traders make informed decisions.
BODY WICK OF HIGHER TIME CANDLEDenotes the level of open and close of the body of the candle formed on a higher timeframe between the red and green dots with the line as the body, above the green is the upper shadow, and below the red is the lower shadow.
Fibonacci Reversal FinderPurpose of the indicator
This indicator is designed to identify potential reversal points on a price chart using Fibonacci retracement levels combined with price action confirmation. It generates buy and sell signals based on retracement levels and price action patterns, providing entry points along with stop-loss (SL) and take-profit (TP) targets.
How It Works
1. Input Settings for Fibonacci Levels
The script allows the user to input Fibonacci retracement levels (default: 0.618 and 0.786).
These levels are extracted from a string and converted into an array for later calculations.
2. Convert String to Fibonacci Retracement Values
The script retrieves the two selected Fibonacci levels and ensures they are correctly converted to float values.
3. Detect Swing High and Swing Low
Identifies swing high and swing low over the past 20 bars.
These values serve as reference points for Fibonacci retracement calculations.
4. Calculate Fibonacci Retracement Levels
Computes retracement levels based on swing high/low and the selected Fibonacci ratios.
5. Price Action Confirmation (Optional)
The indicator checks for bullish engulfing and bearish engulfing candlestick patterns as an additional confirmation method.
6. Define Buy & Sell Conditions
Buy Signal: If price touches the Fibonacci support levels AND (optionally) a bullish engulfing pattern appears.
Sell Signal: If price reaches the Fibonacci resistance levels AND (optionally) a bearish engulfing pattern appears.
7. Calculate Stop-Loss (SL) and Take-Profit (TP)
SL (Stop Loss): For buy trades, the SL is set to the previous swing low; for sell trades, it's set to the previous swing high.
TP (Take Profit): Uses a 1:2 risk-reward ratio.
8. Improve Label Visibility
Adds an offset to move labels away from the candlestick, improving visibility.
9. Plot Buy/Sell Labels & Connecting Lines
Labels: Display buy/sell signals, entry price, SL, and TP.
Lines: Draw dotted connectors from the candlestick to the label for better clarity.
What This Indicator Can Do
✅ Identifies Reversal Points using Fibonacci retracements (0.618 & 0.786)
✅ Confirms Reversals with bullish/bearish engulfing candlestick patterns (optional)
✅ Plots Buy/Sell Labels with entry price, SL, and TP values
✅ Draws Lines connecting labels to the candlestick for visibility
✅ Uses a 1:2 Risk-Reward Ratio to determine Take-Profit levels
How to Use This Indicator
Add the Indicator to your TradingView chart.
Look for Buy/Sell Labels:
Buy when price retraces to Fibonacci support and a bullish engulfing pattern appears.
Sell when price retraces to Fibonacci resistance and a bearish engulfing pattern appears.
Use the Stop-Loss (SL) & Take-Profit (TP) from the label to manage your trade.
Combine with Other Indicators (e.g., RSI, MACD) for additional confirmation.
Combined Indicator (Session, 3EMAs, Engulfing Candles)The Indicator combines session highlights, EMA indicators, and engulfing candle detection. It visually marks major forex sessions with background colors, plots three EMAs (9, 21, 50), and identifies bullish/bearish engulfing candles with alerts. Perfect for trend analysis and session-based trading insights!
Features:
✅ Session Highlights: Marks major forex sessions (London, New York, Tokyo, Sydney) with transparent background colors for easy visualization.
✅ EMA Indicators: Plots three Exponential Moving Averages (EMAs) (9, 21, 50) to help identify trends and potential reversals.
✅ Engulfing Candle Detection: Detects bullish and bearish engulfing patterns, plotting visual markers (triangles) on the chart.
✅ Alerts: Triggers notifications when an engulfing pattern appears, helping traders act quickly.
This script is ideal for traders who want to analyze trends, spot key price action patterns, and navigate different market sessions effectively!
Pin Bar Detector (open)The Pin Bar Detector script is designed to identify and highlight pin bars (reversal candles) on a price chart. It scans for bullish and bearish pin bars based on wick-to-body ratio, candle size, and price structure.
🔹 Features & How It Works
✅ Detects Both Bullish & Bearish Pin Bars
Bullish Pin Bar (Hammer): Long lower wick, small body near the top, and little to no upper wick.
Bearish Pin Bar (Shooting Star): Long upper wick, small body near the bottom, and little to no lower wick.
✅ Wick-to-Body Ratio Calculation
The wick must be at least 2x the size of the body to be considered a valid pin bar.
The script dynamically checks if the upper or lower wick dominates the candle to classify it.
✅ Key Level Filtering (Optional)
The script can be modified to only detect pin bars at VWAP, 50 EMA, Support/Resistance, or First 15-Min High/Low for stronger trade signals.
✅ Customizable Inputs
Users can adjust the minimum wick-to-body ratio to refine detection.
Option to show/hide pin bars that form in choppy or sideways markets.
✅ Pin Bar Confirmation (Optional)
Can include a volume filter to detect pin bars with significant market participation.
Can add ATR confirmation to check if the pin bar forms during high volatility periods.
🔹 How to Use It in Your Trading
1️⃣ Enable the script on your chart to automatically highlight pin bars.
2️⃣ Wait for confirmation (volume spike or key level rejection) before entering a trade.
3️⃣ Use stop-loss below/above the pin bar wick to control risk.
4️⃣ Target key resistance/support levels for take-profit.
🔹 Final Thoughts
Pin bars are powerful reversal signals, but they work best at strong support/resistance zones with volume confirmation.
This script helps eliminate false pin bars by ensuring the wick-to-body ratio is valid.
Can be combined with VWAP, 50 EMA, and ATR to create a high-probability trading system.
Bullish Engulfing with 150% Height//@version=5
indicator("Bullish Engulfing with 150% Height", overlay=true)
// Definisikan candle sebelumnya
previous_candle = close
previous_high = high
previous_low = low
previous_open = open
// Definisikan kondisi Bullish Engulfing
bullish_engulfing = close > open and close < open and close > open and open < close
// Definisikan kriteria tinggi candle sebelumnya lebih dari 150% dari tinggi candle sebelumnya
candle_height_criteria = (previous_high - previous_low) > 1.5 * (high - low )
// Gabungkan kedua kondisi
condition = bullish_engulfing and candle_height_criteria
// Plot sinyal pada chart
plotshape(condition, style=shape.labelup, location=location.belowbar, color=color.green, text="Bullish Engulfing", size=size.small)
Anchored VWAP- STKThis Pine Script (version 5) calculates and plots an **Anchored Volume Weighted Average Price (VWAP)** along with its **standard deviation bands** on a trading chart. The VWAP helps traders identify the average price of an asset, weighted by volume, starting from a specific date chosen by the user.
### Key Components:
1. **Indicator Setup:**
The script is set as an overlay indicator, meaning it will be displayed directly on the price chart.
2. **User Inputs:**
- **VWAP Start Date:** Allows the user to select the date from which the VWAP calculation should begin (default is January 1, 2022).
- **VWAP Data Source:** Users can choose which price data to use for the calculation (default is `hlc3`, which is the average of the high, low, and close prices).
3. **VWAP Calculation:**
- The script keeps track of the cumulative sum of (price × volume) and the cumulative volume starting from the selected date.
- The VWAP is calculated as:
\
4. **Standard Deviation Calculation:**
- The script calculates the variance using the formula:
\
This ensures the variance is not negative.
- The standard deviation is then derived by taking the square root of the variance.
5. **Plotting:**
- **VWAP Line:** Displayed in blue.
- **Upper Band:** Plotted in orange, representing VWAP + standard deviation.
- **Lower Band:** Also in orange, representing VWAP - standard deviation.
### Purpose:
This indicator helps traders analyze price movements relative to the VWAP, providing insights into potential support/resistance levels. The standard deviation bands help identify overbought or oversold conditions based on price volatility.
B!!7 wtf dp want itis not midne am dtired cant spellIf I rejected or deleted your annotation, it’s nothing personal. Just doing my job and keeping up with the current Genius standards. Please do not send me angry messages, demanding to know why your annotation was deleted, otherwise, you will be ignored and action may be taken on your account. Send me a constructive and calm message, then we can talk.
Ultimate T3 Fibonacci for BTC Scalping. Look at backtest report!Hey Everyone!
I created another script to add to my growing library of strategies and indicators that I use for automated crypto trading! This strategy is for BITCOIN on the 30 minute chart since I designed it to be a scalping strategy. I calculated for trading fees, and use a small amount of capital in the backtest report. But feel free to modify the capital and how much per order to see how it changes the results:)
It is called the "Ultimate T3 Fibonacci Indicator by NHBprod" that computes and displays two T3-based moving averages derived from price data. The t3_function calculates the Tilson T3 indicator by applying a series of exponential moving averages to a combined price metric and then blending these results with specific coefficients derived from an input factor.
The script accepts several user inputs that toggle the use of the T3 filter, select the buy signal method, and set parameters like lengths and volume factors for two variations of the T3 calculation. Two T3 lines, T3 and T32, are computed with different parameters, and their colors change dynamically (green/red for T3 and blue/purple for T32) based on whether the lines are trending upward or downward. Depending on the selected signal method, the script generates buy signals either when T32 crosses over T3 or when the closing price is above T3, and similarly, sell signals are generated on the respective conditions for crossing under or closing below. Finally, the indicator plots the T3 lines on the chart, adds visual buy/sell markers, and sets alert conditions to notify users when the respective trading signals occur.
The user has the ability to tune the parameters using TP/SL, date timerames for analyses, and the actual parameters of the T3 function including the buy/sell signal! Lastly, the user has the option of trading this long, short, or both!
Let me know your thoughts and check out the backtest report!
EMA Dual + Pivot Points con Etiquetasindicador de doble Ema editable que incluye los puntos pivote estándar editables a la temporalidad del mercado con ello se determina la entrada y salida de las operaciones
EMA 10 y 55 + Perfil de Volumenindicador que se basa en el cruce de dos medias móviles las cuales al combinarse con la acción del precio mediante el volumen nos da como resultado excelentes entradas y una visión del punto de control y una mejor perspectiva de la dirección del precio