| curinator 5 posts
 msg #67865
 - Ignore curinator
 | 9/29/2008 1:18:41 PM 
 I did see that chet, here is the actual long filter that I wanted as a "short" version. Note I did change some of the criteria to my liking to pick the stocks, but you get the idea. I wanted a short version for 1,2,3,4,5% and what not.....
 
 /* TRO STAT SCAN - GREED */
 
 set{CCb,days(close is above close 1 day ago,100)}
 set{CCa,days(close is below close 1 day ago,100)}
 set{ClxCl , CCa - CCb}
 
 add column ClxCl
 
 set{volcnt, count(volume above 1000000, 100) }
 set{volzero, count(volume equal 0, 100) }
 
 /* Long Profit Percent Statistics Display */
 
 set{HiOp, high - open}
 set{Long_Profit, HiOp/open }
 
 set{B1A, count(Long_Profit > .01 , 100)}
 set{B2A, count(Long_Profit > .02 , 100)}
 set{B3A, count(Long_Profit > .03 , 100)}
 set{B4A, count(Long_Profit > .04, 100)}
 set{B5A, count(Long_Profit > .05, 100)}
 set{B10A, count(Long_Profit > .10 , 100)}
 set{B20A, count(Long_Profit > .20 , 100)}
 set{B50A, count(Long_Profit > .50, 100)}
 
 add column HiOp
 add column Long_Profit {ProfitPct}
 
 and add column B1A {OVER1PCT}
 and add column B2A {OVER2PCT}
 and add column B3A {OVER3PCT}
 and add column B4A {OVER4PCT}
 and add column B5A {OVER5PCT}
 and add column B10A {OVER10PCT}
 and add column B20A {OVER20PCT}
 and add column B50A {OVER50PCT}
 
 and add column separator
 
 and add column volcnt
 and add column volzero
 
 close is between 2 and 500
 average volume(90) above 500000
 price is above ma(50)
 sort column 9 descending
 
 
 | 
| chetron 2,817 posts
 msg #67866
 - Ignore chetron
 modified
 | 9/29/2008 1:28:35 PM 
 maybe.....
 
 
 
 
 
 | 
| curinator 5 posts
 msg #67876
 - Ignore curinator
 | 9/29/2008 4:53:35 PM 
 Just what I was looking for. Thank you.
 =)
 
 
 | 
| jimichelssf 12 posts
 msg #67927
 - Ignore jimichelssf
 | 9/30/2008 10:34:08 AM 
 Earlier in this thread there was some  discussion about buying at the opening price.
 
 I am trying set up my buy orders the night before ( Sunday night for a Monday morning buy) and I don't know how to set up a limit buy that is at or below the opening price. I can always look at the stock in the morning and get the opening price manually and then place my order  but I'm hoping there is an automatic method.
 
 I just switched to Ameritrade and I'm using QuoteTracker.
 
 QuoteTracker said they did not have a method for this in their platform.
 
 Maybe someone has a work around or experience with other packages that can do the job?
 
 Thanks in advance!
 
 James
 
 
 
 | 
| TheRumpledOne 6,529 posts
 msg #67928
 - Ignore TheRumpledOne
 | 9/30/2008 11:03:24 AM 
 I believe if you enter your BUY AT MARKET OPEN order 15 minutes BEFORE the open, Ameritrade will fill at the open price.
 
 
 | 
| jimichelssf 12 posts
 msg #67931
 - Ignore jimichelssf
 | 9/30/2008 11:41:53 AM 
 Thank you TRO.
 
 James
 
 
 | 
| mystiq 650 posts
 msg #68080
 - Ignore mystiq
 | 10/5/2008 7:10:00 PM 
 TRO-
 Do you have a "10 percent a week STAT SCAN" for shorts?- i am using the one /* TRO STAT SCAN - 10 PERCENT POPS PER WEEK - TRADE PICKER */ ...or should i just invert it for shorts..?   -mystiq
 
 
 | 
| TheRumpledOne 6,529 posts
 msg #68098
 - Ignore TheRumpledOne
 | 10/6/2008 12:09:30 PM 
 There's a short version.
 
 
 | 
| chetron 2,817 posts
 msg #68103
 - Ignore chetron
 | 10/6/2008 12:54:11 PM 
 
 WHERE OH WHERE COULD IT BE??
 
 ; )
 
 
 | 
| mystiq 650 posts
 msg #68127
 - Ignore mystiq
 | 10/7/2008 4:10:51 AM 
 TheRumpledOne
 - Ignore TheRumpledOne 10/6/2008 12:09:30 PM
 
 There's a short version.
 ===================================================
 
 ...sorry to be a bother but, where..? :-(
 
 
 |