| kmcninvest 43 posts
 msg #77631
 - Ignore kmcninvest
 | 8/17/2009 9:19:42 PM 
 First off, kudos to TRO.  This is a great filer...leveraging statistics.  I modified it some thinking that 52 weeks was too long for current strong stocks (thinking stocks must have a cycle of maybe 3 months).  I was shooting for the 5% range.  I targeted 13 weeks but added look behind of the last 12 weeks (week by week) and 26 and 52 weeks.  The last 12 weeks tells me if a stock is starting to lag and new stocks are showing and the 26/52 lets me make a decison on ties.  I would appreciate any thoughts on this as I am a newbie.
 
 
 /* TRO STAT SCAN for SWING TRADERS - use only on Saturday and Sunday */
 
 set{whiop, weekly high - weekly open}
 set{Long_Profit, whiop / weekly open }
 set{wkProfitPct, 100 * Long_Profit }
 
 set{C1A, count(Long_Profit > .04 , 13)}
 set{C2A, count(Long_Profit > .09, 13)}
 set{C0010, C1A - C2A}
 
 set{D1A, count(Long_Profit > .09 , 13)}
 set{D2A, count(Long_Profit > .19, 13)}
 set{D1020, D1A - D2A}
 
 set{E1A, count(Long_Profit > .19 , 13)}
 set{E2A, count(Long_Profit > .29, 13)}
 set{E2030, E1A - E2A}
 
 set{F1A, count(Long_Profit > .29 , 13)}
 set{F2A, count(Long_Profit > .39, 13)}
 set{F3040, F1A - F2A}
 
 set{G1A, count(Long_Profit > .39 , 13)}
 set{G2A, count(Long_Profit > .49, 13)}
 set{G4050, G1A - G2A}
 
 set{H1A, count(Long_Profit > .49 , 13)}
 set{H2A, count(Long_Profit > .99, 13)}
 set{H5052, H1A - H2A}
 
 set{I52, count(Long_Profit > .99 , 13)}
 set{fivepct1, count(Long_Profit > .05 , 1)}
 set{fivepct2, count(Long_Profit > .05 , 2)}
 set{fivepct3, count(Long_Profit > .05 , 3)}
 set{fivepct4, count(Long_Profit > .05 , 4)}
 set{fivepct5, count(Long_Profit > .05 , 5)}
 set{fivepct6, count(Long_Profit > .05 , 6)}
 set{fivepct7, count(Long_Profit > .05 , 7)}
 set{fivepct8, count(Long_Profit > .05 , 8)}
 set{fivepct9, count(Long_Profit > .05 , 9)}
 set{fivepct10, count(Long_Profit > .05 , 10)}
 set{fivepct11, count(Long_Profit > .05 , 11)}
 set{fivepct12, count(Long_Profit > .05 , 12)}
 set{fivepct, count(Long_Profit > .05 , 13)}
 set{fivepct26, count(Long_Profit > .05 , 26)}
 set{fivepct52, count(Long_Profit > .05 , 52)}
 set{sixpct, count(Long_Profit > .06 , 13)}
 set{sevenpct, count(Long_Profit > .07 , 13)}
 set{eightpct, count(Long_Profit > .08 , 13)}
 set{ninepct, count(Long_Profit > .09 , 13)}
 set{tenpct, count(Long_Profit > .1 , 13)}
 set{ziphi, count(whiop equal 0 , 13)}
 set{ziphix, count(whiop below 0.10 , 1)}
 set{onepct, count(Long_Profit > .01 , 13)}
 set{twopct, count(Long_Profit > .02 , 13)}
 set{halfpct, count(Long_Profit > .005 , 13)}
 set{qtrpct, count(Long_Profit > .0025 , 13)}
 
 add column wkProfitPct
 add column qtrpct
 add column halfpct
 add column onepct
 add column twopct
 add column fivepct1
 add column fivepct2
 add column fivepct3
 add column fivepct4
 add column fivepct5
 add column fivepct6
 add column fivepct7
 add column fivepct8
 add column fivepct9
 add column fivepct10
 add column fivepct11
 add column fivepct12
 add column fivepct
 add column fivepct26
 add column fivepct52
 add column sixpct
 add column sevenpct
 add column eightpct
 add column ninepct
 add column tenpct
 
 add column ziphi
 
 
 and add column separator
 and add column I52 {100}
 and add column separator
 and add column weekly open {wopen}
 and add column weekly high {whigh}
 and add column weekly low {wlow}
 and add column weekly close {wclose}
 and add column separator
 
 close is above 1
 average volume(90) above 500000
 
 draw whiop
 draw ziphix
 sort column 22 descending
 
 chart-display is weekly
 
 date offset is 0
 
 
 
 
 
 |