| New signals service! | |
|
|||||||
| 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 |
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
||||
|
EA utility- request for code/programmers
Ok I see only one more obstacle to get over for me to really get working on strategy development. I don't know how to code...
however... I am aware of this utility http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ BUT I have not yet figured out how to get the custom indicators which are being developed here on to it. It has 'some' indicators but there are custom indicators in use here and in development. Can either someone show me how to use this utility WITH some of the custom indicators here (say aNina for example) or... could some coding/programming people here develop a similar utility and have it on the site? If this last hurdle can be overcome I'm going to really enjoy working with strategy development around here.... fingers crossed, is this doable? |
|
|||
|
Aaragorn,
Everybody saw this utility http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ and asked the questions about iCustom, Codersguru created the lessons and people asked the questions once again. It was many months ago. So you just wake up. About iCustom see this thread. iCustom function And probably there is a lesson about iCustom. And about all other questions concerning mql4 look at the Codersguru Lessons' section. Because in most cases the people asked the same questions already and it was answered and discussed enough many months ago. What I did concerning iCustom? I was reading that thread, tried to find the other information, then used this utility without iCustom, then corrected my EA manually inserting any indicators I wanted using iCustom. |
|
|||
|
But if you open this utility you will find "Custom indicator".
And you may use any indicator which is not mentioned. Anyone. It is example from Codersguru post: Code:
double diIXO21=iCustom(NULL,0,"LSMA in Color",14,1500,0,0)); parmeter 2 : time frame - 0 for current time frame. parmeter 3 : indicator name - here it's "LSMA in Color". parmeter 4 : this is a setting for LSMA - Rperiod = 14. parmeter 5 : this is a setting for LSMA - Draw4HowLongg = 1500. parmeter 6 : the line number (range from 0 to 7) - usually used 0. parmeter 7 : the working bar - 0 for the current bar. And this 'diIXO21' is equal, above or below something (close price or some value). In case of ASCTrendsig indcator it is above zero for example. The other example is I_XO_A_H indicator. This indicator is having 2 "lines" - red one and green one. It is one line (uptrend): Code:
double diIXO10=iCustom(NULL,0,"I_XO_A_H",BoxSize,0,1); Code:
double diIXO21=iCustom(NULL,0,"I_XO_A_H",BoxSize,1,1); So if the first line is above zero (Number/Variable in this tool) it means uptrend on the closed bar. We have it on the tool. http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ And it was described in Codersguru posts. But I am not using this utility for iCustom. I included this iCustom manually. This post helped me http://www.forex-tsd.com/1772-post4.html And I always looked inside the indicators' codes (and inside EAs' codes) just to have some examples. And in Codersguru training section there are some templates to create EAs (with iCustom as well). It is easy for me to have some "template" created by utility to include any iCustom indicators later. |
|
||||
|
how about this...walk thru using this utility with me to create an EA for the CatFX50 strategy for openings and a stepping trailing stop for exits.
here are the indicators for entries: http://www.forex-tsd.com/attachments...4?d=1149794278 http://www.forex-tsd.com/attachments...4?d=1149808932 http://www.forex-tsd.com/attachments...4?d=1149572720 strategy rules http://www.forex-tsd.com/attachments...c?d=1149174713 I havn't found a stepping trailing stop indicator yet that lets me scale out but that's what I have in mind trying when I can find one. For now it would be ok if the EA just did the entry automatically and I handled my exits manually I guess. see what I'm trying to do now? Last edited by Aaragorn; 06-10-2006 at 07:09 PM. |
|
|||
|
Quote:
Code:
if(iCustom(NULL,0,"0_IndInverse",2,cbars,1,i)!=0) return (i); a_Nina indicator is using aNina indicator (two different indicators). So you do not need to attach aNina indicator. You should attach a_Nina. |
|
|||
|
So always look inside the code of the indicator (or EA) even if you are not coder.
For all iCustom please go to Codersguru training section. For CatFx50 go to Nina section. You do not have your personal section yet so you should go to other people's section. |
|
|||
|
Translate MetaStock Code
Hello all,
i would like to ask your help to translate this piece of code into MT4 language : ( mov (zig,4,c),4,e) i believe there's connection between zigzag indikator and moving average.. Very very thank you... please help. Vic |
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to code this? | iscuba11 | Metatrader 4 mql 4 - Development course | 1 | 08-03-2007 04:22 PM |