TrendCapture modified version.
EU M30. On two years.
Total net profit : 729.88%
RDD : 29.92%
TrendCapture modified version.
EU M30. On two years.
Total net profit : 729.88%
RDD : 29.92%
Trading forex risk disclaimer. Exclusive EAs in the Elite section.
hi funyoo thanks for sharing ,but the comments inside the code is russian ,would you please translate it into enlish?thanks agian
This EA needs a magic number feature. It likes to alter other EA's trades for them.
funyu you have many good ea! this is prfect forums for me. thankyou.
Trading forex risk disclaimer. Exclusive EAs in the Elite section.
Hi Funyoo. A small bug in the code
if((OrderOpenPrice()-Ask && OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber)>(Point*Guard))
should be
if((OrderOpenPrice()-Ask>mypoint*Guard && OrderSymbol()==Symbol() && OrderMagicNumber()==MagicNumber))
With this EA many trades lose when carried over the weekend. Please add exit Friday with extern variable exit hour. Also please add change so it works with 5 digit brokers.
Thanks for a great forum.
MadCow
Trading forex risk disclaimer. Exclusive EAs in the Elite section.
Wow! what rapid response. Thank you very much.
FYI, the time filter has a small problem for brokers west of London. Thursday may be Friday GMT. This can cause trades to carry over the weekend. My fix for this is to add (to all EA's with time protection):
extern string GC = "Add GMT_Add to broker time to get GMT";
extern int GMT_Add;
int Today;
int start(){
Today=DayOfWeek();
//...Find out the day in GMT time.
if (TimeHour(TimeCurrent()) + GMT_Add>24) Today += 1;
if(Today==7) Today = 0;
...
Then I replace all DayofWeek() calls by Today
I suppose that most members use brokers East of London, so it may not be useful to add this to the EA. I can do it myself, I just wanted to help western members.
Last edited by MadCow; 05-11-2009 at 18:16.