Hi, could anybody point me to an indicator that places an arrow on a chart candle on which two user input ema’s cross, thank you.
There you go:
Offset = average[50,0](range) //offset to plot arrows
FastSMA = average[10,0](close)
SlowSMA = average[50,0](close)
IF FastSMA CROSSES OVER SlowSMA THEN
DrawArrowUP(BarIndex,low - Offset) coloured("Green",255)
ELSIF FastSMA CROSSES UNDER SlowSMA THEN
DrawArrowDOWN(BarIndex,high + Offset) coloured("Red",255)
ENDIF
RETURN
Hi Roberto, thank you very much for that, I have changed the MA values and the method to to exponential, it works just as I wanted, many thanks again, John.