PureBytes Links
Trading Reference Links
|
The problem isn't your knowledge of MetaStock. When the lowest of the
three moving averages (the mins) is exactly equal to the highest(maxs)
of the three, the three averages have the same value. You can't get any
closer than that.
in the expression A/B, when A=B, the expression equals 1.
Try using .95 for the value. The last line becomes
Min(Min(A,B),D)/Max(Max(A,B),D)>=.95;
If you have too many stocks in yor result set make the value even
closer to 1.
Alternatively,put
A:=Mov(C,20,E);
B:=Mov(C,50,E);
D:=Mov(C,200,E);
Min(Min(A,B),D)/Max(Max(A,B),D);
into column A (or any other column.)
You will then have the value of
Min(Min(A,B),D)/Max(Max(A,B),D) in the column
When the exploration finds stocks meeting whatever other criteria
you're looking for, sort the column where you entered the above from
highest to lowest. The closer the stocks are to the top of the list,
the more converged the three averages are.
--- In equismetastock@xxxxxxxxxxxxxxx, "bdlagno" <bdlagno@xxx> wrote:
>
> i put this equation into metastock but it doesnt find any stock.
>
> A:=Mov(C,20,E);
> B:=Mov(C,50,E);
> D:=Mov(C,200,E);
>
>
> Min(Min(A,B),D)/Max(Max(A,B),D)>=Somevalue approaching 1;
>
> what do you mean somevalue approaching 1. do i put 20-50-200
> (i am very new to metastocks)
>
------------------------------------
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/
|