PureBytes Links
Trading Reference Links
|
Conrad
I think you've got one too many minus symbols in the code. Try
B:= Mov(Ref(C, (Displacement * -1)),MAP,E)
or
B:= Mov(Ref(C, - (Displacement * 1)),MAP,E)
You actually have POSITIVE reference, which will cause the effect you
describe.
Roy
----- Original Message -----
From: "Conrad Smith" <conradfsmith3@xxxxxxxxx>
To: "Forum - Equis Metastock on Yahoo!" <equismetastock@xxxxxxxxxxxxxxx>
Sent: Tuesday, February 04, 2003 6:08 PM
Subject: [EquisMetaStock Group] Missing Days - Formatted :)
> Ok, so far I have:
> MAP:= Input("Moving Average Periods", 2, 365, 13);
> Displacement:= Input("Periods Back", 2, 365, 5);
>
> A:= Mov(C,MAP,E);
> B:= Mov(Ref(C, - (Displacement * -1)),MAP,E)
>
> A;
> B;
>
> The problem is that 'B', which is the EMA from five days ago, stops at
five days ago (go figure). I've got a couple of ideas for the amount that I
want to add to the end of the 'B' EMA, but I have no idea how to append
them. Any help would be most appreciated!
>
> Thanks, Conrad
>
> P.S. Sorry about the last post!
>
>
>
>
> ---------------------------------
> With Yahoo! Mail you can get a bigger mailbox -- choose a size that fits
your needs
>
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/
|