Breakout Accumulation/DistributionBasic modification of my SFP Momentum Indicator showing accumulation/distribution patterns based on breakouts above previous anchor points.
Candles are colored based on whether accumulation or distribution was last.
Best if used at HTF then confirmed at LTF.
Komut dosyalarını "breakout" için ara
BREAKOUT DETECTORThis is the first version of the Breakout Detector script I am working on. Purple ticks indicate a potential breakout. As you can see on this section of the Bitcoin chart, it pinpointed the exact breakout on many instances, even the notorious Bart Simpson pattern was caught, literally one candle before the break-up of the pattern. This indicator does NOT repaint, its just very solid mathematics. Ongoing project. Not open publishing yet, but will allow testers on an ad hoc basis.
Breakout Range Signal with Quality Analysis [Dova Lazarus]📌 Breakout Range Signal with Quality Analysis
🎓 Training-focused indicator for breakout logic, SL & TP behavior and signal quality assessment
🔷 PURPOSE
This tool identifies breakout candles from a calculated channel range and visually simulates entries, stop losses, and take profits, providing live and historical performance metrics.
⚙️ MAIN SETTINGS
1️⃣ Channel Setup
channel_length = 10 → how many candles are averaged to form channel boundaries
channel_multiplier = 0.0 → adds expansion above/below the base channel
channel_smoothing_type = SMA → smoothing method for high/low averaging
📊 The channel consists of two moving averages: one from highs, the other from lows. When expanded (via multiplier), it creates a buffer range for breakout validation.
2️⃣ Signal Detection
Body > Channel % = 50 → a breakout candle's body must exceed 150% of the channel width
Signal Mode:
• Weak → every valid breakout candle is highlighted
• Strong → only the first signal in a sequence is shown (helps reduce noise)
🟦 Bullish signals (blue):
• Candle opens inside the channel
• Closes above the channel
• Body is large enough
• Optional: confirms with trend (if enabled)
🟨 Bearish signals (yellow):
• Candle opens inside the channel
• Closes below the channel
• Body is large enough
• Optional: confirms with trend
3️⃣ Trend Filter (optional)
Enabled via checkbox
Uses a higher timeframe MA to filter signals
Bullish signals are allowed only if price is below the trend MA
Bearish signals only if price is above it
⏱️ trend_timeframe = 1D (typically set higher than the chart's timeframe)
🟢 Trend line is plotted if enabled
🎯 ENTRY, STOP LOSS & TAKE PROFIT LOGIC
SL and TP are based on channel width, not fixed pip/tick size:
📍 Entry Price = close of the breakout candle
🛑 Stop Loss:
• Bullish → below the lower channel border (minus offset)
• Bearish → above the upper channel border (plus offset)
🎯 Take Profit:
• Bullish → entry + channel width × profit multiplier
• Bearish → entry − channel width × profit multiplier
You can control:
Profit Target Multiplier (e.g., 1.0 → TP = 1×channel width)
Stop Loss Target Multiplier (e.g., 0.5 → SL = 0.5×channel width)
Signals to Show = how many historical SL/TP setups to display
📈 Lines and labels ("TP", "SL") are drawn on the chart for clarity.
🧪 QUALITY ANALYSIS MODULE
If enabled, the indicator will:
Track each new signal (entry, SL, TP)
Analyze outcomes:
• Win = TP hit before SL
• Loss = SL hit before TP
• Expired = signal unresolved after N bars
Display statistics in a table (top-right corner):
📋 Table fields:
✅ Overall win rate
📈 Bullish win rate
📉 Bearish win rate
🔢 Total signals
🕓 Pending (still active trades)
Maximum bars to wait for outcome is customizable (max_bars_to_analyze).
📐 VISUALIZATION TOOLS
TP / SL lines per signal
Labels “TP” and “SL”
Optional channel lines and trendline for better context
Colored bars for valid signals (blue/yellow)
📌 BEST USE CASES
Understand how breakout signals are formed
Learn SL/TP logic based on dynamic range
Test how volatility affects trade outcomes
Use as a visual simulation of trade behavior over time
Breakout + Volume Filter//@version=5
indicator("Breakout + Volume Filter", overlay=true)
length = input.int(20)
volMultiplier = input.float(1.5)
highestHigh = ta.highest(high, length)
breakout = close > highestHigh
avgVol = ta.sma(volume, length)
validBreakout = breakout and volume > avgVol * volMultiplier
plotshape(validBreakout, title="Breakout Up", location=location.abovebar, color=color.green, style=shape.triangleup)
alertcondition(validBreakout, title="Breakout Detected", message="פריצה עם נפח גבוה!")
Breakout Detector (5-min)//@version=5
indicator("Breakout Detector (5-min)", overlay=true)
// Define breakout range
length = input.int(20, minval=1, title="Lookback Period")
bullColor = color.green
bearColor = color.red
// Calculate highest high and lowest low of lookback period
highestHigh = ta.highest(high, length)
lowestLow = ta.lowest(low, length)
// Detect breakout
bullBreakout = close > highestHigh
bearBreakout = close < lowestLow
// Plot breakout signals
plotshape(bullBreakout, title="Bullish Breakout", location=location.abovebar, color=bullColor, style=shape.triangleup, size=size.small)
plotshape(bearBreakout, title="Bearish Breakout", location=location.belowbar, color=bearColor, style=shape.triangledown, size=size.small)
// Optional: Background color for breakout bars
bgcolor(bullBreakout ? color.new(bullColor, 85) : na)
bgcolor(bearBreakout ? color.new(bearColor, 85) : na)
Breakout Strategy with Dynamic SL LabelDescription:
This script identifies breakout trading opportunities using adaptive support and resistance levels, adjusted dynamically based on market volatility. A trade signal is generated only when a breakout candle is followed by a confirming close in the same direction. The signal is displayed on the chart as a labeled marker that includes a suggested stop-loss level based on the highest high or lowest low of the past 10 bars, ensuring structure-aware risk management.
🧩 How it Works:
Adaptive S/R Zones: Based on volatility-normalized swing highs/lows using ATR. These zones automatically adjust to changing market conditions.
Confirmation Logic: Trade signals only appear after the second candle confirms the breakout, helping reduce false signals.
Single Signal Rule: Only one buy or sell label is printed per breakout level, avoiding repeated triggers.
Embedded Stop Loss in Label: SL value is calculated from the 10-bar high (for shorts) or low (for longs) and included in the signal label.
⚙️ User Inputs Explained:
Base Swing Strength: Controls the pivot sensitivity; higher values detect stronger reversal points.
Line Duration: Number of bars that horizontal S/R levels remain visible.
ATR Period: Length used to calculate volatility for adaptive S/R logic.
Volatility Sensitivity: Adjusts how responsive the S/R zone strength is to volatility. Higher = more responsive.
Stop-Loss Lookback (Bars): Defines the number of candles to reference when calculating SL from high/low structure.
Max Lines Stored: Controls chart clutter by limiting how many S/R zones are kept active.
🟩 Ideal for:
Breakout traders who value clean structure, confirmation, and built-in risk logic.
Scalpers and swing traders looking for adaptive, low-latency signals without repainting.
Chartists who want minimal indicators but maximum signal clarity.
Breakout TrendTiltFolio Breakout Trend indicator
The Breakout Trend indicator is designed to help traders clearly visualize trend direction by combining two complementary techniques: moving averages and Donchian-style breakout logic.
Rather than relying on just one type of signal, this indicator merges short-term and long-term moving averages with breakout levels based on recent highs and lows. The moving averages define the broader trend regime, while the breakout logic pinpoints moments when price confirms directional momentum. This layered approach filters out many false signals while still capturing high-conviction moves.
Yes, these are lagging indicators by design — and that’s the point. Instead of predicting every wiggle, the Breakout Trend waits for confirmation, offering higher signal quality and fewer whipsaws. When the price breaks above a recent high and sits above the long-term moving average, the trend is more likely to persist. That’s when this indicator shines.
While it performs best on higher timeframes (daily/weekly), it's also adaptable to shorter timeframes for intraday traders who value clean, systematic trend signals.
For early signal detection, we recommend pairing this with TiltFolio’s Buying/Selling Proxy, which anticipates pressure buildups—albeit with more noise.
It's easy to read and built for real-world trading discipline.
Breakout indicatorThis indicator helps traders identify potential breakout levels based on the highest high and lowest low of the last N candles, inspired by the classic Turtle Trading strategy. The period (N) is fully customizable, allowing you to adapt it to your trading style. For daily charts, a period between 50 and 100 is recommended.
The indicator dynamically plots horizontal lines representing the highest high and lowest low over the selected period. These lines are updated in real-time as price action evolves. A breakout is confirmed when the price closes above the high line (for a bullish breakout) or below the low line (for a bearish breakout).
Customize the appearance of the lines with options for thickness, color, and style (solid, dotted, or dashed) to suit your chart preferences. Perfect for traders looking to implement a simple yet effective breakout strategy!
Key Features:
Editable period (N) for high/low calculation.
Real-time updates of high/low levels.
Customizable line thickness, color, and style.
Usage:
Use on daily charts for swing trading or position trading.
Combine with other indicators or price action analysis for better confirmation.
Breakout Band v1.0This indicator uses a custom source to define a point of relativity to which regions are based off to aid in technical analysis.
Breakout Band's use is:
- Monitoring trends
- Defining trends
- Defining areas of consolidation
- Trend support / resistance levels
- Aid in technical analysis
However, the band provides information different to that of an EMA, as they are not created from the same source, ref Fig 1.
---
Fig 1
Breakout Band compared to an EMA, both with a length setting of 20.
---
The primary band uses your charts timeframe to plot the band. This can be useful for more immediate information, ref Fig 2.
Fig 2
BTC on a 15m chart with Breakout Band's Chart Timeframe option.
---
There is also a functionality for a higher timeframe band to be plotted ( currently limited to 4 higher timeframes ) which can help to view higher timeframe moves with lower timeframe information, ref Fig 3. The higher timeframe band has an added smoothing effect.
Fig 3.
The same chart as referenced in Fig 2., while using Breakout Bands HTF option ( 60m band ).
---
USING BREAKOUT BAND
The band provides potential areas of consolidation, as seen in Fig 4., and when price action falls outside of the band, it can be considered trending.
Fig 4.
Defining areas of consolidation, trends, and monitor trends with Breakout Band.
---
Different zones are given different colors. The closer to the middle of the band, the higher chance of reactivity. Meaning, there is a greater chance that price will have a reaction within this zone. Whether that be trend continuation or a break of structure, showing signs of weakness of a trend, ref Fig 5.
Fig 5.
Breakout Bands reactivity region showing an area of potential resistance, which price action enters, then the trend continues.
---
NOTE : The same principles apply if you're using the HTF band for monitoring HTF trends.
I hope you enjoy the Breakout Band. Should you encounter any issues or have any suggestions for improving this indicator, let me know.
Any and all feedback is appreciated.
Breakout Trade LevelsThis indicator is designed for trading CFD indices, focusing specifically on breakout strategies.
For instance, utilize this indicator to set up a bracket order at the beginning of the trading day, anticipating a breakout in NAS100 with a movement of 1% in either direction. Utilizing the Open Price, it calculates the Entry Price, Stop Loss (SL), and Take Profit (TP) based on percentage movements.
FinancialWisdom Breakout IndicatorBreakout is detected when:
1- Price is higher than previous 6 bars
2- price is above 1% of previous high and below 20%
3- price is above 20 week moving average
4- Volume is higher by 30% of 1 candle before.
5-MACD is positive
Remember indicators/strategies are there to help you in your trading and not to trade based on them solely.
Not a financial advise.
Breakout Machine V2 - Alerts - Bitcoin BeatsHello, Hello, Hello and welcome back to Bitcoin Beats.
As the title suggests, this is Version 2 of The Breakout Machine Alerts version.
Unlike the previous version, this one has been fine-tuned to work best on Binance Futures ( BTCUSDT ).
PLEASE BE CAREFUL WITH YOUR LEVERAGE AND DON'T GET REKT.
Trade at your own risk! Good luck!
This strategy takes MACD and Volume spikes to calculate pumps and dumps in the bitcoin market.
I've also added custom backtesting inputs and leverage for you all to experiment with and see the profitability of the Strategy.
Alerts version coming soon...
Thank you, And goodbye, from Bitcoin Beats.
BreakOut Candle with Alerts [MV]hello everyone this indicator using for automation trading with alerts
here previous Day high low
first candle high low and time frame
Green background it's mean 200 SMA above open candle
red background it's mean 200 SMA below open candle
!!! you can also change any period SMA. buy default add 200 SMA
Breakout lineSimple script to find breakout levels. Set your choise of timeframe. (must to be higher then chart)
breakout and swingA Price Action system that use swing point and breakout
above the black line (breakout) is long, below short
swing/support/resistance points (blue circles) are displayed after a top or botton, breaking it means an inversion
red circles try to guest a target after a top/bottom or after a swing break.
the main trend is made by the black line that is set on Day period suitable for 1h to 15m time frame , for small TF you can set a smaller period from setting command
By default a set a 40 period channel high/low (the highest and lowest 40 bar back) that is ok for 1 h or smaller tf , but look to long for daily tf, adjust it yourself
Breakout Range LS alert 893 popup trigger ver For Japanese major donchain breakout bot's logic.
it's trigger are price range and highest/lowest price.
this script put on symbol/text in chart when price reach on trigger:)
recommend to use on 1h chart.
include alertcondition for TV alert.
Breakout IndicatorThis indicator aims to predict the direction of a breakout, should one occur. It is specifically designed with pennants and wedges in mind.
You also may use progressively shorter timeframes as a breakout approaches, to get more up-to-the-minute sort of data, please note that breakout is not accurate until after the candle is complete. For this reason, shorter timeframes are necessary to get an accurate read on the market. This is also not intended for candles larger than 1D, but may work with longer candles anyway.
Breakout BarThe following script colors breakout bars.
The user can specify the look back period.
If current close is highest of the past n bars it will color the bar light blue.
If current close is lowest of the past n bars it will color the bar red.
All other bars are black for down bars and white for up bars.
Consecutive Higher/Lower Closes with Breakout LineIndicator Description:
"Four Consecutive Higher/Lower Closes with Auto Breakout Line Timeframe" is a custom TradingView indicator designed to help traders identify key breakout points based on consecutive price action. It combines two main features:
Four Consecutive Higher/Lower Closes – Detects bullish or bearish momentum through consecutive higher or lower closing prices.
Auto Breakout Line – Plots a breakout line that adapts to the timeframe of the chart, helping to visualize potential breakout levels and trends.
Features:
Higher/Lower Close Detection: The indicator tracks and plots lines when there are four consecutive higher closes (bullish) or four consecutive lower closes (bearish). This can signal a trend or momentum in the market.
Breakout Line: It draws an adaptive breakout line that adjusts based on the selected timeframe (i.e., the chart interval), helping traders visually identify breakout levels across different timeframes.
Timeframe Adaptability: The indicator automatically adjusts the breakout line timeframe based on the chart interval (e.g., 15 minutes for lower timeframes and 1 day for higher timeframes).
Customizable Timeframe and Color: The default color for breakout lines is purple, but it is customizable. You can also enable/disable the breakout line through the settings.
How to Use This Indicator for Trading:
1. Trading with Consecutive Higher/Lower Closes:
Bullish Signal: When the indicator detects four consecutive higher closes, it signifies increasing buying momentum. Traders might consider taking long positions when this occurs, especially if the price continues to close higher.
Bearish Signal: When the indicator detects four consecutive lower closes, it signals increasing selling pressure. Traders might consider taking short positions if the price continues to close lower.
Confirmation: The fourth consecutive higher or lower close should be confirmed with additional analysis, such as candlestick patterns, support/resistance levels, or volume.
2. Using the Breakout Line:
The breakout line is designed to help traders identify potential breakout levels. When the price approaches or crosses this line, it could indicate that the market is either breaking out in the direction of the trend or failing to continue the trend.
Bullish Breakout: If the price crosses the breakout line upwards (after four consecutive higher closes), it may confirm that a bullish breakout is in progress. This can be a good opportunity to take a long position.
Bearish Breakout: If the price crosses the breakout line downwards (after four consecutive lower closes), it may confirm that a bearish breakout is occurring. This can be an opportunity to take a short position.
Avoid False Breakouts: It is important not to react to every price move crossing the breakout line. Wait for additional confirmation signals like higher volume, candlestick patterns (e.g., bullish or bearish engulfing), or other technical indicators (e.g., RSI, MACD) to confirm the breakout's validity.
How to Avoid Fake Breakouts:
A fake breakout occurs when the price moves beyond a breakout level but then quickly reverses back inside the range, trapping traders who took positions in the breakout direction.
Here are strategies to avoid fake breakouts:
1. Volume Confirmation:
A valid breakout is often supported by higher volume. If the price crosses the breakout line but the volume is low, it's more likely to be a fake breakout. Always check the volume when a breakout occurs.
Look for volume spikes that accompany the breakout. A surge in volume confirms the market's conviction in the new trend.
2. Candlestick Patterns:
Bullish/bearish engulfing patterns or Doji candles can provide important insights into potential reversals. If a breakout occurs but is immediately followed by a bearish engulfing candle, it's a sign that the breakout may be false.
Also, check for candlestick formations at key support or resistance levels for confirmation.
3. Time Confirmation:
Wait for the close of the current bar to confirm the breakout. A breakout within a single bar without closing above or below a significant level could be a false move.
Sometimes the market will test the breakout level before committing to the direction. This is common in volatile or choppy market conditions.
4. Use of Other Indicators:
RSI (Relative Strength Index): An overbought or oversold condition can indicate a potential reversal after a breakout.
MACD (Moving Average Convergence Divergence): Watch for a MACD crossover that aligns with the breakout direction to confirm the move.
5. Use Stop Losses:
A key rule in avoiding fake breakouts is to always use stop-loss orders. Set your stop-loss just outside the breakout level to avoid excessive losses if the price reverses.
Trailing stops can also help lock in profits if the price moves in your favor but may reverse at a later point.
Summary:
The Four Consecutive Higher/Lower Closes with Auto Breakout Line Timeframe indicator is a valuable tool for identifying strong trends and potential breakouts in the market. By combining consecutive close patterns with dynamic breakout levels, it can help traders spot bullish or bearish momentum and make more informed trading decisions. However, always confirm breakouts with volume, candlestick patterns, and other technical indicators to avoid fake breakouts and reduce the risk of false signals.
By using this indicator along with prudent risk management strategies, traders can improve their chances of entering and exiting trades at the right time while avoiding unnecessary losses from false breakouts.
Volatility Breaker Blocks [BigBeluga]The Volatility Breaker Blocks indicator identifies key market levels based on significant volatility at pivot highs and lows. It plots blocks that act as potential support and resistance zones, marked in green (support) and blue (resistance). Even after a breakout, these blocks leave behind shadow boxes that continue to impact price action. The sensitivity of block detection can be adjusted in the settings, allowing traders to customize the identification of volatility breakouts. The blocks print triangle labels (up or down) after breakouts, indicating potential areas of interest.
🔵 IDEA
The Volatility Breaker Blocks indicator is designed to highlight key areas in the market where volatility has created significant price action. These blocks, created at pivot highs and lows with increased volatility, act as potential support and resistance levels.
The idea is that even after price breaks through these blocks, the remaining shadow boxes continue to influence price movements. By focusing on volatility-driven pivot points, traders can better anticipate how price may react when it revisits these areas. The indicator also captures the natural tendency for price to retest broken resistance or support levels.
🔵 KEY FEATURES & USAGE
◉ High Volatility Breaker Blocks:
The indicator identifies areas of high volatility at pivot highs and lows, plotting blocks that represent these zones. Green blocks represent support zones (identified at pivot lows), while blue blocks represent resistance zones (identified at pivot highs).
Support:
Resistance:
◉ Shadow Blocks after Breakouts:
When price breaks through a block, the block doesn't disappear. Instead, it leaves behind a shadow box, which can still influence future price action. These shadow blocks act as secondary support or resistance levels.
If the price crosses these shadow blocks, the block stops extending, and the right edge of the box is fixed at the point where the price crosses it. This feature helps traders monitor important price levels even after the initial breakout has occurred.
◉ Triangle Labels for Breakouts:
After the price breaks through a volatility block, the indicator prints triangle labels (up or down) at the breakout points.
◉ Support and Resistance Retests:
One of the key concepts in this indicator is the retesting of broken blocks. After breaking a resistance block, price often returns to the shadow box, which then acts as support. Similarly, after breaking a support block, price tends to return to the shadow box, which becomes a resistance level. This concept of price retesting and bouncing off these levels is essential for understanding how the indicator can be used to identify potential entries and exits.
The natural tendency of price to retest broken resistance or support levels.
Additionaly indicator can display retest signals of broken support or resistance
◉ Customizable Sensitivity:
The sensitivity of volatility detection can be adjusted in the settings. A higher sensitivity captures fewer but more significant breakouts, while a lower sensitivity captures more frequent volatility breakouts. This flexibility allows traders to adapt the indicator to different trading styles and market conditions.
🔵 CUSTOMIZATION
Calculation Window: Defines the window of bars over which the breaker blocks are calculated. A larger window will capture longer-term levels, while a smaller window focuses on more recent volatility areas.
Volatility Sensitivity: Adjusts the threshold for volatility detection. Lower sensitivity captures smaller breakouts, while higher sensitivity focuses on larger, more significant moves.
Retest Signals: Display or hide retest signals of shadow boxes