MetaStock Scan

Job ID: 33837114

Budget: ₹600 – ₹1,500 INR

We need Scan Crossover AFL in MetaStock 8 as in the picture ...Yellow Line Above Green Line and Green Line Above Red Line.

// X is RSI Yellow
// Y is Smooth EMA Color BrightGreen
// Z is Smooth EMA Color Red

As in the Picture show.

Please have a go before you bid.

X:= input("RSI",1,40,14);
Y:= input("Smooth 1",1,9,7);
Z:= input("Smooth 2",1,25,9);

R:=RSI(X);

Y1:= MOV(R,Y,E);
Y2:= MOV(Y1,Y,E);
Diff:= Y1 - Y2;
Y3=: Y1 + Diff;

Z1:= MOV(Y3,Z,E);
Z2:= MOV(Z1,Z,E);
Diff:= Z1 - Z2;
Z3:= Z1 + Diff;

R;
Y3;
Z3;
Related categories: C Programming MetaTrader 4