StockFetcher Forums · Filter Exchange · Elder's Market Thermometer<< 1 2 3 4 >>Post Follow-up
chetron
2,817 posts
msg #66579
Ignore chetron
8/22/2008 8:58:58 PM

just trying to contribute. ; )



TheRumpledOne
6,407 posts
msg #66580
Ignore TheRumpledOne
8/22/2008 9:05:24 PM

I appreciate your contributions. Thanks again for taking the time to share.

TheRumpledOne
6,407 posts
msg #66582
Ignore TheRumpledOne
modified
8/23/2008 12:21:58 AM

Fetcher[
/* Elder's Market Thermometer - Chetron Version with TRO LOW TEMP DISPLAY */

set{TEMP_HI,HIGH - HIGH 1 DAY AGO}
SET{TEMP_LO,LOW 1 DAY AGO - LOW}
SET{VAR1,MAX(TEMP_HI,TEMP_LO)}
SET{EQUITY_TEMP,ABS(VAR1)}
SET{TEMP_EMA22,CEMA(EQUITY_TEMP,22)}
SET{TEMP_DIFF,EQUITY_TEMP - TEMP_EMA22}


/* TRO STAT 10 PERCENT POPS 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
and add column separator

ADD COLUMN EQUITY_TEMP

/* TRO LOW TEMP DISPLAY */

ADD COLUMN EQUITY_TEMP 5 day low
ADD COLUMN EQUITY_TEMP 13 day low
ADD COLUMN EQUITY_TEMP 26 day low
ADD COLUMN EQUITY_TEMP 50 day low
ADD COLUMN EQUITY_TEMP 200 day low
and add column separator


DRAW TEMP_LO ON PLOT TEMP_HI
DRAW TEMP_EMA22
DRAW EQUITY_TEMP
DRAW TEMP_DIFF

ADD COLUMN TEMP_DIFF
ADD COLUMN TEMP_EMA22

ADD COLUMN TEMP_HI
ADD COLUMN TEMP_LO


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


/* SELECTION CRITERIA */

EQUITY_TEMP equal EQUITY_TEMP 5 day low

CLOSE ABOVE 1

average volume(90) above 500000

SORT COLUMN 5 DESCENDING

]




Finds stocks with EQUITY_TEMP at its 5 day low.

Stocks that have popped at least 10% the most are at the top.



TheRumpledOne
6,407 posts
msg #66583
Ignore TheRumpledOne
modified
8/23/2008 12:32:43 AM

*** WORK IN PROGRESS ***

Fetcher[
/* Elder's Market Thermometer - Chetron Version with TRO RUN FOREST, RUN */

set{TEMP_HI,HIGH - HIGH 1 DAY AGO}
SET{TEMP_LO,LOW 1 DAY AGO - LOW}
SET{VAR1,MAX(TEMP_HI,TEMP_LO)}
SET{EQUITY_TEMP,ABS(VAR1)}
SET{TEMP_EMA22,CEMA(EQUITY_TEMP,22)}
SET{TEMP_DIFF,EQUITY_TEMP - TEMP_EMA22}

set{ low5, count(EQUITY_TEMP equal EQUITY_TEMP 5 day low , 1) }
set{ low5_100, count(EQUITY_TEMP equal EQUITY_TEMP 5 day low , 100) }

/* TRO RUN FOREST, RUN */

set{x1, high - open}
set{x2, count( low5 1 day ago above 0, 1) }
set{x4, x1 * x2 }
set{Long_Profit, x4 / open }

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

set{C1A, count(Long_Profit > .02 , 100)}
set{C2A, count(Long_Profit > .03, 100)}
set{C0010, C1A - C2A}

set{D1A, count(Long_Profit > .03 , 100)}
set{D2A, count(Long_Profit > .04, 100)}
set{D1020, D1A - D2A}

set{E1A, count(Long_Profit > .04 , 100)}
set{E2A, count(Long_Profit > .05, 100)}
set{E2030, E1A - E2A}

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

set{G1A, count(Long_Profit > .10 , 100)}
set{G2A, count(Long_Profit > .25, 100)}
set{G4050, G1A - G2A}

set{H1A, count(Long_Profit > .25 , 100)}
set{H2A, count(Long_Profit > .50, 100)}
set{H50100, H1A - H2A}

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

add column low5_100
add column Long_Profit {ProfitPct}

and add column B0010 {1_2}
and add column C0010 {2_3}
and add column D1020 {3_4}
and add column E2030 {4_5}
and add column F3040 {5_10}
and add column G4050 {10_25}
and add column H50100 {25_50}
and add column I100 {50___}

and add column separator
ADD COLUMN EQUITY_TEMP
ADD COLUMN TEMP_DIFF
ADD COLUMN TEMP_EMA22

ADD COLUMN TEMP_HI
ADD COLUMN TEMP_LO


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


/* SELECTION CRITERIA */

low5 1 day ago above 0

CLOSE ABOVE 1

average volume(90) above 500000

SORT COLUMN 5 DESCENDING

]



chetron
2,817 posts
msg #66585
Ignore chetron
modified
8/23/2008 7:36:29 AM

for the cheap seats....


temp = 5 day low

Fetcher[


/* Elder's Market Thermometer - Chetron Version with TRO LOW TEMP DISPLAY */

set{TEMP_HI,HIGH - HIGH 1 DAY AGO}
SET{TEMP_LO,LOW 1 DAY AGO - LOW}
SET{VAR1,MAX(TEMP_HI,TEMP_LO)}
SET{EQUITY_TEMP,ABS(VAR1)}
SET{TEMP_EMA22,CEMA(EQUITY_TEMP,22)}
SET{TEMP_DIFF,EQUITY_TEMP - TEMP_EMA22}


/* TRO STAT 10 PERCENT POPS 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{var12,equity_temp 5 day low}
set{var11,equity_temp - var12}

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

ADD COLUMN EQUITY_TEMP

/* TRO LOW TEMP DISPLAY */

ADD COLUMN EQUITY_TEMP 5 day low
ADD COLUMN EQUITY_TEMP 13 day low
ADD COLUMN EQUITY_TEMP 26 day low
ADD COLUMN EQUITY_TEMP 50 day low
ADD COLUMN EQUITY_TEMP 200 day low
and add column separator


DRAW TEMP_LO ON PLOT TEMP_HI
DRAW TEMP_EMA22
DRAW EQUITY_TEMP
DRAW TEMP_DIFF

ADD COLUMN TEMP_DIFF
ADD COLUMN TEMP_EMA22

ADD COLUMN TEMP_HI
ADD COLUMN TEMP_LO


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


/* SELECTION CRITERIA */

var11 below 0.01
CLOSE ABOVE 1
b10a above 9
average volume(90) above 500000

SORT COLUMN 5 deSCENDING


]



TheRumpledOne
6,407 posts
msg #66587
Ignore TheRumpledOne
modified
8/23/2008 12:05:35 PM

Cheap seats? Not sure what you mean.

One thing I am noticing is the same stocks appear on the RFR display no matter what filter is used ( within reason ).

When you think about it, if you want to make money then it makes sense to trade the stocks that move the most more often than others. Makes trading easier.



johnpaulca
12,036 posts
msg #66594
Ignore johnpaulca
8/23/2008 2:04:58 PM

Chet and TRO...these are some sweet filters, I like when they cross above the BB(13,0.2)...great job guys.

chetron
2,817 posts
msg #66595
Ignore chetron
8/23/2008 2:52:43 PM

sorry tro on my lousy nicknames. lol. again, just referencing basic subscribers. your filter has been ruled as an advance subscriber filter.

thanx jp




chetron
2,817 posts
msg #66596
Ignore chetron
modified
8/23/2008 3:06:32 PM

add bb cross, is this right jp?


Fetcher[

/* Elder's Market Thermometer - Chetron Version with TRO LOW TEMP DISPLAY */

set{TEMP_HI,HIGH - HIGH 1 DAY AGO}
SET{TEMP_LO,LOW 1 DAY AGO - LOW}
SET{VAR1,MAX(TEMP_HI,TEMP_LO)}
SET{EQUITY_TEMP,ABS(VAR1)}
SET{TEMP_EMA22,CEMA(EQUITY_TEMP,22)}
SET{TEMP_DIFF,EQUITY_TEMP - TEMP_EMA22}
set{jp_move,count(close crossed above the lower Bollinger Band(13,0.2),1)}

draw jp_move

/* TRO STAT 10 PERCENT POPS 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{var12,equity_temp 5 day low}
set{var11,equity_temp - var12}

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

ADD COLUMN EQUITY_TEMP

/* TRO LOW TEMP DISPLAY */

ADD COLUMN EQUITY_TEMP 5 day low
ADD COLUMN EQUITY_TEMP 13 day low
ADD COLUMN EQUITY_TEMP 26 day low
ADD COLUMN EQUITY_TEMP 50 day low
ADD COLUMN EQUITY_TEMP 200 day low
and add column separator


DRAW TEMP_EMA22
DRAW EQUITY_TEMP
DRAW TEMP_DIFF

ADD COLUMN TEMP_DIFF
ADD COLUMN TEMP_EMA22

ADD COLUMN TEMP_HI
ADD COLUMN TEMP_LO


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


/* SELECTION CRITERIA */

var11 below 0.01
CLOSE ABOVE 1
b10a above 9
average volume(90) above 500000
do not draw b10a
SORT COLUMN 5 deSCENDING

]



johnpaulca
12,036 posts
msg #66601
Ignore johnpaulca
8/23/2008 6:14:20 PM

Thanks Chet,

I ran the filter and quickly looked at a few results. I like TGC , once it crosses above BB(13,0.2) wait for a retest then enter. I like when the ema(100) is just underneath as it will support it. Even better is when this event occurs within the BB(40,0.4). Take a look and tell me what you think.

StockFetcher Forums · Filter Exchange · Elder's Market Thermometer<< 1 2 3 4 >>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.