- Search Crypto Craft
- 1,856 Results (15 Threads, 1,841 Replies)
- Gumrai replied Nov 6, 2016
I don't know if/when I might have time to do this.
Ichimoku Cloud Break Out Email Alert
- Gumrai replied Nov 5, 2016
You need to study the documentation and understand what the code is doing while( TimeDay( iTime( NULL, i, 0 ) ) == iTime( NULL, i + 1, 0 ) ) Here you are comparing an integer to a datetime and you have the parameters in the wrong order. This should ...
mt4 - 'While Loop Operator' issue - ( not responding )
- Gumrai replied Nov 5, 2016
That was an example and note that I wrote which you obviously haven't. If you are going to use this on timeframes>D1. then use iTime and iOpen
mt4 - 'While Loop Operator' issue - ( not responding )
- Gumrai replied Nov 4, 2016
I have amended the code, so if anyone has downloaded the dashboard from post #45 please delete it and replace it with this. Rookie mistake rectified, I hope. I have added an input to allow only certain timeframes to be alerted. As usual, I have done ...
GumRai's Dashboards
- Gumrai replied Nov 3, 2016
It is likely that the smoothed HA uses the same buffers as the normal HA, but I suspect that the smoothed HA has additional inputs so an iCustom call will not work simply by changing the indicator name, you would need to include the additional ...
Urgent advice: changing an indicator in an EA
- Gumrai replied Nov 3, 2016
In your posted code string _obj_desc_Price = "%$"; //---Level Prices _obj_desc_Price = DoubleToStr ( _obj_desc_Price, 3 ); _obj_desc_Price = NormalizeDouble(_obj_desc_Price, 3 ); you can't seem to make up your mind whether the variable is a string ...
I will code your EAs and Indicators for no charge
- Gumrai replied Nov 3, 2016
I don't see that you give _obj_desc_Price a value in your code
I will code your EAs and Indicators for no charge
- Gumrai replied Nov 3, 2016
If an indicator uses exactly the same inputs and in the same order and uses the same buffers then yes. Most likely this will not be the case though.
Urgent advice: changing an indicator in an EA
- Gumrai replied Nov 3, 2016
Hello Rizla, I am embarassed to admit that I have made an error in the code that only a rookie should make. I have asked the mods to remove the attachment. I will post with the corrected code soon as I also want to see about only alerting on certain ...
GumRai's Dashboards
- Gumrai replied Nov 3, 2016
The last parameter in ObjectSetFiboDescription is a string, so that's where you use DoubleTo Str or create a new string variable string str_obj_desc_Price = DoubleToStr ( _obj_desc_Price, 3 );
I will code your EAs and Indicators for no charge
- Gumrai replied Nov 2, 2016
Hello, are you referring to the last modification with the alerts? I did have to change a fair bit of the code and didn't test it so I may have made an error. I don't have the file on my laptop (which I am currently using) so will take a look at it ...
GumRai's Dashboards
- Gumrai replied Nov 2, 2016
From post #153 by Bondo Note Same Account, not different accounts, so 1666 is the total loss
Help Me Grow My Account!! I'm about To Lose My House :-(
- Gumrai replied Nov 1, 2016
Ok, your losses are higher than I thought, but losing 1,666 GBP over 88 weeks is less than 20 GBP per week on average and in the first 10 months of this year you have only lost 58 GBP. image If such losses lead to you losing your family and house, ...
Help Me Grow My Account!! I'm about To Lose My House :-(
- Gumrai replied Nov 1, 2016
Count your open orders int buy_orders=0; int sell_orders=0; for(int x=OrdersTotal()-1;x>=0;x--) { if(OrderSelect(x,SELECT_BY_POS) && OrderMagicNumber()==MagicNum) { if(OrderType()==OP_BUY) buy_orders++; if(OrderType()==OP_SELL) sell_orders++; } } ...
OrderSend issue
- Gumrai replied Oct 31, 2016
You have missed the point. His trade explorer shows that he has lost less than 20 GBP over 89 weeks. How can losing so little mean that he is in danger of losing his house ??
Help Me Grow My Account!! I'm about To Lose My House :-(
- Gumrai replied Oct 31, 2016
You didn't completely share your trade explorer because you hide the balances. If you have a balance of 20 GBP and as your trade explorer shows an all time loss of 41% over 89 weeks, that, by simple calculations means that your starting balance, 89 ...
Help Me Grow My Account!! I'm about To Lose My House :-(
- Gumrai replied Oct 31, 2016
Bondo, you have responded to some posters, but no response to my post Perhaps you should open your trade explorer so that everybody can actually see what a small account you have been trading with for 89 weeks and that you have only lost pocket ...
Help Me Grow My Account!! I'm about To Lose My House :-(
- Gumrai replied Oct 30, 2016
This can be done but it is quite complicated to do. I'm sorry but I will not add this.
GumRai's Dashboards
- Gumrai replied Oct 29, 2016
Sorry, but I have no idea what you are asking for. Also it doesn't appear to have anything to do with dashboards. Please don't make off-topic posts.
GumRai's Dashboards