
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
No, it uses the bar history as input, looks for an analogy and outputs a corridor. If the analogy and the corridor match, it opens. If there is a force majeure during support - it closes. At least it shows very good results in my demo with small training time.
Cool!
Vinin 07.08.2008 14:06
You're getting a pure fit.
Not worth the effort.
Why so... The history of bars is very good stuff. How do you think all the shapes are built? Take "head and shoulders"? Again with the analogy. What about the 123 method? If point 3 is between 1 and 2 more than 50% of point 2 and the closer to 1 the more reliable forecast.... This is also a fitting. This EA uses such cases as ALARM. Who does not agree with me?
The question remains - how to make the EA endless test?
It is possible to make infinite optimisation by an unused parameter, which will be a counter.
e.g.
extern int Prohod=0;
This parameter is not used anywhere.
Let's disable genetic optimization.
In the EA properties set the required number of runs and run. Approximately all
You can do infinite optimisation on an unused parameter, which will be a counter.
e.g.
extern int Prohod=0;
This parameter is not used anywhere.
Let's disable genetic optimization.
In the EA properties set the required number of runs and run. That is approximately all
Yep, I wrote the same, but in a shorter form :).
If the examiner saves the condition in the log, quite a way out.
You can do infinite optimisation on an unused parameter, which will be a counter.
e.g.
extern int Prohod=0;
This parameter is not used anywhere.
Let's disable genetic optimization.
In the EA properties set the required number of runs and run. Approximately all
But here's where it stops. I've never dealt with optimization, so tell me more. We put this extenr int Prohod=0 at the beginning of the EA, and value 0 will be the number of runs?
Insert this line into the TestCommander script
and this code
into AutoMacroProg.mqh
and run program no. 8 accordingly
But here's where it stops. I've never dealt with optimization, so tell me more. We set extenr int Prohod=0 at the beginning of advisor, and value 0 will be number of runs?
They told you about it, parameter Prohod doesn't participate anywhere in the code, but its step is 1, so with GA switched off, you can run EA as many times as you want...