WESTFALL 9 posts msg #61760 - Ignore WESTFALL | 
4/24/2008 12:23:27 AM
  set{Win_loss,Close - open} 
 set{WL100,count(Win_loss > 0,100)} 
 add column WL100 
 
 set{wl5,count(Win_loss > 0,5)} 
 add column wl5 
 
 set{wl5mult, wl5 * 30} 
 set{wlgreed, wl5mult + wl100} 
 add column wlgreed 
 
 set{HiOp, high - open} 
 set{Long_Profit, HiOp/open} 
 
 set{a100a,count(Long_Profit > .001,100)} 
 set{a200a,count(Long_Profit > .005,100)} 
 set{a300a,count(Long_Profit > .01,100)} 
 set{a400a,count(Long_Profit > .02,100)} 
 set{a500a,count(Long_Profit > .05,100)} 
 
 set{b100a, a100a} 
 set{b200a, a200a + a100a} 
 set{b300a, a300a + b200a} 
 set{b400a, a400a + b300a} 
 set{b500a, a500a + b400a} 
 
 set{c100a,count(Long_Profit > .001,5)} 
 set{c200a,count(Long_Profit > .005,5)} 
 set{c300a,count(Long_Profit > .01,5)} 
 set{c400a,count(Long_Profit > .02,5)} 
 set{c500a,count(Long_Profit > .05,5)} 
 
 set{d100a, c100a} 
 set{d200a, c200a + c100a} 
 set{d300a, c300a + d200a} 
 set{d400a, c400a + d300a} 
 set{d500a, c500a + d400a} 
 
 set{e100a, d100a*30} 
 set{e200a, d200a *30} 
 set{e300a, d300a *30} 
 set{e400a, d400a *30} 
 set{e500a, d500a *30} 
 
 
 set{longgreed, b500a + e500a} 
 
 set{LoOp, open - low} 
 set{Short_Profit, LoOp/open} 
 
 set{f100a,count(Short_Profit > .001,100)} 
 set{f200a,count(Short_Profit > .005,100)} 
 set{f300a,count(Short_Profit > .01,100)} 
 set{f400a,count(Short_Profit > .02,100)} 
 set{f500a,count(Short_Profit > .05,100)} 
 
 set{g100a, f100a} 
 set{g200a, f200a + f100a} 
 set{g300a, f300a + g200a} 
 set{g400a, f400a + g300a} 
 set{g500a, f500a + g400a} 
 
 set{h100a,count(Short_Profit > .001,5)} 
 set{h200a,count(Short_Profit > .005,5)} 
 set{h300a,count(Short_Profit > .01,5)} 
 set{h400a,count(Short_Profit > .02,5)} 
 set{h500a,count(Short_Profit > .05,5)} 
 
 set{i100a, h100a} 
 set{i200a, h200a + h100a} 
 set{i300a, h300a + i200a} 
 set{i400a, h400a + i300a} 
 set{i500a, h500a + i400a} 
 
 set{j100a, i100a*30} 
 set{j200a, i200a *30} 
 set{j300a, i300a *30} 
 set{j400a, i400a *30} 
 set{j500a, i500a *30} 
 
 set{shortgreed, g500a + i500a} 
 
 set{greedratio, longgreed/shortgreed} 
 
 
 add column longgreed 
 add column greedratio 
 
 add column separator 
 
 add column a200a{.5%(100day)} 
 add column a300a{1%(100day)}} 
 add column a400a{2%(100day)}} 
 add column a500a{5%(100day)}} 
 
 add column separator 
 
 add column c200a{.5%(5day)} 
 add column c300a{1%(5day)} 
 add column c400a{2%(5day)} 
 add column c500a{5%(5day)} 
 
 set{gpwgreed, longgreed+wlgreed} 
 add column gpwgreed 
 
 set{totalgreed, gpwgreed * greedratio} 
 add column totalgreed 
 
 close above 5 
 volume above 100000 
 average volume (90) above 1000000 
 
 sort column 21 descending 
 
 
 
 
  |