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.
Looking to scan for a 30 day Bollinger Band squeeze and price breakout with abnormal volume
I'm good with the abnormal volume portion but am having difficulty defining the low volatility 30 day Bol Band and price breakout. Thanks for any help
0
Comments
I don't use BBs, so I'm not sure if the reference to "30 day" squeeze has some particular requirements. If not, I might do it something like this:
// Bands are narrowest in 30 days
and [BB Width(20,2) = min(30, BB Width(20,2))]
// Band width today is less that 25% of the widest bandwidth in 30 days)
and [BB Width(20,2) < max(30, BB Width(20,2) * .25]
You could play with any of the parameters to see what combination gives the best results.
This is very close to what I'm looking for
You could try converging price channels - upper channel - lower channel < x days ago upper channel - x days ago lower channel. Or maybe UC - LC < (x ago UC - x ago LC) * .25, or something like that. Not sure what would be a good channel length, though.