This useful screener will catch a bounce on the lower Bollinger band in an uptrend.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
indicator1 = Average[200](close) c1 = (close > indicator1) //SMA 200 en hausse indicator2 = Average[200](close) indicator3 = Average[200](close) c2 = (indicator2 > indicator3[1]) //+ bas d'hier > Boll inf indicator4 = BollingerDown[20](close) c3 = (low[1] >= indicator4[1]) //+ bas du jour < Boll inf indicator5 = BollingerDown[20](close) c4 = (low < indicator5) //Close du jour > close hier c5 = (close > close[1]) c6 = (close >= 0.3) SCREENER[c1 AND c2 AND c3 AND c4 AND c5 AND c6] ((close/DClose(1)-1)*100 AS "% Veille") |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :
Filename : download the ITF files
How to import ITF files into ProRealTime platform?
PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
hello once installed I have no results despite different options of markets or temporality