7 Eylül 2010 Salı

İndikatör Formülleri Stop Loss Indicator

Stop Loss Indicator Eric Kendall

PeriodsShort:=Input('Periods Short',1,50,10);
PeriodsLong:=input('Periods Long',1,50,10);
HHV(H,periodsshort)-atr(PeriodsShort);
LLV(L,periodslong)+ATR(PeriodsLong);


Customisable StochRSI Nicholas Kormanik

mp1:=Input('RSI Periods',1,377,13);
mp2:=Input('Stoch Periods',1,377,13);
mp3:=Input('Slowing Periods',1,377,1);
mp4:=Input('EMA Periods',1,377,5);
Mov(Sum((RSI(mp1)-LLV(RSI(mp1),mp2)),mp3)/
Sum((.0000001+(HHV(RSI(mp1),mp2)-(
LLV(RSI(mp1),mp2)))),mp3),mp4,E)*100


Tema StochRSI Formula Jim Greening

Periods := Input('Enter Tema Smoothing Periods',5,233,13);
Tema((( RSI( Periods ) - LLV( RSI( Periods ), Periods)) /
(( 0.0001+HHV( RSI( Periods ), Periods )) -
LLV( RSI( Periods ), Periods ))) - 0.5, Periods)


Trend Detection Index M.E. Pee
S&C Magazine, Ekim Sayısı, 2001

X:=Input('Number of Periods',5,50,20);
am:=Abs(C-Ref(C,-(x-1)));
td:=Sum(C-Ref(C,-(x-1)), x);
tdi:=(Abs(td)+Sum(am,x))-Sum(am,(2*x));
status:=If(tdi>0,If(td>0 ,1,-1),PREV);
tdi; td;
status*LastValue( Highest( Max( Abs(tdi),Abs(td))))


True Range Formula Bob Jagow

TR:= (H - L + Abs(H - Ref(C,-1)) + Abs(L - Ref(C,-1)) )/2


True Strength Index
Stocks & Commodities magazine Ocak 1993 Sayısı

100*(Mov(Mov(ROC(C,1,$),25,E),13,E)/ Mov(Mov(Abs(
ROC(C,1,$)),25,E),13,E))


MTF Fixed Balance Point Step Adam Hefner

Dw:=If(DayOfWeek()<=Ref(DayOfWeek(),-1),1,0);
Wt:=If(Dw=1,
{then}(Ref(HighestSince(1,Dw=1,H),-1)+
Ref(LowestSince(1,Dw=1,L),-1) +
Ref(C,-1))/3,
{else}0);
DwP:=ValueWhen(1,Wt>0,Wt);
Dwp


Hiç yorum yok:

Yorum Gönder