Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/29/2004(UTC) Posts: 1,394 Location: Glastonbury, CT
Was thanked: 2 time(s) in 2 post(s)
|
You will need the following Dll from
http://forum.equis.com/viewtopic.php?t=1529
And the Power pivot Plus Add-on for this expert to work
Highlights
Long
Periods:=ExtFml( "ASI.CyclePeriod", C, .18, .1, 1.1);
D:= ExtFml( "ASI.AroonDown",C,periods);
U:= ExtFml( "ASI.AroonUp",C,periods);
LE:=U=100 AND D<=10;
SE:=U<=10 AND D=100;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0
Short
Periods:=ExtFml( "ASI.CyclePeriod", C, .18, .1, 1.1);
D:= ExtFml( "ASI.AroonDown",C,periods);
U:= ExtFml( "ASI.AroonUp",C,periods);
LE:=U=100 AND D<=10;
SE:=U<=10 AND D=100;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0
Symbols
Long entry
Periods:=ExtFml( "ASI.CyclePeriod", C, .18, .1, 1.1);
D:= ExtFml( "ASI.AroonDown",C,periods);
U:= ExtFml( "ASI.AroonUp",C,periods);
LE:=U=100 AND D<=10;
SE:=U<=10 AND D=100;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0 AND Ref(B,-1)<=0
Short entry
Periods:=ExtFml( "ASI.CyclePeriod", C, .18, .1, 1.1);
D:= ExtFml( "ASI.AroonDown",C,periods);
U:= ExtFml( "ASI.AroonUp",C,periods);
LE:=U=100 AND D<=10;
SE:=U<=10 AND D=100;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0 AND Ref(B,-1)>=0
|