@jstap Good point; will do. Cheers.
Posts made by refaey
-
RE: EA Promotionposted in General Discussions
@jstap
A 21-year backtest goes through market turbulences (i.e. 2008) and shows how solid the EA is.I can show shorter backtest results, i.e., 2 years, showing amazing results with very low drawdown. However, because I use the EA myself on a live account, I wanted to make sure that it's solid throughout the years.
I haven't spent much time backtesting, therefore, I only have set files for EURUSD only at the moment. I will very much appreciate if people can backtest and come up with better settings.
-
RE: EA Promotionposted in General Discussions
I forgot to say, not all published backtests have a starting balance of $100,000. There's one with a starting balance of $1000.
-
RE: EA Promotionposted in General Discussions
@jstap Hmmm, it's one of the famous marketing strategies.
If you can recommend a better marketing strategy, please share.
Thanks for your feedback. -
RE: EA Promotionposted in General Discussions
@jstap Thanks for your feedback.
Let me address the points you made:
-
The EA uses grid/martingale as it says in the description. However, both can be disabled. In fact, martingale is DISABLED by default and in all published backtests.
-
The low-risk picture is not fake. You can download backtest results from the published link. The backtest is using tick data and it shows every single trade taken by the EA, so nothing fake.
-
Please take a look at the various options in the EA. I respectfully disagree that it can be easily created.
-
The EA is being offered for FREE throughout the month of November. It will NEVER be free again. Add it to your account, then test/use it later. I'm planning to add more filters and strategies to it.
-
The EA was created using FXDreema, so I expect some support from the community

Thanks again for the feedback; much appreciated. I appreciated all constructive comments, good or bad.
-
-
RE: EA Promotionposted in General Discussions
DominuTron MT5 has been released today: https://www.mql5.com/en/market/product/125428
-
EA Promotionposted in General Discussions
I would like to inform the community about a promotion on my first paid FXDreema EA in the MQL5 market

I'm so confident in DominuTron that I'm giving it away for FREE throughout the month of November. No credit card is required, and I won't even ask for your email address; you can simply download it from the mql5 market.
All I ask for is that if you like it, please come back and leave a nice comment and a good review.
https://www.mql5.com/en/market/product/117073Price will be $499 on the 1st of November, and it will NEVER be free again. The MT5 version will be released in a few days. Also free during November.
I hope this self-promotion is ok with the admins. I believe it's a relevant product and not a competition. If this is not ok, please accept my apologies and delete the post.
-
RE: ANY ONE TO MAKE THIS STRATERGY AUTOMATEDposted in General Discussions
@ibrah360ai
can you share the indicator as well, please? -
RE: mql5 not accepting my EA: The amount of open and pending orders has reached the limit set by the brokerposted in Questions & Answers
Now I'm getting this for the MT5 version!


Well, I guess I need to do something similar to the above

-
RE: mql5 not accepting my EA: The amount of open and pending orders has reached the limit set by the brokerposted in Questions & Answers
Here's the EA by the way: https://www.mql5.com/en/market/product/117073
MT5 version coming soon

-
RE: mql5 not accepting my EA: The amount of open and pending orders has reached the limit set by the brokerposted in Questions & Answers
I found the solution!
I copied the function on the mql5 website (https://www.mql5.com/en/articles/2555#account_limit_pending_orders) and added it near the end of the mq4 file

And then updated the only OrderSend call as follows:

Code has now been accepted, and my EA is live in the mql5 market

-
mql5 not accepting my EA: The amount of open and pending orders has reached the limit set by the brokerposted in Questions & Answers
Hi All,
The mql5 market is not accepting an EA that I built using fxdreema!
It's giving me this error: The amount of open and pending orders has reached the limit set by the broker
Does anyone what that is, and how to fix it, please?

It takes me to the following page when I click on 'How to fix': https://www.mql5.com/en/articles/2555#account_limit_pending_orders
I still don't understand what's wrong or how to fix it. The EA successfully passed a 21 years backtest using tickdata on MT4.
Your help is much appreciated.
-
RE: I have the best strategies for EA!!!posted in Questions & Answers
Please share the strategies so that we can see whether they can be coded or not.
I might be able to help, depending how complex the strategy rules are.
Thank you.
-
RE: Using 'Modify Stops' block to risk a fixed amount of cashposted in Questions & Answers
Thank you for the reply.
I have ended up using custom code as suggested. Here's the code if it benefits anyone
sl_reliable_tickvalue = sl_tickvalue * sl_point / sl_ticksize;
if ((Digits == 3) || (Digits == 5)) {sl_reliable_tickvalue = sl_reliable_tickvalue * 10;}
sl_value = (sl_capital_to_risk * stop_loss_percentage /100) / (loop_size * sl_reliable_tickvalue ); -
RE: Is self promotion allowed?posted in Questions & Answers
Thank you both - I will seek admin's permission.
Yes, I am a paying subscriber.
-
Is self promotion allowed?posted in Questions & Answers
I released a couple of free EAs to the MQL5 market, and I'm planning to release a third free EA this weekend, and a paid one within a few weeks. Am I allowed to promote my links here?
All EA are made on FxDreema, if that makes any difference.
-
RE: Money per Tickposted in Questions & Answers
II think Money per Tick is the tick value, i.e. MarketInfo(symbol, MODE_TICKVALUE)
-
RE: Martingale Strategy With Opposite Direction Tradesposted in Questions & Answers
@MuneebKhan following Boxxocode on YouTube. He has a lot of strategies coded in FxDreema; a lot of them use grid/martingale.
I'm not allowed to post links yet, so you need to search for him, but he's easy to find.
-
RE: Using 'Modify Stops' block to risk a fixed amount of cashposted in Questions & Answers
Fyi, I know how to do the calculation in mt4/mt5 code, i.e. like in this article: https://www.mql5.com/en/forum/123914
My question is whether we have things like tickvalue stored in an FxDreema variable, or whether I need to calculate this using custom code.
-
Using 'Modify Stops' block to risk a fixed amount of cashposted in Questions & Answers
I would like to use the 'Modify Stops' block to risk a fixed amount of cash.
So, let's say we have a EURUSD position, size 0.01, with no SL or TP. I would like to use the 'Modify Stops' block (or any other block) to add a stop-loss to risk, say, $100.
Can someone help me to work out the formula, please?
Is there any trick or hidden function that I can call?Your help is much appreciated.