id like an indicator to show %K and %D to dip below 20 and when it goes over 20 to draw an arrow as per the code below Not sure why its not working out ? MA1 = Close > average[50] K = stochastic[14,1] D = average[3](K) C1 = K => 20 AND K[1] =< 19 AND D => 20 AND D[1] =< 19 IF C1 AND MA1 THEN DRAWARROWUP(barindex, low - (high-low)*0.5) COLOURED(104,142,35) ENDIF