ProReal Time ADX Bug?
ProReal Time Gurus...
I noticed a problem many months ago with the proscreener of PrpReal Time (PRT) and assumed it was just my inability to program or maybe a fluke that would solve itself given some time away from PRT. Well, I back using it and still notice the problem. Here’s a simple code I used for proscreener to find NYSE stocks with a 2 point increase in ADX over the previous day…
i1 = ADX[14]
c1 = i1 > i1[1] + 2
SCREENER[c1] ((close/DClose(1)-1)*100 AS "% Chg yesterday")
The problem with this code is that it also returns stocks with decreasing ADX’s. I contacted PRT about this and they sent me this code…
myADX=ADX[14]
pips=2
c1 = myADX > MYADX[1]+pips
screener[c1]((close/DClose(1)-1)*100 as "my" )
However, I think this code is equivalent to mine as it returns exactly the same results. I have found that of the 30 stocks that this code displays, about 5 or so of them have decreasing ADX’s. I must have done something wrong. Any help would be appreciated.
Walt