You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
HMA with WoodiesCCI
Hi,
darkkiler PM me about this.
Check if is ok.
Yeah,thanks linuxser!!!
All elite section indicators in one pdf file with the links to download.
Most of the indicators are from elite section (there are some interesting public as well).
Hi, please try to test and compare with original indicator.
Igorad,can u explain more about colour that u choose for this indicator?
What i feel is,
Green- Bullish
Red-Bearish
LightGreen- Ready to entry Buy
Orange-Stay away
Yellow-Ready to entry sell
am i right?
All elite section indicators in one pdf file with the links to download. Most of the indicators are from elite section (there are some interesting public as well).
Thanks ND, very useful doc.
According to original indicator:
Green - UpTrend;
Red - DownTrend;
Light Green - Possible UpTrend;
Orange - Possible DownTrend;
Yellow - Choppy or Possible Changes.
Igorad,can u explain more about colour that u choose for this indicator?
What i feel is,
Green- Bullish
Red-Bearish
LightGreen- Ready to entry Buy
Orange-Stay away
Yellow-Ready to entry sell
am i right?T3 new
Find updated versions.
T3 new
More updated versions.
I need to read little more about, keep in touch.
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,thanks for sharing T3 indicator.Maybe u can develop one system for trading using combination with all T3 indicator.