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
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
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.
ThanksAbout 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:
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.
Only 1 losing trade with timefilter ? Thats amazing.
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.
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.
Statements was updated for this EA with/without timefilter.
Updated statements of this EA (with and without timefilter).