Indicadores de elite :) - página 52

 

HMA com WoodiesCCI

Hi,

darkkiler PM me sobre isto.

Verifique se está tudo bem.

Arquivos anexados:
 

Sim, obrigado linuxser!!!

 

Todos os indicadores da seção elite em um arquivo pdf com os links para download.

A maioria dos indicadores são da seção elite (há também algum público interessante).

Arquivos anexados:
 
igorad:
Olá, por favor, tente testar e comparar com o indicador original.

Igorad, você pode explicar mais sobre a cor que você escolhe para este indicador?

O que eu sinto é,

Verde- Alta

Red-Bearish

LightGreen- Pronto para entrar Comprar

Laranja-Fica longe

Yellow-Ready to entry sell

estou certo?

 
newdigital:
Todos os indicadores da seção elite em um arquivo pdf com os links para download. A maioria dos indicadores são da seção elite (há também alguns públicos interessantes).

Obrigado ND, doc. muito útil.

 

De acordo com o indicador original:

Verde - UpTrend;

Vermelho - DownTrend;

Verde Claro - Possível UpTrend;

Laranja - Possível DownTrend;

Amarelo - Choppy ou Possíveis mudanças.

darkkiller:
Igorad, você pode explicar mais sobre a cor que você escolhe para este indicador?

O que eu sinto é,

Verde- Alta

Red-Bearish

LightGreen- Pronto para entrar Comprar

Laranja-Fica longe

Yellow-Ready to entry sell

estou certo?
 
Arquivos anexados:
1newt3.gif  19 kb
2newt3.gif  20 kb
3newt3.gif  18 kb
 

T3 novo

Encontre versões atualizadas.

Arquivos anexados:
 

T3 novo

Versões mais atualizadas.

Preciso ler um pouco mais sobre, manter contato.

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;

Arquivos anexados:
 

linuxser,obrigado por compartilhar o indicador T3. Talvez você possa desenvolver um sistema para negociação usando a combinação com todos os indicadores T3.