two condition to satisfy

#1
i want two condition to satisfy
first cross two variables(x and y) wrote the following afl
Buy1 = Cross(x,y);
Sell1 = Cross(y,x);
and second how this cross happens below on third variable (z) , any help?
 

manojborle

Well-Known Member
#2
i want two condition to satisfy
first cross two variables(x and y) wrote the following afl
Buy1 = Cross(x,y);
Sell1 = Cross(y,x);
and second how this cross happens below on third variable (z) , any help?
I did not get what you are asking ?
 

mcxinvest

Well-Known Member
#3
i want two condition to satisfy
first cross two variables(x and y) wrote the following afl
Buy1 = Cross(x,y);
Sell1 = Cross(y,x);
and second how this cross happens below on third variable (z) , any help?
Suppose you have EMAs i.e 10/20/50
Buy = Cross(Ema(C,10),Ema(C,20)) and Close > Ema(C,50);
Sell = Cross(Ema(C,20),Ema(C,10)) Or Close < Ema(C,50);

Hope you wanted this one like?