Register File Sharing Journals Chat Room FAQ Calendar Mark Forums Read

Advertisement







Search Forums
 
» Advanced Search

Reply
 
Thread Tools Display Modes
Old 13-09-2005, 09:34   #193
LondonFX
level 1
 
Join Date: Nov 2003
Posts: 33
Downloads: 0
Uploads: 0
Rep Power: 0LondonFX is an unknown quantity at this point
Re: Profitable trading thanks to MoneyTec forum

Quote:
Originally Posted by roter
could somebody point me to the MTT4 version of the T3 filter?
i'm not able to find it.
thanks
Mario
I thought I seen one over at SBFX file shearing section http://www.strategybuilderfx.com/forums/filesharing.php .
LondonFX is offline   Reply With Quote
Old 13-09-2005, 09:43   #194
roter
level 1
 
roter's Avatar
 
Join Date: May 2005
Posts: 61
Downloads: 18
Uploads: 0
Rep Power: 4roter is on a distinguished road
Re: Profitable trading thanks to MoneyTec forum

Quote:
Originally Posted by LondonFX
I thought I seen one over at SBFX file shearing section http://www.strategybuilderfx.com/forums/filesharing.php .

it is not there.
mario
roter is offline   Reply With Quote
Old 13-09-2005, 09:51   #195
LondonFX
level 1
 
Join Date: Nov 2003
Posts: 33
Downloads: 0
Uploads: 0
Rep Power: 0LondonFX is an unknown quantity at this point
Re: Profitable trading thanks to MoneyTec forum

Quote:
Originally Posted by roter
it is not there.
mario
Then your best bet would be to request one be made or converted to MT4 in the sbfx forums.
LondonFX is offline   Reply With Quote
Old 13-09-2005, 16:32   #196
fx_boom
level 1
 
fx_boom's Avatar
 
Join Date: Dec 2004
Posts: 7
Downloads: 5
Uploads: 0
Rep Power: 0fx_boom is an unknown quantity at this point
Re: T3 indicator fot MT4

here is the code for MT4 :
Code:
//+------------------------------------------------------------------+ //| T3.mq4 | //| MojoFX | //| http://groups.yahoo.com/group/MetaTr...nd_Indicators/ | //+------------------------------------------------------------------+ #property copyright "MojoFX - Conversion only" #property link "http://groups.yahoo.com/group/MetaTrader_Experts_and_Indicators/" #property indicator_chart_window #property indicator_buffers 1 #property indicator_color1 Red extern int MA_Period = 14; extern double b = 0.7; double MapBuffer[]; double e1[],e2[],e3[],e4[],e5[],e6[]; double c1,c2,c3,c4; double n,w1,w2,b2,b3; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators setting SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1,Red); IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)); IndicatorShortName("T3"+MA_Period); SetIndexDrawBegin(0,100); SetIndexBuffer(0,MapBuffer); //---- variable reset //e2=0; e3=0; e4=0; e5=0; e6=0; c1=0; c2=0; c3=0; c4=0; n=0; w1=0; w2=0; b2=0; b3=0; b2=b*b; b3=b2*b; c1=-b3; c2=(3*(b2+b3)); c3=-3*(2*b2+b+b3); c4=(1+3*b+b3+3*b2); n=MA_Period; if (n<1) n=1; n = 1 + 0.5*(n-1); w1 = 2 / (n + 1); w2 = 1 - w1; //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { int limit; int counted_bars=IndicatorCounted(); if (counted_bars<0) return (-1); if (counted_bars>0) counted_bars--; limit=(Bars-counted_bars)-1; //---- indicator calculation ArrayResize(e1, Bars+1); ArrayResize(e2, Bars+1); ArrayResize(e3, Bars+1); ArrayResize(e4, Bars+1); ArrayResize(e5, Bars+1); ArrayResize(e6, Bars+1); for(int i=limit; i>=0; i--) { e1[Bars-i] = w1*Close[i] + w2*e1[(Bars-i)-1]; e2[Bars-i] = w1*e1[Bars-i] + w2*e2[(Bars-i)-1]; e3[Bars-i] = w1*e2[Bars-i] + w2*e3[(Bars-i)-1]; e4[Bars-i] = w1*e3[Bars-i] + w2*e4[(Bars-i)-1]; e5[Bars-i] = w1*e4[Bars-i] + w2*e5[(Bars-i)-1]; e6[Bars-i] = w1*e5[Bars-i] + w2*e6[(Bars-i)-1]; //Print ("I- ",i, "Bars-I ",Bars-i); MapBuffer[i]=c1*e6[Bars-i] + c2*e5[Bars-i] + c3*e4[Bars-i] + c4*e3[Bars-i]; } //---- return(0); } //+------------------------------------------------------------------+
fx_boom is offline   Reply With Quote
Old 15-09-2005, 13:20   #197
MuddBuddha
level 1
 
MuddBuddha's Avatar
 
Join Date: Jun 2005
Posts: 21
Downloads: 0
Uploads: 0
Rep Power: 0MuddBuddha is on a distinguished road
Re: Profitable trading thanks to MoneyTec forum

This may help. There are free trading books and video tutorials available on

www.ProfessionalForex.com

Hope it helps out.
MuddBuddha is offline   Reply With Quote
Old 19-09-2005, 18:18   #198
turbo24
level 1
 
Join Date: Sep 2005
Posts: 1
Downloads: 0
Uploads: 0
Rep Power: 0turbo24 is on a distinguished road
Re: Profitable trading thanks to MoneyTec forum

Hey all hi can somebody please send me the mt-3 indicators for this system I shure would appreciate it. I can't seem to find them on the forum. My email is turbotrader24@yahoo.com


Thanks Much
Mike
turbo24 is offline   Reply With Quote
Old 16-10-2005, 00:21   #199
Mini
level 1
 
Mini's Avatar
 
Join Date: Feb 2005
Posts: 3
Downloads: 1
Uploads: 0
Rep Power: 0Mini is on a distinguished road
Re: How to add these codes in MT4

Hi fx boom

How do I add these code to my MT4 syestm. I am trying to test Mark3 system but I have no idea how to add these indicators. I really apprecoiate your help.
you may reply to : pradhan@mail.com
Mini is offline   Reply With Quote
Old 17-10-2005, 13:04   #200
initialsBB
level 2
 
Join Date: Oct 2005
Posts: 120
Downloads: 0
Uploads: 0
Rep Power: 4initialsBB is on a distinguished road
Re: Answers to all Questions

Quote:
Originally Posted by mark3


NOW: Signal Providers UNIGMA FX was one.
4xsignals another.


Well I hope this helps some of you or at least gives you some idea's, hope I havent missed anything.


Regards

mark3


HUH!! Why every newbie has to be burnt by Unigma?
initialsBB is offline   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 On
Forum Jump