StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 30 31 32 33 34 ... 57 >>Post Follow-up
Dylan
43 posts
msg #66908
Ignore Dylan
modified
9/2/2008 8:07:07 PM

TRO, can you make it suitable for shorts?

Thanks,



Fetcher[
/* Run Forest, Run */

close is between 1 and 15
average volume(90) above 50000

set{volcnt, count(volume above 50000, 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)}

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 volcnt
and add column volzero
sort column 7 descending
]



TheRumpledOne
6,407 posts
msg #66916
Ignore TheRumpledOne
modified
9/2/2008 10:57:23 PM

Fetcher[
/* Run Forest, Run FOR SHORTING */

close is between 1 and 15
average volume(90) above 500000

set{volcnt, count(volume above 500000, 100) }
set{volzero, count(volume equal 0, 100) }

set{x1, open - low }
set{Short_Profit, x1/open }

set{C1A, count(Short_Profit > .04 , 100)}
set{C2A, count(Short_Profit > .09, 100)}
set{C0010, C1A - C2A}

set{D1A, count(Short_Profit > .09 , 100)}
set{D2A, count(Short_Profit > .19, 100)}
set{D1020, D1A - D2A}

set{E1A, count(Short_Profit > .19 , 100)}
set{E2A, count(Short_Profit > .29, 100)}
set{E2030, E1A - E2A}

set{F1A, count(Short_Profit > .29 , 100)}
set{F2A, count(Short_Profit > .39, 100)}
set{F3040, F1A - F2A}

set{G1A, count(Short_Profit > .39 , 100)}
set{G2A, count(Short_Profit > .49, 100)}
set{G4050, G1A - G2A}

set{H1A, count(Short_Profit > .49 , 100)}
set{H2A, count(Short_Profit > .99, 100)}
set{H50100, H1A - H2A}

set{I100, count(Short_Profit > .99 , 100)}

add column Short_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 volcnt
and add column volzero
sort column 6 descending
]



Note: I changed volume to 500,000

Dylan
43 posts
msg #66940
Ignore Dylan
9/3/2008 9:09:19 PM

Thank You Good Man!!!

mystiq
650 posts
msg #66953
Ignore mystiq
9/4/2008 1:19:33 PM

TRO

can you explain the filter RVI and how it works..?

TheRumpledOne
6,407 posts
msg #66956
Ignore TheRumpledOne
9/4/2008 4:04:50 PM

Filter RVI?

Please post what you are asking about.



chetron
2,817 posts
msg #66968
Ignore chetron
9/5/2008 6:52:10 AM


NO RYHME OR REASON, TRO. JUST EXPLAIN RVI IN GENERAL OR ON TOPIC. LOL



TheRumpledOne
6,407 posts
msg #66985
Ignore TheRumpledOne
9/5/2008 3:25:24 PM

Have you traders been having as much fun with the RFR stocks this week as I have?

RDN, ABK, PMI, LNG, SCA, ROYL...

Oh yeah, I forgot, the party is over for RDN and ABK!

ROFLMAO ATWTTB!!

It's funny, but I usually HATE daytrading NYSE stocks but with the RFR stocks, it doesn't matter.



TheRumpledOne
6,407 posts
msg #66986
Ignore TheRumpledOne
modified
9/5/2008 3:27:08 PM

What is "RVI"???

What does RVI stand for?

I have no idea... you can google just as easy as I can.





TheRumpledOne
6,407 posts
msg #66988
Ignore TheRumpledOne
modified
9/5/2008 4:00:39 PM

Fetcher[
/* TRO STAT SCAN - 10 PERCENT POPS PER WEEK - TRADE PICKER */

/* Long Profit Percent Statistics Display */

set{xRange, high - low}
set{AvgRng, cma(xRange,5) }
set{HiOp, high - open}
set{Long_Profit, HiOp/open }

set{B10A, count(Long_Profit > .10 , 100)}

set{A10A, count(Long_Profit > .10 , 1)}
set{chg, sum( A10A - A10A 1 day ago ,5)}

and add column B10A {GT10%}
and add column AvgRng

add column chg{(wk)}
add column chg 1 week ago{(-1wk)}
add column chg 2 weeks ago{(-2wk)}
add column chg 3 weeks ago{(-3wk)}
add column chg 4 weeks ago{(-4wk)}
add column chg 5 weeks ago{(-5wk)}
add column chg 6 weeks ago{(-6wk)}
add column chg 7 weeks ago{(-7wk)}
add column chg 8 weeks ago{(-8wk)}
and add column separator
add column industry
add column sector
and add column separator

/* SELECTION CRITERIA */

B10A above 9
close above 1
average volume(90) above 500000
rsi(2) below 5

sort column 5 descending
chart-time is 1 month
]



People ask how do I select what stocks to trade.

One way is to find the RFR stocks that have been beaten down.

RSI(2) below 5 does that.

Back test all you want but it's HOW YOU TRADE THEM that matters!!



TheRumpledOne
6,407 posts
msg #66989
Ignore TheRumpledOne
modified
9/5/2008 4:03:23 PM

Fetcher[
/* TRO STAT SCAN - 10 PERCENT POPS PER WEEK - STREAKERS */

set{xRange, high - low}
set{AvgRng, cma(xRange,5) }
set{HiOp, high - open}
set{Long_Profit, HiOp/open }

set{B10A, count(Long_Profit > .10 , 100)}

set{A10A, count(Long_Profit > .10 , 1)}
set{chg, sum( A10A - A10A 1 day ago ,5)}

set{Streak2, count(Long_Profit > .10 , 1) * count(Long_Profit 1 day ago > .10 , 1) }

set{Streaks2, count(Streak2 above 0, 100) }

set{Streak3, Streak2 * count(Long_Profit 2 days ago > .10 , 1) }

set{Streaks3, count(Streak3 above 0, 100) }

set{Streak4, Streak3 * count(Long_Profit 3 days ago > .10 , 1) }

set{Streaks4, count(Streak4 above 0, 100) }

and add column Streaks2
and add column Streaks3
and add column Streaks4

and add column B10A {GT10%}
and add column AvgRng

add column chg{(wk)}
add column chg 1 week ago{(-1wk)}
add column chg 2 weeks ago{(-2wk)}
add column chg 3 weeks ago{(-3wk)}
add column chg 4 weeks ago{(-4wk)}
add column chg 5 weeks ago{(-5wk)}
add column chg 6 weeks ago{(-6wk)}
add column chg 7 weeks ago{(-7wk)}
add column chg 8 weeks ago{(-8wk)}
and add column separator
add column industry
add column sector
and add column separator

/* SELECTION CRITERIA */

Streak2 above 0
close above 1
average volume(90) above 500000

sort column 5 descending
]



How many days in a row does the stock pop 10% or more?



StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 30 31 32 33 34 ... 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.