StockFetcher Forums · Filter Exchange · Run Forest, Run<< 1 ... 51 52 53 54 55 ... 57 >>Post Follow-up
TheRumpledOne
6,529 posts
msg #99792
Ignore TheRumpledOne
3/20/2011 12:43:09 PM

Fetcher[

/* TRO STAT SCAN - 10 PERCENT POPS PER WEEK */

/* 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)}

set{GT10MIN, B10A 100 day low}

add column separator
and add column B10A {GT10%}
add column GT10MIN
and add column AvgRng
add column chg{(wk)}

add column separator
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 10
close above 1
avg volume(90) above 500000


sort column 7 descending

]



I added the GT10MIN column to show the 100 day minimum of 10% pops.

TheRumpledOne
6,529 posts
msg #100592
Ignore TheRumpledOne
5/6/2011 9:50:10 AM

Anyone having fun?

Rick67
64 posts
msg #100763
Ignore Rick67
5/17/2011 1:53:40 PM

Saw this post in RFR

13th_floor
723 posts
msg #68606
- Ignore 13th_floor 10/20/2008 9:42:31 PM

Yeah...about 25 folks in the greenonthescreen chatroom...

Where can I find this chat room?

Thanks,
Rick

TheRumpledOne
6,529 posts
msg #100766
Ignore TheRumpledOne
5/17/2011 6:24:26 PM

I don't think it is around.

I believe they converted it into a paid room.



Rick67
64 posts
msg #100833
Ignore Rick67
5/21/2011 12:07:54 PM

RE: "(TRO) I use 30 minute candles... I WAIT FOR GREEN"
RE: "(13th Floor) (red to green means yesterday was a red bar and when it trades above yesterday's close is the point it )turns green, which indicates the change in direction from down to up"

On my ThinkorSwim platform, I have a choice of two different type of candles:

"CANDLE" and "CANDLE TREND".

Depending on which one I pick, the same candle could be either RED or GREEN.
"CANDLE TREND" seems to keep a candle red if the close is below yesterday's close. Green if close above yesterday's close.
"CANDLE" will make a candle red if the close is lower than the today's open. Green if today's close is above today's open.

I don't want to assume but it sounds like you are using "CANDLE TREND" style candles. Am I correct?

Thank you !



johnpaulca
12,036 posts
msg #100834
Ignore johnpaulca
5/21/2011 12:14:12 PM

Rick....use the normal Candle not candle trend.

stefonk
33 posts
msg #100878
Ignore stefonk
5/23/2011 11:38:45 PM

TRO, in your (Run Forest Run - Swing trade - open to open 10 days, that has the C05 column), I am trying to master that setup because I can only swing trade right now. The setup is, when I run the filter in the evening, I will buy the one with the highest number of counts in the 05___ column at the open and sell at the next day open. Is this the correct way to trade this scan or is there something else. Your response will be greatly appreciated as always.

TheRumpledOne
6,529 posts
msg #100887
Ignore TheRumpledOne
modified
5/24/2011 4:03:43 PM

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
]



TheRumpledOne
6,529 posts
msg #100889
Ignore TheRumpledOne
5/24/2011 4:07:33 PM

TRO, in your (Run Forest Run - Swing trade - open to open 10 days, that has the C05 column), I am trying to master that setup because I can only swing trade right now. The setup is, when I run the filter in the evening, I will buy the one with the highest number of counts in the 05___ column at the open and sell at the next day open. Is this the correct way to trade this scan or is there something else. Your response will be greatly appreciated as always.

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

Not necessarily....

You have to look at the chart and see if the price is at/near recent highs/lows.

If at/near recent highs, the run could be over.

If at/near recent lows, the run could be ready to start.

Of course, ANYTHING CAN HAPPEN!




TheRumpledOne
6,529 posts
msg #101256
Ignore TheRumpledOne
6/15/2011 3:59:10 PM

Fetcher[
/* TRO - CLOSE - LOW */

set{Long_Profit,close - low }
set{Short_Profit, high - close}

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

set{c50, count(Long_Profit > .49, 100)}

set{OpPc, open - close 1 day ago}


add column OpPc
add column Long_Profit {ClLo}
and add column Short_Profit {HiCl}

and add column Dime
and add column c50 {50}



and sort column 14 descending

symlist(aapl,rimm,lulu)

]



If you like to bottom fish during the day, you can use this filter to see what kind of movement off the daily low to expect.

Great when stocks making new lows during the last hour of trading.


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