PureBytes Links
Trading Reference Links
|
Conrad,
>"The problem is that 'B', which is the EMA from five days ago, stops
at five days ago (go figure)."
No that is not what it is!
First, you are displacing the close into the future.
Second, "B" is the 13 day moving average of a forward close.
Finally, there is a way to add data but the effort is not practical.
--- In equismetastock@xxxxxxxxxxxxxxx, Conrad Smith
<conradfsmith3@xxxx> wrote:
> 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!
>
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/
|