- Search Crypto Craft
- MrPip replied Mar 31, 2014
That is just a warning. OrderSend is a function that returns a value. Add int temp = OrderSend... and the warning will go away. Robert
MT4 New build 600 is released
- MrPip replied Mar 31, 2014
Did a quick look at the code under the old build and it appears the string handling is probably the problem. Will check more on the new build later. Robert
MT4 New build 600 is released
- MrPip replied Mar 30, 2014
There are a lot of scripts around that. If you have the source code you can post here and I will take a look Or explain what you need and I will check if I already have one or two. I have at least 4 custom ones that calculate lots based on percent ...
MT4 New build 600 is released
- MrPip replied Mar 30, 2014
Have you tried using restor with Windows? See if you can restore before the new build was done. Robert
MT4 New build 600 is released
- MrPip replied Mar 30, 2014
My own source code is not an issue for the most part. It is re-coding for clients using custom indicators that is the problem for the most part. And the change in folder structure broke all of my install programs. Even knowing ahead of time does not ...
MT4 New build 600 is released
- MrPip replied Mar 30, 2014
There is an input that was remove3d because of overhead. Just change All_Bars to extern and problem solved. extern int Line_Thickness = 2; int All_Bars = 1000; // change this to extern double arrUSD[]; BTW, I am working on a new version described in ...
Trading system using relative strength
- MrPip replied Mar 30, 2014
I had similar problems as I use polynomial regression analysis, which includes linear. I have fixed all of the problems cause by arrays. When you say support no longer exixts for the old EA do you mean you do not have the source code? I have now ...
MT4 New build 600 is released
- MrPip replied Mar 30, 2014
I just posted this on the yahoo MT4 E & I group. I just tried to compile an EA from a client and it would not compile on build 509 because the compiler is looking at the new MT4 folder from build 610. I have both builds on the same machine, common ...
MT4 New build 600 is released
- MrPip replied Mar 22, 2014
Are you certain the folder is gone? I ask because I still have a preset folder but no longer under experts, it is in the data folder under MQL4. I do not use presets so do not know if any files were deleted. To get to the folder go to the top menu ...
MT4 New build 600 is released
- MrPip replied Mar 17, 2014
We could do this over skype. Better to show you the steps than to just do the work for you although I can do that as well. After all, "Teach a man to fish...". Most of the fixes I have needed to do so far have been trivial, just tedious at times. I ...
MT4 New build 600 is released
- MrPip replied Mar 17, 2014
If you remember your presets or have the file somewhere it is easy to incorporate into the EA itself. I have done this for several clients already and everything works for them as before now. Just have an input for UsePreSets. Then in init set the ...
MT4 New build 600 is released
- MrPip replied Mar 11, 2014
My approach exactly plus I use a HighLow rectangle for the middle. Sometimes the middle high or low is the third candle with 2 or more after that are very close before the true fractal forms. Robert
Fractals, ZZ & the Pissing Dog
- MrPip replied Mar 10, 2014
G First declare a global string Indicator_Name = "CCFp4_1"; Then add more if needed in init. int init() { Indicator_Name = StringConcatenate(Indicator_Name, ": "); if (USD) Indicator_Name = StringConcatenate(Indicator_Name, " USD"); After adding ...
The gg53 "Killing Zone"
- MrPip replied Mar 9, 2014
There is another similar product called Hawkeye Fatman. It would be worth checking the way that one is traded. Look for the stongest and weakest at extremes and when they are starting to come back together enter a trade. Robert
Trading system using relative strength
- MrPip replied Mar 9, 2014
Not sure if I posted this here but this version has code to add prefix or suffix to the currency pair. There are inputs for the prefix and suffix. There is also an input to show only pairs on charty. BTW, there are other commercial products that are ...
Trading system using relative strength
- MrPip replied Mar 5, 2014
Thanks for the pdf flx23, I will be studying it if full. I have yet to start coding my ideas due to work fixing "new" MT4 bugs. Robert
Fractals, ZZ & the Pissing Dog
- MrPip replied Mar 5, 2014
I have seen this error when the window number is determined in init. I fixed in mine in the start function using a bool WindowFound to determine if the code has been run for finding the window number. If you have problems with this I can post a code ...
The gg53 "Killing Zone"
- MrPip replied Feb 23, 2014
No comments about the Chess Opening idea. Maybe no chess players in the group. Here is a better explanation of my approach. Start at the oldest bar and move forward until a confirmed zigzag is found. The zigzag bar will be the start of the tree. If ...
Fractals, ZZ & the Pissing Dog
- MrPip replied Feb 23, 2014
I am again not getting emails. TMA repaints so I do not know if your currency strength indicator is accurate, especially in the past. There are EAs that do not repaint and I will add code for them to see if that helps. Robert
Fractals, ZZ & the Pissing Dog
- MrPip replied Feb 16, 2014
The reason MT4 is so popular is because so many programmers gave of their time and talents to build a large library of custom indicators and other tools. If many of these same programmers changed their support to one of these other platforms the one ...
Platform alternatives to Metatrader