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
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0
Short
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0
Out
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0
Symbols
Long entry
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0 AND Ref(B,-1)<=0
Short entry
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0 AND Ref(B,-1)>=0
Long exit
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0 AND Ref(B,-1)>0
Short exit
X:=Log(Mov(IMI(26),2,E)/Mov(IMI(26),3,E));
lP:=ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
hP:=ExtFml("PowerPivots.NthPivotPrice", 1,0,1);
TD:=ExtFml("PowerPivots.TrendDirection",1,2);
LE:=Cross(X,0) and TD=1;
SE:=Cross(0,X) and TD=-1;
LX:=Cross(lP,CLOSE) or Cross(0,X);
SX:=Cross(CLOSE,hP) or Cross(X,0);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0 AND Ref(B,-1)<0
|