Machine learning in trading: theory, models, practice and algo-trading - page 3383

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
There's a certain slyness to it. The links are just to make sure they open. No one who is "interested" will delve into them. No one will read Andrei's chewed-up articles, let alone works of an academic nature.
Has anyone seen this easy-to-understand TOP with the ability to calculate the ranking of their own optimisation algorithm?
https://habr.com/ru/users/belyalova/publications/articles/
These are gradient based optimisation methods for neurons ,
and we're talking about gradient-free global optimisation methods,
Come on, Saber.
It's the ABCs.
Which, by the way, your local expert on optimisations said nothing about in his articles (because he himself is a tree oak in AO).
Read this, especially the section "Loss function != quality metric". I can hardly write any clearer.
Couldn't open it, we are blocked a bit(
This leads to potential unlimited number of parameters, since function spaces are infinite-dimensional. In practice, this leads to the need to control the number of parameters somehow - for trees it is leaf pruning, for example.
For example, AMO forrests, boosts consist of primitives, rules.
We can create a Beckus Naur grammar of the rules we need.
like this.
behind each rule there is a code/string/genotype.
on the left is the genotype, on the right is the rule that is generated, this genotype can be searched with the help of AO.
The sum of the rules is the same boost or forest..
It's kind of a no-brainer.
Here is the code that implements it all
Packagedocumentation
So I don't see any obstacles to implement my AMO purely on optimisation and grammar.
And our hands are free on all fronts, any functions, transformations, any data, in general, anything can be implemented.
The same Forrest, no difference.
Couldn't open it, we're blocked a bit(
We are blocked a lot, somehow we adapt.
Well for example AMO forests, boosts consist of primitives , rules.
I did not claim that the absence of a fixed set of parameters makes learning (optimisation) impossible. I was only talking about significant differences from conventional optimisation with a fixed set of parameters. If you don't believe me, you can try to implement trees or grammars in MT5 (where the optimiser works for a fixed set). It is not that it is absolutely impossible, but it is extremely inconvenient.
I did not claim that the absence of a fixed set of parameters makes learning (optimisation) impossible. I was only talking about significant differences from conventional optimisation with a fixed set of parameters. If you don't believe me, you can try to implement trees or grammars in MT5 (where the optimiser works for a fixed set). It is not that it is absolutely impossible, but it is extremely inconvenient.
The MQL5 language allows you to compensate for the absence of any standard features of the tester and optimiser. Where a dynamic set of parameters is required, you can write an external optimiser for the model in MQL5.
The MQL5 language allows you to compensate for the lack of any standard features of the tester and optimiser. Where a dynamic set of parameters is required, you can write an external optimiser for the model in MQL5.
A student asks questions to an artificial intelligence.
Question: What is your name?
Answer: Vasya. Go to hell.
Question: What is go to hell?
Answer: It is the answer to your second question Vasya.
P.Z.
The question shocks the neural system.
It is mandatory to write gradient bousting in mql5 to become the creator of the crappiest bicycle.
What mechanisms of parallelisation of calculations on CPU in mql5 do you know?
OpenCL for more or less advanced.
For less advanced - running agents on separate charts. Each chart in a separate thread, all CPU cores will be used in total.
Besides, terminal agents themselves can be used to parallelise application calculations on a terminal chart, this is not known to many people.
In this article I will show you how to write a binary GA covering all significant digits of a double number with an unlimitedly small step of parameters in MQL5 (in fact, it is limited to 16 decimal places for double). And even this is not the limit, you can write extensions of standard types of numbers in MQL5.