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