PureBytes Links
Trading Reference Links
|
Wayne,
I think the error is in the values you are using.
Plot these on a chart
Vidya*1.01
Vidya*.99
Vidya
They will be 3 seperate lines with vidya always in the middle. The 3
lines should be equally spaced and since you are using 1.01 and .99
the spacing is going to be very close to the vidya. Change that to
1.04 and .96 so that the distance will allow more "wiggle" room.
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "Wayne Matthews" <Wayne@xxx>
wrote:
>
> I have attached the following condition formula to highlight the
candles but
> when I attach expert all my candles are yellow (Pause)
>
> What am I doing wrong?
>
> Thanks for any help.
>
> Wayne
>
>
>
> Bull {Blue}
>
>
>
> Length:=21;
>
> Smooth:=5;
>
> AbsCMO:=(Abs(CMO(C,Length)))/100;
>
> SC:=2/(Smooth+1);
>
> VIDYA:=If(Cum(1)<=(Length+1),C,(SC*AbsCMO*CLOSE)+(1-(SC*AbsCMO))
*PREV);
>
> C>(Vidya*1.01)
>
>
>
> Bear {Red}
>
>
>
> Length:=21;
>
> Smooth:=5;
>
> AbsCMO:=(Abs(CMO(C,Length)))/100;
>
> SC:=2/(Smooth+1);
>
> VIDYA:=If(Cum(1)<=(Length+1),C,(SC*AbsCMO*CLOSE)+(1-(SC*AbsCMO))
*PREV);
>
> C<(VIDYA*.99)
>
>
>
> Pause {Yellow}
>
>
>
> Length:=21;
>
> Smooth:=5;
>
> AbsCMO:=(Abs(CMO(C,Length)))/100;
>
> SC:=2/(Smooth+1);
>
> VIDYA:=If(Cum(1)<=(Length+1),C,(SC*AbsCMO*CLOSE)+(1-(SC*AbsCMO))
*PREV);
>
> C>(VIDYA*.99) AND C<(VIDYA*1.01)
>
>
>
> [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/
|