StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 50 51 52 53 54 ... 57 >>Post Follow-up
mdl060374
94 posts
msg #97602
Ignore mdl060374
modified
11/24/2010 1:23:04 PM

(moved to new filter section)

mdl060374
94 posts
msg #97609
Ignore mdl060374
modified
11/24/2010 11:08:45 PM

(moved to new thread also)

taylorsk
106 posts
msg #97621
Ignore taylorsk
11/26/2010 12:12:37 PM

There was a link to a magazine article on gaps...Where did it go?

taylorsk
106 posts
msg #97626
Ignore taylorsk
11/26/2010 5:08:16 PM

Woops never mind..IT was in the Fade The Gap thread....my bad

stefonk
33 posts
msg #99081
Ignore stefonk
2/13/2011 7:12:44 PM

TRO,

this is the column for the TRO STATS GOGO

Symbol Last Chg(%) Vol clxcl hiop profitpct 1_5 5_10 10___ clop profitpct 1_5 5_10 10___ volcnt volzero

Can you break down this columns for me.


TheRumpledOne
6,407 posts
msg #99436
Ignore TheRumpledOne
modified
3/1/2011 10:17:21 AM

Fetcher[

/* TRO STAT SCAN - ONE PCT PERCENT POPS OVER NIGHT */

/* Long Profit Percent Statistics Display */

set{xRange, high - low}
set{AvgRng, cma(xRange,5) }

set{ONEPCT, close 1 day ago / 100}

set{Long_Profit, high - close 1 day ago }

set{B10A, count(Long_Profit > ONEPCT , 100)}

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

and add column B10A {1% POPS}
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 70

close above 1
avg volume(90) above 1000000

sort column 5 descending
]



For those who can't day trade.

Buy at the close, sell the next day for 1% or more gain.


<-------------------------------------------------------------------->

Trading is GUESSING. If it wasn't, you wouldn't need a STOP LOSS.

THINK ABOUT IT!!


djones000buck
206 posts
msg #99439
Ignore djones000buck
3/1/2011 1:02:57 PM

Fetcher[

/* Pick a trigger, this case rsi(2) strength */
set{rz10, count(rsi(2) crossed above rsi(3),1)}

/* Set Trigger */
set{trigger0, count(rz10 > .9,100)}
set{trigger00, count(rz10 > .9,1)}
set{trigger1, count(rz10 one day ago > .9,1)}

/* Close Statements */
set{1pc1d, close 1 day ago * 1.01}

/* High Statements */
set{1phiopc1, count( high > 1pc1d,1)}

/* Trigger Statements */
set{t1p, count( trigger1 > .9,1)}
set{t1pa, t1p + 1phiopc1}
set{1pt1, count( t1pa > 1.9,1)}

/*Add variables to determine if percentages hit day 1 */
set{1ptvar1, count(t1pa > 1.9,100)}

/*Get 1P in 1D */
set{get1p, 1ptvar1 / trigger0}

add column get1p
average volume(90) > 500000
price > 2
get1p > .49
get1p < 1.01
get1p one day ago > .89

and draw trigger00
and draw 1pt1
and draw get1P

and draw wma(21)
and draw bollinger bands(10,.1)
sort column 5 descending

]




similar concept - change the first line of code to any cross over you want ...

Still finding I am not always as greedy as I could be, but I am trading fewer stocks now and success is increasing.

TheRumpledOne
6,407 posts
msg #99455
Ignore TheRumpledOne
modified
3/2/2011 10:59:13 AM


Fetcher[
/* Run Forest, Run OVER NIGHT HOLD */

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

set{Long_Profit, high - close 1 day ago}


set{C1A, count(Long_Profit > .02 , 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)}

set{FAIL2, count(Long_Profit < .02 , 100)}
set{OVER2, count(Long_Profit > .0199 , 100)}
set{OVER3, count(Long_Profit > .0299 , 100)}
set{OVER4, count(Long_Profit > .0399 , 100)}
set{OVER5, count(Long_Profit > .0499 , 100)}
set{OVER10, count(Long_Profit > .0999 , 100)}

add column Long_Profit {Profit}

add column OVER2 {GE 2}
add column OVER3 {GE 3}
add column OVER4 {GE 4}
add column OVER5 {GE 5}
add column OVER10 {GE 10}
add column FAIL2 {LT 2}


and add column separator

add column Long_Profit 1 DAY AGO {-1 DAY}
add column Long_Profit 2 DAYS AGO {-2 DAY}
add column Long_Profit 3 DAYS AGO {-3 DAY}
add column Long_Profit 4 DAYS AGO {-4 DAY}
add column Long_Profit 5 DAYS AGO {-5 DAY}

and add column separator
and add column C0010 {2_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 separator
and add column volcnt
and add column volzero
sort column 6 descending

OVER3 above 70

close is between 1 and 5
avg volume(90) above 500000

]



1000 shares * $.10 = $100

2000 shares * $.05 = $100

3000 shares * $.04 = $120

4000 shares * $.03 = $120

5000 shares * $.02 = $100

Looking to print $100 bills.



TheRumpledOne
6,407 posts
msg #99461
Ignore TheRumpledOne
modified
3/3/2011 1:22:46 AM

Fetcher[
/* Run Forest, Run OVER NIGHT HOLD - LONG*/

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

set{Long_Profit, high - close 1 day ago}


set{C1A, count(Long_Profit > .02 , 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)}


set{FAIL2, count(Long_Profit < .02 , 100)}
set{OVER2, count(Long_Profit > .0199 , 100)}
set{OVER3, count(Long_Profit > .0299 , 100)}
set{OVER4, count(Long_Profit > .0399 , 100)}
set{OVER5, count(Long_Profit > .0499 , 100)}
set{OVER10, count(Long_Profit > .0999 , 100)}

set{HiPCRng, high - close 1 day ago}
set{AvgHiPCRng, cma(HiPCRng,100) }

set{PCLoRng, close 1 day ago - low }
set{AvgPCLoRng, cma(PCLoRng,100) }


add column Long_Profit {Profit}

add column OVER2 {GE 2}
add column OVER3 {GE 3}
add column OVER4 {GE 4}
add column OVER5 {GE 5}
add column OVER10 {GE 10}
add column FAIL2 {LT 2}

and add column separator
add column AvgHiPCRng{HPCR}
add column AvgPCLoRng{PCLR}

and add column separator

add column Long_Profit 1 DAY AGO {-1 DAY}
add column Long_Profit 2 DAYS AGO {-2 DAY}
add column Long_Profit 3 DAYS AGO {-3 DAY}
add column Long_Profit 4 DAYS AGO {-4 DAY}
add column Long_Profit 5 DAYS AGO {-5 DAY}

and add column separator
and add column C0010 {2_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 separator
and add column volcnt
and add column volzero

and add column separator
add column industry
add column sector
and add column separator

sort column 6 descending

OVER4 above 80

close is between 1 and 9
avg volume(90) above 500000

]



Added average range for High - Previous Close and Previous Close - Low.



TheRumpledOne
6,407 posts
msg #99462
Ignore TheRumpledOne
3/3/2011 10:32:43 AM

Fetcher[
/* Run Forest, Run OVER NIGHT HOLD - Short*/

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

set{Short_Profit, close 1 day ago - low}


set{C1A, count(Short_Profit > .02 , 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)}


set{FAIL2, count(Short_Profit < .02 , 100)}
set{OVER2, count(Short_Profit > .0199 , 100)}
set{OVER3, count(Short_Profit > .0299 , 100)}
set{OVER4, count(Short_Profit > .0399 , 100)}
set{OVER5, count(Short_Profit > .0499 , 100)}
set{OVER10, count(Short_Profit > .0999 , 100)}

set{HiPCRng, high - close 1 day ago}
set{AvgHiPCRng, cma(HiPCRng,100) }

set{PCLoRng, close 1 day ago - low }
set{AvgPCLoRng, cma(PCLoRng,100) }


add column Short_Profit {Profit}

add column OVER2 {GE 2}
add column OVER3 {GE 3}
add column OVER4 {GE 4}
add column OVER5 {GE 5}
add column OVER10 {GE 10}
add column FAIL2 {LT 2}

and add column separator
add column AvgHiPCRng{AvgHiPCRng}
add column AvgPCLoRng{AvgPCLoRng}

and add column separator

add column Short_Profit 1 DAY AGO {-1 DAY}
add column Short_Profit 2 DAYS AGO {-2 DAY}
add column Short_Profit 3 DAYS AGO {-3 DAY}
add column Short_Profit 4 DAYS AGO {-4 DAY}
add column Short_Profit 5 DAYS AGO {-5 DAY}

and add column separator
and add column C0010 {2_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 separator
and add column volcnt
and add column volzero

and add column separator
add column industry
add column sector
and add column separator

sort column 6 descending

OVER4 above 80

close is between 1 and 9
avg volume(90) above 500000

]



This filter is for the PLUNGERS!



StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 50 51 52 53 54 ... 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.