Merhabalar,
Oto fibo için formüller aşağıdadır,
100 barlık olaraktır, sizler bar sayısını değiştirebilirsiniz,
YÜKSELEN FİBO İÇİN:
OBS:=100;
Y0:=LastValue(HHV(H,OBS));
Y100:=LastValue(LLV(L,OBS));
Y50:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.5+LastValue(LLV(L,100));
Y23.6:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.764+LastValue(LLV(L,100));
Y38.2:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.618+LastValue(LLV(L,100));
Y61.8:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.382+LastValue(LLV(L,100));
Y78.6:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.214+LastValue(LLV(L,100));
Y0;Y100; Y50;Y23.6;Y38.2;Y61.8;Y78.6
DÜŞEN FİBO İÇİN
OBS:=100;
Y0:=LastValue(LLV(L,OBS));
Y100:=LastValue(HHV(H,OBS));
Y50:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.5+LastValue(LLV(L,100));
Y23.6:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.236+LastValue(LLV(L,100));
Y38.2:= (LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.382+LastValue(LLV(L,100));
Y61.8:= (LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.618+LastValue(LLV(L,100));
Y78.6:=(LastValue(HHV(H,100))-LastValue(LLV(L,100)))*0.786+LastValue(LLV(L,100));
LASTVALUE(Y0);LASTVALUE(Y100); Y50;Y23.6;Y38.2;Y61.8;Y78.6