Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
Average Directional Movement Index (ADX)
n:=14;
tr:=max(max(h-L,abs(h-ref(c,-1))),abs(L-ref(c,-1)));
dip:=if(H-ref(h,-1)>ref(L,-1)-L,h-ref(h,-1),0);
dim:=if(ref(L,-1)-L>H-ref(H,-1),ref(L,-1)-l,0);
str:=PREV-(PREV/n+tr);
sdmp:=PREV-(PREV/n+dip);
sdmm:=PREV-(PREV/n+dim);
diplus:=sdmp/str*100...
Average True Range Trailing Stop İndikatörü
period:=Input("ATR period",1,100,5);
MLT:=Input("Multiplier",1,10,3.5);
LOSS:=ATRE(Period)*MLT;
ATRs:=if(c>PREV and ref(c,-1)>PREV,max(prev,C-LOSS),if(c<PREV and ref(c,-1)<PREV,min(prev,C+LOSS),if(c>PREV,c-LOSS,C+LOSS)));
ATRs
kaynak
Kıvanç Özbilgiç...
High Low Moving Average
p3:=REF((H+L)/2,-3);
p2:=REF((H+L)/2,-2);
p1:=REF((H+L)/2,-1);
p0:=(H+L)/2;
PrevSum:=p3+p2+p1;
PrevAve:=PrevSum/3;
a:=ref((Prevsum - PrevAve +p0)/3,-3);
b:=ref((Prevsum - PrevAve +p0)/3,-1);
a;b
kaynak
¿
Muhtemelen yazılırken kullanılan kaynak...
Vertical Horizontal Filter indikatörünün hareketli ortalamaya dönüştürülmüş versiyonudur
Renk değişimi ve destek-direnç olarak kullanımında güzel sinyaller vermektedir
"length=50" kısmı kullandığınız grafik periyoduna göre optimize edilebilir
Matriks Indicator Builder Formula;
length:=50...
algoritma Kullanıcımız yeni bir kaynak oluşturdu:
Average True Range (ATR) Ortalama Gerçek Aralık açık formülü - Average True Range (ATR) Ortalama Gerçek Aralık açık formülü
Bu kaynak hakkında daha fazla bilgi ...
Average True Range (ATR) Ortalama Gerçek Aralık açık formülü
atracik:= max( H, Ref(C, -1)) - min( Ref(C,-1), L);
mov(atracik,14,s)
kaynak da exponential moving average kullanılmış tam sonuç için simple kullanılmıştır
diğer bir formül
a:=H- L ;
b:=H - ref(C,-1);
d:=Abs(L - ref(C,-1))...
Weighted Moving Average ın açık kodu
mov(c,3,w) açık kodu
(ref(c,-2)+ref(c,-1)*2+c*3)/6
60 dk mov(c,3,w) alt periyodlarda görmek için
Nw:=Hour()<>ref(Hour(),-1);
alg:=(valuewhen(3,nw,ref(c,-1)) + valuewhen(2,nw,ref(c,-1))*2 + valuewhen(1,nw,ref(c,-1))*3)/6;
alg
kaynak
uufuk
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
From: Edson L F <edsonlf[at]bol.com.br>
To: equismetastock[at]yahoogroups.com <equismetastock[at]yahoogroups.com>
Date: Friday, March 17, 2006, 5:17:09 PM
Subject: [EquisMetaStock Group] Envelope
Hi friends!
how to...
The first step for calculating a weighted moving average (WMA) is to decide the lookback period (n) and the alpha (a). For our example in sidebar Figure 1, we are using n = 8 and a = 0.6 to calculate the optimized weighted moving average (OWMA) described in "Weighted moving averages." The OWMA...
Hull Hareketli Ortalama Nedir
The Hull Moving Average solves the age old dilemma of making a moving average more responsive to current price activity whilst maintaining curve smoothness. In fact the HMA almost eliminates lag altogether and manages to improve smoothing at the same time. To...
This indicator requires 3 sub calculations and then the totalling of all3to get the final indicator: This is the basic calculation:
Take the closing prices of your instrument 34 days ago - 26 days ago(inclusive), multiply each daily value by 0.01 and write each value down.
Then take the closing...