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 Power Pivot Plus add-on for this expert to work
Highlights
Long
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0
Short
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0
Out
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0
Symbols
long entry
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B>0 AND Ref(B,-1)<=0
Short entry
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B<0 AND Ref(B,-1)>=0
Long Exit
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0 AND Ref(B,-1)>0
Short exit
LE:=Cross(C,BBandBot(C,20,S,2));
LX:=C<ExtFml("PowerPivots.NthPivotPrice",-1,0,1);
SE:=Cross(BBandTop(C,20,S,2),C);
SX:=C >ExtFml("PowerPivots.NthPivotPrice",1,0,1);
B:=ExtFml("PowerPivots.SysEval",LE,LX,SE,SX,"!@#$#@!");
B=0 AND Ref(B,-1)<0
|