- Search Metals Mine
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Jun 30, 2014
This would be a half-baked idea if enough thought had actually been put in to turn on the oven! If a buy hits TP, open another buy??? Why hand the broker the spread by closing a buy trade and opening a new buy trade instead of keeping the original ...
I will code your EAs and Indicators for no charge
- Gumrai replied Jun 12, 2014
FXdaytrader does a lot, but he cannot be expected to satisfy the hundreds of requests for free modifications on this thread alone. You can submit a request at url Of course it is not free, but fairly inexpensive.
I will code your EAs and Indicators for no charge
- Gumrai replied Jun 11, 2014
Hi, Sorry, at the moment I have absolutely no spare time. I will have a look when I do have some time.
Candle Pip Counter in MT4
- Gumrai replied Jun 9, 2014
You have already posted this exact post at #4838. Please don't repeat your posts. Your post is a statement. If you intended to post a request, then please note that requests normally include a Please and/or a Thank you.
I will code your EAs and Indicators for no charge
- Gumrai replied Jun 6, 2014
Please try this I haven't changed the basic code much and note that it works on Points, not pips, so with a 5 digit broker, you need to input 30 for 3 pips
I will code your EAs and Indicators for no charge
- Gumrai replied Jun 4, 2014
SymbolInfoDouble("EURUSD",SYMBOL_ASK) or MarketInfo("EURUSD",MODE_ASK)
Alert for multiple pairs
- Gumrai replied May 31, 2014
I don't believe that your first one will work properly Personally, I would do it if (OrderType()==OP_BUY && MathMax(iOpen(NULL,1,1),iClose(NULL,1,1))<NormalizeDouble(OrderOpenPrice()-StopLoss,3) )
Logic Question on Trade Exit Code
- Gumrai replied May 27, 2014
I don't know what you mean by "nesting" You cannot nest functions as I understand "nesting". You can call functions from within another function, no problem I don't believe that there is any limit on the amount of function calls allowed.
MT4 Function Question
- Gumrai replied May 23, 2014
pipall is amitkk's latest user name. As you know already, he;s just a time waster.
I will code your EAs and Indicators for no charge
- Gumrai replied May 7, 2014
That is probably due to a missing ";" , ")" or "}" before the "y". If so, it wouldn't have compiled prior to the updates either though.
Problems compiling an indicator after new MetaEditor Update
- Gumrai replied May 6, 2014
There is nothing in the code that you posted that would have placed a stop loss. I am busy with other things at the moment, but will maybe take a look again later.
I will code your EAs and Indicators for no charge
- Gumrai replied May 5, 2014
I don't think that it is a case that it doesn't work with build 625. But it doesn't check whether the trade is actually in profit or not and will try to modify SL to break-even while a trade may be making a loss. That will result in errors Please ...
I will code your EAs and Indicators for no charge
- Gumrai replied May 4, 2014
Your method results in an approximation, not the true value. Just look at the 6 H4 candles that span a complete day, the 60 SMA will be different for each of those 6 candles whereas if reflecting the 10 SMA from the Daily tf, all 6 candles will have ...
Seeking MTF MA Indicator for MT4 build 625
- Gumrai replied Apr 30, 2014
Put this in a script and you should see how it works double num_array[2][10]; double temp_array1[10]; double temp_array2[10]; for(int x=0;x<10;x++) { num_array[0][x]=High[x]; num_array[1][x]=Low[x]; } string H_out="Highs are "; string L_out="Lows ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 29, 2014
Show what you have changed in your code and then I/we can tell you
How to know how much losses were in the last 10 trades
- Gumrai replied Apr 29, 2014
You need to understand that the Orders indexes do not start at 1, they start at 0. int OrdHistory=OrdersHistoryTotal(); OrderSelect(OrdHistory,SELECT_BY_PO S,MODE_HISTORY); Say for example that there are 10 orders in OrdersHistoryTotal() They are ...
How to know how much losses were in the last 10 trades
- Gumrai replied Apr 29, 2014
You have this line in your code if(OrdHistory>0 && OrderSymbol() == Symbol() && OrderMagicNumber() == MagicNumber) but you haven't selected an order prior to it.
How to know how much losses were in the last 10 trades
- Gumrai replied Apr 28, 2014
Put it on different charts and give each instance its own individual magic number. Of course, the code will need to be able to only work with trades with a particular magic number.
Running multiple platforms to test different settings of EA
- Gumrai replied Apr 28, 2014
The best solution is to modify the code so that it will work in build 600+ Sometimes this is simple to do, other times can be a lot more complicated. You could upload some of your important indis (mq4, not exe files) and maybe somebody will modify ...
MT4 build 625 issues
- Gumrai replied Apr 27, 2014
I've modified the code and it should be ok now
Alerts for AOAC indicator