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.

moving

  1. algoritma

    Hareketli Ortalama Hull Moving Average by Alan Hull

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

    Hareketli Ortalama Front Weighted 36 Day Moving Average

    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...
  3. algoritma

    Trend Kanalı Exponential Moving Average - Cycle-adaptive by Jose Silva

    Cycle-adaptive EMA - periodicity determined by historical price cycles. Exponential Moving Average - Cycle-adaptive { Cycle-adaptive Exponential Moving Avg v1.1 } { EMA periodicity determined by historical price cycle based on ZigZag cycles } { (c) Copyright 2004...
  4. algoritma

    Hareketli Ortalama Elastic Moving Average eVWMA by Christian Fries

    n his article "Elastic Moving Average" in this issue, Christian Fries introduces the eVWMA indicator. To recreate this indicator in MetaStock, select the Indicator Builder from the Tools menu. Then click New and enter the following formula: eVWMA n := Input("Enter the number of shares...
  5. algoritma

    Hareketli Ortalama Almost Zero Lag Moving Average

    To smooth it out further, one may apply it twice with smaller period for the second. But again, you cannot make the lag zero! Almost Zero Lag Moving Average Period:= Input("What Period",1,250,10); EMA1:= Mov(P,Period,E); EMA2:= Mov(EMA1,Period,E); Difference:= EMA1 - EMA2; ZeroLagEMA:=...