| barlowcpa 2 posts
 msg #146956
 - Ignore barlowcpa
 modified
 | 3/16/2019 9:00:55 PM 
 I'm looking for stocks that have reached a 30 day high within the past 8 bars
 that are in a short term downtrend
 and who have most recently traded higher than the highest high of the prior three bars.
 
 and another screen for
 
 Stocks that have reached 30 day low within the past 8 bars
 that are in a short term downtrend
 and who have recently traded lower than the lowest low of the prior three bars
 
 
 | 
| four 5,087 posts
 msg #146957
 - Ignore four
 | 3/16/2019 9:39:39 PM 
 How do you define... "that are in a short term downtrend" ?
 
 
 | 
| barlowcpa 2 posts
 msg #146958
 - Ignore barlowcpa
 modified
 | 3/16/2019 10:14:58 PM 
 in a short term downtrend
 max high of last 7 days is equal to max high of last 36 days
 and maximum high of last 3 days is less than maximum high of last 36 days
 
 for the reversal
 and there is a high that is greater than maximum high of the past 3 days by 1/2 percent
 
 I have a code from tc2000 that is as follows but it does not translate to stockfetcher very easily...
 MINL5 > MINL20
 (the minimum low of the last five day is greater than the minimum low of the last 20 days)
 AND MAXH7.1 = MAXH36
 (the maximum high of the last 7 days as of 1 day ago equals the maximum high of the last 36 days)
 AND MAXH3.1 < MAXH36.1
 (the maximum high of the last 3 days as of 1 day ago is less than the maximum high of the last 36 days as of 1 day ago)
 AND H > MAXH3.1 * 1.005
 (today’s high is greater than the (high of the last three bars as of 1 day ago * 1.005))
 AND AVGV50 > 5000
 (the average volume of the last 50 days is greater than 5000)
 
 
 | 
| four 5,087 posts
 msg #146959
 - Ignore four
 modified
 | 3/17/2019 1:12:29 AM 
 "I have a code from tc2000 that is as follows but it does not translate to stockfetcher very easily..."
 
 What  do you have that is OK versus need help with?
 
 --
 This is for the volume:
 
 /*  AVGV50 > 5000 (the average volume of the last 50 days is greater than 5000) */
 Average Volume(50) is greater than 5000
 
 
 | 
| dashover 229 posts
 msg #146982
 - Ignore dashover
 | 3/18/2019 10:59:59 AM 
 Show stocks where price   reached a new 30 day high within the last 8 days
 and Average Volume(90) is above 700000
 optionable
 price < low 3 days ago
 not etf
 
 
 as a start... Dash
 
 
 
 |