PureBytes Links
Trading Reference Links
|
Edson,
Thanks for your suggestion.
Anyway, formula of is not correct (I was wrong!)
Someone should check that formula.
So.... WMA and WEVOMO are wrong :(
Best regards,
Pablo
Ps. I say "wrong" or "right" because I wrote these formulas.
ELF> Hi, my suggestion:
ELF> {=======================================}
ELF> pds:=Input("Periodo", 1,2000,28);
ELF> wt0:=Sum(C-Ref(C,-1),pds);
ELF> wt1:=If(wt0=0,0.00001,wt0);
ELF> wt2:=Sum(V-Ref(V,-1),pds);
ELF> wt3:=If(wt2=0,0.00001,wt2);
ELF> wt4:=(C - Ref(C,-1))/wt1;
ELF> MOMA:=Sum(C*Wt4,pds);
ELF> wt5:= (V - Ref(V,-1))/wt3;
ELF> VOMA:=Sum(C*Wt5,pds);
ELF> VOMOMA:=(MOMA+VOMA)/2;
ELF> wt6:=pds/Sum(pds,pds); {I'm not sure but you can
ELF> check this }
ELF> WMA:=Sum(C*Wt6,pds);
ELF> WEVOMO:=(MOMA+VOMA+WMA)/3;
ELF> { -----------TYPE ----------------------}
ELF> type:=Input("1-MOMA 2-VOMA 3-VOMOMA 4-WMA 5-WEVOMO", 1,5,4);
ELF> z1:=If(type=1,MOMA, If(type=2, VOMA, If(type=3, VOMOMA, If(type=4, WMA, WEVOMO ))));
ELF> z1;
ELF> {=======================================}
ELF> [Non-text portions of this message have been removed]
ELF> Yahoo! Groups Links
Pablo Bozzolo
---
Contact info:
Movil: 221 5384617
E-mail: italoarg76@xxxxxxxx
MSN: italoarg76@xxxxxxxxxxx
ICQ: 77207033
------------------------ Yahoo! Groups Sponsor --------------------~-->
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/DEOZVC/fOaOAA/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/
|