You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Please find updated statements for MaChannel EA.
For the whole statements from the beginning of the testing please see excel file attached.
Good results for this week for MaChannel EA.
Especially for USDCHF.
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.
Please find updated statements for MaChannel EA.
Please find updated statements for MaChannel EA.
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.
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
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
NancyFirst of all as I see it is written the following in the code:
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:
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.