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 Chaos Fractal (simple version +1=Up, -1=Dn)

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
----- Original Message -----
From: "Bob Webb" <Webb.Bob@xxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Sent: Wednesday, January 24, 2001 4:36 PM
Subject: Programming Bill Williams fractals


> I heard nothing from my earlier request...
> Has anyone attempted programming Bill Williams' fractals: that is,
> indicating when a particular day's high is higher than the two days before
> and after it (and the same on the downside: when a day's low is lower than
> the two days before and after it).
> I'd appreciate help with programming this if someone has done it.
> Thanks.
> Bob.



Re: Programming Bill Williams fractals
To: <metastock@xxxxxxxxxxxxx>
Subject: Re: Programming Bill Williams fractals
From: "Barry Marx" <bmarx@xxxxxxxxx>
Date: Wed, 24 Jan 2001 17:57:25 -0500
References: <4.2.1.20010124163239.00bc6bc0@xxxx>
Reply-To: metastock@xxxxxxxxxxxxx
Sender: owner-metastock@xxxxxxxxxxxxx

Here's something that I dug out that was posted to the list a while back.
Hope it helps.
- Barry

{Posted to MetaStock List by Gary Randall } {on 10/15/99}​

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;​
 

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