PureBytes Links
Trading Reference Links
|
Tejas,
What error?
Column A
MA10:=Mov(Close,10,E);
MaPlus5:= MA10 * 1.05;
Close > MaPlus5
Column B
MA10:=Mov(Close,10,E);
MaMinus5:= MA10 * .95;
Close < MaMinus5
The column A formula can be shortened further to a single line of
code:
C > 1.05 * Mov(Close,10,E)
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "tejzz" <stejasmehta@xxx>
wrote:
>
> Dear Pumrysh ,
>
> Before a few days I had put a message for building an indicator
which
> shows me result of those stocks which are above and below + - 5%
of the
> EMA's 10,20,50,100 I had received your message but when trying to
put
> the following in indicator builder in Column A,b,c,d & filter it
shows
> me error so could you plz help me where to put the following
formula
> you gave me.
>
> MA10:=Mov(Close,10,E);
> MaPlus5:= MA10 * 1.05;
> MaMinus5:= MA10 * .95;
> A:= Close > MaPlus5;
> B:= Close < MaMinus5;
>
>
> Thank U
> Tejas Mehta
>
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/
|