- Search Energy EXCH
-
abokwaik replied Apr 4, 2016It is correct. max_buy_price() is a dynamic function. It will always bring the current active max buy price. The EA will close once the retrace is at least 1 point below the level. Although this comparison can be changed to <= instead of <, however ...
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016The closing happens only on retraces that exceed the grid step size.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016Its an ID that identifies the EA instance. In case you run multiple instances of the same EA, you need to give each EA a unique ID (aka magic number), so that each instance of the EA handles its trades only, and don't miss-up other EA instances' ...
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016GBPAUD reacted well today. I entered a bit late as I was away. Still, closed half position at 100pips, and rest is running with BE in place. image A closer look from H1 image
$ Millionaire Traders Golden Price Mining
-
abokwaik replied Apr 4, 2016Because of not enough buy profit to close the biggest sell loser at the first place.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016Yes of course. Also cosmetics will be added later, including recovery cash display, current cycle P/L, close all button ... etc. Lets first confirm that its working as per system rules.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016I think its the same. Because there are no trades closed in the middle of the grid of each type (sell or buy). Trades are always closed at the extreme ends, and there we need to open new trades of same type should price re-hit these extremes.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016You are right. Can you post the full chart so that I can see the dates and test. Thanks.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016Version 4 with the above applied. Looks better.

Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016Speaking of bugs, Here's one
. void check_for_close() { int j,tk_buy_loss=999999,tk_buy_prof=0,tk_sell_loss=999999,tk_sell_prof=0; double buy_loss=0,buy_prof=0,sell_loss=0,sell_prof=0; .... Fix: void check_for_close() { int ...Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016Thanks MG. OK then, I'll wait for remon to confirm either way.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016I just saw your chart. True. It opens coupled trades only at the same price, at least this is what I understood. @remon please confirm if it should also open single trades in the middle. If so I will modify accordingly.
Accumulative Profits Grid System
-
abokwaik replied Apr 4, 2016Thank you Daniel, "very near 0 profit" is a result of using close_by. This is a version without using close_by, so that it will be easier to compare. However it is necessary to use close_by in final version as it will highly affect the profitability ...
Accumulative Profits Grid System
-
abokwaik replied Apr 3, 2016Dear all, At this stage I am interested in VISUAL TESTING in order to confirm whether the EA is working as per system rules or not. And if not then let me know where it went wrong. No need to post testing results. Just a chart with indication on ...
Accumulative Profits Grid System
-
abokwaik replied Apr 3, 2016Step size of 10 points (=1 pip) with 0.1 lot will certainly lead to a margin call.
Accumulative Profits Grid System
-
abokwaik replied Apr 3, 2016It is for part 2. As far as I know part 1 was already done and stable.
Accumulative Profits Grid System
-
abokwaik replied Apr 3, 2016This is due to using CLOSE_BY function of mt4 where it closes a Buy against a Sell saving the spread on one of them. It makes a big difference compared to regular CLOSE function, specially since we have huge number of trades.
Accumulative Profits Grid System
-
abokwaik replied Apr 3, 2016This is the final version (for today). I admit, its a coding challenge

Accumulative Profits Grid System
-
abokwaik replied Apr 3, 2016Another bug fixed. Sorry for any inconvenience (still testing). Test on EUR/JPY from 1/1/2016. Nice profit, but Huge draw downs. I am using 0.1 lot on 10,000 account. image
Accumulative Profits Grid System