Forex
Google

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register FAQ Members List Calendar Search Today's Posts Mark Forums Read


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-06-2005, 08:09 PM
newdigital newdigital is offline
Administrator
 
Join Date: Sep 2005
Posts: 15,174
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
T3

Some T3 indicators.
Attached Files
File Type: mq4 T3 TRIX (ROC of T6).mq4 (4.6 KB, 249 views)
File Type: mq4 T3.mq4 (2.4 KB, 254 views)
File Type: mq4 T3_Bands.mq4 (3.7 KB, 215 views)
File Type: mq4 T3_DPO-v1.mq4 (2.4 KB, 205 views)
File Type: mq4 T3_iAnchMom.mq4 (3.0 KB, 202 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 11-06-2005, 08:11 PM
newdigital newdigital is offline
Administrator
 
Join Date: Sep 2005
Posts: 15,174
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
The other T3
Attached Files
File Type: mq4 T3_iAnchMom_hist.mq4 (2.9 KB, 178 views)
File Type: mq4 t3_Moving_Volume_Average.mq4 (2.3 KB, 197 views)
File Type: mq4 T3_RSI.mq4 (2.2 KB, 198 views)
File Type: mq4 T3_Taotra.mq4 (4.2 KB, 183 views)
File Type: mq4 T3MA.mq4 (2.8 KB, 232 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 05-26-2006, 09:58 AM
sukhen sukhen is offline
Member
 
Join Date: Nov 2005
Posts: 55
sukhen is on a distinguished road
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
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 05-26-2006, 10:08 AM
Kalenzo's Avatar
Kalenzo Kalenzo is offline
Senior Member
 
Join Date: Dec 2005
Location: Bydgoszcz - Poland
Posts: 692
Kalenzo is on a distinguished road
Paste the VT code here and I will try to translate it.
__________________
You need proffesional mql coder? Contact me! I will help you!
........................................
http://www.fxservice.eu/
........................................
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 05-26-2006, 10:17 AM
ibadah ibadah is offline
Member
 
Join Date: Dec 2005
Posts: 69
ibadah is on a distinguished road
T3ma

Quote:
Originally Posted by 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
Attached Files
File Type: mq4 T3MA.mq4 (2.8 KB, 197 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 05-28-2006, 02:20 AM
sukhen sukhen is offline
Member
 
Join Date: Nov 2005
Posts: 55
sukhen is on a distinguished road
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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 05-28-2006, 03:29 AM
ibadah ibadah is offline
Member
 
Join Date: Dec 2005
Posts: 69
ibadah is on a distinguished road
Quote:
Originally Posted by 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
Attached Files
File Type: mq4 T3MA mod.mq4 (3.0 KB, 166 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 05-28-2006, 12:00 PM
sukhen sukhen is offline
Member
 
Join Date: Nov 2005
Posts: 55
sukhen is on a distinguished road
Sorry and Thanks

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

Thanks very much and it's working.

- Sukhen
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 06-29-2006, 05:05 AM
dolphin412 dolphin412 is offline
Junior Member
 
Join Date: Apr 2006
Posts: 1
dolphin412 is on a distinguished road
Lightbulb 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.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 08-14-2006, 08:19 AM
iscuba11's Avatar
iscuba11 iscuba11 is offline
Senior Member
 
Join Date: May 2006
Location: Houston
Posts: 400
iscuba11 is on a distinguished road
Exclamation 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????
Attached Files
File Type: mq4 T3_DPO-v1.mq4 (2.4 KB, 96 views)

Last edited by iscuba11 : 08-14-2006 at 05:00 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump



All times are GMT. The time now is 10:53 PM.