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 PowerPivots Plus Add-on for this expert to work
Highlights
Long
{10-DAY TRIX}
B:= TRIX(10);
B1:=Mov(B,10,S);
B2:=Ref(B,-1);
B3:=Ref(B1,-1);
SE:= (B>B1) AND (B<0) AND (B2<B3);
LE:= (B<B1) AND (B>0) AND (B2>B3);
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0
Short
{10-DAY TRIX}
B:= TRIX(10);
B1:=Mov(B,10,S);
B2:=Ref(B,-1);
B3:=Ref(B1,-1);
SE:= (B>B1) AND (B<0) AND (B2<B3);
LE:= (B<B1) AND (B>0) AND (B2>B3);
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0
Symbols
Long entry
{10-DAY TRIX}
B:= TRIX(10);
B1:=Mov(B,10,S);
B2:=Ref(B,-1);
B3:=Ref(B1,-1);
SE:= (B>B1) AND (B<0) AND (B2<B3);
LE:= (B<B1) AND (B>0) AND (B2>B3);
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0 AND Ref(B,-1)<=0
Short entry
{10-DAY TRIX}
B:= TRIX(10);
B1:=Mov(B,10,S);
B2:=Ref(B,-1);
B3:=Ref(B1,-1);
SE:= (B>B1) AND (B<0) AND (B2<B3);
LE:= (B<B1) AND (B>0) AND (B2>B3);
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0 AND Ref(B,-1)>=0
|