PureBytes Links
Trading Reference Links
|
--- In equismetastock@xxxxxxxxxxxxxxx, "bellamy_29m" <bellamy_29m@xxx>
wrote:
>
> --- In equismetastock@xxxxxxxxxxxxxxx, "kanga_hd" <kanga_hd@> wrote:
> >
> > Hi,
> >
> > Methinks I have a slight problem...I want to use multiple entry
> > triggers (as shown below):
> >
> > Fml("CARYS") AND
> > Fml( "HD CROSSOVER ") AND
> > Cross( PDI(21) > MDI(21) AND
> > ATR(30)/C >=0.01 AND
> > ATR(30)/C <=0.05 AND
> > Mov(C,21,S)*Mov(V,21,S) >= 100000 AND
> > Mov(C,21,S)*Mov(V,21,S) <= 40000000 AND
> > Mov(C,200,S) >= Ref(Mov(C,200,S),-50)+ 1.5*ATR(50) AND
> > C >= 0.5 AND
> > C <= 15
> >
> > This is written in the Indicator Builder and called up as Fml in
> > Explorer.
> >
> > Unfortunately, it calls for a comma and other parameters after the
> > last entry.
> > I've tried the comma, the semi-colon, brackets, changing this to
> > an "IF" formula - all to no avail.
> >
> > Can anyone please help ????
> >
> > Thanks heaps, Helena
> >
>
>
> Count your brackets....
> Cross( PDI(21) > MDI(21) AND vs.
> Cross( PDI(21) > MDI(21) ) AND
>
Where did the rest of my post go???
anyway... I added that you also need to change the Cross function too!
It has a comma not a gt
The whole thing comes out to being:
Fml("CARYS")AND
Fml("HD CROSSOVER") AND
Cross(PDI(21),MDI(21)) AND
ATR(30)/C >=0.01 AND
ATR(30)/C <=0.05 AND
Mov(C,21,S)*Mov(V,21,S) >= 100000 AND
Mov(C,21,S)*Mov(V,21,S) <= 40000000 AND
Mov(C,200,S) >= Ref(Mov(C,200,S),-50)+ 1.5*ATR(50) AND
C >= 0.5 AND
C <= 15
------------------------ Yahoo! Groups Sponsor --------------------~-->
Protect your PC from spy ware with award winning anti spy technology. It's free.
http://us.click.yahoo.com/97bhrC/LGxNAA/yQLSAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> 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/
|