T3

 

Some T3 indicators.

Files:
 

The other T3

 

Request for T3 Moving Average in MT4

Hi,

Need a little help if somebody please post the code for T3 Moving Average for MT4 platform. This indicator is available at VT platform of CMS.

Thank you in advance

- Sukhen

 

Paste the VT code here and I will try to translate it.

 

T3ma

sukhen:
Hi,

Need a little help if somebody please post the code for T3 Moving Average for MT4 platform. This indicator is available at VT platform of CMS.

Thank you in advance

- Sukhen

Hi Sukhen,

Is this the one? I am glad if I can help.

Rgds-Ben

Files:
t3ma.mq4  3 kb
 

VT Code

Hi Kalenzo,

The VT Code is like this:

VT Formula:

e1:= Mov(Pr,tPr,mt);

e2:= Mov(e1,tPr,mt);

e3:= Mov(e2,tPr,mt);

e4:= Mov(e3,tPr,mt);

e5:= Mov(e4,tPr,mt);

e6:= Mov(e5,tPr,mt);

c1:= -b*b*b;

c2:= 3*b*b+3*b*b*b;

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

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

T3MA:= c1*e6+c2*e5+c3*e4+c4*e3;

where

Pr = Closing Price

tPr = Periods (int) Default=8

mt = MA Type def: Exponential

b is Volume Factor, float between 0 and 5 default 0.7

Hi Ben,

Many thanks but it has a volume factor also.

Thank you guys in advance

- Sukhen

P.S. I want to use it at 10 min TF but MT doesn't support that. Can you please advise if it's possible any way to see it at other TFs like 5 mins.

 
sukhen:
Hi Kalenzo,

The VT Code is like this:

VT Formula:

e1:= Mov(Pr,tPr,mt);

e2:= Mov(e1,tPr,mt);

e3:= Mov(e2,tPr,mt);

e4:= Mov(e3,tPr,mt);

e5:= Mov(e4,tPr,mt);

e6:= Mov(e5,tPr,mt);

c1:= -b*b*b;

c2:= 3*b*b+3*b*b*b;

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

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

T3MA:= c1*e6+c2*e5+c3*e4+c4*e3;

where

Pr = Closing Price

tPr = Periods (int) Default=8

mt = MA Type def: Exponential

b is Volume Factor, float between 0 and 5 default 0.7

Hi Ben,

Many thanks but it has a volume factor also.

Thank you guys in advance

- Sukhen

P.S. I want to use it at 10 min TF but MT doesn't support that. Can you please advise if it's possible any way to see it at other TFs like 5 mins.

Hi Sukhen,

Why did not you say so? I am not a programmer but I think I can do that. Let Kalenzo do more complicated tasks. (Thanks to Kale for all his contribution all this time).

Default Period 10 and VolumeFactor 0.7.

Rgds - ben

Files:
t3ma_mod.mq4  4 kb
 

Sorry and Thanks

Ben,

Bro - I am sorry for not posting the VT code earlier.

Thanks very much and it's working.

- Sukhen

 

Hi

Hi,

The T3MA Mod.mq4 works but doesn't update. You have to manually update the MA by refreshing the chart by changing timeframes.

Could anyone look at the code and try to make it update?

Thanks,

dolphin.

 

T3-dpo

Can anyone fix this excellent indicator so it "updates". The current bar is missing unless I change or shut down the graph and restart the graph. Please use on 1 minute scale with the following settings:

x_prd = 0

t3_period = 8

b = 0.8

CountBars = 300

Thanks in advance!

Dave

<<<

Can anybody lend a hand to fix this problem????

Files:
t3_dpo-v1.mq4  3 kb
 

new T3 indicator and rainbow

Sometime you post a chart and we don't know which T3 is which. So I modified the indicator to show what color belongs to which T3. Attached is a template so you can use it to modify. It's easier to see how it was set up. You can display the info in any 4 corner: upper left, upper right, lower left, lower right. In this set up, I display the info in the upper right corner.

Files:
t3rainbow.gif  22 kb
t3.mq4  5 kb
t3_rainbow.tpl  49 kb
Reason: