PureBytes Links
Trading Reference Links
|
<FONT face="Lucida Console" color=#0000ff
size=2>Lars - can you give us the coding of your MA with time
series?
Carlton
McEachernThe Crazy Canuck
I STARTED WITH
NOTHING.
I STILL HAVE MOST OF
IT.
<FONT face=Tahoma
size=2>-----Original Message-----From: Lars Widlund
[mailto:Lars.Widlund@xxxxxxxxxxxxxxxxx]Sent: 15 February, 2003 4:55
AMTo: Metastockusers@xxxxxxxxxxxxxxxSubject: Re:
[Metastockusers] Exponential Moving Average AdviceWhy use
exponential I use TimeSeries for the Moving Average. They give much faster
signals.RegardsLarsAt 19:42 2003-02-14 +0000, you
wrote:
Roy/Jay,That's great.
Many thanks indeed.Regards,KevinAt 08:31 15/02/03 +1300,
you wrote:>>Kevin>> > I would like to create
an exponential moving average formula but with a> > different
weighting to that which Metastock provides as standard.> >>
> Help!>>This is the base formula for a standard
exponential moving average.>> {Exponential Moving
Average}>A:=Input("Periods",1,99,14);>B:=P; {target
array, usually
CLOSE}>R:=2/(A+1);>If(Cum(1)=1,B,PREV*(1-R)+B*R);>>This
is the base formula for Wilders Smoothing (exponential) moving
average.>> {Wilders
Smoothing}>A:=Input("Periods",1,99,14);>B:=P; {target
array, usually
CLOSE}>R:=1/A;>If(Cum(1)=1,B,PREV*(1-R)+B*R);>>Notice
how the only difference is the 'R' variable. This determines
the>percentage of new data that is added and old data that is
retained.>>Hope this
helps.>>Roy>>>>To unsubscribe from
this group, send an email
to:>Metastockusers-unsubscribe@xxxxxxxxxxx>>>>Your
use of Yahoo! Groups is subject to <A
href="">http://docs.yahoo.com/info/terms/<FONT
color=#003399 size=2>Yahoo! Groups Sponsor <FONT
face=arial size=1>ADVERTISEMENT<A
href=""><IMG
height=250 alt=f939b.jpg src="jpg00011.jpg"
width=300><IMG height=1 alt=f9518.jpg
src="jpg00012.jpg" width=1>To unsubscribe from
this group, send an email
to:Metastockusers-unsubscribe@xxxxxxxxxxxYour
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
To
unsubscribe from this group, send an email
to:Metastockusers-unsubscribe@xxxxxxxxxxxYour use
of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
Attachment:
Description: ""
Attachment:
Description: ""
|