The machine learning (ML) literature sorts problems into two categories:
(1) regression -- the response is a continuous numerical output
(2) classification -- the response is discrete, often binary
When applying ML to financial markets, you can treat return prediction as a regression problem or as a classification one (up or down). What have you found to be more effective?
In general, what ML algorithms have you found useful?
I have not used ML in trading yet, but in my research on predicting daily returns using medium size data sets of about 2000 points, I have found that support vector machines often outperform multiple linear regression.
(1) regression -- the response is a continuous numerical output
(2) classification -- the response is discrete, often binary
When applying ML to financial markets, you can treat return prediction as a regression problem or as a classification one (up or down). What have you found to be more effective?
In general, what ML algorithms have you found useful?
I have not used ML in trading yet, but in my research on predicting daily returns using medium size data sets of about 2000 points, I have found that support vector machines often outperform multiple linear regression.
