Here is the Screener for long canditates form the popular TTM Squeeze Indicator form J. F. Carter.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
basis = average[20](close) dev = 2.0 * Std[20](close) upperBB = basis + dev lowerBB = basis - dev //KC ma = average[20](close) myrange = range[20] rangema = average[20](myrange) upperKC = ma+rangema * 1.5 lowerKC = ma-rangema * 1.5 value = (Highest[20](high)+Lowest[20](low)+average[20](close))/3 val = linearregression[20](close-value) sqzOn = (lowerBB>lowerKC) AND (upperBB<upperKC) c1 = average[52](close*volume) > 300000 c2 = val > val[1] and val > 0 if sqzOn = 1 then result = 0 else result = 1 endif c3 = result[1] = 1 and result[2] = 1 and result[3] = 1 c4 = result = 0 screener[c1 and c2 and c3 and c4]sort by val |
you only have to change the 300000 value of traded volume to your prefered value.
i use 3 mio euro for german stocks on weekly chart.
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
Hi great screener. I am quite new, is it possible to have this screener so it specifies the result to be on a 15 minute timeframe at all. Many thanks. S
Hi, how to make this screener as an indicator ? thanks
Hi , I have an error on line 13 when I run this: line 13 value = (Highest[20](high)+Lowest[20](low)+average[20](close))/3: Any help greater received thanks