- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Mar 7, 2016
Put the .wav file into the MT4 Sounds folder. Then change the Sound File input of the indicator.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 7, 2016
Never, never,NEVER dismiss your skill with the English language. I have read many of your posts and I forget that you are not a native speaker. You have every right to be proud of your use of the English language. Don't forget that.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 7, 2016
I see that Maximguita has already answered. Just to add In MT4 click File, then Open data folder Then double click MQL4 followed by either Experts or Indicators Then you can either note the file path or drag the indicator/expert from Downloads into ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 6, 2016
I have edited your code to make it easier to read (for me, at least) void set_stop_tp() { int check; int totalorders=OrdersTotal(); for(int i=totalorders-1;i>=0;i--) { if(!OrderSelect(i,SELECT_BY_POS)) { Print(TimeToStr(TimeCurrent(),TIME_SECONDS)," ...
Help With Understanding Error Code(s) in MT4
- Gumrai replied Mar 6, 2016
I can't speak for everyone else, maybe it is because I have a small computer screen. But for me, trying to read your code requires a lot of scrolling from left to right and back again. With having to scroll, I can't follow the code. Does anyone else ...
Help With Understanding Error Code(s) in MT4
- Gumrai replied Mar 6, 2016
Sorry, but I have no spare time to look into something like this. Maybe somebody else will be able to help you.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 6, 2016
Hello, I've added sound and also the options for email and push notifications. Obviously, as it is the weekend, I am unable to test it on a real-time chart, so let me know if there are any problems. Before anyone asks, I don't often supply the mq4 ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 5, 2016
Hello, I wrote that code 2 years ago, it should be a simple matter to add the sound alert. I will do it tomorrow for you.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 2, 2016
Using the word "issue" makes it sound like you have had a problem with an EA that I have coded for you. As I have never coded an EA or anything for you, this is not the case. I think that it is just a poor choice of word as you have only made an ...
How to close by order sequence?
- Gumrai replied Mar 1, 2016
I have done a small amount of work with indicators for MT5, but never been able to get my head around dealing with trades in EAs
How to close by order sequence?
- Gumrai replied Feb 27, 2016
No, I am not trying to be funny. You said Just because it is freely available on the internet does not make it legit. I just gave an example of something other than stolen code that you would find easier to relate to.
Add email alert to this indicator?
- Gumrai replied Feb 27, 2016
If I found a cloned copy of your bank card complete with your passcode, freely available on the net, do you think that it would be legit for me to use it?
Add email alert to this indicator?
- Gumrai replied Feb 26, 2016
This should allow you to operate with symbols other than just the chart symbol int slippage=10; double minimum_profit=100.00; int x; double trades[][2]; int total=OrdersTotal(); if(total>1) { ArrayResize(trades,total); for(x=total-1;x>=0;x--) { ...
How to close by order sequence?
- Gumrai replied Feb 25, 2016
Hello, This is the code that I use when I have to open trades manually when testing in the strategy tester. Unfortunately OnChartEvent doesn't work in the tester, so I have to have it in OnTick ...
Simple Buy and Sell Button EA for MT4
- Gumrai replied Feb 24, 2016
In this case, it would make no difference. When looping through orders to close trades and using SELECT_BY_POSITION, you should always decrement.
How to close by order sequence?
- Gumrai replied Feb 22, 2016
I have given you an example loop. Expand on it to do what you want it to do.
How to close by order sequence?
- Gumrai replied Feb 21, 2016
I don't know what the TMA indicator is. I have little time at the moment. I don't know that it is even possible to write a custom indicator to universally work on whatever indicator is in the sub-window.
Help adding to indicator