StockFetcher Forums · General Discussion · SCAN PICKS Round-Up<< 1 2 3 4 5 ... 12 >>Post Follow-up
karennma
8,057 posts
msg #88865
Ignore karennma
2/28/2010 6:45:13 PM

DMOBRIEN:
Just wanted to say THANKS for keeping up this thread!
$$$$
:>)


DMOBRIEN
363 posts
msg #88878
Ignore DMOBRIEN
2/28/2010 8:56:28 PM

GLG Double Bottom at big retracement levels

DMOBRIEN
363 posts
msg #88879
Ignore DMOBRIEN
2/28/2010 9:38:51 PM

GNBT higher highs and lower lows bouncing off ma 200

thyname
16 posts
msg #88882
Ignore thyname
2/28/2010 10:51:55 PM

Hi there, dmobrien. What scans have you build and are using? Do you mind sharing?

DMOBRIEN
363 posts
msg #88884
Ignore DMOBRIEN
2/28/2010 11:18:49 PM

This just compiled to determine lows in price and ROC with RSI value to gauge strength of the crossover.

Fetcher[
set{RC, smoothed rate of change(5,9)}
set{RCMA, cma(RC,7)}

/* Basic Tirone Lines*/

set{my_high,high 40 day high}
set{my_low,low 40 day low}
set{my_diff, my_high - my_low}
set{my_mid, my_diff / 2}
set{my_mid1, my_high - my_mid}

/*Set up for RC/RSI To Play the Divergence Gap Created by RC Crossing Above RCMA*/

set{RSIVAL, indposition(rsi(2),10) * 100}
set{RCVAL, indposition(rc,10) * 100}

draw my_high on plot price
draw my_low on plot price
draw my_mid1 on plot price
draw RC
draw RCMA on plot RC
draw rsival
draw rcval on plot rsival
close > 1
draw rsi(2)
draw dma(3,3)
]



and a combination filter credited to Chet and Alf44 with a couple of modifications

Fetcher[set{myOSC, MA(3) - MA(10)}
set{myOSCtrend, CMA(myOSC,16)}
set{A, myosc}
set{B, myosctrend}
a crossed above b from below
Show all stocks where Price is between .20 and 5
average volume(50) > 250000
draw myOSC
draw myOSC line at 0
draw CMA(myOSC,16)
draw dma(3,3) on plot price
draw rsi(2)
chart-time is 6 Months

set{F000,count(Fibonacci Up(120,20) is near 0.000,1)}
set{F240,count(Fibonacci Up(120,20) is near 0.240,1)}
set{F382,count(Fibonacci Up(120,20) is near 0.382,1)}
set{F500,count(Fibonacci Up(120,20) is near 0.500,1)}
set{F618,count(Fibonacci Up(120,20) is near 0.618,1)}
set{F786,count(Fibonacci Up(120,20) is near 0.786,1)}
set{F1000,count(Fibonacci Up(120,20) is near 1.000,1)}

SET{VAR1,F000 + F240}
SET{VAR2,VAR1+ F382}
SET{VAR3,VAR2 + F500}
SET{VAR4,VAR3+ F618}
SET{VAR5,VAR4 + F786}
SET{VAR6,VAR5 + F1000}


set{F000D,count(Fibonacci DOWN(120,20) is near 0.000,1)}
set{F240D,count(Fibonacci DOWN(120,20) is near 0.240,1)}
set{F382D,count(Fibonacci DOWN(120,20) is near 0.382,1)}
set{F500D,count(Fibonacci DOWN(120,20) is near 0.500,1)}
set{F618D,count(Fibonacci DOWN(120,20) is near 0.618,1)}
set{F786D,count(Fibonacci DOWN(120,20) is near 0.786,1)}
set{F1000D,count(Fibonacci DOWN(120,20) is near 1.000,1)}

SET{VAR11,F000D + F240D}
SET{VAR12,VAR11+ F382D}
SET{VAR13,VAR12 + F500D}
SET{VAR14,VAR13+ F618D}
SET{VAR15,VAR14 + F786D}
SET{VAR16,VAR15 + F1000D}

SET{VAR26,VAR6 + VAR16}



ADD COLUMN F000D
ADD COLUMN F240D
ADD COLUMN F382D
ADD COLUMN F500D
ADD COLUMN F618D
ADD COLUMN F786D
ADD COLUMN F1000D



DRAW FIBONACCI DOWN(120,20)



ADD COLUMN F000
ADD COLUMN F240
ADD COLUMN F382
ADD COLUMN F500
ADD COLUMN F618
ADD COLUMN F786
ADD COLUMN F1000



DRAW FIBONACCI UP(120,20)
]



and an old one I found interesting

Fetcher[set{var1,cci(8) + cci(13)}
set{var2,var1 + cci(21)}
set{3xcci,var2 / 3}

draw var2
draw 3xcci
3xcci crossed above -100 from below
add column 3xcci

close above .2
volume above 1000000
sort column 5 descending
]



and this bit of insanity (I wasn't drinking, but maybe should have been)

Fetcher[set{money, close * average volume(50)}
set{cmf1, count(Chaikins Money Flow(20) > 0, 50)}
set{cmf2, count(Weekly Chaikins Money Flow(20) < 0, 50)}
set{days_cmf1, days(Chaikins Money Flow(20) < 0, 50)}
set{days_cmf2, days(weekly Chaikins Money Flow(20) < 0, 50)}
SET{mpos,INDPOSITION(money,50) * 100}
set{willy, weekly williams %r(10)}
SET{wpos,INDPOSITION(willy,50) * 100}
Set{MMA28,CMA(mpos,28)}
Set{WMA28,CMA(wpos,28)}
draw mma28
draw wma28 on plot wma28
set{diff, wma28 - mma28}
diff > 0
money > 10000
money < 2000000
draw weekly williams %r(10)
Set{money20,CMA(money,20)}
set{SD,cstddev(money,20)}
set{SD20,2 * SD}
set{BOLU,money20 + SD20}
set{BOLD,money20 - SD20}
set{VBW,BOLU - BOLD}

weekly williams %r(10) > -50
/* Ichimuko layout*/

/*Tenkan-Sen*/
set{diff9TS, high 9 day high + low 9 day low}
set{TS, diff9tS / 2}
draw TS on plot price

/*Kijun-Sen*/
set{diff26KS, high 26 day high + low 26 day low}
set{KS, diff26KS / 2}
draw KS on plot price

/*Senkou Span A*/
set{SSA1, TS + KS}
set{SSA2, SSA1 / 2}
set{SSA, SSA2 26 days ago}
draw SSA on plot price

/*Senkou Span B*/
set{SSB1, high 52 day high + low 52 day low}
set{SSB2, SSB1 / 2}
set{SSB, SSB2 52 days ago}
draw SSB on plot price


draw bolu on plot money
draw bold on plot money
draw wpos
draw mpos on plot wpos
add column vbw
add column diff
add column cmf1
add column cmf2

price > .05
average volume (50) > 100000
date offset is 5
]



Radiomuse
288 posts
msg #88888
Ignore Radiomuse
3/1/2010 1:03:04 AM

HRS above 45.56 (from an RSI(3) scan)

DMOBRIEN
363 posts
msg #88889
Ignore DMOBRIEN
3/1/2010 1:23:38 AM

OXGN to break out of the triangle and AMGN for daytrading long

DMOBRIEN
363 posts
msg #88897
Ignore DMOBRIEN
3/1/2010 7:40:40 AM

Looking for MDCA to continue upward Mo

Venice
82 posts
msg #88913
Ignore Venice
3/1/2010 10:54:25 AM

Sigh... no buying power today. I really need a margin account.

DDS -- make some money over the next few days... she's got a lot of montem behind her and has just finished a correction on her way up.

Venice
82 posts
msg #88929
Ignore Venice
3/1/2010 2:42:28 PM

Did anyone go in on DDS when I called it this morning? Already looking at around 6% profit. Would have picked up an even better position with SF would get us instant data!! This 15-20 minute delay is absolutely murdering my entry points for profit!

StockFetcher Forums · General Discussion · SCAN PICKS Round-Up<< 1 2 3 4 5 ... 12 >>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.