Simple RSI Screener
Forums › ProRealTime English forum › ProScreener support › Simple RSI Screener
- This topic has 6 replies, 5 voices, and was last updated 8 months ago by robertogozzi.
-
-
02/04/2024 at 11:04 AM #227374
Hi
Need a real simple screener
RSI 8 day goes below 30 at any point over the last 5 days
I created something but its pulling in stocks that havent met this condition
Any help much appreciated
rsi 8 day crosses below 30 at any point over past 5 days123456789101112131415daycount = 5myRSI=RSI[14](Close)C1=myRSI Crosses Under 30 //Buy signalSCREENER [C1]Crossover=0For i = 0 to daycountif myRSI[i] crosses under 30 thenCrossOver=1breakendifnextSCREENER [Crossover]02/04/2024 at 1:20 PM #227378I use about the same screener:
myRSI=RSI[8](Close)
Cond1=(myRSI Crosses Under 30)[5]>=1
Screener[Cond1](myRSI as “RSI”)
Regards,
Penny
02/04/2024 at 2:11 PM #227379//hello code corrected :
daycount = 5
myRSI=RSI[8](Close)
//C1=myRSI Crosses Under 30 //Buy signal
Crossover=0
For i = 0 to daycount
if myRSI[i] crosses under 30 then
CrossOver=1
break
endif
nextSCREENER [Crossover=1]
02/04/2024 at 5:41 PM #227397Hello Jacques,
You can simplify your code like this :daycount = 5
myRSI=RSI[8](Close)
CrossOver = Summation[daycount](myRSI crosses under 30)SCREENER [Crossover>=1]
1 user thanked author for this post.
02/04/2024 at 5:47 PM #227401actually much lighter without a buckle!
02/27/2024 at 7:59 PM #228891Thanks for the replies
Im not sure if im doing something wrong but I run
daycount = 5
myRSI=RSI[8](Close)
CrossOver = Summation[daycount](myRSI crosses under 30)SCREENER [Crossover>=1]
and it pulls a big list of stocks that have not crossed under 30 over the past 5 days – i.e. the screener isnt working properly
its a simple screener, i just need it to be accurate to reduce my target list of stocks
any help much appreciated
02/28/2024 at 12:17 PM #228924It works like a charm to me.
When the price crosses under 30 for just a few decimals, auch as 0.1 or less, you will have to zoom in the indicator quite a bit to be able to spot the crossover.
-
AuthorPosts
Find exclusive trading pro-tools on