StockFetcher Forums · Filter Exchange · /* MPs RSIWRL DISPLAY */<< 1 ... 3 4 5 6 7 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #40791
Ignore TheRumpledOne
1/30/2006 12:54:52 PM

Fetcher[
/* MP RSIWLR ANALYZER DISPLAY - WARM RISING AND CROSSING ABOVE */

/* NORMALIZE accumulation distribution */

set{adval, INDPOSITION(accumulation distribution, 60) * 100 }

/* NORMALIZE momentum(12) */

set{moval, INDPOSITION(momentum(12), 60) * 100}

/* NORMALIZE rsi(2) */

set{rsval, RSI(2) }

/* NORMALIZE williams %r(10) */

set{wrval, INDPOSITION(williams %r(10), 60) * 100 }

/* DISPLAY THE COLUMNS */

add column wrval
add column adval
add column rsval
add column moval


/* DRAW THE MP RSIWLR CHART */

and draw wrval
and draw adval on plot wrval
and draw moval on plot wrval
and draw rsval on plot wrval

/* END MPs RSIWRL DISPLAY CODE */

/* user criteria */

wrval above wrval 1 day ago
adval above adval 1 day ago
rsval above rsval 1 day ago
moval above moval 1 day ago

set{ xcross , 25}

wrval crossed above xcross
adval crossed above xcross
rsval crossed above xcross
moval crossed above xcross
]



HTH.

MAY ALL YOUR FILLS BE COMPLETE.


kanuk
32 posts
msg #40794
Ignore kanuk
1/30/2006 3:41:59 PM

Rumpled. Re Arthur 702's post of 1/30/2006 @ 12:45 pm. What is the signifigance of the 4 warm lines crossing above 25-50 after 1 day


TheRumpledOne
6,407 posts
msg #40829
Ignore TheRumpledOne
1/31/2006 9:01:38 PM

"Rumpled. Re Arthur 702's post of 1/30/2006 @ 12:45 pm. What is the signifigance of the 4 warm lines crossing above 25-50 after 1 day"

I HAVE NO IDEA!

I just coded what he asked for.


TheRumpledOne
6,407 posts
msg #41578
Ignore TheRumpledOne
2/25/2006 1:59:34 PM

POP TO THE TOP!


kb4444
24 posts
msg #44818
Ignore kb4444
6/10/2006 9:02:57 AM

Tro, I want to thank you for the Warm filter...It's great and saves me a lot of time of scrolling thru a bunch of charts. My question is did you ever figure out what settings Prophet uses for their AD line? That seems to be the only thing that sometimes doesn't match. It's not a complaint, I'm just curious. for example, on May 22nd, check out IFN. filter shows adval 0.00 and the charts on here shows up fine but when you check it out on prophet, the adval line is around the 50% area:

/* MP RSIWLR ANALYZER DISPLAY */
/* NORMALIZE accumulation distribution */

set{adval, INDPOSITION(accumulation distribution, 60) }

/* NORMALIZE momentum(12) */

set{moval, INDPOSITION(momentum(12), 62) }

/* NORMALIZE rsi(2) */

set{rsval, INDPOSITION(RSI(2), 60) }

/* NORMALIZE williams %r(10) */

set{wrval, INDPOSITION(williams %r(10), 60) }

set{rsix, count(rsi(2) below 5, 1)}
set{wrx, count(wrval below .05 , 1)}
set{momox, count(moval below .05, 1)}
set{accdx, count(adval below .05, 1)}

set{xBB1, count(HIGH crossed above the upper bollinger band (20),1) - count(LOW crossed below the lower bollinger band (20),1)}

set{xBB2, count(close above the upper bollinger band (20),1) - count(close below the lower bollinger band (20),1)}

set{xBB, xBB1 + xBB2}

set{xLR1, count(HIGH crossed above the top linear regression line(60),1) - count(LOW crossed below the bottom linear regression line(60),1)}

set{xLR2, count(close above the top linear regression line(60),1) - count(close below the bottom linear regression line(60),1)}

set{xLR, xLR1 + xLR2}


set{wBB1, count(HIGH crossed above the weekly upper bollinger band (20),1) - count(LOW crossed below the weekly lower bollinger band (20),1)}

set{wBB2, count(close above the weekly upper bollinger band (20),1) - count(close below the weekly lower bollinger band (20),1)}

set{wBB, wBB1 + wBB2}

set{wLR1, count(HIGH crossed above the weekly top linear regression line(60),1) - count(LOW crossed below the weekly bottom linear regression line(60),1)}

set{wLR2, count(close above the weekly top linear regression line(60),1) - count(close below the weekly bottom linear regression line(60),1)}

set{wLR, wLR1 + wLR2}

set{MoMob,days(Momentum(12) is above Momentum(12) 1 day ago,100)}
set{MoMoa,days(Momentum(12) is below Momentum(12) 1 day ago,100)}
set{M12xM12, MoMoa - MoMob}

set{ACDIb,days(accumulation distribution is above accumulation distribution 1 day ago,100)}
set{ACDIa,days(accumulation distribution is below accumulation distribution 1 day ago,100)}
set{ADxAD, ACDIa - ACDIb}

set{WPRb,days(Williams %R(10) is above Williams %R(10) 1 day ago,100)}
set{WPRa,days(Williams %R(10) is below Williams %R(10) 1 day ago,100)}
set{W10xW10, WPRa - WPRb}

set{rsib,days(rsi(2) is above rsi(2) 1 day ago,100)}
set{rsia,days(rsi(2) is below rsi(2) 1 day ago,100)}
set{R2xR2, rsia - rsib}

set{xc2, rsix + wrx}
set{xc1, xc2 + accdx}
set{RSIWLR, xc1 + momox}


Set{n1, momox * 1}
Set{n2, rsix * 10}
Set{n3, accdx * 100}
Set{n4, wrx * 1000}

Set{na, n1 + n2}
Set{nb, n3 + n4}
Set{WARM, na + nb}

set{rsi60D, count(rsi(2) equal rsi(2) 60 day low, 1)}
set{wr60D, count(Williams %R(10) equal Williams %R(10) 60 day low , 1)}
set{momo60D, count(momentum(12) equal momentum(12) 60 day low, 1)}
set{accd60D, count(accumulation distribution equal accumulation distribution 60 day low, 1)}

add column warm

add column adval
add column moval
add column wrval

add column w10xw10
add column ADxAD

add column r2xr2
add column M12xM12

add column wr60D
add column accd60D
add column rsi60D
add column momo60D

and add column xBB {BBx_}
and add column xLR {LRx_}
and add column wBB {wBBx}
and add column wLR {wLRx}


add column accumulation distribution
add column RSI(2)
add column Williams %R(10)
add column momentum(12)
and add column industry




/* YOUR SELECTION CRITERIA GOES BELOW THIS LINE */

close above 1
volume above 1000000
RSIWLR above 1
adval below .1
moval below .1
wrval below .1
close above 15

SORT COLUMN 5 DESCENDING

/* YOUR SELECTION CRITERIA GOES ABOVE THIS LINE */

/* DRAW CHART JUST LIKE WWW.PROPHET.NET */
and draw wrval
and draw adval on plot wrval
and draw moval on plot wrval
and draw rsval on plot wrval

/* END MPs RSIWRL DISPLAY */


and date offset is 13

Thanks for any response,

KB


TheRumpledOne
6,407 posts
msg #44821
Ignore TheRumpledOne
6/10/2006 12:31:35 PM

KB:

Each site will be different as soon as their daily values don't match.

I checked with prophet and SF on this.

I started tracking a couple of new issues and sure enough within a week the volume numbers did not match. All depends on where they get the data.

Of course, the question that begs to be asked... WHY AREN'T THE NUMBERS THE SAME?

You would think that the exchange would have ONE SET of official numbers that EVERYONE uses but that does NOT seem to be the case.

HTH.


kb4444
24 posts
msg #44836
Ignore kb4444
6/10/2006 4:05:38 PM

hmmm... interesting... and the markets are totally random huh... makes one think. Thanks for your answer,

KB


StockFetcher Forums · Filter Exchange · /* MPs RSIWRL DISPLAY */<< 1 ... 3 4 5 6 7 >>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.