- Search Energy EXCH
-
CodeMeister replied Feb 5, 2013The SMTP part is the trickiest. There lots of rotten, unworkable code out there. Once that is done, its just tieing everything together and addiing some bells and whistles.
Email alert app to send screenshot?
-
CodeMeister replied Feb 4, 2013I think both pieces are available. But again like me you might find a gap and find its simpler to write it from scratch. Its a very good programming exercise. Good luck.
Email alert app to send screenshot?
-
CodeMeister replied Feb 4, 2013I actually built a scustom system that does all this and more. I would never give it away for free even for a degraded version. Too much work involved and too much support expected. By support, I mean for some one else to use it - not for my ...
Email alert app to send screenshot?
-
CodeMeister replied Feb 4, 2013We used to have a saying amoung techies - coding is easy except for the person who actually does it.
Looking for a Support and Resistance indicator
-
CodeMeister replied Feb 4, 2013Does your broker not have a help desk? The problem is more likely related to your broker and not to MT4. Edit: the problem might be using a comma instead of a decimal point. Commas are only used in some countries, the international standard is a ...
A little help please? Unable to buy and sell in MT4
-
CodeMeister replied Feb 3, 2013url url Already done. There is a single chart version and a dashboard one for monitoring multiple pairs.
I will code your EAs and Indicators for no charge
-
CodeMeister replied Feb 2, 2013No doubt overloading memory resources is the cause of the problem but MT4 also has memory leaks which make it worse. You could try logging off MT4 before back testing to see if that helps. Otherwise you to upgrade or reduce the load.
MT4 freezes when doing backtest with multiple time frame chart
-
CodeMeister replied Feb 1, 2013Is this your first project? Why don't you start with something easy and work on harder ones as your skills improve. Thats what I do when learning a new language.
Help with coding for a beginner
-
CodeMeister replied Feb 1, 2013No doubt your friend was careless and someone took advantage. Did he lose any money? Here is some further discussion and advice. url
Is it possible for MT4 programmers to hack into other trader accounts
-
CodeMeister replied Jan 31, 2013Indeed they do exist. This week, one of them was updated. Just look at the postings for the last several days. Some people do it themselves with EA builders. Most are unprofitable so don't waste a lot of time.
MA Crossover EA needed
-
CodeMeister replied Jan 25, 2013Good question. I think it gets called as soon as it is loaded right after Init(). If not you could do it inside Init() or put it into a script.
how to program EA to run on offline chart
-
CodeMeister replied Jan 25, 2013I haven't actually done it myself, but this is the approach I would take. In the Start() function I would put an infinite loop (While(true)), and a Sleep(). When something neeeds to be done, do it then back to sleep. This isn't suitable for all ...
how to program EA to run on offline chart
-
CodeMeister replied Jan 24, 2013As I stated in the prevoius thread, there is no point in chasing the explanation when a solution is at hand. I strumbled on the solution by chance. Several years ago in another thread someone was having problems with WindowScreenShot() which I ...
Problem capturing Indicator screen shot
-
CodeMeister replied Jan 24, 2013Possible, but not likely. Possible because poor coding can result in strange effects. The way to identify problems is through a process of elimination. You haven't addressed my suggestions and I won't make any others until you do.
EA opens but won't close all trades
-
CodeMeister replied Jan 24, 2013Ignore the previous by Irenish. He is hijacking this thread for his own purposes. There are known problems with using WindowScreenShot() in indicators. It was discussed at length in this thread, so I won't repeat it here. If you are using something ...
Problem capturing Indicator screen shot
-
CodeMeister replied Jan 23, 2013Another thought - could this be some sort of FIFO problem? You didn't say whether the tades are in one pair or different. I think you implied a single pair.
EA opens but won't close all trades
-
CodeMeister replied Jan 23, 2013Another thought occurred to me. Most problems with closing multiple trades at once have to do with incrementing the loop counter accessing current trades. The proper way is to decrement the loop counter. That guarantees that all trades needing to be ...
EA opens but won't close all trades
-
CodeMeister replied Jan 23, 2013I can't imagine an actual reasonable limit, but of course poor coding would introduce one as a side effect. Does it trade single orders properly? Perhaps that is all it was designed to do.
EA opens but won't close all trades
-
CodeMeister replied Jan 21, 2013Use something like DoubleTosStr(value, nDigits) where nDigits is an int set to 6 or whatever you want.
Floating point question
-
CodeMeister replied Jan 20, 2013That is an interesting suggestion and I will consider ir. I stayed away from MA crossovers since there are already so many out there. Edit: After some consideration, I realized that another project would be spreading myself too thin. I alreday have ...
Pips To MA Alert - Dashboard