Quote:
|
Originally Posted by radicalmoses
Sorry for my earlier post. Got it sorted out.
Anyway,, The strategy tester not giving me any results. Would appreciate if anyone can help me out there. Presently I am running it on 1hr time frame.
Anyone with any kinda demoing results as of late??
thanks
|
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.