Hi,
Please help me with a CCI 14, separate screeners each:
1. with a condition of cross and close over value 100.
2. Current 100 value cross
3. Currently trading over 100 value
Regards,
Segie
JSParticipant
Senior
You can create three screeners using the conditions below:
2. Screener[c2]
3. Screener[c3]
thank you.
How can I add a condition for filtering? Example screen only stocks with a % change of 5% and over.
Regards,
Segie
JSParticipant
Senior
Hi,
xCCI=CCI[14]
c1=xCCI=>5
Screener[c1](xCCI as “CCI[14]”)
If I want the % change to be related to the stock price % change (not CCI), e.g. a 5% growth in share price, from previous day closing price, what would be the condition for filtering?
JSParticipant
Senior
c1=abs((Close-Close[1])/Close[1])*100=>5
Screener[c1]