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 need the PowerPivots Plus Add-on for this expert to work
Highlights
Long
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0
Short
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0
Out
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0
Symbols
Long entry
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0 AND Ref(B,-1)<=0
Short entry
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0 AND Ref(B,-1)>=0
Long Exit
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0 AND Ref(B,-1)>0
Short Exit
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=H>Ref(HHV(H,20),-1) AND TD=1;
LX:=Ref(H>Ref(HHV(H,20),-1),-1);
SE:=L<Ref(LLV(L,20),-1) AND TD=-1;
SX:=Ref(L<Ref(LLV(L,20),-1),-1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0 AND Ref(B,-1)<0
|