Machine learning in trading: theory, models, practice and algo-trading - page 2650
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
If only 1 and 2 can interact. Or 3,4,5. Then after the first split, for example on 3, all downstream splits will be only from set 3,4,5.
I assume that simply builds 2 trees from 1,2 and from 3,4,5 sets. If there are 10 sets, then there are 10 trees. And so on.
It is also possible to merge groups into groups - you get a tree (list of lists of lists of lists of lists ...).
The general principle of building such groups in our case is not quite clear.
Working on it. No grail yet.)
Are you getting the grammEvol package?
gramEvol? If in terms of grammars, you need parametric grammars, where the rules have numeric parameters to be optimised for. At first glance I didn't see them in the package. I mean to get not only rules x1-x2*x3<0, but all possible rules of the form A<x1-x2*x3<B, where x1, x2, x3 are predictors, A and B are parameters.
No, I'm fiddling at the lowest level - with Rcpp, trying to find the right maths.
Didn't see them in the package at first glance.
Everything is there. Anything you can think of can be realised there.
Thanks, I'll have a closer look when I have time.
Thanks, I'll take a closer look when I have time.
This is actually a code constructor, you only set the elements you need.
That is, it can write real code itself, with cycles, arrays, everything, everything....
And since it can write code, it can write anything, the only limit is your imagination, well, and deductive power of course.
gramEvol? If in terms of grammars, we need parametric grammars, where the rules have numeric parameters to be optimised for. At first glance I didn't see them in the package. I mean to get not only rules x1-x2*x3<0, but all possible rules of the form A<x1-x2*x3<B, where x1, x2, x3 are predictors, A and B are parameters.
No, I'm fiddling at the lowest level - with Rcpp, trying to find the right maths.
I don't know if I understood you correctly, I wrote a simple example by banging my head against the monitor a little bit.
Is that what you wanted?
I don't know if I understood you correctly, I wrote a simple example after beating my head against the monitor a little bit.
Is that what you wanted?
It looks like it, but it seems that parameters can only take a few specified values, not an arbitrary real number.
Similar, but it seems that parameters can only take a few given values, not an arbitrary real number.
Is that better?
=====================
You can also complicate the expressions
Is that better?
=====================
you can further complicate the expressions
Yeah, the list thing is a good idea.
To make a real double, you need algebraic data types. I haven't seen their implementation for R yet, and genetic optimisation won't work with them( it's not clear what kind of optimisation will work with them atall).