StockFetcher Forums · Filter Exchange · LOW SLOT MACHINE<< 1 2 >>Post Follow-up
garza
2 posts
msg #99924
Ignore garza
3/27/2011 3:46:31 AM

Can you please explain this one?

2932avidan
26 posts
msg #99926
Ignore 2932avidan
3/27/2011 9:09:17 AM

Can you explain what did you write there i can't even understand what it should find .
Thank you for reading .

TheRumpledOne
6,407 posts
msg #99931
Ignore TheRumpledOne
modified
3/27/2011 10:42:56 AM

The filter finds stocks at/near their lows.

The touch5d touch5w touch13w touch26w touch52w columns tell you if price "touched" the 5 day, 5 week, 13 week, etc... low.

The diff5 diff13 diff26 diff52 columns tell you how far price is above those lows.

The clxcl hixhi loxlo columns tell you how many days since the close/high/low crossed above (+) or below (-) the previous close/high/low.

If you have specific questions, please ask.





2932avidan
26 posts
msg #99932
Ignore 2932avidan
3/27/2011 11:11:25 AM

So with this i should looking for an short positions and trade in close to their lows that what to fetcher mean to help me ?
How should i trade with it ?

jimvin
170 posts
msg #99948
Ignore jimvin
3/27/2011 11:25:27 PM

One word of caution...

[Note that this is by no means a criticism of the fiilter or its author, just a general rule of thumb for any new trader using any filter, especially one as sophisticated as this.]

I would paper-trade for at least 6 weeks (i.e. track the stocks identified and their returns using your trading style) before putting in real money.

A filter may be brilliantly crafted, but not fit your trading style, or not fit the market conditions (since each market has its own personality.)

One man's opinion based on experience (good and bad.)



TheRumpledOne
6,407 posts
msg #102073
Ignore TheRumpledOne
modified
8/8/2011 10:33:52 AM

Fetcher[
/* EXTREME LOWS */

/* PRICE POSITION PERCENT DISPLAY */

/* enter your Upper Limit criteria */
set{UpperLim, High 5 Day High}

/* enter your Lower Limit criteria */
set{LowerLim, Low 5 Day Low}
set{touch5d, count( low equal LowerLim , 1) }

/* enter your Lower Limit criteria */
set{LOW50w, Low 50 week Low}
set{DIFF5, CLOSE MINUS LOW50w }
set{touch50w, count( low equal LOW50w , 1) }

/* enter your Lower Limit criteria */
set{LOW100w, Low 100 week Low}
set{DIFF100, CLOSE MINUS LOW100w }
set{touch100w, count( low equal LOW100w , 1) }

/* enter your Lower Limit criteria */
set{LOW200w, Low 200 week Low}
set{DIFF200, CLOSE MINUS LOW200w }
set{touch200w, count( low equal LOW200w , 1) }

/* enter your Lower Limit criteria */
set{LOW300w, Low 300 week Low}
set{DIFF300, CLOSE MINUS LOW300w }
set{touch300w, count( low equal LOW300w , 1) }

set{touch3, touch5d + touch50w }
set{touch2, touch3 + touch100w }
set{touch1, touch2 + touch200w }
set{touch, touch1 + touch300w }

set{LimDiff, UpperLim minus LowerLim}
set{PPDiff, CLOSE minus LowerLim}
set{PPDiv, PPDiff / LimDiff}
set{BallOn, PPDiv * 100}

set{PCT, LimDiff / LowerLim}

set{HiOp,high - open}
set{OpLo, open - low}
set{ClLo, close - low}

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{HHb,days(High is above High 1 day ago,100)}
set{HHa,days(High is below High 1 day ago,100)}
set{HixHi, HHa - HHb}

set{LLb,days(Low is above Low 1 day ago,100)}
set{LLa,days(Low is below Low 1 day ago,100)}
set{LoxLo, LLa - LLb}

/* column display */

add column ClxCl
add column HixHi
add column LoxLo

add column ClLo
add column HiOp
add column OpLo

add column BallOn
add column PCT

add column touch5d
add column touch50w
add column touch100w
add column touch200w
add column touch300w



add column DIFF5
add column DIFF100
add column DIFF200
add column DIFF300

add column LOW50w
add column LOW100w
add column LOW200w
add column LOW300w




/* PLOTS */

draw UpperLim on plot price
draw LowerLim on plot price

/* Selection Criteria */

symlist(aapl,rimm)


Sort column 5 ascending

/* DRAW LINES */

draw upperlim on plot price
draw lowerlim on plot price

draw LOW50w on plot price
draw LOW100w on plot price
draw LOW200w on plot price
draw LOW300w on plot price
]





TheRumpledOne
6,407 posts
msg #102634
Ignore TheRumpledOne
modified
9/20/2011 11:56:27 AM

Fetcher[

/* TRO - DEMAND */

/* PRICE POSITION PERCENT DISPLAY */

/* enter your Upper Limit criteria */
set{UpperLim, High 5 Day High}

/* enter your Lower Limit criteria */
set{LowerLim, Low 5 Day Low}
set{touch5d, count( low BELOW LowerLim 1 DAY AGO, 1) }

/* enter your Lower Limit criteria */
set{LOW5w, Low 5 week Low}
set{DIFF5, CLOSE MINUS LOW5w }
set{touch5w, count( low BELOW LOW5w 1 DAY AGO, 1) }

/* enter your Lower Limit criteria */
set{LOW13w, Low 13 week Low}
set{DIFF13, CLOSE MINUS LOW13w }
set{touch13w, count( low BELOW LOW13w 1 DAY AGO, 1) }

/* enter your Lower Limit criteria */
set{LOW26w, Low 26 week Low}
set{DIFF26, CLOSE MINUS LOW26w }
set{touch26w, count( low BELOW LOW26w 1 DAY AGO, 1) }

/* enter your Lower Limit criteria */
set{LOW52w, Low 52 week Low}
set{DIFF52, CLOSE MINUS LOW52w }
set{touch52w, count( low BELOW LOW52w 1 DAY AGO, 1) }

set{touch3, touch5d + touch5w }
set{touch2, touch3 + touch13w }
set{touch1, touch2 + touch26w }
set{touch, touch1 + touch52w }

set{LimDiff, UpperLim minus LowerLim}
set{PPDiff, CLOSE minus LowerLim}
set{PPDiv, PPDiff / LimDiff}
set{BallOn, PPDiv * 100}

set{PCT, LimDiff / LowerLim}

set{HiOp,high - open}
set{OpLo, open - low}
set{ClLo, close - low}

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{HHb,days(High is above High 1 day ago,100)}
set{HHa,days(High is below High 1 day ago,100)}
set{HixHi, HHa - HHb}

set{LLb,days(Low is above Low 1 day ago,100)}
set{LLa,days(Low is below Low 1 day ago,100)}
set{LoxLo, LLa - LLb}

/* column display */
add column BallOn
add column PCT

add column touch5d
add column touch5w
add column touch13w
add column touch26w
add column touch52w


add column LOW5w
add column LOW13w
add column LOW26w
add column LOW52w

add column ClxCl
add column HixHi
add column LoxLo

add column ClLo
add column HiOp
add column OpLo


add column DIFF5
add column DIFF13
add column DIFF26
add column DIFF52





/* PLOTS */

draw UpperLim on plot price
draw LowerLim on plot price

/* Selection Criteria */

set{BallLow, count( BallOn < 2 , 1 ) }
set{BallHigh, count( BallOn > 98 , 1 ) }
set{PlayBall, BallLow + BallHigh }

touch above 0
Close above 1
MARKET IS NASDAQ

volume above 1000000

add column industry

Sort column 5 ascending

/* DRAW LINES */

draw upperlim on plot price
draw lowerlim on plot price

draw LOW5w on plot price
draw LOW13w on plot price
draw LOW26w on plot price
draw LOW52w on plot price
]



StockFetcher Forums · Filter Exchange · LOW SLOT MACHINE<< 1 2 >>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.