- Search Metals Mine
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Apr 12, 2014
In many forums, it is very much frowned upon to double post and people who continue to do so may get banned. If there is any arrogance involved it is actually the poster who is guilty. It means that they consider themselves so important that they ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 12, 2014
I've been unable to make it work either (625)
Testing DRAW_FILLING mode in MT4 build 600+
- Gumrai replied Apr 11, 2014
Difficult to say now that it is the weekend, so no ticks coming in. I had another look at the code and you need to add a couple of lines after limit=Bars-counted_bars; limit=Bars-counted_bars; if(limit>Bars-12) limit=Bars-12; This is to prevent the ...
Need code to stop indicator deleting wrong signals
- Gumrai replied Apr 11, 2014
You may not have noticed, but the OP made the offer to code EAs over 2 years ago. He had some requests, but actually doesn't appear to have coded anything
I'll code your Expert advisor for free
- Gumrai replied Apr 11, 2014
Change this line for(i = 0; i <= limit; i++) { to for(i = limit; i >=0; i--) {
Need code to stop indicator deleting wrong signals
- Gumrai replied Apr 11, 2014
Looking at your chart, it appears to be working correctly. What do yo mean by "so that previous days' highs and lows appear in line with the day in which they occurred" ? Do you mean that you want yesterdays high line drawn spanning yesterdays ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 10, 2014
Probably, your indicator is calculating every tick. This means that conditions may be correct for a signal during the life of a particular candle, but by the time the candle closes, the conditions are no longer true. This means that a signal arrow ...
Need code to stop indicator deleting wrong signals
- Gumrai replied Apr 10, 2014
If you make one more post like this, I will be busy with the cleanup button. I don't know whether you are honestly having difficulties with the English language, or if you are a Troll. The fact that you are flooding this forum with unintelligible ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 9, 2014
As I wrote a few posts back, I didn't find this EA to be profitable and I dropped it because there was no interest.
Hi Lo Break EA
- Gumrai replied Apr 8, 2014
Not compiled or tested int start() { //---- int Ticket= -1; for(int x = 0; x<NumOfOrders; x++) { Ticket=-1; // set the variable to -1... no trade for(int i=0; i<NumOfAttemptsPerOrder && Ticket==-1; i++) { double sl,tp; RefreshRates(); ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 8, 2014
When you code the Ordersend/OrderClose, the last parameter is the colour of the arrow, if you have this at clrNONE or don't give the parameter a value, it won't draw the arrow. Manually, You can drag a trade from the Account history tab to the chart ...
Live Demo account shows EA entries but not exits
- Gumrai replied Apr 7, 2014
Sorry, but you are either going to have to learn to speak English or you will need to learn how to code. Your posts are garbled nonsense. If people can not understand what you are asking, nobody will be able to help you.
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 7, 2014
Amitkk, you are flooding this forum with requests. I believe that you must be using Google translate. Your posts make as much sense as if you had a mouse dancing on your keyboard.
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 7, 2014
And what if neither the TP or SL of the first order has been hit when the 2nd order is going to trigger? Ie if you have a BuyStop with its SL below the Sellstop level?. The 2nd order trigger will have been hit before the 1st hits SL
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 7, 2014
You don't need a script, just Tools\Options\Charts and unclick "show trade levels"
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 6, 2014
An exe file cannot be modified. You need the source file
Please edit the (Bbands stop) max Nbars to 250000
- Gumrai replied Apr 6, 2014
To be honest, I only glanced at your code and concentrated on the iMAonArray. I assumed that all the arrays were buffers, but looking at it again, it seems that wpr may be a dynamic array, not a buffer. If that is the case, then you don't resize the ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 5, 2014
for (i = limit; i >= 0; i--){ //If counted bars =0, i = Bars-1 wpr[i] = iWPR(Symbol(), 0, 45, i); double wprFastMA = iMAOnArray(wpr, 0, 2, 0, MODE_SMMA, i); //If counted bars =0, this is trying to use values from Bars+1, Doesn't exist double ...
I will code your EAs and Indicators for no charge
- Gumrai replied Apr 3, 2014
You will need to decide how many M1 bars you want to display the indicator. You may get odd results otherwise, if, like many, you have gaps in the M1 history Say, for example you want to go back 1000 bars, maxbars = 1000 if(maxbars>Bars-1) ...
I Need help to import MTF values in build 600+ of an Indicator
- Gumrai replied Apr 2, 2014
Try to move vertical lines above/below current price - not possible!
Wanted: Programmer To Develop Simple Auto Lot Size Script/Indi