Auto Fibonacci
Auto Fibonacci
Fhigh=highest(FPeriod)
Flow=lowest(FPeriod)
FH=highestbars(high,FPeriod)
FL=lowestbars(low,FPeriod)
downfibo = FH < FL
plot(F0,color=Fcolor,linewidth=2,trackprice=true,show_last=1,title='0',transp=0)
//plot(F236,color=Fcolor,linewidth=1,trackprice=true,show_last=1,title='0.236',tran
sp=0)
//plot(F382,color=Fcolor,linewidth=1,trackprice=true,show_last=1,title='0.382',tran
sp=0)
//plot(F500,color=Fcolor,linewidth=2,trackprice=true,show_last=1,title='0.5',transp
=0)
//plot(F618,color=Fcolor,linewidth=1,trackprice=true,show_last=1,title='0.618',tran
sp=0)
plot(F702,color=Fcolor,linewidth=1,trackprice=true,show_last=1,title='0.702',transp
=0)
//plot(F786,color=Fcolor,linewidth=1,trackprice=true,show_last=1,title='0.786',tran
sp=0)
//plot(F1000,color=Fcolor,linewidth=2,trackprice=true,show_last=1,title='1',transp=
0)
plot(plotF1618 and F1618 ? F1618 :
na,color=Fcolor,linewidth=3,trackprice=true,show_last=1,title='1.618',transp=0)
//plotshape(F0,style=shape.labeldown,location=location.absolute,color=Fcolor,textco
lor=black,show_last=1,text="%0",offset = 15,transp=30)
//plotshape(F236,style=shape.labeldown,location=location.absolute,color=Fcolor,text
color=black,show_last=1,text="%23.6",offset = 15,transp=30)
//plotshape(F382,style=shape.labeldown,location=location.absolute,color=Fcolor,text
color=black,show_last=1,text="%38.2",offset = 15,transp=30)
//plotshape(F500,style=shape.labeldown,location=location.absolute,color=Fcolor,text
color=black,show_last=1,text="%50",offset = 15,transp=30)
//plotshape(F618,style=shape.labeldown,location=location.absolute,color=Fcolor,text
color=black,show_last=1,text="%61.8",offset = 15,transp=30)
plotshape(F702,style=shape.labeldown,location=location.absolute,color=Fcolor,textco
lor=white,show_last=1,text="Calvonacci (70.2%)",offset = 15,transp=30)
//plotshape(F786,style=shape.labeldown,location=location.absolute,color=Fcolor,text
color=black,show_last=1,text="%78.6",offset = 15,transp=30)
//plotshape(F1000,style=shape.labeldown,location=location.absolute,color=Fcolor,tex
tcolor=black,show_last=1,text="%100",offset = 15,transp=30)
//plotshape(plotF1618 and F1618 ? F1618 :
na,style=shape.labeldown,location=location.absolute,color=Fcolor,textcolor=black,sh
ow_last=1,text="%161.8",offset = 15,transp=30)
plotshape(Flow,style=shape.labelup,location=location.absolute,size=
size.large,color=Fcolor,textcolor=black,show_last=1,text="Low",offset =
FL,transp=0)
plotshape(Fhigh,style=shape.labeldown,location=location.absolute,size=
size.large,color=Fcolor,textcolor=black,show_last=1,text="High",offset =
FH,transp=0)