Contest - page 17

 

Please find updated statements for MaChannel EA.

For the whole statements from the beginning of the testing please see excel file attached.

Files:
machannel.zip  31 kb
excel.zip  265 kb
 

Good results for this week for MaChannel EA.

Especially for USDCHF.

Files:
machannel_1.zip  33 kb
 

Automated Trading Championship 2007

Some one is partecipating?

I see codersguru, some one else?

 

Updated statements for this EA.

Please read excel file here https://www.mql5.com/en/forum/176044 for the results from the beginning of the testing period.

Files:
machannel.zip  36 kb
 

Please find updated statements for MaChannel EA.

Files:
machannel_1.zip  37 kb
 

Please find updated statements for MaChannel EA.

Files:
machannel_2.zip  37 kb
 

MaChannel.

This EA is very profitable for USDCHF: +3070 pips. (since July 2006). For EURUSD + 488 pips. (since July 2006). I am testing EURGBP as well but it is not profitable yet.

Results for the week:

EURUSD: +301 pips.

USDCHF: +3.

EURGBP: +39 pips.

Files:
machannel_3.zip  38 kb
 

Machannel

Newdigital,The result looks interesting.But I dont know the theory and how it work.Would help me for knowing:

1. Any link which introduce how it work? or some indicators to put to see how it work?

2.Which file I should use (or which file have this result?).

Here "https://www.forex-tsd.com/expert-analysis/5626-eas-files.html" or

here "https://www.forex-tsd.com/expert-analysis/1773-contest-6.html"?

I tried these two seperately in same broker.But it seems a little different?

Thank you very much

Nancy

 
nancy2006bj:
Newdigital,The result looks interesting.But I dont know the theory and how it work.Would help me for knowing:

1. Any link which introduce how it work? or some indicators to put to see how it work?

2.Which file I should use (or which file have this result?).

Here "https://www.forex-tsd.com/expert-analysis/5626-eas-files.html" or

here "https://www.forex-tsd.com/expert-analysis/1773-contest-6.html"?

I tried these two seperately in same broker.But it seems a little different?

Thank you very much

Nancy

First of all as I see it is written the following in the code:

bool LimitPairs = true;

bool LimitFrame = true;

int TimeFrame = 60; //Works with 1 hour timeframe only!

string LP[] = {"EURUSD","EURGBP","USDCHF"}; // add/remove the paris you want to limit.

bool Optimize = false;

int NumberOfTries = 5;

It means that this EA is for H1 timeframe and for EURUSD, EURGBP and USDCHF only. To use more pairs so we need to add more pairs in this code and compile the EA.

 

And I see this one inside the code:

trend1 = iMA(NULL,0,LSMA,0,MODE_SMA,PRICE_LOW,CurrentBar);

trend2 = iMA(NULL,0,LSMA,0,MODE_SMA,PRICE_LOW,CurrentBar+1);

trend3 = iMA(NULL,0,USMA,0,MODE_SMA,PRICE_HIGH,CurrentBar);

trend4 = iMA(NULL,0,USMA,0,MODE_SMA,PRICE_HIGH,CurrentBar+1);[/CODE]

and

[CODE]extern int CurrentBar = 1;

extern int USMA = 10;

extern int LSMA = 8;

It means the following:

trend1 is SMA indicator with price low and period = 8 for previous bar.

trend2 is SMA indicator with price low and period = 8 for the bar before previous one.

trend3 is SMA indicator with price high and period 10 for previous bar.

trend4 is SMA indicator with price high and period 10 for the bar before previous one.

Reason: