owltrades 9 posts msg #101708 - Ignore owltrades |
7/18/2011 6:21:25 PM
price crossed 150=
Show stocks where close crossed MA(150) from below in last 3 days
and where close is above MA(150)
and Average Volume(90) is above 50000
and Close above 16
and 10 week price increase > 40% remove · edit
2) 50dma crossed the 150=
Show stocks where MA(50) crossed above MA(150) within the last 14 days
and Average Volume(90) is above 90000
and close is between 8 and 250
and volume price trend (10) near 26 week high
3) weinstein classic - returns a lot of results to sift through .. often late to the party=
Show stocks trading at 260 week high and closed at 200% above the 52 week low and closed between 25 and 500 and average volumn(90) is above 100000
4) this one is long, its 51 week high
/* First time close reached a new 52 week high in past 20 days */
set{ new52, count( close reached a new 52 week high, 5) }
new52 equal 1
close reached a new 51 week high
price between 1 and 40
average volume(90) above 300000
average day range(30) above 2
set{xmod, mod( close, 1 ) }
set{volcnt, count(volume above 1000000, 100) }
set{volzero, count(volume equal 0, 100) }
set{x1, high - open}
set{Long_Profit, x1/open }
set{C1A, count(Long_Profit > .04 , 100)}
set{C2A, count(Long_Profit > .09, 100)}
set{C0010, C1A - C2A}
set{D1A, count(Long_Profit > .09 , 100)}
set{D2A, count(Long_Profit > .19, 100)}
set{D1020, D1A - D2A}
set{E1A, count(Long_Profit > .19 , 100)}
set{E2A, count(Long_Profit > .29, 100)}
set{E2030, E1A - E2A}
set{F1A, count(Long_Profit > .29 , 100)}
set{F2A, count(Long_Profit > .39, 100)}
set{F3040, F1A - F2A}
set{G1A, count(Long_Profit > .39 , 100)}
set{G2A, count(Long_Profit > .49, 100)}
set{G4050, G1A - G2A}
set{H1A, count(Long_Profit > .49 , 100)}
set{H2A, count(Long_Profit > .99, 100)}
set{H50100, H1A - H2A}
set{I100, count(Long_Profit > .99 , 100)}
set{E13b,days(close is above ema(13),100)}
set{E13a,days(close is below ema(13),100)}
set{CxE13, E13a - E13b}
/* enter your Upper Limit criteria */
set{UpperLim, High 8 week High}
/* enter your Lower Limit criteria */
set{LowerLim, Low 8 week Low}
set{ULCL, UpperLim - close}
set{Double, UpperLim * .50 }
set{LimDiff, UpperLim minus LowerLim}
set{PPDiff, CLOSE minus LowerLim}
set{PPDiv, PPDiff / LimDiff}
set{BallOnx, PPDiv * 100}
set{BallOn, round(BallOnx,0)}
add column xmod
add column new52
add column Long_Profit {ProfitPct}
and add column C0010 {4_9}
and add column D1020 {10_19}
and add column E2030 {20_29}
and add column F3040 {30_39}
and add column G4050 {40_49}
and add column H50100 {50_99}
and add column I100 {100}
and add column CxE13
add column BallOn
and add column volcnt
and add column volzero
sort column 6 ascending
5) DOWNOVER 2 Years and recently moving up
Show stocks where Close dropped more than 40 percent over the last 100 weeks
and Average Volume(90) is above 50000
and close is between 1 and 250
and Show stocks where Close gained more than 10 percent over the last 12 weeks
and stock price > 10
6) MOMENTUM
Show stocks where Close gained more than 10 percent over the last 4 weeks
and Average Volume(90) is above 50000
and close is between 1 and 250
and Show stocks where volume gained more than than 350 percent over the last 3 months
and Show stocks where volume gained more than than 350 percent over the last 4 months
7) MOMENTUM2
Show stocks where Close gained more than 10 percent over the last 4 weeks
and Average Volume(90) is above 50000
and close is between 15 and 250
and Show stocks where volume gained more than than 50 percent over the last 3 months
and Show stocks where volume gained more than than 50 percent over the last 4 months
|