binque 6 posts msg #135227 - Ignore binque | 
4/1/2017 1:57:40 PM
  Here is a simple 52 week high filter that I have been using to find nice entry targets
 The objective is to provide a quality list of stocks moving higher but that are in early stages of moving up.  Also to make the list small enough that I don't have to spend hours looking for investment targets.
 I also chose stocks above $5 and below $50 since this seems to be a psychological investment point for many investors to look for entry points on stocks.  I also wanted stocks with enough volume so I picked 1 millions shares traded daily since less then that could provide volatility risk of getting stuck into slow moving stocks.  I also provided enough raw data ( Moving averages, Highs, Lows, Open, Closed etc...) to help in the decision making process.  Understand, this is just a simple entry filter to look for targets,  Once I have identified what I like from this list, I the do further research on other sites like http://TradingViewer.com, http://MarketRealist.com, etc....
 
 Good Fishing and Investing
 
 /* By Paul Benkert */
 show stocks where high reached a new 52 week high in last 25 DAYS
 and rsi(13) is ABOVE 70
 and draw MA(50)
 and draw MA(200)
 and average volume is above 1000000
 and high is above 5
 and high is below 50
 and add column separator
 and add column exchange
 and add column sector
 and add column industry
 and add column separator
 and add column rsi(13)
 and add column rsi(50)
 and add column rsi(200)
 and add column separator
 and add column open
 and add column high
 and add column low
 and add column close
 and add column ma(13)
 and add column ma(50)
 and add column ma(200)
 
 
  |