StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 27 28 29 30 31 ... 57 >>Post Follow-up
ehansen6
28 posts
msg #66699
Ignore ehansen6
8/26/2008 11:16:03 PM

TRO,
I've been reading a tone of forums and kreslik and have been looking at how you set up buy zones, but I wonder about the end of week RFR filter. I'm not allowed to day trade so i'd have to swing trade so I'm really looking at this, but I'm trying to figure out how to set up the buy zones on a weekly basis.

Thanks

TheRumpledOne
6,407 posts
msg #66703
Ignore TheRumpledOne
modified
8/27/2008 2:32:55 AM

EHANSEN:

I can tell you are eager... but settle down

The BUY ZONE has NOTHING to do with RUN FOREST, RUN stocks.. NOTHING AT ALL.

You need to decide what ONE METHOD you want to use and pick ONE STOCK to trade using that method.

If you want to trade the BUY ZONE, that's day trading.

RFR FOREST, RUN stocks are the 10% poppers.

The swing trade filter I posted in here is for people who can't day trade. All you have to do is run it over the weekend. Pick one, two or three of the top stocks. Buy at the open on Monday and then enter your Sell limit order for 1% more than you paid. It is simple. No charts to watch.

And if you are worried about a stop loss, then use good money management and position sizing.

Do you realize if you take $1,000 and compound it by 1% a week what happens in a year? About a 67% return on your money!! Not bad for just running a filter once a week and spending a few minutes entering your orders.





mystiq
650 posts
msg #66708
Ignore mystiq
8/27/2008 7:20:08 AM

Thanks for the great filters....ONE question please:
what is the difference or advantage to using WEEKLY instead of DAILY periods with
RSI(2) , WILLIAMS %R(2) & CCI(2) indicators.

I am working on a filter that promises alot......will post it when i can properly test AND profit from it.

Thx

TheRumpledOne
6,407 posts
msg #66712
Ignore TheRumpledOne
8/27/2008 10:35:42 AM

Fetcher[
/* TRO STAT SCAN for SWING TRADERS - use only on Wednesday after market close */

set{wclop, close - open 2 day ago}
set{whiop, high 3day high - open 2 day ago}
set{Long_Profit, whiop / open 2 day ago }
set{wkProfitPct, 100 * Long_Profit }

set{C1A, count(Long_Profit > .04 , 01)}
set{C2A, count(Long_Profit > .09, 01)}
set{C0010, C1A - C2A}

set{D1A, count(Long_Profit > .09 , 01)}
set{D2A, count(Long_Profit > .19, 01)}
set{D1020, D1A - D2A}

set{E1A, count(Long_Profit > .19 , 01)}
set{E2A, count(Long_Profit > .29, 01)}
set{E2030, E1A - E2A}

set{F1A, count(Long_Profit > .29 , 01)}
set{F2A, count(Long_Profit > .39, 01)}
set{F3040, F1A - F2A}

set{G1A, count(Long_Profit > .39 , 01)}
set{G2A, count(Long_Profit > .49, 01)}
set{G4050, G1A - G2A}

set{H1A, count(Long_Profit > .49 , 01)}
set{H2A, count(Long_Profit > .99, 01)}
set{H5001, H1A - H2A}

set{I01, count(Long_Profit > .99 , 01)}
set{fivepct, count(Long_Profit > .05 , 01)}
set{ziphi, count(whiop equal 0 , 01)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 01)}
set{twopct, count(Long_Profit > .02 , 01)}
set{halfpct, count(Long_Profit > .005 , 01)}
set{qtrpct, count(Long_Profit > .0025 , 01)}

add column wkProfitPct
add column wclop
add column whiop
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct

add column ziphi


and add column separator
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 H5001 {50_99}
and add column I01 {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

SYMLIST( GHM,GMXR,CF,TITN,BUCY,POT,ENS,MOS,EZPW,TTES,MEE,APEI,KSU,MEA,CAP,FLS,OLN,ISYS,CLHB,WGOV,BABY,CEDC,AFAM,SNHY,WLL,SYUT,CELG,NOV,NGS,CFX,DXPE,AGU,PQ,LL,FLIR,HIL,RBN,AMED,WAB,GTLS,CNQR,BIDU,CYBS,RIMM,PCLN,CMED,HES,ANSS,CSH,BTE,SID,JST,IIIN,URBN,CMP,CIR,UTHR,CSX,ATVID,FMC,AXYS,MA,MPWR,SPW,OXY,MSB,VMI,BKE,NDSN,TISI,MANT,SXE,AZZ,GRC,SOHU,BMI,ICLR,X,NCIT,SCL,ATW,EOC,EME,MR,VSEC,WBSN,MON,TDY,ARG,IIVI,ARO,ESV,SDA,ACL,HUBG,VAR,NPK,SYNA,FLO,FORR)

draw whiop
draw ziphix
sort column 5 descending

chart-display is weekly
]




TheRumpledOne
6,407 posts
msg #66714
Ignore TheRumpledOne
8/27/2008 10:40:47 AM

Thanks for the great filters....ONE question please:
what is the difference or advantage to using WEEKLY instead of DAILY periods with
RSI(2) , WILLIAMS %R(2) & CCI(2) indicators.

I am working on a filter that promises alot......will post it when i can properly test AND profit from it.

=========================================================================

You're welcome. Please feel free to ask questions. Many folks here are more than happy to help.

Weekly vs. Daily.

Weekly is bigger picture. So, you'll get larger moves.

Just remember, it's NOT THE FILTER.... you still have to TRADE the stocks.

Adjust your filter to the TRADE method you are using.



mystiq
650 posts
msg #66724
Ignore mystiq
8/27/2008 9:11:40 PM

thanks TRO

i agree..i plan on trading bottoms and tops only on optionable stocks and penny stocks...
so far the likely filters i like are rsi2 cci2 w%r2....can you provide one more for backup?

-mystiq

TheRumpledOne
6,407 posts
msg #66728
Ignore TheRumpledOne
8/27/2008 11:18:06 PM

Fetcher[
/* TRO STAT SCAN for SWING TRADERS - use only on Thursday after market close */

set{wclop, close - open 3 days ago}
set{whiop, high 4 day high - open 3 days ago}
set{Long_Profit, whiop / open 3 days ago }
set{wkProfitPct, 100 * Long_Profit }

set{C1A, count(Long_Profit > .04 , 01)}
set{C2A, count(Long_Profit > .09, 01)}
set{C0010, C1A - C2A}

set{D1A, count(Long_Profit > .09 , 01)}
set{D2A, count(Long_Profit > .19, 01)}
set{D1020, D1A - D2A}

set{E1A, count(Long_Profit > .19 , 01)}
set{E2A, count(Long_Profit > .29, 01)}
set{E2030, E1A - E2A}

set{F1A, count(Long_Profit > .29 , 01)}
set{F2A, count(Long_Profit > .39, 01)}
set{F3040, F1A - F2A}

set{G1A, count(Long_Profit > .39 , 01)}
set{G2A, count(Long_Profit > .49, 01)}
set{G4050, G1A - G2A}

set{H1A, count(Long_Profit > .49 , 01)}
set{H2A, count(Long_Profit > .99, 01)}
set{H5001, H1A - H2A}

set{I01, count(Long_Profit > .99 , 01)}
set{fivepct, count(Long_Profit > .05 , 01)}
set{ziphi, count(whiop equal 0 , 01)}
set{ziphix, count(whiop below 0.10 , 1)}
set{onepct, count(Long_Profit > .01 , 01)}
set{twopct, count(Long_Profit > .02 , 01)}
set{halfpct, count(Long_Profit > .005 , 01)}
set{qtrpct, count(Long_Profit > .0025 , 01)}

add column wkProfitPct
add column wclop
add column whiop
add column qtrpct
add column halfpct
add column onepct
add column twopct
add column fivepct

add column ziphi


and add column separator
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 H5001 {50_99}
and add column I01 {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

SYMLIST( GHM,GMXR,CF,TITN,BUCY,POT,ENS,MOS,EZPW,TTES,MEE,APEI,KSU,MEA,CAP,FLS,OLN,ISYS,CLHB,WGOV,BABY,CEDC,AFAM,SNHY,WLL,SYUT,CELG,NOV,NGS,CFX,DXPE,AGU,PQ,LL,FLIR,HIL,RBN,AMED,WAB,GTLS,CNQR,BIDU,CYBS,RIMM,PCLN,CMED,HES,ANSS,CSH,BTE,SID,JST,IIIN,URBN,CMP,CIR,UTHR,CSX,ATVID,FMC,AXYS,MA,MPWR,SPW,OXY,MSB,VMI,BKE,NDSN,TISI,MANT,SXE,AZZ,GRC,SOHU,BMI,ICLR,X,NCIT,SCL,ATW,EOC,EME,MR,VSEC,WBSN,MON,TDY,ARG,IIVI,ARO,ESV,SDA,ACL,HUBG,VAR,NPK,SYNA,FLO,FORR)

draw whiop
draw ziphix
sort column 5 descending

chart-display is weekly
]



TheRumpledOne
6,407 posts
msg #66729
Ignore TheRumpledOne
8/27/2008 11:19:50 PM

thanks TRO

i agree..i plan on trading bottoms and tops only on optionable stocks and penny stocks...
so far the likely filters i like are rsi2 cci2 w%r2....can you provide one more for backup?

-mystiq
==============================================================

The RUN FOREST, RUN filters are the ONLY filters you need.



mystiq
650 posts
msg #66735
Ignore mystiq
8/28/2008 7:13:59 AM

....morning TRO-

can you help me to code some indicators for DIVERGENCE:

how would you code COG(5,3) , RSI(2) , WILLIAMS %R(2) & PROJECTION OSCILLATOR(14) -or- (2) for
price DIVERGENCIES ?

...would it include using the syntax "increased/decreased 1 day ago" or "INDicator is above/below INDicator 1 day ago"

...any tips on how to spot divergencies & tops/bottoms would be grateful ;-}


ONE more question :-) does SF have the VOL by PRICE indicator ->I cannot find it


Thx again....



mystiq
650 posts
msg #66736
Ignore mystiq
8/28/2008 7:15:59 AM

the RUN FORREST RUN filters are new to me...can you post them again......thx

StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 27 28 29 30 31 ... 57 >>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.