Merhaba nasılsınız. Benim elimde dip ve tepe için kullandığım formül var. Şunu yapmak istiyorum. Örneğin dip formulumuz al verdiği noktalar var. Son 50 bar içerisinde 3 veya 4 noktada al vermis. Bu noktalar içerinde ki en dip noktadaki al verdiği pozisyonui ben yükselen fibo içerisindeki OBS noktasına tanımlamak istiyorum..ve bu noktadan itibaren mesela 100 barlık fibo seviyelerini belirlemek istiyorum. Şöyle bir sorunla karşı karşıya kalıyorum. Değişken içine değişken tanımlanamaz. Bu sorunu nasıl asabilirim.. bu konuda bilginize ihtiyacım var. Tesekkurler 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