Hi,
Could anyone help with pro-screener code to alert when on a daily chart the gap between the top Bollinger up band (20 2) and the bottom Bollinger down band (20 2) is below 5%?
Many thanks,
Paul
Hello Paul, have you gotten any response on your Bollinger band squeeze codes?
I am looking for the same solution so please let me know what updates you have on this.
Regards.
Jk
There you go:
bollU = BollingerUp[20](close)
bollD = BollingerDown[20](close)
Gap = bollU - bollD
PerC = Gap * 100 / bollU
Cond = Gap < 5
Screener[Cond](PerC as “Gap%”)
Hello JK,
I hadn’t had any joy until last week when I saw code had been added. I have added it to my platforn now and will see how things work out.
Best regards,
Paul