i tried to put it live but it doesnt trade..
can someone fix it for me?
tried it using strategy tester and it do works
Thanks in advance :)
WE HATE EA BUILDER
WE HATE EA BUILDER
???
EA builder creates bad code which the person who uses EA builder can't understand and therefore can't fix. And there is a lot of code and it is hard to learn from a lot of bad code.
Try searching the forum for recent threads containing "EA builder"
i tried to put it live but it doesnt trade..
can someone fix it for me?
tried it using strategy tester and it do works
Thanks in advance :)
If it doesn't trade then you have to look into terminal journal/experts and read the lines inside this
If you then still have noidea then you have to put in your EA some Comment or Print lines to see what is happening while your EA is attached to the chart
and if that not helps then it can be that you haven't allowed the EA to trade....
So what is there that has to be fixed
By the way you have to use SRC button to place the programming lines in your message
and like dabbler
say I hate EA Builder you don't learn basics of programming you need to have.... Take some time and study the basics
- Since there are no slaves here, there are only two choices: learn to code or pay someone. We're not going to code it FOR you. We are willing to HELP you. We are not going to debug 230 lines of code.
- EA builder makes bad code counting up while closing multiple orders.
- EA builder makes bad code Bars is unreliable (max bars on chart) volume is unreliable (miss ticks) Always use time
- EA builder makes bad code Not adjusting for 4/5 digit brokers
- EA builder makes bad code not adjusting for ECN brokers.
- "i tried to put it live but it doesnt trade.." What does the log file say?
- Since there are no slaves here, there are only two choices: learn to code or pay someone. We're not going to code it FOR you. We are willing to HELP you. We are not going to debug 230 lines of code.
- EA builder makes bad code counting up while closing multiple orders.
- EA builder makes bad code Bars is unreliable (max bars on chart) volume is unreliable (miss ticks) Always use time
- EA builder makes bad code Not adjusting for 4/5 digit brokers
- EA builder makes bad code not adjusting for ECN brokers.
- "i tried to put it live but it doesnt trade.." What does the log file say?
the log file doesn't show anything.. nothing on the journal.
usually we can see error from the journal but this one its none..
Thanks for replying WHRoeder
- EA builder makes bad code Bars is unreliable (max bars on chart) volume is unreliable (miss ticks) Always use time
So the chart cannot get any bigger than the option specified chart size -- you would think. So I wrote a little EA to prove how useless using Bars is.
int barCount=-1; int init(){ barCount = Bars; Print("Starting number of bars is " + barCount ); } int start(){ if( barCount != Bars ){ barCount = Bars; Print("Bar count is now " + barCount); } return(0); }
Works nicely as expected on the tester. I assumed it would fail miserably in a demo or live account. My chart size is set to 100,000 and there were more bars in the chart than that. So I changed maximum bars in the chart to 10,000 and restarted the program. Sure enough the first tick running the EA gave me a nearly right answer, 10,005. But on an M1 chart it is steadily updating as you would expect if the chart limit was being totally ignored. It is possible the chart limit only applies when you start the program.
I have ended up proving that I don't know what Bars is really expected to be doing :-(
i tried to put it live but it doesnt trade..
can someone fix it for me?
tried it using strategy tester and it do works
Thanks in advance :)
Dear 17021978 - that's old,
Read the entire thread about EA builder https://www.mql5.com/en/forum/139608
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use