PureBytes Links
Trading Reference Links
|
--- In equismetastock@xxxxxxxxxxxxxxx, "Lionel Issen" <lissen@xxx>
wrote:
>
> Thanks. I'll give it as try.
>
>
>
> Metastock management is a bit infantile in its secrecy attitudes. A
skilled
> programmer can duplicate any indicator or system: all he needs to
know is
> what is it supposed to do.
>
>
>
> Lionel
>
>
>
> From: equismetastock@xxxxxxxxxxxxxxx
[mailto:equismetastock@xxxxxxxxxxxxxxx]
> On Behalf Of Sugiharto Setyabudi
> Sent: Wednesday, August 27, 2008 9:55 AM
> To: equismetastock@xxxxxxxxxxxxxxx
> Subject: Re: [EquisMetaStock Group] formula help
>
>
>
> i think this is the url you're looking for:
>
> http://trader.online.pl/MSZ/e-w-Alligator_Indicators.html
>
> if you're looing for Bill Williams Profitunity, below is the code
(hope this
> ok, since profitunity is locked/protected in MS):
>
> Alligator Green: Ref(Wilders((H+L)/2, 5), -3)
>
> Alligator Red: Ref(Wilders((H+L)/2, 8), -5)
>
> Alligator Blue: Ref(Wilders((H+L)/2, 13), -8)
>
> Awesome Oscillator (AO) Green:
>
> MA34 := Mov((H+L)/2, 34, S);
> MA5 := Mov((H+L)/2, 5, S);
> AO := MA5 - MA34;
> If(AO > Ref(AO,-1), AO, 0)
>
> AO Red:
>
> MA34 := Mov((H+L)/2, 34, S);
> MA5 := Mov((H+L)/2, 5, S);
> AO := MA5 - MA34;
> If(AO < Ref(AO,-1), AO, 0)
>
> Accelerator (AC) Green:
>
> MA34 := Mov((H+L)/2, 34, S);
> MA5 := Mov((H+L)/2, 5, S);
> AO := MA5 - MA34;
> AC := AO - Mov(AO, 5, S);
> If(AC > Ref(AC,-1), AC, 0);
>
> AC Red:
>
> MA34 := Mov((H+L)/2, 34, S);
> MA5 := Mov((H+L)/2, 5, S);
> AO := MA5 - MA34;
> AC := AO - Mov(AO, 5, S);
> If(AC < Ref(AC,-1), AC, 0);
> Fractal:
>
> Hi := BarsSince(H<Ref(H,-2) AND Ref(H,-1)<Ref(H,-2) AND
> Ref(H,-3)<Ref(H,-2) AND Ref(H,-4)<Ref(H,-2));
> Lo := BarsSince(L>Ref(L,-2) AND Ref(L,-1)>Ref(L,-2) AND
> Ref(L,-3)>Ref(L,-2) AND Ref(L,-4)>Ref(L,-2));
>
> If(Hi > Lo, ValueWhen(1, L>Ref(L,-2) AND Ref(L,-1)>Ref(L,-2) AND
> Ref(L,-3)>Ref(L,-2) AND Ref(L,-4)>Ref(L,-2), Ref(L,-2)), ValueWhen
(1,
> H<Ref(H,-2) AND Ref(H,-1)<Ref(H,-2) AND Ref(H,-3)<Ref(H,-2) AND
> Ref(H,-4)<Ref(H,-2), Ref(H,-2)))
>
>
>
> On Tue, Aug 26, 2008 at 4:39 AM, Lionel Issen <lissen@xxx> wrote:
>
> Is there a Metastock version of Bill Williams
acceleration/deceleration
> indicator?
>
>
>
> Recently Preston posted the address of a web site that has Metastock
> formulas, it's a Polish site. I seemed to have lost/misfiled that
email. If
> you see this Preston can you send me the web site address?
>
>
>
> Thanx
>
>
>
> Lionel
>
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|