StockFetcher Forums · Filter Exchange · BIG GAP<< >>Post Follow-up
TheRumpledOne
6,407 posts
msg #48655
Ignore TheRumpledOne
modified
12/17/2006 10:26:39 AM

Fetcher[
/* BIG GAP */

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

set{absgap, abs(Xgapped)}

set{biggap, count(absgap > .50, 5)}

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

set{cl1lo, close 1 day ago - low}
set{hicl1, high - close 1 day ago }

set{fillup, count(cl1lo > 0, 1)}
set{filldn, count(hicl1 > 0, 1)}

set{gapupfilled, Xgapup * fillup }
set{gapdnfilled, Xgapdn * filldn }

set{gapup100f, count(gapupfilled > 0, 100)}
set{gapdn100f, count(gapdnfilled > 0, 100)}

set{gapfilled, gapup100f + gapdn100f}

/* DRAW PLOTS */

DRAW XGAPPED ON PLOT XGAPPED

/* DISPLAY COLUMNS */

and add column gappedup100
and add column gappeddn100
and add column gapfilled
and add column gapup100f
and add column gapdn100f

and add column cma(absgap, 100)
and add column absgap 100 day high
and add column absgap 100 day low

/* SELECTION CRITERIA */

BIGGAP above 1


AVERAGE VOLUME(30) ABOVE 1000000
MARKET IS NASDAQ

/* SORT CRITERIA */

SORT COLUMN 7 DESCENDING
]



Just an idea.







TheRumpledOne
6,407 posts
msg #48676
Ignore TheRumpledOne
12/17/2006 10:31:42 AM

Fetcher[
/* BIG GAP */

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

set{absgap, abs(Xgapped)}

set{biggap, count(absgap > .50, 5)}

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

set{cl1lo, close 1 day ago - low}
set{hicl1, high - close 1 day ago }

set{fillup, count(cl1lo > 0, 1)}
set{filldn, count(hicl1 > 0, 1)}

set{gapupfilled, Xgapup * fillup }
set{gapdnfilled, Xgapdn * filldn }

set{gapup100f, count(gapupfilled > 0, 100)}
set{gapdn100f, count(gapdnfilled > 0, 100)}

set{gapfilled, gapup100f + gapdn100f}


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

/* enter your Lower Limit criteria */
set{LOW13w, Low 13 week Low}
set{DIFF13, CLOSE MINUS LOW13w }

/* enter your Lower Limit criteria */
set{LOW26w, Low 26 week Low}
set{DIFF26, CLOSE MINUS LOW26w }

/* enter your Lower Limit criteria */
set{LOW52w, Low 52 week Low}
set{DIFF52, CLOSE MINUS LOW52w }

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{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 ClLo
add column HiOp
add column OpLo

add column BallOn
add column PCT

add column DIFF13
add column DIFF26
add column DIFF52

add column LOW13w
add column LOW26w
add column LOW52w

add column HixHi
add column LoxLo

/* DRAW LINES */

draw upperlim on plot price
draw lowerlim on plot price

draw LOW13w on plot price
draw LOW26w on plot price
draw LOW52w on plot price

DRAW XGAPPED ON PLOT XGAPPED

/* SELECTION CRITERIA */

BIGGAP above 1

AVERAGE VOLUME(30) ABOVE 1000000
MARKET IS NASDAQ

/* SORT CRITERIA */

SORT COLUMN 7 DESCENDING
]



Wanted to see some different columns.








TheRumpledOne
6,407 posts
msg #49084
Ignore TheRumpledOne
modified
1/9/2007 10:22:59 AM

Fetcher[
/* RUNAWAY GAP */

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

set{absgap, abs(Xgapped)}

set{breakdn, open - low }
set{breakup, high - open }

set{dimedn1, count( breakdn > .09, 1) * Xgapdn }
set{dimeup1, count( breakup > .09, 1) * Xgapup }

set{dimedn, count( dimedn1 > 0, 100 ) }
set{dimeup, count( dimeup1 > 0, 100 ) }

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

set{ winup, dimeup / gappedup100 }
set{ windn, dimedn / gappeddn100 }


set{cl1lo, close 1 day ago - low}
set{hicl1, high - close 1 day ago }

set{fillup, count(cl1lo > 0, 1)}
set{filldn, count(hicl1 > 0, 1)}

set{gapupfilled, Xgapup * fillup }
set{gapdnfilled, Xgapdn * filldn }

set{gapup100f, count(gapupfilled > 0, 100)}
set{gapdn100f, count(gapdnfilled > 0, 100)}

set{gapfilled, gapup100f + gapdn100f}

/* DRAW PLOTS */

DRAW XGAPPED ON PLOT XGAPPED

/* DISPLAY COLUMNS */

and add column dimeup
and add column winup
and add column dimedn
and add column windn

and add column separator

and add column gappedup100
and add column gappeddn100
and add column gapfilled
and add column gapup100f
and add column gapdn100f

and add column separator

and add column cma(absgap, 100)
and add column absgap 100 day high
and add column absgap 100 day low

/* SELECTION CRITERIA */



AVERAGE VOLUME(30) ABOVE 1000000
MARKET IS NASDAQ

/* SORT CRITERIA */

SORT COLUMN 8 DESCENDING

]





StockFetcher Forums · Filter Exchange · BIG GAP<< >>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.