2
- #1,983
- Apr 16, 2022 8:58am Apr 16, 2022 8:58am
- Joined Dec 2013 | Status: Trader | 1,942 Posts
Learn, a forex trader must, unlearn and relearn he will.
Grid - New indicator that replaces chart grid 60 replies
From Zero to Hero ? Trade with balance $2,3 3 replies
Grid (not grid system) or horizontal lines indicator 6 replies
Zero to Hero - £250 to £2500 in one week 7 replies
Disliked{quote} Critical results worth analyzing: Having a drawdown of 91% Initial fund of 10,000usd, with biggest drawdown of 25,000. I think this set of parameters is a fail for backtesting. At any point of the backtest, your maximum drawdown should not go near the initial fund. Otherwise that's a sign that your bot could margin call anytime moving forward.Ignored
Disliked{quote} can you upload the settings? im assuming you ran some optimization testing, can you upload that template?Ignored
Disliked{quote} Here you are. One for 4.72__flexATR, the next one for 4.73__flexATR. But I did't do optimization testing. 4.73__flexATR is full version with indicators and flexible ATR {file} {image} {file}Ignored
Disliked{quote} Hello. I am not a programmer, but I also like ATR)) so I tried to make the grid flexible and lively. I slightly changed the code and now the distance between orders depends on the ATR value at the moment the order was opened. Please check. I've only done one test and I'm pretty happy with it. {file}Ignored
Disliked{quote} " I slightly changed the code and now the distance between orders depends on the ATR value at the moment the order was opened" What does this exactly mean now? Does ATR use the same value for a whoe cycle of buy and sell? how does it differ from before?Ignored
DislikedHi at all, Just a short update, I am closing in reaching break even on my Real account still starting cycles manually when having an opinion or a swap friendly pair is suggested by currency strenght meter. My yearly goal to make it to the top 10 real accounts looks like Mount Everest now, especially I am only allowed to realize 5k of losses due to a stupid tax law in my country (Full tax on all profits but just 20K of losses to calculate against the wins, waiting for the court to bring this down). But never say no, I am ready to get on this trail!...Ignored
Disliked{quote} But I can't solve the problem with rounding the lot when the martingale progression is small, for example 1.1 with a lot of 0.01 (when multiplied, the result is always a lot of 0.01) 4/ More convenient progression selection (more visual) {file}Ignored
DislikedHi everyone, I have just found this thread a few weeks ago and I am now in love with this EA. Thank MaPi and everyone else helps to make it better. Normally I am almost always a silent reader. But this time I want to be a contributor, to develop it more and find the best strategy with your help. I am not a coder but have a short knowledge of mql4 so I have made a new version of this EA and share it with you guys. Icarus V4.75 ThangNguyen List of changes: 1. Fix Restricted working time function: The last one does not work properly 2. Add EMA Trend...Ignored
Disliked{quote} Thanks, Can you explain how to use your EMA Trend filter?Ignored
DislikedHello again guys, I would like to know if someone has ever tried to add a recovery system to the EA, I'm working with one I think it could be interesting. The idea is that, after X lot/order the EA will try to close the first and last trades in profit, this would help to keep DD lower than now and take advantage some price bounces I have attached an image so maybe it is easier to see what I mean. Let's say we decide the recovery system should start after the 3rd opened position, then if the price rolls back enough so the sum of the first and last...Ignored
Disliked{quote} Hi Francis79, Here is the code for EMA Trend. bool EMA_Buy() { double EMA1 = iMA(Symbol(),EMA_tf,EMA_Period,0,MODE_EMA,PRICE_CLOSE,1); double EMA2 = iMA(Symbol(),EMA_tf,EMA_Period,0,MODE_EMA,PRICE_CLOSE,2); double EMA10 = iMA(Symbol(),EMA_tf,EMA_Period,0,MODE_EMA,PRICE_CLOSE,10); if(EMA1 > EMA2 + EMA_filterlevel* Point && EMA1 > EMA10 + EMA_filterlevel*10* Point) {return(true); } else {return(false);} I compare EMA values on bar 1, 2 ,and 10. Buy signal if EMA1 > EMA2 + filter level and EMA1 > EMA10 + filter level x 10. EMA filter level...Ignored