Bonjour, J’ai voulu faire un indicateur tout simple: une flèche hausse pour rsi > 50 et ema1 > ema2 et une flèche baisse pour rsi < 50 et ema1 < ema2. Soit : a= RSI[14](close) b= ExponentialAverage[20](close) c= ExponentialAverage[50](close) d= averagetruerange[10](close) if a>50 and b>c then DRAWARROWDOWN(barindex[1],high[1]+d/2)coloured(255,10,10) elsif a<50 and b<c then DRAWARROWUP(barindex[1],low[1]-d/2)coloured(10,255,10) endif return Mais voilà ce que j’obtiens: