Prosceener Help Required
Forums › ProRealTime English forum › ProScreener support › Prosceener Help Required
- This topic has 8 replies, 2 voices, and was last updated 7 years ago by Nicolas.
-
-
04/11/2017 at 1:19 PM #31718
Hi everyone,
I am new to PRT and am trying to create a US stock screener (for example on Nasdaq) where I want to screen stocks based on the following conditions. I would like screener to show a list of stocks with following values. can you please help me creating this scan:
- Stocks with price close > 5
- Average Volume over the last 10 days > 1000000
- Price close > 50 day moving average
- % change over last 250 days i.e. (Close – Close[250]) / Close[250]
Thanks for your help in advance.
Cheers, Raman
04/11/2017 at 6:27 PM #3175804/11/2017 at 10:37 PM #31798Hi Nicolas,
Thanks a lot for your help.
The fourth point is a sorting criteria. Basically I would like to see the following:
Assuming there are approx 100 stocks in Nasdaq, I would like to see stocks with value over $5 and average volume (over the last 10 days) over 1 million and stock price to be above it 50 day average and then sort top 50 stocks based on their % change over 250 days ( 1 year).
I hope above helps.
Pl let me know if you would like any more information.
Cheers
04/12/2017 at 9:05 AM #31821Thanks for the complete explanation, this stock screener code should do what you are looking for:
123456789//Stocks with price close > 5//Average Volume over the last 10 days > 1000000//Price close > 50 day moving averagec1 = close>5c2 = average[10](volume)>1000000c3 = close>average[50]screener[c1 and c2 and c3] ((Close - Close[250]) / Close[250])04/14/2017 at 4:13 AM #3200304/19/2017 at 12:40 PM #3258004/19/2017 at 1:36 PM #3259804/19/2017 at 1:43 PM #3260004/19/2017 at 1:48 PM #32603 -
AuthorPosts