StockFetcher Forums · Filter Exchange · 5% A WEEK FILTER (BASED ON TRO'S CROCK POT)<< 1 ... 11 12 13 14 15 ... 37 >>Post Follow-up
LebowskiUrbanAchievers
56 posts
msg #88449
Ignore LebowskiUrbanAchievers
2/20/2010 10:29:34 AM

Up early on a Saturday! Checked the long 13 week and MTG and GNVC came up. That will be my start to this method. MTG sells PMI's for mortgages. Basically a guarantee for people with less than 20% to put down on a mortgage. I plan to open 300 share positions in both, to test.

sekhar
2 posts
msg #88695
Ignore sekhar
2/25/2010 12:25:08 AM

Hi! Kevin_in_GA and TRO -

I have been looking into the threads posted by you. You guys are amazing! Great job!
I could only wish to become as good as you writing this stuff.

I am a newbee here and still learning my ropes.
I have a favor to ask of you.

Can anyone of you help me with a clickable code for " REVERSE HEAD AND SHOULDERS"?
I really appreciate your help and your valuable time.

Cheers!
- Sekhar

Kevin_in_GA
4,599 posts
msg #88703
Ignore Kevin_in_GA
2/25/2010 8:38:04 AM

Up early on a Saturday! Checked the long 13 week and MTG and GNVC came up. That will be my start to this method. MTG sells PMI's for mortgages. Basically a guarantee for people with less than 20% to put down on a mortgage. I plan to open 300 share positions in both, to test.
++++++++++++++++

MTG hit its target already this week. Congrats.

GNVC will need to really pull forward soon. It is down about 5% so far (opened at 2.50, currently at 2.38).

If you invested in 300 shares of each you should be up $112.5 on MTG and down $37.5 on GNVC (net $75 on an investment of $3000, or up 2.5%). You can cash out now at a profit, or let it ride and take your chances. If you are using a 10% stop loss on GNVC, even if it gets tripped today you can't lose money this week (although you won't make much, about 1%).

Kevin

LebowskiUrbanAchievers
56 posts
msg #88724
Ignore LebowskiUrbanAchievers
2/25/2010 12:14:48 PM

Up early on a Saturday! Checked the long 13 week and MTG and GNVC came up. That will be my start to this method. MTG sells PMI's for mortgages. Basically a guarantee for people with less than 20% to put down on a mortgage. I plan to open 300 share positions in both, to test.
++++++++++++++++

MTG hit its target already this week. Congrats.

GNVC will need to really pull forward soon. It is down about 5% so far (opened at 2.50, currently at 2.38).

If you invested in 300 shares of each you should be up $112.5 on MTG and down $37.5 on GNVC (net $75 on an investment of $3000, or up 2.5%). You can cash out now at a profit, or let it ride and take your chances. If you are using a 10% stop loss on GNVC, even if it gets tripped today you can't lose money this week (although you won't make much, about 1%).

Kevin
+++++++++++++++++++

I bought GNVC only at $2.47, my stop is at 2.16 so maybe stopped out today. Seems this stock might recover. The support is at 2.18, though I am hoping it jets up. I may hold until 5% is made or stopped out. With expected cancer drug trial news in a few weeks (around earnings report) I may up the profit expectation, also partnership is possible with a big pharma company.

raviram80
30 posts
msg #88729
Ignore raviram80
2/25/2010 2:01:07 PM

The best day to run this filter is on Sunday night or Monday morning?

Can someone please confirm?

BZ1983
7 posts
msg #88730
Ignore BZ1983
2/25/2010 2:09:49 PM

Yes, Rav.

This scan is to be run on the weekend and orders placed first thing Monday morning. Then manage through the week.

LebowskiUrbanAchievers
56 posts
msg #88731
Ignore LebowskiUrbanAchievers
2/25/2010 2:16:23 PM

Do your due diligence on these, and feel free to set your limit for purchase lower than the open as some stocks retrace the gap between Friday close and Monday Open.

raviram80
30 posts
msg #88732
Ignore raviram80
2/25/2010 2:26:50 PM

LebowskiUrbanAchievers,

What do you mean doing due diligence? What could be the factors I should be looking at?

Radiomuse
288 posts
msg #88748
Ignore Radiomuse
2/25/2010 6:04:58 PM

Hi Kev - just wanted to share my latest version of this. It's based on 10 weeks, and I'm still experimenting with the weighting schemes for the first 5 weeks and the second 5 weeks - trying to determine exactly what I want to set those at and also the thresholds for passing the screen.

Also thinking about the due diligence issue - other than just looking at simple S/R levels, thinking about maybe looking at a daily or weekly RSI, and not pulling the trigger if it's above certain levels?

Fetcher[/*MEASURE THE DIFFERENCE FROM WEEKLY OPEN TO WEEKLY HIGH*/
set{whiop, weekly high - weekly open}
set{Long_Profit, whiop / weekly open }

/*DETERMINE THE FREQUENCY THAT 5% IS ACHIEVED OVER MULTIPLE TIME FRAMES*/
set{5_1wk, count(Long_Profit > .05,1)}
set{5_5wk, count(Long_Profit > .05,5)}
set{5_10wk, count(Long_Profit > .05,10)}
set{5_nextfive,5_10wk-5_5wk}

/*APPLY WEIGHTING FACTORS*/
set{var1,5_5wk*0.60} /*WEIGHT 5 WK AVERAGE AT 60%*/
set{var2,5_nextfive*0.40} /*WEIGHT NEXT 5 WK AVERAGE AT 40%*/

/*CREATE A WEIGHTED SUMMATION OF STOCK PERFORMANCE (MAX SCORE = 5)*/
set{reward,var1+var2}

/*DETERMINE THE RISK OF TRIPPING A 10% STOP LOSS*/
set{wloss, weekly open - weekly low}
set{max_loss, wloss / weekly open}

/*DETERMINE THE FREQUENCY THAT A 10% STOP LOSS IS TRIPPED OVER MULTIPLE TIME FRAMES*/
set{loss_1wk, count(max_loss > .10,1)}
set{loss_5wk, count(max_loss > .10,5)}
set{loss_10wk, count(max_loss > .10,10)}
set{loss_nextfive,loss_10wk-loss_5wk}

/*APPLY WEIGHTING FACTORS*/
set{var11,loss_5wk*0.60} /*WEIGHT 5 WK AVERAGE AT 60%*/
set{var21,loss_nextfive*0.40} /*WEIGHT NEXT 5 WK AVERAGE AT 40%*/

/*CREATE A WEIGHTED SUMMATION OF RISK (MAX SCORE = 5)*/
set{risk,var11+var21}
set{performance,reward/risk}

set{xrange, weekly high - weekly low}
set{xrange%,xrange/weekly open}
set{AvgRng5, cma(xRange%,5) }
set{avgrng10, cma(xrange%,10)}

add column performance {perf}
add column reward {reward}
add column risk {risk}
add column 5_5wk {5 wk rew}
add column 5_nextfive {6 to 10 rew}
add column 5_10wk {10 wk rew}
add column loss_5wk {5 wk risk}
add column loss_nextfive {6 to 10 risk}
add column loss_10wk {10 wk risk}

/*SCREEN FOR THE STRONGEST CANDIDATES*/
weekly open is above 5
average volume(30) above 500000
and reward is greater than 3.9
and risk is less than 1.5
sort by risk ascending

and draw performance
draw weekly rsi(2)
draw weekly rsi(2) line at 70
draw rsi(2)
draw rsi(2) line at 70
do not draw risk

set{LP%,long_profit*100}
set{LP%1,LP% 1 week ago}
set{LP%2,LP% 2 weeks ago}
set{LP%3,LP% 3 weeks ago}
set{LP%4,LP% 4 weeks ago}
add column lp%
add column lp%1
add column lp%2
add column lp%3
add column lp%4
set{R%,max_loss*100}
set{R%1,R% 1 week ago}
set{R%2,R% 2 weeks ago}
set{R%3,R% 3 weeks ago}
set{R%4,R% 4 weeks ago}
add column r%
add column r%1
add column r%2
add column r%3
add column r%4

add column weekly rsi(2) {Wrsi2}
add column rsi(7)
and add column AvgRng5
and add column avgrng10

/* Global Filter Text */
]



Kevin_in_GA
4,599 posts
msg #88930
Ignore Kevin_in_GA
3/1/2010 2:58:35 PM

Sorry about not posting this week's picks - CYCC (up 2.4% today since the open) and MTG (trading about neutral - still opportunity to get in if you want to).

StockFetcher Forums · Filter Exchange · 5% A WEEK FILTER (BASED ON TRO'S CROCK POT)<< 1 ... 11 12 13 14 15 ... 37 >>Post Follow-up

*** Disclaimer *** StockFetcher.com does not endorse or suggest any of the securities which are returned in any of the searches or filters. They are provided purely for informational and research purposes. StockFetcher.com does not recommend particular securities. StockFetcher.com, Vestyl Software, L.L.C. and involved content providers shall not be liable for any errors or delays in the content, or for any actions taken based on the content.


Copyright 2022 - Vestyl Software L.L.C.Terms of Service | License | Questions or comments? Contact Us
EOD Data sources: DDFPlus & CSI Data Quotes delayed during active market hours. Delay times are at least 15 mins for NASDAQ, 20 mins for NYSE and Amex. Delayed intraday data provided by DDFPlus


This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.