Hi I tried to make a simple screener with indicator TEMA and there seems to be an issue with TEMA only able to return data up to 85 day length on Daily chart and NOT ANYTHING LONGER such as 86 day length and so on.
So the Screener like the one below works and does the correct search but if I substitute TEMA [85] for TEMA[200] or anything over 85 day length, it returns NO Tickers.
Can you please let me know how to fix this?
TEMA1= TEMA[3](close)
TEMA2 =TEMA[85](close)
c1 =TEMA1 > TEMA2
d = RSI[2](close)
c2 = d > 1
SCREENER[c1 AND c2]
I would like the screener that is below to WORK AND RETUN TICKERS because right now ITS NOT RETURNING ANY TICKERS WITH TEMA2 set at 200 day length.
TEMA1= TEMA[3](close)
TEMA2 =TEMA[200](close)
c1 =TEMA1 > TEMA2
d = RSI[2](close)
c2 = d > 1
SCREENER[c1 AND c2]
Please let me know,
Thank you.
Mary