- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Oct 28, 2016
What most of you don't seem to realise is that this person is either a troll or even worse a scammer. Maybe there are some kind-hearted but gullible people that will offer to send some money. In his 1st post he claims that his account balance is 50 ...
Help Me Grow My Account!! I'm about To Lose My House :-(
- Gumrai replied Oct 27, 2016
You seem to have taken my post as a personal attack. It wasn't. Just a fact of life. One click disables all EAs from trading, it is very easy. The reason that you move your stop losses is because you always think that THIS time it can't possibly ...
Cannot move stoploss order once entry is triggered script
- Gumrai replied Oct 27, 2016
It would be a total waste of time to write such an EA. If you don't have the self discipline, then you will simply disable the EA.
Cannot move stoploss order once entry is triggered script
- Gumrai replied Oct 27, 2016
I've done minimal testing on this, let me know if there are any problems. You may find that you get a flurry of alerts when first starting it, especially when you start the platform and the indicator is on a chart when history is updated.
GumRai's Dashboards
- Gumrai replied Oct 26, 2016
Why use an array? double PreviousTick=0; void OnTick() { if(Bid>PreviousTick) { //current is larger than previous tick } PreviousTick=Bid;
MQL4 Problems checking current bid vs past tick
- Gumrai replied Oct 24, 2016
I think that when the values near the donchian channel, there can be times that there would just be too many alerts, si I don't believe that this is feasable.
GumRai's Dashboards
- Gumrai replied Oct 23, 2016
Assuming that you have changed the function to bool.. while(true) { if(orderclose(buy1,pos1,Bid)) break; }
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 23, 2016
bool close; if(close=orderclose(buy1,pos1,Bid)) is wrong. I think that you probably mean bool close; close=orderclose(buy1,pos1,Bid); if(close) { } or more simply if(orderclose(buy1,pos1,Bid)) { } Your function orderclose() has been declared as ...
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 15, 2016
Doubtless, the people who downloaded your EA are not coders, there are not 20 coders that regularly visit this thread. People download it because it is a free EA for them to try.
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 14, 2016
As has already been pointed out just a few posts back, the person that started (and named) this thread has not been around for over 6 years. If you want the thread title changed, contact admin, nobody who posts here has the power to change the ...
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 13, 2016
This comes up on this thread quite regularly..... people complaining that nobody has used their valuable spare time to code an EA or indicator for free. Quite a cheek really. In fact, if the few coders here devoted every single waking hour of every ...
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 8, 2016
You have the ] in the wrong place str+=IntegerToString(num_array[i,j]); should be str+=IntegerToString(num_array[i],j); but I don't think that would necessarily cause your error " unexpected end of program", possibly you have unmatched { and }
I will code your EAs and Indicators for no charge
- Gumrai replied Oct 8, 2016
I don't think that you sound negative at all. What you say is valid as there has already been requests for coding. This could develop into a really good thread for those who are really interested to learn, but if it gets hijacked by people wanting ...
How to Build your EA
- Gumrai replied Oct 6, 2016
Most GUIs will start with an OBJ_RECTANGLE_LABEL and then build with combinations of OBJ_LABEL, OBJ_BUTTON and OBJ_EDIT. So read up about these objects.
How to create "User Interface" in MT4? Help please
- Gumrai replied Oct 3, 2016
No code is sent when OK is clicked. It just sets up the input parameters. If you want to use something similar in a custom indi, read up on enum in the help documentation.
What code is sent when OK button is clicked in indi params?
- Gumrai replied Oct 2, 2016
I don't believe that RefreshRates() refreshes MarketInfo data. As you don't use any of the pre-defined variables in your OrderSend(), I don't see that RefreshRates() is necessary there either. It would be if you were using the chart symbol and Ask ...
Where to place RefreshRates()?
- Gumrai replied Sep 18, 2016
I don't see where you size the array. If it is an indicator, why not simply use a buffer?
MQL4 Array - Problem
- Gumrai replied Sep 16, 2016
Sorry, in that case, I don't believe that it is possible.
I will code your EAs and Indicators for no charge