Hello, Wondering if anyone has screener code they can share that has the below conditions. Have tried to write the code but doesn’t seem to be working, thanks.
Price – increase of more than 10% since yesterdays close – Daily Timeframe
Volume – greater than 2 x times 40 day volume average
Shares outstanding – less than 10 million shares
yesterdays closing price – between $1 and $25
sort by highest increase in price since yesterdays close
JSParticipant
Senior
Salut Frank,
Pour les « actions en circulation », il n’y a pas de données ou d’instructions…
Dans le tableau des résultats, vous pouvez trier la colonne « PriceIncrease »…
c1=(close/close[1])>1.1
c2=volume>2*Average[40](volume)
c3=close[1]>1 and close[1]<25
Screener[c1 and c2 and c3]((close/close[1]) as "PriceIncrease")
Thanks mate much appreciated👍