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.

smoothed

  1. 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...
  2. algoritma

    İdeal ideal Super Smoothed Macd İndikatörü

    algoritma Kullanıcımız yeni bir kaynak oluşturdu: ideal Super Smoothed Macd İndikatörü - ideal Super Smoothed Macd İndikatörü Bu kaynak hakkında daha fazla bilgi ...
  3. algoritma

    ideal ideal Super Smoothed Macd İndikatörü

    ideal Super Smoothed Macd İndikatörü var BandEdge1 = 8; //Input("Kısa Periyot",1,100,8); var BandEdge2 = 13; //Input("Uzun Periyot",1,100,13); var BandEdge3 = 5; //Input("SMOOTH Periyot",1,100,5); var K1 = Math.Sqrt((2)*3.14159/BandEdge1); var K2 = Sistem.GrafikFiyatSec("Kapanis"); var H...
  4. Bogac

    Hareketli Ortalama Smoothed Moving Average (SMMA)

    period:=Input("Period",1,500,21); SMMA:=if(prev=0,mov(c,period,s),(prev*(period-1)+c)/period); SMMA
  5. algoritma

    Önemli Formüller Süper smoothed macd indikatör formülü

    Süper smoothed macd indikatör formülü
  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 Smoothed Tick Momemtum Line - TASC

    Smoothed Tick Momemtum Line mov(roc(cum(if(C,>,ref(mov(C,10,E),-1),+1, if(C,<,ref(mov(C,10,E),-1),-1,0))),5,$),5,E) Source / From: http://www.guppytraders.com
  8. algoritma

    Oscillator RSI Smoothed by John Ehlers

    In "The RSI Smoothed" in this issue, John Ehlers bases his calculations on an RSI calculation that sums the changes in the closing price. While some technical analysis programs use this version, Welles Wilder's book New Concepts In Technical Trading Systems defines the RSI slightly differently...
  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 :=...