I want to scan stocks with rsi 14 =40

i want to scan a set of stocks which have rsi 14 period value at 40

Type Code below code in scanner

RSI(14)=40

Scan the stocks ! Done

Happy TRADING !

HeLlO TrAdEr,

SCRIPT for finding stocks with RSI exactly at 40

RSI(CLOSE, 14) = 40 

SCRIPT for finding stocks with RSI equal 40 and above 

RSI(CLOSE, 14) >= 40 

SCRIPT for finding stocks with RSI equal 40 OR above and increasing

RSI(CLOSE, 14) >= 40 AND 
RSI > (REF(RSI(CLOSE, 14),1)