merci de ton aide
je vais continuer mes essais
sais tu comment au moment de l'achat ou vente tracer des lignes horizontales sur mes niveau
atr cité precedemment
j'ai reussi a faire ca mais comment faire pour figer les valeurs de mes niveau au moment de mon achat ou vente
indicator2 = AverageTrueRange[9](close)
INDICATOR3= INDICATOR2*4
INDICATOR4=INDICATOR2*3
INDICATOR5=INDICATOR2*2
INDICATOR6=INDICATOR2*1
INDICATOR1=INDICATOR2*-2
upperBand4 = INDICATOR3 +open
upperBand3 = INDICATOR4+open
upperBand2 = INDICATOR5+open
upperBand1 = INDICATOR6+open
lowerBand2 = INDICATOR1+open
RETURN upperBand4 coloured(0,0,255),upperBand3 coloured(0,0,255),upperBand2 coloured(0,0,255),upperBand1 coloured(0,0,255),lowerBand2 coloured(0,0,255)
indicator2 = AverageTrueRange[9](close)
INDICATOR3= INDICATOR2*-4
INDICATOR4=INDICATOR2*-3
INDICATOR5=INDICATOR2*-2
INDICATOR6=INDICATOR2*-1
INDICATOR1=INDICATOR2*2
upperBand4 = INDICATOR3 +open
upperBand3 = INDICATOR4+open
upperBand2 = INDICATOR5+open
upperBand1 = INDICATOR6+open
lowerband2 = INDICATOR1+open
RETURN upperBand4 coloured(255,0,0),upperBand3 coloured(255,0,0),upperBand2 coloured(255,0,0),upperBand1 coloured(255,0,0),lowerBand2 coloured(0,0,255)