| cheetah 6 posts
 msg #55006
 - Ignore cheetah
 modified
 | 9/21/2007 11:45:28 AM 
 You guys are the experts and are great at writing this stuff.  I am clueless with the code. I need someone to put together these attributes for my stock setup.  Here is what I am looking for.  This is some of what I was given.
 PINBALL SETUP
 Price per share 8-50
 Vol. 45 days > 300,000 – True
 Spread – 8 EMA Pin Ball – True
 3 % plus                Value= 29.37001 to max
 Code for the spread is ABS(AVGC50 + .15 - XAVGC13) / C > .22
 
 In my words I want:
 8 EMA less than 21EMA
 21EMA less than 34 EMA
 34 EMA less than the 50 SMA
 50 SMA less than the 200 SMA
 Previous days close is above the 8 EMA
 New 2 day high
 New 1 day high
 Thanks for any and all help.
 
 
 
 
 
 | 
| johnpaulca 12,036 posts
 msg #55012
 - Ignore johnpaulca
 | 9/21/2007 1:14:23 PM 
 something like this:
 
 
 
 
 
 | 
| cheetah 6 posts
 msg #55022
 - Ignore cheetah
 | 9/21/2007 2:45:16 PM 
 Its a start.  Need to have the volume and spread code implemented also.  To many stocks come up.  Thanks though.
 
 
 | 
| cheetah 6 posts
 msg #55064
 - Ignore cheetah
 | 9/22/2007 9:23:43 PM 
 The setup I am looking for is a stock that has been in a long downtrend or gapped down.  Now the stock has been trading flat.  An example would be SNIC as of 9-21-07.  Traded flat then started a very quiet up move until it tood off.  Another example, RDN as of last week.  Any help is appreciated.
 
 
 | 
| TheRumpledOne 6,529 posts
 msg #55078
 - Ignore TheRumpledOne
 modified
 | 9/23/2007 11:25:39 AM 
 
 
 
 That's what you specified.
 
 
 
 | 
| johnpaulca 12,036 posts
 msg #55088
 - Ignore johnpaulca
 | 9/23/2007 1:55:43 PM 
 
 
 
 -hope this helps.
 
 
 
 
 
 | 
| cheetah 6 posts
 msg #55095
 - Ignore cheetah
 | 9/23/2007 10:31:08 PM 
 Thanks Johnpaulca but not specific enough.  I am using this and it is giving me some setups but not perfect yet.  UNS is another perfect example of the setup I am looking for.
 EMA(8) below EMA(21)
 EMA(21) below EMA(34)
 EMA(34) below MA(50)
 MA(50) below MA(200)
 close 1 day ago is above 8(EMA)
 close is above the SMA(20)
 close 1 day ago is above 2 days ago
 stock decreased over 10% in last month
 stock closed within 1% of previous days close for last 2 weeks
 high reached a new 1 day high
 high reached a new 2 day high
 average volume increased for last 1 day
 stock is optionable
 close is between 45 and 55
 
 
 | 
| cheetah 6 posts
 msg #55130
 - Ignore cheetah
 | 9/24/2007 5:58:04 PM 
 Not sure if this helps.  This is the code for the setup I want for TC Net in case someone can transfer that over to Stockfetcher for me.
 (XAVGC34 < XAVGC55) AND (XAVGC21 < XAVGC34) AND ( XAVGC13 < XAVGC21) AND (XAVGC2 >= XAVGC8)
 ABS(AVGC34 - XAVGC13) / C > .16
 
 
 
 |