- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Mar 4, 2015
No, people post requests here because they want free coding. There are a lot more people requesting free code than there are coders able and with free time to do it. Busy coders that are possibly being paid for code that they are currently working ...
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 4, 2015
If you don't receive a reply, assume that nobody has the time, or maybe not the interest to do what you require. It would be really silly if every request had 10 replies saying that they cannot do it.
I will code your EAs and Indicators for no charge
- Gumrai replied Mar 2, 2015
Press F8 or Right click on your chart and select properties In the color tab, set Grid to a color that stands out against the background color
MT4 navigational tips and techniques
- Gumrai replied Mar 2, 2015
Well, you can see the list of inputs, so just add at at the end, on a new line after input int fsize = 14; // Font size
MT4 navigational tips and techniques
- Gumrai replied Mar 1, 2015
Do you mean if you make a change to the default input values? If I want the new defaults applied to all instances of the indi or EA I add a new input such as input int NotUsed=0; Then when you re-compile, the new defaults will apply to all. If you ...
MT4 navigational tips and techniques
- Gumrai replied Mar 1, 2015
Classy and Motiram, Can I respectfully ask you to start a new thread in the strategy forum to continue your discussion. This thread is about MQ4 coding
I will code your EAs and Indicators for no charge
- Gumrai replied Feb 13, 2015
if ({TimeCurrent() - OrderOpenTime() >= (TradesWillExpireMins*60)} && OrderMagicNumber()==MagicNumber) Why do you have the {} in there. removing them may help
Is it possible to close all positions on mt4?
- Gumrai replied Feb 8, 2015
Yes, but I no longer release my source codes into the public domain
I will code your EAs and Indicators for no charge
- Gumrai replied Feb 8, 2015
This may be of use If you want to hide the lines, press "p" To show them again, press "p" again.
I will code your EAs and Indicators for no charge
- Gumrai replied Feb 8, 2015
I have added condition for Tenkan above/below the senkou span B Also Price above/below kijun Note that I have not tested this at all, just modified the code
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Feb 8, 2015
Hi, I checked the code and had made a silly typo so that the sell message was sent by push notification for both buy and sell. So version 3.3 need to be replaced with this
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Feb 8, 2015
As and when I have free time, I will re-visit this thread and see about applying some of the suggestions
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Feb 8, 2015
Which folder have you put the indicator in? if you open your terminal and click File\Open DataFolder \MQL4\Indicators That is the folder that the indicator should be installed to.
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Feb 8, 2015
Hi, Sorry about the delay in responding. I have been having problems with my internet connection. I will look into this.
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Nov 28, 2014
Yes, that is just a declared variable that is not used, it can be removed if you want, but does not affect the execution
I will code your EAs and Indicators for no charge
- Gumrai replied Nov 28, 2014
Remove the very last line return(0);
I will code your EAs and Indicators for no charge
- Gumrai replied Nov 28, 2014
As far as I can see, your " if " is redundant, it will always be true. So if you are using this code, it will try to open 2 orders every tick! BUT Ticket2=OrderSend(Symbol(),OP_BUY,L ot,Ask,3,0,0,"",MagicNumber,0,Blue) ; I doubt that it will compile ...
Controlling The # of Orders
- Gumrai replied Nov 26, 2014
Please try this It is a script, so you can assign a hotkey Apply once to save the current template again to remove the indicators and once again to re-instate Note that the actions are put into a queue and there can be a delay removing the ...
Need way to switch between 2 templates or hide all indicators