- Search Crypto Craft
-
Beerrun replied May 25, 2019The members of this forum should not be subjected to the effects of your personal issues. If you know that this can happen to you then show some self-control and stay off the forums during that time. Edit: Phylo has since been editing and deleting ...
I will code your EAs and Indicators for no charge
-
Beerrun replied May 25, 2019Im of the opinion everyone is wrong: him for the insulting words, you for the spam posting, and me for making unnecessary comments.
I will code your EAs and Indicators for no charge
-
Beerrun replied May 24, 2019Calling another member stupid but you are asking for an ex4 to be modified... And posting the cracked mq4 of it as if it is not decompiled...
I will code your EAs and Indicators for no charge
-
Beerrun replied May 24, 2019Based on his last two posts he's trending towards giving us a 100% system lol
I will code your EAs and Indicators for no charge
-
Beerrun replied May 24, 2019I'd suggest just finding a new indicator with a mq4. The ex4 does show its buffer values to the terminal but it would be work to figure out the logic behind it.
Please help me with push notification
-
Beerrun replied May 24, 2019Without the source code nothing can be done aside from creating a new indicator

Please help me with push notification
-
Beerrun replied May 24, 2019You just had to copy/paste in the code but yes try this. Edit: file removed by request
Please help me with push notification
-
Beerrun replied May 24, 2019Take the bar number sent to the function manageArr() and add it to the beginning of the object name void manageArr(int j,color clr,int theCode,bool up){ string objName = IntegerToString(j)+PREFIX; Or the code can be changed to use a buffer instead ...
Please help me with push notification
-
Beerrun replied May 24, 2019When using an if statement and not including brackets, only the first line of code will be an expression of that if statement. So here: if ( ExtBuffer0[j+SIGNAL_BAR+1] > 0.0 && ExtBuffer0[j+SIGNAL_BAR] < 0.0 ) manageArr(j+1, clArrowBuy, 233, false); ...
Please help me with push notification
-
Beerrun replied May 17, 2019You're welcome buddy. I already gave you the correct code but I'm glad you figured out the fix yourself

Closing Last Order
-
Beerrun replied May 17, 2019If NumOfTrades is not a string, then that is why the warnings. ticket = OpenPendingOrder(0, iLots, BuyLimit, slip, BuyLimit, Stoploss, 0, EAName + "-" +IntegerToString(NumOfTrades), MagicNumber, 0, Aqua);
Closing Last Order
-
Beerrun replied May 17, 2019It is decompiled code
I will code your EAs and Indicators for no charge
-
Beerrun replied May 17, 2019Ah I should have mentioned that time in mql4 is counted in seconds, so you’d have to add the difference in seconds to your object create
MT4 OBJ_VLINE future vertical line
-
Beerrun replied May 16, 2019Here is the other indicator I mentioned in our pm. Read the about tab for the logic.
I will code your EAs and Indicators for no charge
-
Beerrun replied May 16, 2019Yes it is possible. You would take the current candle time and add time to it. For example: ObjectCreate(0, "Vline", OBJ_VLINE, 0, iTime(NULL,0,0)+(Period()*60), 0);
MT4 OBJ_VLINE future vertical line
-
Beerrun replied May 16, 2019I just meant "your solution". I will have to look into it for myself

MT4 EA redundancy solution?
-
Beerrun replied May 16, 2019Try this
It is coded for points to be usable on instruments other than forex, however the default is set at 10 points to represent a forex pip. Please let me know if you'd like any changes.I will code your EAs and Indicators for no charge
-
Beerrun replied May 16, 2019Yes that is the issue and it’s dependent on what trading strategy you use; it would be difficult for scalping low timeframes. Also need a short enough delay to not miss entries if the master fails and the slave starts opening trades. It would be ...
MT4 EA redundancy solution?
-
Beerrun replied May 16, 2019This isn’t the best solution but: How about having the same ea running on two pc’s; the master would not be changed, but the slave would have a time delay added before it opens a trade. If the slave does not detect any trades opened by the master ...
MT4 EA redundancy solution?