Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
Triple or Double Exponential Moving Average (DEMA or TEMA) by Patrick Mulloy
Period:=10;
EMA1:= Mov(C,Period,E);
EMA2:= Mov(EMA1,Period,E);
EMA3:= Mov(EMA2,Period,E);
Difference:= EMA1 - EMA2;
DMA:= EMA1 + Difference;
TMA:=(3*(EMA1-EMA2))+EMA3;
DMA;TMA
TEMA
Tema(Close, 10, Exponential)
Or a...
Elder Triple Screen Trading System
Coded by Dennis Skoblar 7/05/2005. Derrived from "Trading For A Living" and "Come Into My Trading Room" by Alexander Elder. This scan finds candidates by the Weekly MACD Historgam slope, and the Daily 2 Period Force Index dipping above or below it's Zero Line...
Multiple-type Triple Moving Average (TEMA), fully adjustable.
TEMA - Multiple-type
{ Multiple-type TEMA v1.0 }
{ (c) Copyright 2004 Jose Silva }
{ For personal use only }
{ http://www.metastocktools.com }
{ User inputs }
pds:=Input("TEMA periods",1,2520,21);
type:=Input("[1]EMA [2]SMA...