PureBytes Links
Trading Reference Links
|
Dilawar,
Try this:
A:= mov(c,25,s);
B:= A * .25;
A+B;
A-B;
This is not going to be a horizontal line though because the MA
value will change everyday. What you will have is a line above and
below that will move just like the MA. If you want a horizontal of
just the last MA plus or minus the percentages, try this:
A:= Mov(C,25,S);
B:= A * .25;
LastValue(A+B);
LastValue(A-B);
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "infantrader"
<infantrader@xxx> wrote:
>
> I want to draw a horizontal line above and below at some fixed
> percentages on a moving average, but donot know how to write a code
> for that.
>
> mov(c,25,s) {+25% & -25% as a horizontal line}
>
> I hope some member will help. Thanks in advance.
>
> Dilawar
>
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/
|