DayTrading3 - page 3

 

Thanks Newdigital for detailed answer.

1. Where I can find more detailed information about EA, how to manage and monitor them.

2. Where I can find details about EA posted in Elite sections. I mean, what is logic, indicators or study these EA are based on. I think we have indicators first and then we create EA.

Thanks

 
laserjet:
Thanks Newdigital for detailed answer.

1. Where I can find more detailed information about EA, how to manage and monitor them.

2. Where I can find details about EA posted in Elite sections. I mean, what is logic, indicators or study these EA are based on. I think we have indicators first and then we create EA.

Thanks

About EAs you may read the Codersguru lessons on this forum or here http://www.metatrader.info/

As to indicators so not all EAs were based on the indicators. Usually people are looking inside the code.

As to Daytrading3 so I see the following:

void calculateIndicators() { // Calculate indicators' value

macdHistCurrent = iMACD(NULL,0,12,26,9,PRICE_OPEN,MODE_MAIN,0);

macdHistPrevious = iMACD(NULL,0,12,26,9,PRICE_OPEN,MODE_MAIN,1);

macdSignalCurrent = iMACD(NULL,0,12,26,9,PRICE_OPEN,MODE_SIGNAL,0);

macdSignalPrevious = iMACD(NULL,0,12,26,9,PRICE_OPEN,MODE_SIGNAL,1);

stochHistCurrent = iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_MAIN,0);

stochHistPrevious = iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_MAIN,1);

stochSignalCurrent = iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_SIGNAL,0);

stochSignalPrevious = iStochastic(NULL,0,5,3,3,MODE_SMA,0,MODE_SIGNAL,1);

sarCurrent = iSAR(NULL,0,0.02,0.2,0); // Parabolic Sar Current

sarPrevious = iSAR(NULL,0,0.02,0.2,1); // Parabolic Sar Previuos

momCurrent = iMomentum(NULL,0,14,PRICE_OPEN,0); // Momentum Current

momPrevious = iMomentum(NULL,0,14,PRICE_OPEN,1); // Momentum Previous

It is the indicators with the settings. But it is necessary to read the code to understand what this EA is doing. And it is not simple sometimes.

 

Updated statements for this EA with/without timefilter.

Files:
 

Only 1 losing trade with timefilter ? Thats amazing.

 
crepuscular:
Only 1 losing trade with timefilter ? Thats amazing.

Yes, it was one lossing trade only for USDCHF with alpari broker 4 of January 2006.

 

Try Daytrader3 EA with USDCAD it gave me 120 pips in four days.

Time Frame M15.

 
laserjet:
Try Daytrader3 EA with USDCAD it gave me 120 pips in four days. Time Frame M15.

We are testing Daytrading3 on M15 timeframe. 4 main pairs.

From the beginning I wanted to insert this EA for GBPUSD only. Because i tested before on this pair.

Yes you are right. We will test it on AUDUSD and USDCAD also (starting from the next Monday).

 

Please find updated statements.

Files:
 

Statements was updated for this EA with/without timefilter.

Files:
daytrading3.zip  23 kb
 

Updated statements of this EA (with and without timefilter).

Files:
Reason: