- Search Metals Mine
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Apr 2, 2016
Hmmm, doesn't seem to be a lot of interest in this. I have found 1 bug in the code for the multi-dashboard. That is if you remove the dashboard that is maximised from the chart, it is not possible to access the others. So if you want to remove one, ...
GumRai's Dashboards
- Gumrai replied Apr 1, 2016
Click on Charts and then click Auto scroll or click the Auto scroll icon
MT4 navigational tips and techniques
- Gumrai replied Apr 1, 2016
Hello Pipologist. When I talked about using Global variables, I meant variables declared outside of any function, those that most coders declare after the inputs. You are referring to Global Variables of the Client Terminal which are accessible by ...
Is There an Alternative To OrdersTotal() in MT4??
- Gumrai replied Mar 31, 2016
How will it lead to problems if using more than 1 EA? Pipologist is not a newbie coder and I am sure that his method of counting takes this into account My suggestion offered a solution so that the results from his count code could be accessed by ...
Is There an Alternative To OrdersTotal() in MT4??
- Gumrai replied Mar 31, 2016
Count your orders once at the beginning, either save as Global variables or pass by reference to the exit functions. If you successfully exit a trade in the function, reduce the variable by 1
Is There an Alternative To OrdersTotal() in MT4??
- Gumrai replied Mar 28, 2016
That script cannot write History pool details, another script or expert must be over-writing the file. Maybe change int handle=FileOpen("OrdersReport.csv",FILE_WRITE|FILE_CSV,"\t"); to int ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 28, 2016
That code does not compile, that is why you don't have the ex4 created Change if(handle<0) return(0); to if(handle<0) return; and compile
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 28, 2016
It may be that the "test" that you are compiling is not the "test" in the script file. If you hover your mouse pointer over the file name near the top of the compiler window, the filepath should pop up next to the pointer.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 27, 2016
Siminz I have added the Average Bar Range in brackets in this dashboard. You will also need the AverageBarRange indicator in the indicators folder.
GumRai's Dashboards
- Gumrai replied Mar 27, 2016
I've made some changes to enable the dashboards to work better together (I hope)
Now clicking on the top left block will minimise the dashboard and you will see the name of the indicator and a dropdown icon. Clicking on the indicator name will ...GumRai's Dashboards
- Gumrai replied Mar 24, 2016
If you are talking about my EA, then yes, it will work for pending orders.
EA/Script for automatic stop loss on open orders
- Gumrai replied Mar 15, 2016
Sorry, I have no time for this at the moment.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 14, 2016
This may work if (ObjectFind(sLineId)>=0 ) ObjectDelete(sLineId); ObjectCreate(sLineId, OBJ_TEXT, 0, tTime, dPrice); ObjectSet(sLineId, OBJPROP_BACK, false); ObjectSetText(sLineId, sRange , 8, "Arial", cTextColor); ...
How to change this piece of code?
- Gumrai replied Mar 12, 2016
I really think that the MTF version is the only one needed. The other's name is a but misleading as it always shows pips from Day High and Low. I have modified it and you will now see a small square above the labels. Click and release on the square ...
Indicator that shows pips to HOD/LOD(high/low of day)?
- Gumrai replied Mar 11, 2016
Classy, maybe it is just me, but your post is just frantic , garbled and impossible to understand.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 11, 2016
Without seeing any code, how can you expect anyone to make suggestions? Does your code include error reporting?
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 11, 2016
Here' they are, corrected and compiled. Not tested
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 9, 2016
And this one allows you to choose the Time frame
Indicator that shows pips to HOD/LOD(high/low of day)?
- Gumrai replied Mar 9, 2016
Here's a basic indicator
Indicator that shows pips to HOD/LOD(high/low of day)?