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.

average

  1. 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...
  2. 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...
  3. 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:=...
  4. algoritma

    Hareketli Ortalama Average - Modified Method by Perry J. Kaufman

    At 11:53 AM 1/5/98 -0800, you wrote: Is it possible to calculate the MODIFIED moving average (Perry Kaufman) within Metastock? I am told it can be done with TradeStation and CQG.. Here is the formula:- MAV(t) = MAV(t-1) + [P(t)-MAV(t-1)]/n Where: MAV(t) is the current modified moving average...