T3 - page 7

 
mladen:
Actually, in your version of KAMA indicator, there is a problem with MetaTrader iStdDevOnArray built in function

It is used in indicator for filtering, and for some reason, the built in function works very,very slow

Attached version of KAMA with custom coded deviation that does the job much faster

This should be the one I'm looking for. Thank so much for your kind help.

piplover

 

any T3MA which can change color when heading upward or downward?

 
mladen:
Actually, in your version of KAMA indicator, there is a problem with MetaTrader iStdDevOnArray built in function

It is used in indicator for filtering, and for some reason, the built in function works very,very slow

Attached version of KAMA with custom coded deviation that does the job much faster

Thanks a lot, Man!

 

Required: T3 Slope indicator

Can anyone post the T3 Slope indicator

I attach the T3 moving average indicator

 

Moved your post to the thread with many T3 indicators. may be you will find something what you need.

 

T3MA Question

The following code returns 0

string signal(string sm)

{

string sig;

double h1,h4;

h1=iCustom(sm,PERIOD_H1,"T3MA",13,0.8,0,0);

h4=iCustom(sm,PERIOD_H4,"T3MA",13,0.8,0,0);

if (Bid > h1 && Bid > h4) {sig = "BUY "+sm;}

if (Ask < h1 && Ask < h4) {sig = "SELL "+sm;}

return(sig);

}

since the value of h1 always comes 0 which means the icustom is not working, how do i get this to work.

Files:
 

Actually, in your version of KAMA indicator, there is a problem with MetaTrader iStdDevOnArray built in function

It is used in indicator for filtering, and for some reason, the built in function works very,very slow

Attached version of KAMA with custom coded deviation that does the job much faster

piplover:
Hi Xard777

Do you ever apply them on smaller TF such as 1M, 5M or 15M?

I need another favor from you. Do you familiar with this KAMA

indicator, why does there eat up a lot of memory? sometimes

even freezed the machine. How about help interpret of this one

" JFatlSpeedR " . I thought the big green showing uptrend

direction and big red showing the opposite.

As always thanks for your kind help.

piplover
Files:
kama.gif  15 kb
 

The way it is writen e(n) variables should contain values from previous bar

If you avoid recalculating the previous bars the e(n) variables are "poluted"

Two "muscle" solutions posted:

T3 bands all recalc - always recalculates all bars

T3 bands limited recalc - recalculates BarstToCount+sum(Ma_periods) : this is an aproximation, not sure what results is it giving

regards

mladen

alpha24seven:
This is an excellent indi as you can see. The problem is that it doesn't update properly and simply collapses right after you load it into a chart.

Any help would be most appreciated!

Best

Alpha
 

Cleaned up sollution

It seems that you worked on MojoFX's original of T3

That original does that too

Cleaned up solution for T3 bands

Place both indicator in the indicator directory

No all bars recalculation

No BarsToCalculate

Files:
t3_bands.gif  15 kb
 
alpha24seven:
This is an excellent indi as you can see. The problem is that it doesn't update properly and simply collapses right after you load it into a chart.

Any help would be most appreciated!

Best

Alpha

T3_Taotra_NK.mq4 (7.8 KB) -'bands'

T3.new1,2 - T3

Multiple Null Bar Re-Count in Some Indicators - MQL4 Articles

Files:
Reason: