-
Notifications
You must be signed in to change notification settings - Fork 151
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
There is no option to predict future data in c# library? #114
Comments
Hi, You will need to create an updated version of the training the data, |
OR... You can consider your training data valid for today. Have you tried using your actual data since the training series stopped in 2017-today? |
Actually, this situation could be very useful, even if unintentional. Getting public stock prices online is easy, but with what you have now, you can do a scatter plot/R2 score for the model, using the last 30 days or so of your data. How did your model do against a random walk? If you are using just one input series, I'll bet you will be surprised. So this is my wisdom, as it were: your models will do just as well if you use data to 2017, to 2019, or CALL your data to 2017: "to 2019". The algorithms don't care. It is just time series. And in all likelihood the actual price of a stock is immaterial, as you are likely looking for changes that are relative to a previous value. If you are evaluating with scatter plots only, beware how misleading they can be for accuracy. This is why I suggested the enlightening exercise above. Good luck! |
Hi
i am currently making demo NN for predicting stock price from previous data that is in CSV. now what happening is suppose i have data from 2009 to 2017 in csv. so NN is currently able to predict till 2017 only. it can not predict on future dates.
Also it is correct NN? or Wrong?
The text was updated successfully, but these errors were encountered: