Hi Petronio.
Thank you for your quick response to my problem.
I'm coming again to ask about predictions in real future. In you predict method you need a dataset. What if I want to forecast "n" days ahead from today where there is no data. What dataset will I use in predict method when I use all data (until today) for training (it does not matter any test set).
Let's assume we have the model below:
fs = Grid.GridPartitioner(data=all_data, npart=190)
model = hofts.HighOrderFTS(partitioner=fs, order = 4, alpha_cut=.4)
model.fit(all_data.values.flatten())
Let's say I keep the last 4 points from "all_data" to accomodate the order of the model.How can I call model.predict method to forecast future days (until end of August)?
I forgot to write that when I use steps_ahead = n I get n times the same number. If you ask about my dataset, it is public and it is the close price of Bitcoin
Best regards
George
Hi Petronio.
Thank you for your quick response to my problem.
I'm coming again to ask about predictions in real future. In you predict method you need a dataset. What if I want to forecast "n" days ahead from today where there is no data. What dataset will I use in predict method when I use all data (until today) for training (it does not matter any test set).
Let's assume we have the model below:
fs = Grid.GridPartitioner(data=all_data, npart=190)
model = hofts.HighOrderFTS(partitioner=fs, order = 4, alpha_cut=.4)
model.fit(all_data.values.flatten())
Let's say I keep the last 4 points from "all_data" to accomodate the order of the model.How can I call model.predict method to forecast future days (until end of August)?
I forgot to write that when I use steps_ahead = n I get n times the same number. If you ask about my dataset, it is public and it is the close price of Bitcoin
Best regards
George