Rank: Advanced Member
Groups: Registered, Registered Users Joined: 2/19/2012(UTC) Posts: 106
Thanks: 1 times Was thanked: 1 time(s) in 1 post(s)
|
Yes ---the formula is functional but I am not satisfied. What I want is a buy signal when the ribbon collapses on itself and regenerates anew.
I tried the following
X:=(Alert(Cross(Mov(C,10,E),(Mov(C,20,E))),10) AND
(Alert(Cross(Mov(C,10,E),(Mov(C,30,E))),10) AND
(Alert(Cross(Mov(C,10,E),(Mov(C,40,E))),10) AND
(Alert(Cross(Mov(C,10,E),(Mov(C,50,E))),10) AND
(Alert(Cross(Mov(C,10,E),(Mov(C,60,E))),10) AND
(Alert(Cross(Mov(C,10,E),(Mov(C,70,E))),10) AND
(Alert(Cross(Mov(C,10,E),(Mov(C,80,E))),10))))))));
Y:=Mov(C,10,E)>Mov(C,20,E) AND Mov(C,20,E)>Mov(C,30,E) AND Mov(C,30,E)>Mov(C,40,E) AND Mov(C,40,E)>Mov(C,50,E) AND Mov(C,50,E)>Mov(C,60,E) AND Mov(C,60,E)>Mov(C,70,E);
U:=Alert(X,16) AND Y;
{Plot}
U;
This is definitely better but still gives a few false signals. Perhaps tweaking the alert periods might do.
Can anybody help?
Regards,
Dr.Chatterjee
|