-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reference for time series analysis #7
Comments
One technique is called dynamic time warping. Here are a few links. Afraid I haven't used it myself, but found it interesting to read about. Not sure if it is applicable to your specific problem as you didn't specify what kind of problem you seek to solve :) |
Thanks a lot! The problem is to analyze and forecast customer demand in option markets. These are usually similar but slightly different contracts traded by various kinds of customers. I will have a look at the references. |
In a trading setting I have seen people setup the problem like this:
Straight forward cross-validation doesn't work anymore in this case, in sklearn there was a recent addition called http://scikit-learn.org/stable/modules/generated/sklearn.model_selection.TimeSeriesSplit.html#sklearn.model_selection.TimeSeriesSplit which might help. |
Thank you very much. I will have a try. |
Does anyone happen to come upon any good reference on time series analysis using machine learning techniques?
The text was updated successfully, but these errors were encountered: