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)
|
If you have the PowerPivots Plus Add-ON this expert will work
Highlights
long
A:=Fml("WRO");
B:=Fml("WSO");
LE:=A>Mov(A,4,S) OR Mov(B,30,S)>95;
SE:=B>Mov(B,4,S) OR Mov(A,30,S)>95;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0
Short
A:=Fml("WRO");
B:=Fml("WSO");
LE:=A>Mov(A,4,S) OR Mov(B,30,S)>95;
SE:=B>Mov(B,4,S) OR Mov(A,30,S)>95;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0
Symbol
Long Entry
A:=Fml("WRO");
B:=Fml("WSO");
LE:=A>Mov(A,4,S) OR Mov(B,30,S)>95;
SE:=B>Mov(B,4,S) OR Mov(A,30,S)>95;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0 AND Ref(B,-1)<=0
Short entry
A:=Fml("WRO");
B:=Fml("WSO");
LE:=A>Mov(A,4,S) OR Mov(B,30,S)>95;
SE:=B>Mov(B,4,S) OR Mov(A,30,S)>95;
LX:=0;
SX:=0;
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0 AND Ref(B,-1)>=0
|