Teknik Analiz Dünyasına Hoşgeldiniz. Paylaşmak Güzeldir.

Yayından kaldırmak istediğiniz formüller için algoritmabul@gmail.com ile iletişime geçebilirsiniz... 

  • DİKKAT: Formüller, Sistemler sadece eğitim amaçlıdır. Alım satım, olası anapara kaybı ve diğer kayıplar dahil olmak üzere "YÜKSEK RİSK" içerir.
  • Mucize teknik gösterge yoktur, sadece doğru veya yanlış kullanılan göstergeler vardır.

Oscillator Alligator Indicators by Bill Williams

Teknik analizde fiyatın yönü veya trendin devamıyla ilgili fikir veren matematiksel modellerdir. Trend oluşmamış piyasalarda fiyatlar yatay bir bantta hareket ederken trendin içinde düzeltme seviyelerini tespit eden indikatörlere OSİLATÖR denir

algoritma

eiπ + 1 = 0
Algorithmist
Algoritma
Katılım
23 Eki 2020
Mesajlar
1,797
Following are the Bill William's Alligator indicators I put together. Please read his book "Trading Chaos" and pick up a demo of his "Investor's Dream" software from his web site to see how they are used.
Hope you find them useful.
originally from Gary Randall -- Brunswick, Maine, U.S.A.​

Chaos Blue
{Alligator Blue Balance Line - Jaw }
{13 bar smoothed average offset 8 bars }
Ref(Wilders(MP(),13),-8);

Chaos Red
{Alligator Red Balance Line - Teeth}
{8 bar smoothed average offset 5 bars}
Ref(Wilders(MP(),8),-5);

Chaos Green
{Alligator Green Balance Line - Lip }
{5 bar smoothed average offset 3 bars }
Ref(Wilders(MP(),5),-3);

Chaos Gator
{ Chaos Alligator }
{ Plot as histogram }
green := Fml("Chaos Green");
red := Fml("Chaos Red");
blue := Fml("Chaos Blue");
If(green > red AND red > blue, green - blue,
If(blue > red AND red > green, green - blue, 0));​
Chaos AO
{ Chaos Awsome Oscillator - measures momentum }
( A very close approximation of MFI }
{ Plot as histogram }
Mov(MP(),5,S) - Mov(MP(),34,S);

Chaos AO Signal Line
{ Chaos Awsome Oscillator Signal Line }
{ Plot as line over AO histogram }
Mov(Mov(MP(),5,S) - Mov(MP(),34,S),5,S)

Chaos AC
{ Chaos Accelerator/Decelerator Oscillator }
{ Measures acceleration }
{ Plot as histogram }
Fml("Chaos AO") - Mov(Fml("Chaos AO"),5,S);​

Chaos Fractal

{ Chaos Fractal (simple version +1=Up, -1=Dn) }

High1 := Ref(HIGH,-2);
High2 := Ref(HIGH,-1);
High3 := Ref(HIGH,0);
High4 := Ref(HIGH,1);
High5 := Ref(HIGH,2);
Low1 := Ref(LOW,-2);
Low2 := Ref(LOW,-1);
Low3 := Ref(LOW,0);
Low4 := Ref(LOW,1);
Low5 := Ref(LOW,2);
Fractal := If((High3 > High1)
AND (High3 > High2)
AND(High3 > High4)
AND (High3 > High5), +1,0);

Fractal := If((Low3 < Low1)
AND (Low3 < Low2)
AND(Low3 < Low4)
AND (Low3 < Low5),
If(Fractal > 0, 0, -1), Fractal);

Fractal;


Source / From:
 

algoritma

eiπ + 1 = 0
Algorithmist
Algoritma
Katılım
23 Eki 2020
Mesajlar
1,797
Bill Williams



Alligator Green: Ref(Wilders((H+L)/2, 5), -3)

Alligator Red: Ref(Wilders((H+L)/2, 8), -5)

Alligator Blue: Ref(Wilders((H+L)/2, 13), -8)

Awesome Oscillator (AO) Green:

MA34 := Mov((H+L)/2, 34, S);
MA5 := Mov((H+L)/2, 5, S);
AO := MA5 - MA34;
If(AO > Ref(AO,-1), AO, 0)



MA34 := Mov((H+L)/2, 34, S);
MA5 := Mov((H+L)/2, 5, S);
AO := MA5 - MA34;
If(AO < Ref(AO,-1), AO, 0)

Accelerator (AC) Green:

MA34 := Mov((H+L)/2, 34, S);
MA5 := Mov((H+L)/2, 5, S);
AO := MA5 - MA34;
AC := AO - Mov(AO, 5, S);
If(AC > Ref(AC,-1), AC, 0);

AC Red:

MA34 := Mov((H+L)/2, 34, S);
MA5 := Mov((H+L)/2, 5, S);
AO := MA5 - MA34;
AC := AO - Mov(AO, 5, S);
If(AC < Ref(AC,-1), AC, 0);
Fractal:

Hi := BarsSince(H<Ref(H,-2) AND Ref(H,-1)<Ref(H,-2) AND
Ref(H,-3)<Ref(H,-2) AND Ref(H,-4)<Ref(H,-2));
Lo := BarsSince(L>Ref(L,-2) AND Ref(L,-1)>Ref(L,-2) AND
Ref(L,-3)>Ref(L,-2) AND Ref(L,-4)>Ref(L,-2));

If(Hi > Lo, ValueWhen(1, L>Ref(L,-2) AND Ref(L,-1)>Ref(L,-2) AND
Ref(L,-3)>Ref(L,-2) AND Ref(L,-4)>Ref(L,-2), Ref(L,-2)), ValueWhen
(1,
H<Ref(H,-2) AND Ref(H,-1)<Ref(H,-2) AND Ref(H,-3)<Ref(H,-2) AND
Ref(H,-4)<Ref(H,-2), Ref(H,-2)))

kaynak
purebytes
 

Forumdan daha fazla yararlanmak için giriş yapın yada üye olun!

Forumdan daha fazla yararlanmak için giriş yapın veya kayıt olun!

Kayıt ol

Forumda bir hesap oluşturmak tamamen ücretsizdir.

Şimdi kayıt ol
Giriş yap

Eğer bir hesabınız var ise lütfen giriş yapın

Giriş yap