Je développe un indicateur sur 15 min :
J’aimerais pouvoir afficher des segments en rapport avec le super trend sur des timeframe différentes :
timeframe (1h,UPDATEONCLOSE)
SThour=Supertrend[m,p]
timeframe (4h,UPDATEONCLOSE)
ST4h=Supertrend[m,p]
timeframe (daily,UPDATEONCLOSE)
STday=Supertrend[m,p]
timeframe (weekly,UPDATEONCLOSE)
STweek=Supertrend[m,p]
timeframe(15mn,UPDATEONCLOSE)
st = Supertrend[m,p]
drawsegment(barindex[longueur]+3,sthour,barindex[2]+3,sthour) coloured(r1h,v1h,b1h)style(Line,2)
drawtext(“ST 1h”,barindex+3,sthour) coloured(r1h,v1h,b1h)
drawsegment(barindex[longueur]+3,st4h,barindex[2]+3,st4h) coloured(r4h,v4h,b4h)style(Line,2)
drawtext(“ST 4h”,barindex+3,st4h) coloured(r4h,v4h,b4h)
drawsegment(barindex[longueur]+3,stday,barindex[2]+3,stday) coloured(r1d,v1d,b1d)style(Line,2)
drawtext(“ST 1j”,barindex+3,stday) coloured(r1d,v1d,b1d)
drawsegment(barindex[longueur]+3,stweek,barindex[2]+3,stweek) coloured(r1w,v1w,b1w)style(Line,2)
drawtext(“ST 1w”,barindex+3,stweek) coloured(r1w,v1w,b1w)
J’ai les ST 1h et ST4h qui s’affichent, mais pas les ST 1j ni ST 1W, une idée de ce qui cloche ?