StockFetcher Forums · General Discussion · NEVER LOSE AGAIN!!<< 1 ... 89 90 91 92 93 ... 105 >>Post Follow-up
intrepid
1 posts
msg #98933
Ignore intrepid
2/6/2011 10:55:13 AM

Rumpled: I think headlines screaming bull market are bearish contrarian indicators in the long run.

TheRumpledOne
6,529 posts
msg #99791
Ignore TheRumpledOne
3/20/2011 12:37:43 PM

Fetcher[

/* TRO MTC CHECKER */

volume above 1000000
and Average Volume(30) above 1000000
close today above 10


set{HiOp, high - open}
set{hi2, open*1.02}
set{ hi3, open*1.03}
set{HiOpCnt, count( HiOp above .10, 100)}
set{HiOp3Cnt, count (high above hi3, 100)}
set{HiOp2Cnt, count (high above hi2,100)}
set{HiOp50, count( HiOp above .50, 100)}

set{OpLo, open - low}
set{lo2, open*0.98}
set{lo3, open*0.97}
set{OpLoCnt, count( OpLo above .10, 100)}
set{OpLo2Cnt, count(low below lo2, 100)}
set{OpLo3Cnt, count(low below lo3, 100)}
set{OpLo50, count( OpLo above .50, 100)}



set{LongShortDiff, HiOp3Cnt-OpLo3Cnt}
set{longaverage, HiOp3Cnt/HiOpCnt}
set{shortaverage, OpLo3Cnt/OpLoCnt}
set{Op3avdiff, HiOp3Cnt-OpLo3Cnt}
set{Op2avdiff, HiOp2Cnt-OpLo2Cnt}
set{totalop2, HiOp2Cnt+OpLo2Cnt}
set{totalop3, HiOp3Cnt+OpLo3Cnt}


set{HiOpCntMin, HiOpCnt 100 day low}


add column separator
add column HiOpCnt
add column HiOpCntMin
add column HiOp2Cnt
add column HiOp3Cnt
add column longaverage

add column separator
add column OpLoCnt
add column OpLo2Cnt
add column OpLo3Cnt
add column shortaverage

add column separator
add column totalop2
add column totalop3
add column Op3avdiff
add column Op2avdiff
add column separator

sort column 7 descending

]



I added the HiOpCntMin column to show the lowest value for HiOpCnt over the last 100 days.

olathegolf
119 posts
msg #99799
Ignore olathegolf
3/20/2011 11:47:33 PM

TRO - thank you for all of your great filters!
I tweaked the MTC Checker a bit to assess 1%, 2%, and 3% moves versus a 0.5% initial move (rather than a 0.10 move).

Fetcher[
/* TRO MTC CHECKER */
/* TWEAKED TO SET MINIMUM MOVE OF 0.5% INSTEAD OF 0.10 */

volume above 1000000
and Average Volume(30) above 1000000
close today above 10

set{HiOp, high - open}
set{OneHalf%,open*0.005}
set{hi.5,open*1.005}
set{hi1,open*1.01}
set{hi2, open*1.02}
set{ hi3, open*1.03}

set{HiOpCnt, count(high above hi.5, 100)}
set{HiOp1Cnt,count(high above hi1,100)}
set{HiOp2Cnt, count (high above hi2,100)}
set{HiOp3Cnt, count (high above hi3, 100)}

set{OpLo, open - low}
set{lo.5,open*0.995}
set{lo1, open*0.99}
set{lo2, open*0.98}
set{lo3, open*0.97}

set{OpLoCnt, count(low below lo.5, 100)}
set{OpLo1Cnt, count(low below lo1, 100)}
set{OpLo2Cnt, count(low below lo2, 100)}
set{OpLo3Cnt, count(low below lo3, 100)}

set{long1%, HiOp1Cnt/HiOpCnt}
set{long2%, HiOp2Cnt/HiOpCnt}
set{long3%, HiOp3Cnt/HiOpCnt}
set{short1%, OpLo1Cnt/OpLoCnt}
set{short2%, OpLo2Cnt/OpLoCnt}
set{short3%, OpLo3Cnt/OpLoCnt}

set{HiOpCntMin, HiOpCnt 100 day low}
set{OpLoCntMin,OpLoCnt 100 day low}

add column separator
add column OneHalf%
add column separator
add column HiOpCnt {hiop0.5cnt}
add column HiOpCntMin{hiop0.5cntmin}
add column HiOp1Cnt
add column HiOp2Cnt
add column HiOp3Cnt
add column long1%
add column long2%
add column long3%

add column separator
add column OpLoCnt{oplo0.5cnt}
add column OpLoCntMin{oplo0.5cntmin}
add column OpLo1Cnt
add column OpLo2Cnt
add column OpLo3Cnt
add column short1%
add column short2%
add column short3%
add column separator

sort column 13 descending
]



TheRumpledOne
6,529 posts
msg #99909
Ignore TheRumpledOne
3/26/2011 3:19:22 PM

Anyone trading LULU?

I go to Yoga 3x a week and their clothes are all the rage.

Too bad I didn't start Yoga a couple of years ago!!

Fetcher[
/* TRO MTC CHECKER */

set{ hiop, high - open }
set{ up10, count( hiop > 0.09, 100 ) }
set{ up50, count( hiop > 0.49, 100 ) }
set{ pct1, up50 / up10 }
set{winpct, 100 * pct1 }

add column up10
add column up50
add column winpct

symlist(lulu)

sort column 7 descending
]



TheRumpledOne
6,529 posts
msg #99974
Ignore TheRumpledOne
modified
3/28/2011 6:39:25 PM

LULU up over $8 a share today.

How many people are reading this thread? LOL!!!

TheRumpledOne
6,529 posts
msg #99990
Ignore TheRumpledOne
3/29/2011 5:15:43 PM

Good read:

http://finance.yahoo.com/news/Man-vs-Machine-Wall-Street-atlantic-3191753404.html?x=0&sec=topStories&pos=7&asset=&ccode=




maxreturn
745 posts
msg #100124
Ignore maxreturn
4/5/2011 5:59:34 PM

TRO, I've been spending a more than a little amount of time going through this thread. Of all the filters/variations of filters that you've posted, which one do you rely on?

Regards
Max

TheRumpledOne
6,529 posts
msg #100139
Ignore TheRumpledOne
4/6/2011 2:04:14 AM

I do NOT rely on a filter.

First, I pick a method. Lately, I have been working on the OVER NIGHT HOLDS for traders who can't day trade.

Next, I find what stocks, STATISTICALLY, produce the most consistent profits with this method.

I am NOT looking for the "stock de jour", I am looking for "cows" that can be milked every day.

I :"found" AAPL and RIMM years ago, and they are still producing "milk".

If you can day trade, then it is MILKING THE COWS / FADING THE GAP.

If you are trying to increase your portfolio, then it is RUN FOREST, RUN.

If you cannot day trade, then it is THE BIGGEST LOSERS - OVER NIGHT HOLD.

But remember...

IT'S NOT WHAT YOU TRADE, IT'S HOW YOU TRADE IT!!



maxreturn
745 posts
msg #100167
Ignore maxreturn
4/7/2011 6:08:54 PM

Great. Thanks TRO

TheRumpledOne
6,529 posts
msg #100453
Ignore TheRumpledOne
4/28/2011 9:33:32 AM

Did anyone see LULU hit $100?

StockFetcher Forums · General Discussion · NEVER LOSE AGAIN!!<< 1 ... 89 90 91 92 93 ... 105 >>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.