Hi expert
When MACD cross the first time I will not buy.
I will buy if MACD cross again and higher low than last time.
Pls help,
Hi expert
When MACD cross the first time I will not buy.
I will buy if MACD cross again and higher low than last time.
Pls help,
sig = Signal();
crss = Cross( MACD(), sig);
prev_macd = ValueWhen(crss, MACD(), 2);
Buy = crss AND MACD() > prev_macd;
PlotShapes( Buy * shapeUpArrow, colorGreen, layer = 0, y = sig );
Dear fxshrat,
thanks a lot. It work and great with me.