StockFetcher Forums · Filter Exchange · /* MPs RSIWRL DISPLAY */<< 1 ... 3 4 5 6 7 >>Post Follow-up
TheRumpledOne
6,407 posts
msg #39472
Ignore TheRumpledOne
12/11/2005 10:22:31 PM

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

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

/* NORMALIZE momentum(12) */

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

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

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 MP's RSIWRL DISPLAY */
]



PERHAPS THIS IS THE FINISHING TOUCH!!

The last 4 lines of code draw the chart just like on www.prophet.net.

MAY ALL YOUR FILLS BE COMPLETE.


TheRumpledOne
6,407 posts
msg #39477
Ignore TheRumpledOne
12/12/2005 8:23:04 AM

If you want to add the DISPLAY CODE to your filter, insert the following:

/* MPs RSIWRL DISPLAY CODE */

/* NORMALIZE accumulation distribution */

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

/* NORMALIZE momentum(12) */

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

/* NORMALIZE rsi(2) */

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

/* NORMALIZE williams %r(10) */

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

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

MAY ALL YOUR FILLS BE COMPLETE.


sggc
4 posts
msg #39479
Ignore sggc
12/12/2005 9:27:41 AM

Where and what is Mike's QT Setup. Thanks for sharing your knowledge,and also, for your tolerance. Carl


TheRumpledOne
6,407 posts
msg #39482
Ignore TheRumpledOne
12/12/2005 7:29:21 PM

You can find MP's (Mike Parker's) setup at www.stockhideout.com.

Full detailed instructions are there.

MAY ALL YOUR FILLS BE COMPLETE.


TheRumpledOne
6,407 posts
msg #39490
Ignore TheRumpledOne
12/13/2005 9:53:39 AM

One little change:


/* MP RSIWLR ANALYZER DISPLAY */
/* 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 */

I noticed the RSI line on prophet didn't change when you superimpose the indicators.

So instead of using INDPOSITION on RSI(2), I multiplied the other indicators by 100 to normalize on a scale of 0 - 100. So now it matches www.prophet.net.



MAY ALL YOUR FILLS BE COMPLETE.




stevec2
5 posts
msg #39505
Ignore stevec2
12/14/2005 11:37:44 AM

Nice job on the filter Rump!
thanks



Stocksight
33 posts
msg #40705
Ignore Stocksight
1/26/2006 2:25:54 AM

Avery, great example of skilled programming. I really enjoyed how you pursed the goal and didn't stop until you nailed it. Very nice! Now, I just need to get a larger monitor to see all the columns. ;-).


TheRumpledOne
6,407 posts
msg #40711
Ignore TheRumpledOne
1/26/2006 8:34:50 AM

It's not the columns, it's the CHART!

When you see all 4 lines at the bottom get ready to LOAD THE BOAT when the stock shows signs of life!

Sometimes just the red (A/D) or green (Momentum) line will bottom. That's a "Head's Up" to get ready.

Of course, when the blue (RSI(2)) bottoms, you know what to do.

The columns are for sorting/selecting, so you can see what stocks bottomed/top on each indicator.

MAY ALL YOUR FILLS BE COMPLETE.


TheRumpledOne
6,407 posts
msg #40712
Ignore TheRumpledOne
1/26/2006 8:39:30 AM

"Avery, great example of skilled programming. I really enjoyed how you pursed the goal and didn't stop until you nailed it. Very nice! Now, I just need to get a larger monitor to see all the columns. ;-)."

If you think this is something, you should see what I have done on TradeStation...

Of course, I implemented the RSIWRL Display in REAL TIME.

So far this year, I have finished Dynamic Support/Resistance, Dynamic Fibs, Dynamic Gridiron, Dynamic Risk/Reward Analysis, Position Sizing and the Auto Avery Trade Manager that has technical entries and Money Management and Technical exits.

I am finishing DYNAMIC CANDLESTICK PATTERN RECOGNITION.

And, best of all, it is all FREE! Of course, I accept gifts and donations from those who appreciate my work.








arthur702
38 posts
msg #40788
Ignore arthur702
1/30/2006 12:12:45 PM

rumpled, can you add to the filter a statement that shows stocks that have all 4 warm lines ehading up from the bottom and just crossed above 25-50 within the last 1 day?


Thanks.


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.