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

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
Not only forget about this data, but when something like this comes up, run as far away as possible.
PS.
We need to clean up the initial set of predictors from the noise.
Dr.Trader tried the main components, but he has very few observations. Try it. Links above, even the code is posted
Not only forget about this data, but when something like this appears, run as far away as possible.
it was some kind of error.
To avoid this, keep the experiment log in the table: all training parameters, the best inputs, the result of training, the result of validation. And you'll be happy.
why? argue
Guys! Help with code examples please
Let's say we have three vectors "A", "B" , "С"
We need to build all possible variants of the differences between them in the automatic mode because there are so many variables ...
like:
x1 = A - B
x2 = A - C
x3 = C - B
and write x1,x2,x3 as columns in the data frame
Show me the code if it's not difficult
Guys! Help with code examples please
Let's say we have three vectors "A", "B" , "С"
We need to build all possible variants of the differences between them in the automatic mode because there are so many variables ...
like:
x1 = A - B
x2 = A - C
x3 = C - B
and write x1,x2,x3 as columns in the data frame
Show me the code if it's not difficult
Working variant. Maybe not optimal:
Working option. Maybe not optimal:
Thank you very much, while I was writing all possible combinations with three candlesticks and 4 of their prices OHLC, three times sweat, so much code
How do I make the code not to make extra columns? For example, 3 columns in the function produces 9 combinations, although in fact it is enough to have three, like in my example above
there is no sense to do A/B and then B/A