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
Let me ask a few small questions to the professionals:
1. what do the AnnsNumber, AnnInpit, delta parameters affect (in general ).
2. what are the limits of changing them.
3. Does it make sense to optimize them.
Also, for some unknown (to me) reason, in some cases, after the training of a neural network in the NeuroMACD-fixed.mq4 Expert Advisor
checking the results of training using the obtained filter on the training set does not give any visible results.
To be more exact, the results before and after applying the filter are absolutely identical.
What may be the reason?
Sorry for the taffalogy :).
Reworked the EA, cleaned up the bugs. Posted it to codebase. After verification by the moderator, will be available at: https://www.mql5.com/ru/code/9386
Reworked the EA, cleaned up the bugs. Posted it to codebase. After review by the moderator, it will be available at: https://www.mql5.com/ru/code/9386
Done.
Done.
Thank you for your promptness!
Server: Alpari-Demo
Login: 2033582
Investment password: hfti6op (view only)
I am testing the Expert Advisor https://www.mql5.com/ru/code/9386 on demo, here are the first results:
Hello Yuri.
Please explain why two separate optimisations of your EA,
If I'm using the same period, the same data, the same optimization settings,
produce completely different results.
All the network training files were deleted and re-created during the new optimization.
I thought the results should be the same or similar and should vary only if some optimization conditions are changed (for example, lengthening the period by one day).
Does it turn out that the network is trained differently each time when the conditions and data are the same? Is it normal?
How can I use it, if the result is different each time?
Or I have not done something according to the instruction?
Expert Advisor: FANN-EA
I have made settings for optimization:
Currency: EURUSD
Period: 1M
Interval: 01/10/09 - 09/12/09
StopLoss: 10 to 100 step 1
x: 1 to 5000 step 1
Briefly the results of optimizations (sorted by maximal profit):
1st optimization.
2nd optimization (carried out as new)
Hello Yuri.
Please explain why there are two separate optimisations of your EA,
If I wanted to use this EA for the same period of time, for the same data, with the same optimization settings,
produce completely different results.
Every time you run the neuronet it is fine tuning it, that is the difference in the results, that is right...
Can someone explain something in the examples from FANN? In particular, the cascade_train.c file has this stuff written in it:
I probably don't understand something, but it seems that each subsequent pair of training and test file uploads will overwrite the previous ones. Why is this happening? Moreover, there is a memory leak because fann_destroy_train(data) is not called between loads;Then there's more:
What's the point?Each run of the neural network finishes it off, that's the difference in results, all right...
The 2nd optimization run was done from "0" on the same data with the same parameters.
The files in ANN directory from the first optimization were removed before running the 2nd optimization.
There is nothing to "learn" there as this is a new training, but it gives completely different results.
The 2nd optimisation run was done from "0" on the same data with the same parameters.
There is nothing to "learn", as it is a new training, but it gives completely different results.
It's OK too, initially the network is initiated with random weights, and adjusts them during optimization, training. Different initial weights - different final results.
Z.I. though my EA didn't get such drastically different results, but it could depend on a lot of conditions.