精英指标 :) - 页 52

 

HMA与WoodiesCCI

你好。

darkkiler给我发了关于这个问题的邮件。

检查 是否可以。

附加的文件:
 

是的,感谢linuxser!!。

 

所有精英部分的指标都在一个pdf文件中,并附有下载链接。

大多数指标来自精英部分(也有一些有趣的公共指标)。

附加的文件:
 
igorad:
你好,请尝试测试并与原始指标进行比较。

Igorad,你能详细解释一下你为这个指标选择的颜色吗?

我的感觉是。

绿色-看涨

红色-看跌

浅绿色--准备进入购买

橙色-远离

黄色--准备入场卖出

我说的对吗?

 
newdigital:
所有精英部分的指标都在一个pdf文件中,并有下载链接。 大部分指标都来自精英部分(也有一些有趣的公共指标)。

谢谢ND,非常有用的文件。

 

根据原始指标。

绿色--上升趋势。

红色--下降趋势。

浅绿色--可能的上升趋势。

橙色--可能的下降趋势。

黄色--震荡或可能的变化。

darkkiller:
Igorad,你能详细解释一下你为这个指标选择的颜色吗?

我的感觉是。

绿色--看涨

红色-看跌

浅绿色--准备进场购买

橙色-保持距离

黄色--准备入场卖出

我说的对吗?
 
附加的文件:
1newt3.gif  19 kb
2newt3.gif  20 kb
3newt3.gif  18 kb
 

T3新版

查找更新的版本。

附加的文件:
 

T3新版

更多的更新版本。

我需要多读一点,保持联系。

METASTOCK IMPLEMENTATIONS

MetaStock 6.5 code for ILRS:

{input number of lookback periods, default is 11}

periods:=Input(“Periods? “,2,63,11);

{determine how many points are in the time series}

size:=LastValue(Cum(1));

{determine the constant of integration by taking the simple

moving average of the first periods points in the time

series}

start:=LastValue(Ref(Mov(P,periods,S),periods-size));

{value is the integral of linear regression slope plus the

constant of integration}

Cum(LinRegSlope(P,periods))+start;

If x stands for the action of running a time series through

an EMA, f is our formula for generalized DEMA with the

variable “a” standing for our volume factor:

f: = 1 + a x – ax2

Running the filter though itself three times is equivalent to

cubing f:

–a3 x6+ 3a2+3a3 x5+ –6a2–3a–3a3 x4+ 1+3a+a3+3a2 x3

Thus, the MetaStock 6.5 code for T3 is:

periods:=Input(“Periods? “,1,63,5);

a:=Input(“Hot? “,0,2,.7);

e1:=Mov(P,periods,E);

e2:=Mov(e1,periods,E);

e3:=Mov(e2,periods,E);

e4:=Mov(e3,periods,E);

e5:=Mov(e4,periods,E);

e6:=Mov(e5,periods,E);

c1:=-a*a*a;

c2:=3*a*a+3*a*a*a;

c3:=-6*a*a-3*a-3*a*a*a;

c4:=1+3*a+a*a*a+3*a*a;

c1*e6+c2*e5+c3*e4+c4*e3;

附加的文件:
 

linuxser,谢谢你分享T3指标。也许你可以开发一个使用所有T3指标组合的交易系统。