Rank: Advanced Member
Groups: Registered, Registered Users Joined: 6/30/2005(UTC) Posts: 71
|
Patrick wrote:Please copy and paste your short exit and long exit formulae (the whole thing) in a post so that I can look at them.
What I do not understand is that you said it gave good entry signals but wrong exit signals? The exit signals are based on the entry signals so if the entries are correct it is very unlikely that the exits are wrong.
Also you keep posting your formula, guess what , that is exactly what the dll does ... The dll is just written in another programming language.
Patrick :mrgreen:
PS: by the way I tested your request and so no changes ...
{long exit}
LE:=Cross(C, Mov(C, 200, S));
LX:=Cross(Mov(C, 40, S)-0.001, C);
SE:=Cross(Mov(C, 200, S), C);
SX:=Cross(C, Mov(C, 40, S)+0.001);
B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
B = 0 AND Ref(B,-1) =1
{short exit}
LE:=Cross(C, Mov(C, 200, S));
LX:=Cross(Mov(C, 40, S)-0.001, C);
SE:=Cross(Mov(C, 200, S), C);
SX:=Cross(C, Mov(C, 40, S)+0.001);
B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX);
B = 0 AND Ref(B,-1) =-1
when I change B:= ExtFml("ForumDll.Latch",LE,LX,SE,SX); with the other code I posted withoud forumdll it works fine. But I hope I can let it work without the prev's so with the forumdll
|