StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 2 3 4 5 6 ... 57 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #57135
Ignore TheRumpledOne
modified
11/28/2007 8:57:03 PM

*** WORK IN PROGRESS ***


Fetcher[
/* RUN FOREST, RUN WEEKLY VERSION for swing trades */

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

add column ClxCl

/* Long Profit Percent Statistics Display */

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

set{HiOp, weekly high - weekly open}
set{Long_Profit, HiOp / weekly open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .05, 100)}
set{B0010, B1A - B2A}

set{F1A, count(Long_Profit > .05 , 100)}
set{F2A, count(Long_Profit > .10, 100)}
set{F3040, F1A - F2A}

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

add column HiOp
add column Long_Profit {ProfitPct}

and add column B0010 {1_5}
and add column F3040 {5_10}
and add column I100 {10___}

and add column volcnt
and add column volzero

close is between 1 and 15
average volume(10) above 250000

sort column 10 descending
]



SF you need to take a look at these results... something doesn't look right!

We really need WEEKLY DATA that IS weekly data!!





moqual
38 posts
msg #57150
Ignore moqual
11/29/2007 2:41:14 AM

Thanks for writing all these filters. We all appreciate it.

I was wondering if you could work off the gap filter. I want to see how many times a stock gaps up when it closes at it's low. Theory is if there is a sell off at the end, more buyers exist and a higher short ratio exists as well. Maybe there is a correlation statistically showing certain stocks that tend to gap up the day after they close at or near the low. Same theory in reverse, to find stocks that have a tendency to gap down after they close at or near their high

Thanks

13th_floor
724 posts
msg #57214
Ignore 13th_floor
11/30/2007 7:08:52 AM

Tro,

I have been using with fantastic results the 1st RFR filter posted here on this thread and the one posted here: 11/15/2007 8:44:48 AM
/* RUN FOREST, RUN for 1 day 8 pct loss, 2 day 10 pct loss or more */
/* and fails */

Thanks!

TheRumpledOne
6,407 posts
msg #57228
Ignore TheRumpledOne
11/30/2007 12:47:41 PM

Fetcher[

/* GAP statistics for Moqual */

set{Xgapped, open - close 1 day ago}
set{Xgapup, count(Xgapped > 0, 1)}
set{Xgapdn, count(Xgapped < 0, 1)}

set{absgap, abs(Xgapped)}

set{gappedup100, count(Xgapup > 0, 100)}

set{Moqual1, count(close 1 day ago equal low 1 day ago, 1) * Xgapup }
set{Moqual, count( Moqual1 > 0 , 100) }

/* DRAW PLOTS */

DRAW XGAPPED ON PLOT XGAPPED

/* DISPLAY COLUMNS */

and add column gappedup100
and add column Moqual


/* SELECTION CRITERIA */

MARKET IS NASDAQ 100

/* SORT CRITERIA */

SORT COLUMN 5 DESCENDING
]





BEVIL1
14 posts
msg #57233
Ignore BEVIL1
11/30/2007 2:12:42 PM

Error with Syntax, in * RUN FOREST, RUN BACKWARDS - short profit version */ system is telling me there are too many "SET" statements. FYI
Bevil1


TheRumpledOne
6,407 posts
msg #57258
Ignore TheRumpledOne
11/30/2007 7:54:45 PM

BEVIL:

Are you using ADVANCED STOCK FETCHER?

I am!!



TheRumpledOne
6,407 posts
msg #57259
Ignore TheRumpledOne
modified
11/30/2007 7:57:38 PM

Fetcher[
/* RUN FOREST, RUN for 1 day 8 pct gain or more*/

set{ DayChg1 , day change}
set{ DayChg2x , close - close 2 days ago }
set{ DayChg2y , DayChg2x / close 2 days ago }
set{ DayChg2 , DayChg2y * 100 }

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

set{ pick , count( DayChg1 above 7.9999 , 1 ) }

add column DayChg1

add column ClxCl

/* Long Profit Percent Statistics Display */

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

set{HiOp, high - open}
set{Long_Profit, HiOp/open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .05, 100)}
set{B0010, B1A - B2A}

set{F1A, count(Long_Profit > .05 , 100)}
set{F2A, count(Long_Profit > .10, 100)}
set{F3040, F1A - F2A}

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

add column HiOp
add column Long_Profit {ProfitPct}

and add column B0010 {1_5}
and add column F3040 {5_10}
and add column I100 {10___}

and add column volcnt
and add column volzero

pick above 0

close is between 1 and 15
average volume(10) above 250000

sort column 11 descending
]



TheRumpledOne
6,407 posts
msg #57260
Ignore TheRumpledOne
modified
11/30/2007 8:21:22 PM

Fetcher[
/* TRO STAT SCAN */

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

add column ClxCl

/* Long Profit Percent Statistics Display */

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

set{HiOp, high - open}
set{Long_Profit, HiOp/open }

set{B1A, count(Long_Profit > .01 , 100)}
set{B2A, count(Long_Profit > .05, 100)}
set{B0010, B1A - B2A}

set{F1A, count(Long_Profit > .05 , 100)}
set{F2A, count(Long_Profit > .10, 100)}
set{F3040, F1A - F2A}

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

add column HiOp
add column Long_Profit {ProfitPct}

and add column B0010 {1_5}
and add column F3040 {5_10}
and add column I100 {10___}

and add column volcnt
and add column volzero

close is between 1 and 15
average volume(10) above 250000

sort column 10 descending
]



Muddy calls the "RUN FOREST, RUN" filter the " TRO STAT SCAN".

Now when people GOOGLE "TRO STAT SCAN", they can find it!

It really should be called the "TREASURE MAP" because if you know HOW TO DAY TRADE, this filter is hard to beat.







TheRumpledOne
6,407 posts
msg #57289
Ignore TheRumpledOne
modified
12/1/2007 11:42:16 AM

Fetcher[
/* Run Forest, Run - SWING TRADE open to close */

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

add column ClxCl

/* Long Profit Percent Statistics Display */

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

set{ClOp, Close - open}
set{Close_Profit, ClOp/open }

set{CL1A, count(Close_Profit > .01 , 100)}
set{CL2A, count(Close_Profit > .05, 100)}
set{CL0010, CL1A - CL2A}

set{CX1A, count(Close_Profit > .05 , 100)}
set{CX2A, count(Close_Profit > .10, 100)}
set{CX3040, CX1A - CX2A}

set{C100, count(Close_Profit > .10 , 100)}

add column ClOp
add column Close_Profit {ProfitPct}
and add column CL0010 {1_5}
and add column CX3040 {5_10}
and add column C100 {10___}

and add column separator
and add column volcnt
and add column volzero

close is between 1 and 15
average volume(10) above 250000

sort column 10 descending
]





TheRumpledOne
6,407 posts
msg #57290
Ignore TheRumpledOne
modified
12/1/2007 11:43:41 AM

Here's this year's XMAS present from me to you...

I added column C05__ so you can see how many times open to open is 5% or more. If you compound $1000 by 5% a day in 2008, you'll have $121,739,574 by year end!!


Fetcher[
/* Run Forest, Run - SWING TRADE open to open 100 days*/

set{CCb,days(close is above close 1 day ago,100)}
set{CCa,days(close is below close 1 day ago,100)}
set{ClxCl , CCa - CCb}

add column ClxCl

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

/* Long Profit Percent Statistics Display */

set{OpOp, Open - open 1 day ago}
set{Open_Profit, OpOp/open }

set{CL1A, count(Open_Profit > .01 , 100)}
set{CL2A, count(Open_Profit > .05, 100)}
set{CL0010, CL1A - CL2A}

set{CX1A, count(Open_Profit > .05 , 100)}
set{CX2A, count(Open_Profit > .10, 100)}
set{CX3040, CX1A - CX2A}

set{C05, count(Open_Profit > .05 , 100)}
set{C100, count(Open_Profit > .10 , 100)}

add column OpOp
add column Open_Profit {ProfitPct}
and add column CL0010 {1_5}
and add column CX3040 {5_10}
and add column C100 {10___}
and add column separator
and add column C05 {05___}
and add column separator
and add column volcnt
and add column volzero

close is between 1 and 15
average volume(10) above 250000

sort column 12 descending
]





Fetcher[
/* Run Forest, Run - SWING TRADE open to open 10 days*/

set{CCb,days(close is above close 1 day ago,10)}
set{CCa,days(close is below close 1 day ago,10)}
set{ClxCl , CCa - CCb}

add column ClxCl

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

/* Long Profit Percent Statistics Display */

set{OpOp, Open - open 1 day ago}
set{Open_Profit, OpOp/open }

set{CL1A, count(Open_Profit > .01 , 10)}
set{CL2A, count(Open_Profit > .05, 10)}
set{CL0010, CL1A - CL2A}

set{CX1A, count(Open_Profit > .05 , 10)}
set{CX2A, count(Open_Profit > .10, 10)}
set{CX3040, CX1A - CX2A}

set{C05, count(Open_Profit > .05 , 10)}
set{C100, count(Open_Profit > .10 , 10)}

add column OpOp
add column Open_Profit {ProfitPct}
and add column CL0010 {1_5}
and add column CX3040 {5_10}
and add column C100 {10___}
and add column separator
and add column C05 {05___}
and add column separator
and add column volcnt
and add column volzero

close is between 1 and 15
average volume(10) above 250000

sort column 12 descending
]



Fetcher[
/* Run Forest, Run - OPEN ABOVE OPEN */

set{CCb,days(close is above close 1 day ago,10)}
set{CCa,days(close is below close 1 day ago,10)}
set{ClxCl , CCa - CCb}

set{OPb,days(OPEN is above OPEN 1 day ago,10)}
set{OPa,days(OPEN is below OPEN 1 day ago,10)}
set{OPxOP , OPa - OPb}

add column ClxCl
add column OPxOP

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

/* Open above Open Display */

set{OpOp, Open - open 1 day ago}
set{Open_Profit, OpOp/open }

set{CL1A, count(OPxOP > 1 , 100)}
set{CL2A, count(OPxOP > 3, 100)}
set{OP2, CL1A - CL2A}

set{CX1A, count(OPxOP > 2 , 100)}
set{CX2A, count(OPxOP > 4, 100)}
set{OP3, CX1A - CX2A}

set{CY1A, count(OPxOP > 3 , 100)}
set{CY2A, count(OPxOP > 5, 100)}
set{OP4, CY1A - CY2A}

set{OP5P, count(OPxOP > 4, 100)}
set{OP2P, count(OPxOP > 1, 100)}

add column OpOp
add column Open_Profit {ProfitPct}

and add column OP2
and add column OP3
and add column OP4
and add column OP5P

and add column separator
and add column OP2P

and add column separator
and add column volcnt
and add column volzero

close is between 1 and 15
average volume(10) above 250000

sort column 14 descending
]



The OPEN ABOVE OPEN display show which stocks statistically are most likely to have 2 or more opens above the previous days opens.



StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 2 3 4 5 6 ... 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.