- Search Metals Mine
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Apr 1, 2014
This is the Platform Tech forum. Maybe you should ask a Mod to move your thread to Journals or Systems?
I need an EA for my simple "Mother Candle Fibonacci System"
- Gumrai replied Mar 30, 2014
Hi, I modified the indicator slightly as I figured that you may not want it calculating for every bar. So you can input the Max_Bars now. If it is set to 0, all bars will be calculated. I've also added Decimal_Points, if set to 0, the pips will be ...
Candle Pip Counter in MT4
- Gumrai replied Mar 29, 2014
No problem. It only took a few minutes to modify the other one.
Candle Pip Counter in MT4
- Gumrai replied Mar 29, 2014
The OP did not request an EA, the request was for an indicator. As well as that. it is a simple aid to tell at a glance how big a candle is in pips, it is not expected to be some sort of magic indicator that will tell you where the market is going ...
Candle Pip Counter in MT4
- Gumrai replied Mar 29, 2014
The problem with something like that is that the chart ends up looking a mess Still, try this

Candle Pip Counter in MT4
- Gumrai replied Mar 28, 2014
This one may go some way towards what you want url
Candle Pip Counter in MT4
- Gumrai replied Mar 28, 2014
for (int i=0; i<=Bars; i++) The indexing for the arrays like Time,Open etc go from 0 to Bars-1 You are trying to access Time[Bars], which doesn't exist. Change to for (int i=0; i<Bars; i++)
Reading CSV into Indicator Buffer
- Gumrai replied Mar 27, 2014
I stopped reading the code here if(Digits==3 || Digits==5) pt=10*Point; else pt=Point; minlot = MarketInfo(Symbol(),MODE_MINLOT); stoplevel=MarketInfo(Symbol(),MODE_STOPLEVEL); if(start_lot<minlot) Print("lotsize is to small."); if(sl<stoplevel) ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 27, 2014
Of course, always try to follow good coding practice.
Compile Error MT4 (600) in following EA - Help Required
- Gumrai replied Mar 27, 2014
Those are warnings, not errors.
Compile Error MT4 (600) in following EA - Help Required
- Gumrai replied Mar 26, 2014
I have no idea if it would work or not, but have you tried a system restore to a point before you allowed the update?
Problems with new MT4 versions... again
- Gumrai replied Mar 26, 2014
I guess that you could probably use the OnTimer function set at 1 second and then check TimeCurrent against Period. Not tried it though
Script window position - changing starting point
- Gumrai replied Mar 25, 2014
I can't think of a one size fits all for metals etc. 3 different accounts with Gold
Please modify attached trailing and SL EAs
- Gumrai replied Mar 24, 2014
To be honest, I cannot remember a single time that OrderSelect has failed as long as the loop is coded correctly, so the print statement is really to help find errors in the code, if they exist double Profit(int Direction) { double reward=0; ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 24, 2014
I haven't looked at the code, but metals and oil tend to not fall into the 5 or 3 Digits categories, so anything that has inputs as pips may not calculate correctly. This can often be corrected by the user inputting points instead of pips.
Please modify attached trailing and SL EAs
- Gumrai replied Mar 24, 2014
That is a warning You do not check that the OrderSelect was successful and so subsequent code may use a previously selected order's details
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 24, 2014
If the current price is 1.00000, you cannot place a limit sell at 0.9970
Multiple limit orders in opposite directions
- Gumrai replied Mar 24, 2014
I had a look over your EA and it is quite poorly coded. There are a number of issues that really should be addressed. Although they may not be causing problems, for example, I don't understand why you have the input "GoShort" when it is impossible ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 23, 2014
You haven't attached an EA or shown the code. How can anyone help you if they can't read the source -code
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 23, 2014
When i==0 , how can this have a correct value ? MA1after = iMA(NULL, 0, MA1, 0, MA1Mode, PRICE_CLOSE, i-1);
Help with an EMA Crossover Alert Indicator