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.

stochastic

  1. algoritma

    Oscillator Predictive And Successful Indicators

    Predictive And Successful Indicators John Ehlers’ article in this issue, “Predictive And Successful Indicators,” presents the reader with three new indicators. The MetaStock formulas for these indicators are given here: a1:= Exp(-1.414 * 3.14159 / 10); b1:= 2*a1 * Cos(1.414*180 /10); c2:= b1...
  2. algoritma

    Oscillator Double Smoothed Stochastics (W. Bressert)

    Double Smoothed Stochastics (W. Bressert) Pds:=Input("Periods double stoch",3,100,21); Slw:=Input("Slowing double stoch",1,20,3); trigger:=Input("Trigger Length",1,20,3); A:=Mov((CLOSE-LLV(LOW,Pds))/(HHV(H,pds)-LLV(L,Pds)),Slw,E)*100; DSS:=Mov((A-LLV(A,pds))/(HHV(A,Pds)-LLV(A,Pds)),Slw,E)*100...
  3. algoritma

    Matriks Optimized Trend Tracker (OTT) + Stochastic OTT(SOTT)

    al cross(mov(c,opt1,var),ott(c,opt1,opt2)*(1+opt3)) or cross(stosk(opt4,opt5,33,var)+1000,ott(stosk(opt4,opt5,33,var)+1000,2,opt6)) sat cross(ott(c,opt1,opt2)*(1+opt3),mov(c,opt1,var)) or cross(ott(stosk(opt4,opt5,33,var)+1000,2,opt6),stosk(opt4,opt5,33,var)+1000) opt1 20 60 10 opt2 0,6...
  4. algoritma

    Matriks Stochastic OTT SOTT

    Stochastic OTT SOTT X1:=500; X2:=200; X3:=0.5; STOSK(X1,X2,33,VAR)+1000; OTT(STOSK(X1,X2,33,VAR)+1000,2,X3) AL Cross(STOSK(opt1,opt2,33,VAR)+1000,OTT(STOSK(opt1,opt2,33,VAR)+1000,2,opt3)) SAT Cross(OTT(STOSK(opt1,opt2,33,VAR)+1000,2,opt3),STOSK(opt1,opt2,33,VAR)+1000) OPT1 ALT SINIR 200 ÜST...
  5. K

    Oscillator Stochastic Oscillator

    Stokastik hesaplaması için matriks formülü alttaki gibidir. p1:=5; p2:=5; p3:=3; x1:=(C-LLV(L,p1))/(HHV(H,p1)-LLV(L,p1))*100; StosK:=Sum(x1,p2)/p2; StosD:=Mov(StosK,p3,S); StosK;StosD
  6. algoritma

    Oscillator Smoothed Adapative Stochastic Oscillator

    Smoothed Adapative Stochastic Oscillator n:=Input("**Volatility** lookback length",1,50,20); x:=Input("%K smoothing (exponential smoothing)",1,50,3); y:=Input("%D smoothing (exponential smoothing)",1,50,3); lenmax:=28; lenmin:=7; v1:=Stdev(C,n); v2:=HHV(v1,n); v3:=LLV(v1,n)...
  7. algoritma

    Oscillator Stochastic Momentum Indicator by William Blau

    Appeared in the January 1993 issue of Stocks & Commodities magazine The Stochastic Momentum Index (SMI) was developed by William Blau. It incorporates an interesting twist on the popular Stochastic Oscillator. While the Stochastic Oscillator provides you with a value showing thedistance the...
  8. algoritma

    Oscillator Chande's Adaptive Stochastic Oscillator

    ---- Original Message ----- From: Dave Nadeau To: metastock@xxxxxxxxxxxxx Sent: Thursday, June 29, 2000 12:40 PM Subject: Re: adaptive stochastic oscillator Here's what I come up with. It doesn't work, and I've run into this issue when trying to solve some other problems. Does anyone have any...
  9. algoritma

    Oscillator Cycle Indicator by Bill Irwin

    Double smoothed stochastic 10 period, denominators defined to eliminate divide by zero errors. Cycle Indicator Period:= 10; denom1:= If(HHV(H,Period)-LLV(L,Period)>0, HHV(H,Period)-LLV(L,Period), 1); P1:= Mov(((C-LLV(L,Period))/ denom1)*100,3,E); denom2 :=...