New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
Volatility contraction scans?
Does anyone have any suggestions on how to scan for volatility contractions? Be it through Bollinger Bands, Keltner Channels etc.. The goal is to find stocks that are in uptrends and then sell off followed by a contraction in volatility. I'd appreciate any suggestions thank you!!!
0
Comments
// Bollinger bands inside Keltner channels, and BB Bands at narrowest width in 3 months:
[group is sp500]
and [Upper Kelt Chan(20,2,10) > Upper BB(20,2) ]
and [Lower Kelt Chan(20,2,10) < Lower BB(20,2) ]
and [BB Width(20,2) = min(63, BB Width(20,2))]
and [sma(200, close) > 20 days ago sma(200,close)]
and [close > sma(200,close)]
It seems to be more a set up than a signal. It may catch tops as well as continuation ranges. You could probably tweak it to get better results.
bollinger band width (20,2) < ATR(10)*3
That will pull the exact squeeze condition.
So for Daily squeeze
and [Upper BB(20,2) <= Upper Kelt Chan(20,1.5,10)]
and [Lower BB(20,2) >= Lower Kelt Chan(20,1.5,10)]
For Weekly squeeze
and [weekly Upper BB(20,2) <= weekly Upper Kelt Chan(20,1.5,10)]
and [weekly Lower BB(20,2) >= weekly Lower Kelt Chan(20,1.5,10)]
For monthly Squeeze,
and [monthly Upper BB(20,2) <= monthly Upper Kelt Chan(20,1.5,10)]
and [monthly Lower BB(20,2) >= monthly Lower Kelt Chan(20,1.5,10)]
I'd shorten up the 'monthly' periods but that is a personal preference thing. On ThinkorSwim they also offer quarterly charts. Same principal on the squeeze, but I'd shorten up the period again. 20 quarters or 20 months is certainly an indicator of long term consolidation, but, probably better to use shorter period for actionable situations, if so desired.