Sur la base de cet indicateur de Nicolas, je cherche à coder l’affichage du pourcentage (ou des %) à chaque breakout sur mon graphique en tendance haussière.
AP1 = 5 //”fast ATR period”,integer) // ATR Period
AF1 = 0.5 //”fast ATR multiplier”,float) // ATR Factor
// Slow Trail //
AP2 = 10 //”slow ATR perod”,integer) // ATR Period
AF2 = 2 // “slow ATR multiplier”,float) // ATR Factor
// — end of settings
SC = customclose
SL1 = AF1*AverageTrueRange[AP1] // Stop Loss
once trail1=sc-sl1
if sc>trail1[1] and sc[1]>trail1[1] then
trail1 = max(trail1[1],sc-sl1)
else
if sc<trail1[1] and sc[1]<trail1[1] then
trail1=min(trail1[1],sc+sl1)
else
if sc>trail1[1] then
trail1=sc-sl1
else
trail1=sc+sl1
endif
endif
endif