| casinotech 26 posts
 msg #110263
 - Ignore casinotech
 | 1/16/2013 4:51:39 PM 
 Hi guys. I am trying to make a filter that will show stocks in an uptrend where the share price is trading between MA(10) and ema(30), the traders action zone. I tried writing it and I keep getting errors. Can someone please advise? TIA
 
 
 | 
| gmg733 788 posts
 msg #110268
 - Ignore gmg733
 modified
 | 1/16/2013 5:12:05 PM 
 Long version:
 
 show stocks where Average Volume(60) is above 250000
 and where daily high has been decreasing over the last 3 days
 and where MA(10) close is above EMA(30) close
 and where daily close is above EMA(30) daily close
 and where daily close is below MA(10) daily close
 and where daily close is above MA(200) daily close
 and where ADX(10,10) is above 20
 and close is above 10
 
 Take out the ADX stuff if you want.  One of the first filters I ever wrote.
 
 
 | 
| casinotech 26 posts
 msg #110270
 - Ignore casinotech
 | 1/16/2013 5:36:08 PM 
 thank you!!
 
 
 | 
| gmg733 788 posts
 msg #110278
 - Ignore gmg733
 | 1/16/2013 10:50:16 PM 
 Short version:
 
 show stocks where Average Volume(60) is above 250000
 and where daily high has been increasing over the last 3 days
 and where MA(10) close is below EMA(30) close
 and where daily close is below EMA(30) daily close
 and where daily close is above MA(10) daily close
 and where daily close is below MA(200) daily close
 and where weekly close MA(10) is below weekly close EMA(30)
 and where ADX(10,10) is above 20
 and close is above 10
 
 You can vary some of the variables, but this gives you some candidates.
 
 
 | 
| gmg733 788 posts
 msg #110279
 - Ignore gmg733
 | 1/16/2013 10:55:33 PM 
 And the Long T-30
 
 show stocks where Average Volume(60) is above 250000
 and where daily high has been decreasing over the last 3 days
 and where daily low is below EMA(30)
 and where daily open is above EMA(30)
 and where MA(10) close is above EMA(30) close
 and where daily close is above EMA(30) daily close
 and where daily close is below MA(10) daily close
 and where daily close is above MA(200) daily close
 and where weekly close MA(10) is above weekly close EMA(30)
 and where ADX(10,10) is above 20
 and close is above 10
 
 
 |