PureBytes Links
Trading Reference Links
|
cross(mov(c,9,e),mov(c,18,e))
or
i think this is what you are looking for
in exploration
add to COLA
{this gives the gap between the two moving averages in % form}
((Mov(C,9,E)-Mov(C,18,E))/Mov(C,18,E))*100
to COLB
{this gives the gap between the two moving averages in % form for previous
day}
((Mov(Ref(C,-1),9,E)-Mov(Ref(C,-1),18,E))/Mov(Ref(C,-1),18,E))*100
to COLC
{this gives how the gap has changed}
(((Mov(C,9,E)-Mov(C,18,E))/Mov(C,18,E))*100) -
(((Mov(Ref(C,-1),9,E)-Mov(Ref(C,-1),18,E))/Mov(Ref(C,-1),18,E))*100)
in the filter add suitable lines to fit your need
{this shall give the simple crossover}
cola>0 and
colb<0
{this shall indicate that you are nearing a cross add suitable values to
suit your need}
cola<colb and
colb<0 and
cola<0 and
cola>0.5
hope this helps
joshik
On 1/17/07, MYDEAR98 <no_reply@xxxxxxxxxxxxxxx> wrote:
>
> Hi There,
>
> can anyone provide me the formula which is moving average 9 e close
> alomost cross moving average 18 e close.
>
> thanks
>
>
>
[Non-text portions of this message have been removed]
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/
|