PureBytes Links
Trading Reference Links
|
Henry:
Thanks for these formulas. I had no difficulty installing them.
In "CMO & 2 WMA" and in "CMO Volatility", is there any way of changing
the colors of the moving averages?
Where can I get a description/explanation of "CMO & 2 WMA", and "CMO
Volatility"
Formulas 2, 3, and 4 call the function CMO. This function is not in my
list of indicators and formulas. Where are these oscillators picking up
CMO?
Thanks
Lionel
-----Original Message-----
From: lionel77096usa <lissen@xxxxxxxxxxxxxx>
[mailto:lissen@xxxxxxxxxxxxxx]
Sent: Sunday, January 19, 2003 8:23 AM
To: lissen@xxxxxxxxxxxxxx
Subject: Fwd: Re: CMO
--- In Metastockusers@xxxxxxxxxxxxxxx, "Henry Z
Kaczmarczyk<henry1224@xxxx>" <henry1224@xxxx> wrote:
CMO Filtered standard
momu:=If(C>Ref(C,-1),C-Ref(C,-1),0);
momd:=If(C<Ref(C,-1),Ref(C,-1)-C,0);
A1:=Stdev(momu,100);
A2:=Stdev(momd,100);
Mup:=If(C-Ref(C,-1)>A1,C-Ref(C,-1),A1);
Mdn:=If(Ref(C,-1)-C>A2,Ref(C,-1)-C,A2);
Per1:=Input("Length of CMO",5,100,13);
Pk:=100*((Sum(Mup,Per1)-Sum(Mdn,Per1))
/(Sum(Mup,Per1)+Sum(Mdn,Per1)));
Pk;
--- In Metastockusers@xxxxxxxxxxxxxxx, "Henry Z Kaczmarczyk
<henry1224@xxxx>" <henry1224@xxxx> wrote:
>
> here are some CMO formulas
>
> CMO & 2 WMA
>
> Per1:=Input("Length of CMO",1,100,13);
> Per2:=Input("Length of fast WMA",1,100,3); Per3:=Input("Length of slow
> WMA",1,100,13); Per4:=60;
> Perc1:=.95;
> Perc2:=1.05;
> A1:=CMO(C,Per1);
> A2:=Mov(A1,Per2,W);
> A3:=Mov(A1,Per3,W);
> UB:=(HHV(Ref(A1,-1),Per4)*Perc1);
> LB:=(LLV(Ref(A1,-1),Per4)*Perc2);
> MB:=(UB+LB)*.5;
> UB;MB;LB;
> A1;A2;A3;
>
> CMO Average
>
> Per1:=Input("length of CMO 1",5,20,5);
> Per2:=Input("length of CMO 2",5,30,10);
> Per3:=Input("length of CMO 3",5,50,20);
> A:=(CMO(C,Per1)+CMO(C,Per2)+CMO(C,Per3))/3;
> A;
>
> CMO Volatility
>
> Per1:=Input("length of CMO 1",5,30,5);
> Per2:=Input("length of CMO 2",5,50,10);
> Per3:=Input("length of CMO 3",3,50,20);
> Per4:=Input("length of Signal",3,30,3);
> K1:=Stdev(CMO(MP(),Per1),Per1); K2:=Stdev(CMO(MP(),Per2),Per2);
> K3:=Stdev(CMO(MP(),Per3),Per3);
> A:=((K1*CMO(MP(),Per1))+(K2*CMO(MP(),Per2))+(K3*CMO(MP(),Per3)))/
> (K1+K2+K3);
> Sig:=Mov(A,Per4,S);
> Sig;A;
> --- In Metastockusers@xxxxxxxxxxxxxxx, JayTownsend@xxxx wrote:
> > <<Using an old formula from Guppytraders.com, I tried to rewrite
> it in V 7.x
> > style. I keep getting an error message that CMO1 is not a
> recognized
> > function.
> >
> > Any suggestions please?>>
> >
> > Put an underscore - "_" between CMO and 1. Write it "CMO_1" -
it
> doesn't
> > recognize the "CMO1" formula.
> >
> > Jay
--- End forwarded message ---
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|