hey diawa..... that was my error, i left out a " ) " , the corrected code is below...... the alert function is often used to extend a signal much in the same way your wanting for end of day explorations....
give it a try and you'll see it's perfect for your use.....
----------------------------
a:=Alert(Cross(100,CCI(30)),5); {occured in last 5 days}
aa:=Cross(80,Stoch(8,3)) ; {occured today}
a AND aa
----------------------------
your code below has an lot of crosses.... makes me wonder if they will ever occur on the same bar.....h
Cross(Stoch(5,3),20)
AND
(
Cross(RSI(21),30)
OR
Cross(RSI(30),30)
OR
Cross(RSI(34),30)
OR
Cross(RSI(55),30)
)
AND
Cross(C,Mov(C,200,S))
you might be able to write as here below...
--------------------------------------
a:=Alert(Cross(100,CCI(30)),5); {occured in last 5 days}
aa:=Cross(Stoch(5,3),20);
aaa:=Cross(RSI(21),30) OR Cross(RSI(30),30) OR Cross(RSI(34),30) OR Cross(RSI(55),30);
aaaa:=Cross(C,Mov(C,200,S));
a and aa and aaa and aaaa
------------------------------------