Hi Nicolas and all, I have tried to create a simple EMA crossover indicator where it gives me an Arrow up or down once crossover happened. I really want to add somthing to this.. all in 15 min chart.. lets say after the crossover i would wait until 5 bars on 15 min and enter 5 pips below the low or 5 pips above the high within that 5 candles sticks? please see the attached pic!! I just need a small line (with the price if possible).. 5 pips below the lowest point 0f that 5 candles (once 9 cross under 40) on 15 min chart!!! see the pic attached!! please if you can kindly check this below and help me creating this.. i’d really appreciate it.. fast = ExponentialAverage[9](close) slow = ExponentialAverage[40](close) //first arrow is blueish if fast crosses over slow then cross = slow[1] DRAWARROWUP(barindex,LOW-5*pointsize) COLOURED(0,255,10) endif //next arrows are purple and semi transparent if fast>slow AND slow<>cross then DRAWTEXT(“*”,barindex, slow) COLOURED(0,204,0) endif //first arrow is blueish if fast crosses under slow then cross = slow[1] DRAWARROWDOWN(barindex,HIGH+5*pointsize) COLOURED(255,0,10) endif //next arrows are purple and semi transparent if fast<slow AND slow<>cross then DRAWTEXT(“*”,barindex, slow) COLOURED(255,0,0) endif RETURN