Hi, i have been trying to code my own screener with no luck whatsoever, im a complete novice at coding etc.
Im trying to create the following rules, or at least expand the basic large GAP screener.
what i need is very simple for an expert im sure, im using ProRealTime
In Play Stock Screener needs
- the opening gap is at least 10% higher than previous days close.
- the relative volume is at least 3x the average
- the stock price should be between $2 and $30
- the shares outstanding (float) should be less than 30m
full details of what im trying to do are here
Watch List of the Best Stocks for Day Trading – Updated Daily | Warrior Trading
many thanks
Phil
for example:
gapOpen = (open/close[1]-1)*100
Volavg = average[20](volume)
c1=gapOpen>10
c2=Volume>3*Volavg
c3=close>2 and close<30
c4=volume<30*1000000
screener[c1 and c2 and c3 and c4]
Hi Ivan, thanks for connecting with this code.
Unfortunately it doesn’t work, i get a blank screen with no list on either USA or UK or any other market,
does it work for you?
regards
phil
JSParticipant
Senior
I tried the screener and it’s not the code but the conditions…
For example, when you disable (or reduce) one of the conditions, you do get hits…