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 Psychological Index

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
· To: "MetaStock listserver" <metastock@xxxxxxxxxxxxx>
· Subject: Psychological Index
· From: "Glen Wallace" <gcwallace@xxxxxxxx>
· Date: Sun, 6 Aug 2000 06:59:34 -0700
· Reply-To: metastock@xxxxxxxxxxxxx
· Sender: owner-metastock@xxxxxxxxxxxxx
There was an overbought/oversold indicator described in the June 2000 Futures Magazine called the Psychological Index. It looked sort of interesting, so I wrote the MetaStock code for it:​
Psychological Index
{Futures Magazine, Vol.29 No.6, June 2000, P.48}
LookBack:= Input("Number of lookback periods", 2, 100, 12);
UThreshold:= Input("Upper threshold (%)", 0, 100, 75);
LThreshold:= Input("Lower threshold (%)", 0, 100, 25);
UpDay:= If(CLOSE > Ref(CLOSE,-1), 1, 0);
PsychIndex:= Sum(UpDay,LookBack) / LookBack * 100;
PsychIndex;
UThreshold;
LThreshold​


The article described the standard lookback period as 12 bars with a level of 75% or higher being an indication of an overbought market and 25% or lower being an oversold market. Like most overbought/oversold indicators, it will give poor results in a strongly trending market, but perhaps using an ADX and trend direction filter, it might prove useful.
On 5-minute bars in the bonds, you have to constantly adjust the thresholds for an upward or downward bias, but if you increase the lookback period and widen the signal levels for less frequent signals, the results were interesting.
Regards.
System Tester code:
Enter Long / Close Short
LookBack:= opt1;
UThreshold:= opt2;
LThreshold:= opt3;
UpDay:= If(CLOSE > Ref(CLOSE,-1), 1, 0);
PsychIndex:= Sum(UpDay,LookBack) / LookBack * 100;
PsychIndex <= LThreshold
Enter Short / Close Long
LookBack:= opt1;
UThreshold:= opt2;
LThreshold:= opt3;
UpDay:= If(CLOSE > Ref(CLOSE,-1), 1, 0);
PsychIndex:= Sum(UpDay,LookBack) / LookBack * 100;
PsychIndex >= UThreshold

[19420]

Re: Psychological Index
· To: metastock@xxxxxxxxxxxxx
· Subject: Re: Psychological Index
· From: HHP <hhp@xxxxxxxx>
· Date: Mon, 07 Aug 2000 10:40:54 -0700
· References: <009101bfffae$bef0aea0$5a124118@xxxxxxxxxxxxxxxxxxxxxx>
· Reply-To: metastock@xxxxxxxxxxxxx
· Sender: owner-metastock@xxxxxxxxxxxxx
Your UThreshold and LThreshold are the first time I've seen the Input() function used for this purpose. Good thinking. I'll steal that idea.
HHP
[19376]​

Source / From:

 

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
Başlatan Benzer Konular Forum Cevap Tarih
algoritma C 0
algoritma R 0
algoritma A 0
algoritma E 0
algoritma the authority 3
algoritma V 0
U R 0
algoritma I 0
algoritma V 0
algoritma Metastock 5
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma Teknik Analizde Göstergelerin Matematiksel Açıklamaları 0
algoritma P 0