3

When working with time-series data, is it wrong to use daily prices as features and the price after 3 days as the target?

Or should I use the next-day price as a target, and, after training, predict 3 times, each time for one more day ahead (using the predicted value as a new feature)?

Will these 2 approaches give similar results?

nbro
  • 39,006
  • 12
  • 98
  • 176
George
  • 31
  • 2

1 Answers1

1

I don't know what kind of price data you're dealing with. I suppose the order of the data matters a lot, so my suggestion would be:

  1. Use LSTM as it handles time series better

  2. You can predict 3 consecutive numbers from an RNN as the next three days' predictions

  3. Try regression first, it is likely it will not work (or just flatten the curves, depend on your data noise), then classification is an easier approach

  4. Don't forget normalization

Kevin. Fang
  • 353
  • 1
  • 2
  • 7