PureBytes Links
Trading Reference Links
|
Marco,
Also, here is one of Jose's Normalized indicators:
{ Normalized Momentum v3.1 }
{ ©Copyright 2003-2004 Jose Silva }
{ josesilva22@xxxxxxxxx }
pds:=Input("Momentum periods",1,2520,10);
pdsN:=Input("normalizing periods (1=none)",
1,2520,63);
x:=Input("use Open=1 High=2 Low=3 Close=4 Volume=5 P=6",1,6,4);
plot:=Input("Momentum=1, midpoint crossover Signals=2",1,2,1);
x:=If(x=1,O,If(x=2,H,If(x=3,L,If(x=5,V,If(x=6,P,C)))));
y:=Ref(x,-pds);
ratio:=Min(x,y)/Max(x,y);
Mom:=If(x>y,2-ratio,ratio)*100-100;
MomNorm:=(Mom-LLV(Mom,pdsN))
/(HHV(Mom,pdsN)-LLV(Mom,pdsN)+.000001)*100;
MomNorm:=If(pdsN=1,Mom,MomNorm);
midpt:=If(pdsN=1,0,
Cum(MomNorm)/Cum(IsDefined(MomNorm)));
signals:=
Cross(MomNorm,midpt)-Cross(midpt,MomNorm);
midpt;If(plot=2,signals,MomNorm)
--- In equismetastock@xxxxxxxxxxxxxxx, Khamsina <Khamsina11@xxxx> wrote:
>
> Hi,
>
> I would like to normalize (0-100 scale) Bollinger's bandwith
indicator
> but I just can't figure out how to do it :
>
> Here is the bandwidth indicator :
>
> (BBandTop(Typical(),20,S,2)-BBandBot(Typical(),20,S,2))/Mov(Typical
(),20,S)
>
> Any help would be greatly appreciated,
>
> Regards,
>
> Marco
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|