PureBytes Links
Trading Reference Links
|
Helena,
You are missing several parentheses.
The best way to find the missing ones is to try each line on its own
then put them together using the "AND's". Also, the cross function
requires a comma not a ">". The ">" is understood. In this case it
is understood that you want the PDI(21) to be greater than the MDI
(21). You may want to rethink this statement. As it is written it
will only signal on the day of the cross. A simple PDI(21) > MDI(21)
may work better.
The formula should be:
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
Hope this helps,
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "kanga_hd" <kanga_hd@xxx>
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
>
------------------------ Yahoo! Groups Sponsor --------------------~-->
Everything you need is one click away. Make Yahoo! your home page now.
http://us.click.yahoo.com/AHchtC/4FxNAA/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/
|