Tight Consolidation With Contracting Volume1. Price is above EMA20 by 0-3%
2. EMA20 is above EMA50 by 1%-3%
3. Latest close is positive
4. Latest volume is lower than 20 day average by at least 30%
5. Show signal as an arrow below the candle
Полосы и каналы
Volatility Squeeze//@version=5
indicator("Volatility Squeeze", overlay=true)
// Bollinger Bands
bbLength = input(20, "BB Length")
bbMult = 2.0
= ta.bb(close, bbLength, bbMult)
// Keltner Channels
kcLength = input(20, "KC Length")
kcMult = 1.5
trueRange = ta.tr
kcUpper = ta.ema(close, kcLength) + ta.ema(trueRange, kcLength) * kcMult
kcLower = ta.ema(close, kcLength) - ta.ema(trueRange, kcLength) * kcMult
// Squeeze Condition
squeeze = bbUpper < kcUpper and bbLower > kcLower
// Volume Surge
volumeAvg = ta.sma(volume, 20)
volumeSpike = volume > volumeAvg * 2
// Buy Signal: Squeeze Breakout + Volume Spike
buySignal = ta.crossover(close, bbUpper) and squeeze and volumeSpike
plotshape(buySignal, style=shape.triangleup, color=color.green, location=location.belowbar)
DEEP 1//@version=5
indicator("Volatility Squeeze", overlay=true)
// Bollinger Bands
bbLength = input(20, "BB Length")
bbMult = 2.0
= ta.bb(close, bbLength, bbMult)
// Keltner Channels
kcLength = input(20, "KC Length")
kcMult = 1.5
trueRange = ta.tr
kcUpper = ta.ema(close, kcLength) + ta.ema(trueRange, kcLength) * kcMult
kcLower = ta.ema(close, kcLength) - ta.ema(trueRange, kcLength) * kcMult
// Squeeze Condition
squeeze = bbUpper < kcUpper and bbLower > kcLower
// Volume Surge
volumeAvg = ta.sma(volume, 20)
volumeSpike = volume > volumeAvg * 2
// Buy Signal: Squeeze Breakout + Volume Spike
buySignal = ta.crossover(close, bbUpper) and squeeze and volumeSpike
plotshape(buySignal, style=shape.triangleup, color=color.green, location=location.belowbar)
SassyCrypto - Bollinger Band DeviationsThis script provides a signal when price has accepted outside the Bollinger bands then then closed back within the Bollinger bands.
Given price spends 95% of its time within 2 SD of the mean, this is useful to identify when price is losing momentum and likely to revert back to the mean.
I find this useful for taking profit on swing trades or entering counter trend trades for a mean reversion.
30-45 DTE Wheel Strategy EntriesTimeframe Recommendation
Use Daily Charts - Each candle represents 1 trading day, aligning with:
30-45 day expiration cycles
Reduced noise compared to intraday charts
Natural alignment with monthly options expiration
Optimized Entry Filters
Stricter requirements than standard wheel strategy:
HV Rank > 60% (instead of 50%) - Ensures sufficient volatility
ATR% > 1.5 - Filters out low-volatility environments
RSI crosses 35/65 (more conservative than standard 30/70)
50/200 SMA trend filter (avoid counter-trend trades)
Visual Guidance
Green ▲ = Put selling opportunity (bullish)
Red ▼ = Call selling opportunity (bearish)
Table shows crucial metrics for monthly trades:
Historical Volatility Rank
Current ATR percentage
Overall market trend
DTE window reminder
Best Practices for 30-45 DTE Trading:
Enter positions when you see signals in the first 3 days of the week (Monday-Wednesday)
Look for signals where price is at the extreme 10% of the Bollinger Band
Combine with earnings calendar - avoid positions with earnings in next 30 days
Ideal setup has both:
High HV Rank (>70%)
ATR% > 2.0
Clear trend alignment
Example Trade Sequence:
On daily chart, wait for green triangle below price
Check table: HV Rank 68%, ATR% 2.1%, Trend = Bullish
Sell 30-45 DTE put at lower Bollinger Band strike
Manage position separately (no exit markers shown)
SMAs (14,21,50,100) by ShabiDefinition
This is the Simple moving average of 14, 21, 50, 100) . Simple Moving Average (SMA) is a price based, lagging (or reactive) indicator that displays the average price of a security over a set period of time. A Moving Average is a good way to gauge momentum as well as to confirm trends, and define areas of support and resistance. Essentially, Moving Averages smooth out the “noise” when trying to interpret charts. Noise is made up of fluctuations of both price and volume. Because a Moving Average is a lagging indicator and reacts to events that have already happened, it is not used as a predictive indicator but rather an interpretive one, used for confirmations and analysis.
Simple Moving Average is an unweighted Moving Average. This means that each day in the data set has equal importance and is weighted equally. As each new day ends, the oldest data point is dropped and the newest one is added to the beginning.
It must be taken into account that, while SMA helps filter out the noise and see the general direction in which the symbol has been moving, it is also slow to react to newer changes. The higher the SMA length is, the longer it will take for a major price change to be notably reflected in it.
CALCULATION
A Simple Moving Average with the length of X is a sum of last X values divided by X. Here is an example calculation of an SMA with the length of 3:
Sum of Period Values / Number of Periods
Closing Prices to be used: 5, 6, 7, 8, 9
First Day of 3 Period SMA: (5 + 6 + 7) / 3 = 6
Second Day of 3 Period SMA: (6 + 7 + 8) / 3 = 7
Third Day of 3 Period SMA: (7 + 8 + 9) /3 = 8
TRBO Auto TrendlinesTRBO Auto Trendlines is trend following indicator.
The script identifies swing highs and swing lows in price data.
It connects these points to draw trend lines, representing upward or downward trends.
Support and Resistance Levels:
Trend lines act as diagonal support or resistance levels according to SMA , helping traders anticipate potential price reactions.
Users can configure settings like lookback periods, sensitivity, and minimum pivot strength to fine-tune trend line accuracy.
Advantages of the Script
Saves time by automating trend line drawing.
Consistency in detecting trend lines based on predefined rules.
Reduces subjectivity compared to manual trend line analysis.
Limitations
May not capture complex or subtle market structures.
Requires parameter adjustments for different timeframes or assets.
Bitcoin Breakout Blaster 4HourSet Your Chart to 4 Hour for this Strategy
"Bitcoin Breakout Blaster" is a streamlined trading approach designed for the 4-hour chart of Bitcoin (BTC), focusing on capturing significant price movements with a blend of technical analysis tools. Here's how it operates:
Core Concepts:
Volume Weighted Moving Average (VWMA) Bollinger Bands:
With a length now set to 20 periods, these bands use volume in their calculation, providing a sensitive indicator of potential breakouts or pullbacks based on market activity. This setting has shown to be optimal for identifying price breakouts in Bitcoin's market.
MACD Momentum Gauge:
The Moving Average Convergence Divergence (MACD) is employed with settings of 10 for the fast length, 24 for the slow length, and 9 for signal smoothing. Trades are triggered only when the MACD histogram shows positive values, ensuring there's underlying bullish momentum behind price movements.
Trading Logic:
Entry (Long):
A long position is taken when:
The price moves above the upper Bollinger Band, indicating a potential upward breakout.
The MACD histogram is positive, confirming bullish momentum.
Exit:
The trade is closed when the price falls below the lower Bollinger Band, signaling a possible end to the breakout or a reversal.
Strategy Characteristics:
Breakout Focus: The strategy capitalizes on Bitcoin's periodic breakouts from established price ranges, aiming to enter trades just as significant movements begin.
Momentum Confirmation: Only engages in trades with confirmed momentum, reducing the risk of entering on false signals.
Considerations:
Volatility: Bitcoin's market can be highly volatile, and this strategy benefits from such conditions by aiming to ride breakouts rather than predict them from consolidation phases.
Adjustability: While the current settings work well, traders might need to tweak MACD parameters or Bollinger Band standard deviation based on evolving market conditions.
"Bitcoin Breakout Blaster" focuses on leveraging Bitcoin's volatility for potential gains by identifying and acting on breakout signals with confirmed momentum.
Buy and Sell indicator for all scriptsthis indicator is made of RSI and SMA and it has 6 different buy and sell signals.This indicator ensures to provide good signals when at least 4 buy or sell signals are generated at the same time.
Boa -Impulse MACD with Filters and Sessions UPDATED Impulse MACD Strategy with Filters and Sessions
This strategy is designed to provide precise entry and exit points based on the Impulse MACD indicator while incorporating additional filters for flexibility and enhanced performance. It includes powerful features such as session-based trading, higher timeframe validation, and an optional signal line exit filter. Here's what makes this strategy unique:
Key Features:
Impulse MACD-Based Entries:
Utilizes the Impulse MACD to identify potential Long and Short opportunities.
Long positions are triggered when the Impulse MACD crosses above zero, signaling bullish momentum.
Short positions are triggered when the Impulse MACD crosses below zero, indicating bearish momentum.
Session-Based Time Filter:
You can restrict trading to specific time windows using up to six configurable trading sessions.
This allows the strategy to focus on periods of higher liquidity or times that match your trading style.
Higher Timeframe Filters:
Optional filters allow you to validate trades based on momentum and trends from up to three higher timeframes.
Ensures trades align with broader market conditions for higher accuracy.
Optional Signal Line Exit Filter:
Exits Long positions when the MACD signal line drops to or below 0.01.
Exits Short positions when the MACD signal line rises to or above -0.01.
This filter can be toggled on or off based on your trading style or preference.
Risk Management:
Configurable stop loss and take profit levels, either in ticks or points, to manage trade risk effectively.
Fully adjustable for both intraday and swing trading setups.
How It Works:
Entries:
Long: Triggered when the MACD value crosses above zero and aligns with the session and timeframe filters.
Short: Triggered when the MACD value crosses below zero and aligns with the session and timeframe filters.
Exits:
The MACD signal line exit filter ensures positions are closed when momentum weakens.
Optional stop loss and take profit levels provide automatic risk management.
Customizability:
Enable or disable the session filter, higher timeframe validation, and signal line exit filter.
Adjust parameters such as session times, MACD settings, and risk levels to tailor the strategy to your needs.
Who Is This Strategy For?:
Traders who value precision and flexibility.
Intraday and swing traders looking to combine momentum-based entries with time-based filtering.
Those seeking additional validation using higher timeframe trends or specific market sessions.
Impulse macd strategy with sessions filters and TP/SLimpulse MACD Strategy with Filters and Sessions
This strategy is designed to provide precise entry and exit points based on the Impulse MACD indicator while incorporating additional filters for flexibility and enhanced performance. It includes powerful features such as session-based trading, higher timeframe validation, and an optional signal line exit filter. Here's what makes this strategy unique:
Key Features:
Impulse MACD-Based Entries:
Utilizes the Impulse MACD to identify potential Long and Short opportunities.
Long positions are triggered when the Impulse MACD crosses above zero, signaling bullish momentum.
Short positions are triggered when the Impulse MACD crosses below zero, indicating bearish momentum.
Session-Based Time Filter:
You can restrict trading to specific time windows using up to six configurable trading sessions.
This allows the strategy to focus on periods of higher liquidity or times that match your trading style.
Higher Timeframe Filters:
Optional filters allow you to validate trades based on momentum and trends from up to three higher timeframes.
Ensures trades align with broader market conditions for higher accuracy.
Optional Signal Line Exit Filter:
Exits Long positions when the MACD signal line drops to or below 0.01.
Exits Short positions when the MACD signal line rises to or above -0.01.
This filter can be toggled on or off based on your trading style or preference.
Risk Management:
Configurable stop loss and take profit levels, either in ticks or points, to manage trade risk effectively.
Fully adjustable for both intraday and swing trading setups.
How It Works:
Entries:
Long: Triggered when the MACD value crosses above zero and aligns with the session and timeframe filters.
Short: Triggered when the MACD value crosses below zero and aligns with the session and timeframe filters.
Exits:
The MACD signal line exit filter ensures positions are closed when momentum weakens.
Optional stop loss and take profit levels provide automatic risk management.
Customizability:
Enable or disable the session filter, higher timeframe validation, and signal line exit filter.
Adjust parameters such as session times, MACD settings, and risk levels to tailor the strategy to your needs.
Who Is This Strategy For?:
Traders who value precision and flexibility.
Intraday and swing traders looking to combine momentum-based entries with time-based filtering.
Those seeking additional validation using higher timeframe trends or specific market sessions.
XauKillThis indicator is structured as follows:
1- The SMA 8-18-50-200 averages are used.
2- The term "FOP" is used to refere to the opening of the Frankfurt Stock Exchange at 9:00 AM.
3- The Asian session is marked, starting at 1:00 AM and ending at 7:00 AM.
4- Restricted Liquidity levels are indicated, corresponding to +127% and -127% of the Asian range.
Combined Linear Regression Channel, SMI, and CMF StrategyTool that uses linear regression, stochastic momentum index, and the chaikin money flow to predict probable price movements
Keltner Channels with EMAsKeltner Channels with two Ema 13and 26
This is the mixture of Dr. Elders indicators combinations
Gannaliste BİTCOİN ORTA-UZUN ZAMAN ARALIKLI 9Kare Sadece Bitcoin özelinde W.D.GANN 9KARE sayı tabanı sistemi ile ORTA-UZUN zaman aralığında muhtemel hareket alanı destek ve direnç bölgelerini ölçmede kullanılır deneysel çalışmadır. ekranda görünen AL - SAT ibareleri yatırım tavsiyesi değildir. Bu ibareler devam eden trendin yapısı hakkında fikir vermek içindir. Sistem 5-6 basamaklı yatırım araçları için kullanılabilir örneğin fiyatı 123456,789 yada 12345,678 gibi, Gann analiz yöntemleriyle alakalı diğer yazdığım indikatörler gizlidir onlara ulaşmak isterseniz benimle iletişime geçiniz. By Gannaliste.
Gannaliste BİTCOİN 4 SAATLİK YAPIDA 9Kare Sayı Tabanı SistemiSadece Bitcoin özelinde W.D.GANN 9KARE sayı tabanı sistemi ile 4 Saatlik grafik yapısında muhtemel hareket alanı destek ve direnç bölgelerini ölçmede kullanılır deneysel çalışmadır. ekranda görünen AL - SAT ibareleri yatırım tavsiyesi değildir. Bu ibareler devam eden trendin yapısı hakkında fikir vermek içindir. Sistem 6 basamaklı yatırım araçları için kullanılabilir örneğin fiyatı 123456,789 gibi, Gann analiz yöntemleriyle alakalı diğer yazdığım indikatörler gizlidir onlara ulaşmak isterseniz benimle iletişime geçiniz. By Gannaliste.