Those articles about metaheuristic optimization techniques are awesome! You are doing a great job Andrey, it's mind blowing how much experience you have to share with us, thank you!
@METAQUOTES please consider implement those metaheuristic optimization targets to the optimizer! It would be great for the software.
Something easy that user can set inside OnTester() as:
OptimizerSetEngine("ACO"); // Ant Colony Optimization OptimizerSetEngine("COA"); // cuckoo optimization algorithm OptimizerSetEngine("ABC"); // artificial bee colony OptimizerSetEngine("GWO"); // grey wolf optimizer OptimizerSetEngine("PSO"); // particle swarm optimisation
Cheers from Brazil

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
New article Population optimization algorithms: Grey Wolf Optimizer (GWO) has been published:
Let's consider one of the newest modern optimization algorithms - Grey Wolf Optimization. The original behavior on test functions makes this algorithm one of the most interesting among the ones considered earlier. This is one of the top algorithms for use in training neural networks, smooth functions with many variables.
Fig. 3. Diagram of the omega movement in relation to alpha, beta and delta
The pseudocode of the GWO algorithm is as follows:
Author: Andrey Dik