PureBytes Links
Trading Reference Links
|
v3.0 of the LinReg Trendline is likely to be more useful to you in
your trading, but here is 2.0 anyway:
===========================
Linear Regression Trendline
===========================
---8<---------------------------
{ Linear Regression Trendline Channel v2.0 }
{ ©Copyright 2004 Jose Silva }
{ For personal use only }
{ http://users.bigpond.com/prominex/pegasus.htm }
EnDay:=Input("end Day",1,31,31);
EnMnth:=Input("end Month",1,12,12);
EnYear:=Input("end Year",1800,2200,2006);
pds:=Input("Linear Regression Trendline periods",2,2520,63);
multi:=Input("Channel Standard Deviations",
0,100,2);
x:=Input("use Open=1 High=2 Low=3 Close=4 Volume=5 P=6",1,6,4);
x:=If(x=1,O,If(x=2,H,If(x=3,L,If(x=5,V,If(x=6,P,C)))));
end:=Year()>EnYear
OR (Year()=EnYear AND (Month()>EnMnth
OR Month()=EnMnth AND DayOfMonth()>=EnDay));
end:=end AND Alert(end=0,2);
end:=If(LastValue(Cum(Ref(end,pds)))=0,
LastValue(Cum(1))=Cum(1),end);
lastValLRI:=LastValue(Highest(
If(end,LinearReg(x,pds),0)));
lastValLRS:=LastValue(Highest(
If(end,LinRegSlope(x,pds),-10000)));
adjust:=LastValue(LastValue(Cum(1))
-Highest(If(end,Cum(1),0)));
countback:=LastValue(Cum(1))-Cum(1)-adjust;
{ rem next line to extend plot to end of chart }
countback:=Ref(Ref(countback,-adjust),adjust);
LR:=lastValLRI-lastValLRS*countback;
restrict:=adjust-(LastValue(Cum(1))-pds);
LRT:=Ref(Ref(LR,-restrict),restrict);
upLR:=LRT+Stdev(LR,pds)*multi;
lwLR:=LRT-Stdev(LR,pds)*multi;
upLR;lwLR;LRT
---8<---------------------------
jose '-)
--- In equismetastock@xxxxxxxxxxxxxxx, suree namsiripongpan
<suree_n@xxxx> wrote:
>
> Dear Jose,
>
> May I have the previus version of LinReg Trendline,
> i.e. v2 ? i am not get used to the v3.....
>
>
> --- Jose <josesilva22@xxxx> wrote:
>
> Thanks for the nice plug for my plug-in, Betty. :)
>
> The nature of Raff Regression Channels is such that
> (with the aid of hindsight) they enclose 100% of price
> movements, thus you will never find any prices outside
> these channels.
>
> You may however, find Linear Regression Trendline
> code that may be useful to you here:
>
> http://users.bigpond.com/prominex/pegasus.htm#metastock
> "LinReg Trendline" link.
>
>
> Regards,
> jose '-)
>
>
> --- In equismetastock@xxxxxxxxxxxxxxx, Burwell Pike
> <Castlekeep52@xxxx
> wrote:
>
> Hi Ken,
>
> I'm emailing you for two reasons:
>
> (1) Based on your experience with add-ons and additional
> third party supplements for Metastock and your specific
> recommendation, I purchased Jose Silva's Divergence
> Macd-h program. I want to take this opportunity to
> thank you so much for referring me to him.
> My plan is to use it as a "trigger" or entry mechanism
> and attempt to discover any additional usages.
>
> (2) I was hoping you might assist me one additional time.
> Are you aware of another Metastock add-on or third party
> supplement that you have purchased that contains
> Linear Regression Channel analysis (i.e. Raff
> Regression Channel). Specifically and the most
> important characteristic I desire is for the software
> to draw the regression channels automatically either
> when I stipulate two dates (i.e. 1 Jan 01 to 31 Dec 03)
> or inputing a specific number of days (i.e 400 days).
> Additionally, I would like it to possess the ability
> to perform an exploration searching for those stocks
> that are either above the upper band (overbought)
> and lower band (oversold).
>
> TIA,
>
> Betty
>
>
> --- Ken Johnston <milocat@xxxx> wrote:
>
> I am aware of the rules on spamming so let me say up
> front that I have no connection with Jose Silva whatever
> except as a customer and this post is unsolicited.
> I own most of the Plug-ins and Third party add-ons for
> Metastock.
> A majority were a waste of money-a few are excellent.
> I would rate Walt Bressert's package as excellent for
> overall usefullness- Bollinger Band Tool kit is up there
> as well-Candle power is great for those who want a simple
> to use objective system but I recently purchased a
> MACD Divergence package from Mr Silva and would rate it
> as the very best available.
> Moreover, I had several installation problems relating to
> my hardware (my hard drive subsequently packed it in)
> Mr Silva carefullly and fully responded to numerous Emails
> from me over a weekend. It was clear that he would
> personally ensure that my software was working.
> The software itself is superb- a very simple concept-MACD
> Divergence-yet very powerful.
> It was a pleasure to deal with someone who took customer
> satisfaction so seriously-Thanks Jose!
> Ken
>
> (if you are interested-
> http://users.bigpond.com/prominex/pegasus.htm#current
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|