- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Jan 20, 2016
Sorry, I've been having problems with my MT4 crashing, I will get back to you as soon as I can. Just to be sure, when you attach the EA, do you have a smiley face in the top right corner?
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 18, 2016
It's the end of my day here so I will check the code tomorrow
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 18, 2016
What is the order's entry price? What is the stop loss? What is the current price? Is the pair the same as the chart that the EA is attached to? Was the trade opened manually? What are the inputs that you have set for the EA? Is there any error ...
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 18, 2016
Yes, it's the same as the other with the close all at either equity % loss or currency loss
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 18, 2016
Hello, Try this. it works on loss from trades that were OPENED after midnight Be aware that if the EA closes all trades because of hitting the loss threshold. If you open a new trade it will be immediately closed by the EA as the loss threshold has ...
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 17, 2016
Hello, I've modified the codes for all the dashboards so that the dashboards will not maximise automatically when changing timeframes.
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 17, 2016
This is just a very basic EA that I use to add to code for testing my EAs that work off of manually entered trades in the strategy tester. As I say, it is very basic, the lot size is set in the inputs, so this can't be changed. It is run in visual ...
Weekend practice trading
- Gumrai replied Jan 17, 2016
If you want it to work on all pairs set "Pairs to Close" to all pairs and you only need to attach it to 1 chart If you are placing manual trades just leave the magic number as 0 Yes, the terminal needs to be open and connected for it to work
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 17, 2016
Don't judge everyone by the actions of a few. There are still a lot of helpful people here.
I need help with strategy tester
- Gumrai replied Jan 17, 2016
I was talking about the MT4 tester. Your image is the MT5. I have never used the MT5 tester so don't know if it has visual testing.
I need help with strategy tester
- Gumrai replied Jan 17, 2016
Try dragging the top border of the tester window up to make it taller
I need help with strategy tester
- Gumrai replied Jan 16, 2016
Hello, try this. If magic number is set to 0, it will not interfere with trades placed by an EA (as long as the EA uses a magic number). Double click on the input for "Pairs to Close" and you can choose between all pairs and chart pair only.
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 16, 2016
Dear Gumrai, you did this fantastic quantum Dashbord for me and i really love it so much but there is one little thing. If i minimize the Dashboard and then i change the Timeframe, the Dashboard maximizes automaticly. I would be very grateful if you ...
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 16, 2016
Sorry, but I do not normally supply mq4 files anymore.
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 16, 2016
I can see nothing wrong with the code, it should play the sound. It means that there may be other reasons for it not working File name incorrect File not in the Sounds folder Stop loss not being modified, ie Emergency StopLoss and hidden stoploss ...
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 15, 2016
I haven't looked at the code, You may not be aware that if there is a pop-up alert at the same time as a play sound alert, the sound is not played. That may be why you are not getting the sound alert.
I will code your EAs and Indicators for no charge
- Gumrai replied Jan 7, 2016
I don't know about whether it is more or less efficient. I have used multi-dimensional arrays to store trade details, but if you want to store a string, it requires to use a separate array. With a struct, all variable types can be stored in 1 array. ...
Trying to capture Time/Date info in an Array
- Gumrai replied Jan 7, 2016
2 different platforms 2 different accounts Probably 2 different leverages
How does MT4 calculate margin?
- Gumrai replied Jan 7, 2016
You could use a struct struct TradeSignals { double SignalPrice; datetime SignalTime; }; TradeSignals BuyTradesArray[]; if(Signal) { int as=ArrayRange(BuyTradesArray,0); ArrayResize(BuyTradesArray,as+1); BuyTradesArray[as].SignalPrice=price; ...
Trying to capture Time/Date info in an Array
- Gumrai replied Jan 6, 2016
When the OP stops being so defensive and actually pays attention to the replies that he has received, hopefully he will realise that he has received a lot of good snippets of advice. Well done all of you that have tried to help the OP.
Adding Orderprofit()