Hi,
Can anyone help me – looking for 2, 3 and 4 consecutive Inside bars screener based only on price – no indicators or trend etc
I know Nicholas has written a Boomer Screener but it includes indicator and trend – I’m useless at code so appreciate the help in advance
Thanks
Whenever your mouse hovers your avatar (upper right corner on the blue band of this site) a search box opens and you’ll be able to find any existing topic related to the selected words.
This a BOOMER screener where Adx, where DI+, DI- and Volume have been added https://www.prorealcode.com/prorealtime-market-screeners/boomer-pattern/.
If you just need the Boomer pattern without additional filters, this is the same one as I modified it:
//PRC_Boomer pattern screener - 11.01.2017 - Nicolas @ www.prorealcode.com
boomer = summation[2](high<high[1] and low>low[1])=2
screener [boomer]
Hi Roberto,
Thanks for your reply – is it possible to monitor for 4 consecutive Inside Bars though – so 4 inside bars in a row?
is it possible to monitor for 4 consecutive Inside Bars though – so 4 inside bars in a row?
//PRC_Boomer pattern screener - 11.01.2017 - Nicolas @ www.prorealcode.com
boomer = summation[4](high<high[1] and low>low[1])=4
screener [boomer]
is it possible to monitor for 4 consecutive Inside Bars though – so 4 inside bars in a row?
|
|
boomer = summation[4](high<high[1] and low>low[1])=4
screener [boomer]
|
Actually this is 5 bars, since the forth time it compares itself against the previous (fifth) bar.
Actually this is 5 bars
Are you sure? SUMMATION[4] counts how many times the condition is met on the last four bars. Yes it uses bar 5 (in the test as it needs to know the high and low one bar back to know if the bar it is checking is an inside bar but the test is counted on the last four bars including the current one. Unless it is different on screeners compared to indicators? I’m not big on screeners so I will be happy to be corrected and learn something.
Thank you – I can see what you’ve done to get to the 4 – if it is 5 bars I’ll change it to 3 in the code
Many Thanks for your help