
01-24-2006, 03:44 PM
|
|
Administrator
|
|
Join Date: Sep 2005
Posts: 20,082
|
|
Quote:
|
Originally Posted by newdigital
Open this EA in MetaEditor to see the comments.
Seems this EA is some modification of version 0.25.
For example:
Code:
int PeriodDirection = PERIOD_W1, PeriodTrade = PERIOD_D1, PeriodTrailing = PERIOD_H4, CandlesTrailing = 0;
// currency pairs to trade
string pairs[] = { "AUDUSD", "EURCHF", "EURGBP", "EURJPY", "EURUSD",
"GBPCHF", "GBPJPY", "GBPUSD", "USDCAD", "USDCHF", "USDJPY" };
It means that it should be attached to D1 chart (to the one chart only, anyone, but GBPCHF or GBPJPY should be better one) and EA will trade the above mentioned pairs all together simulteniuosly. If you do not want to trade all the pairs just delete from the code the pair you do not want to trade.
Do not forget to compile.
And read all the comments inside the code.
|
But I can not attach EA to the chart: EA is in green color in navigator (build 188).
|