Hi Joe Dirt,
Time series analysis with neural networks is a whole field unto itself, and I don't have much practical experience with it. I can tell you what I understand the basics to be. The basic idea is to have the inputs be some window of past values. So if we look at BUD
http://www.fool.com/quote/nyse/anheuser-busch-inbev-nv/bud/interactive-chartAnd use a 5 day window in to the past, we might get
(5-days before N, 4-days before N, 3-days before N, 2-days before N, 1-day before N) --> (day N)
104,105,105,104,104 --> 105
103,104,105,105,104 --> 104
and just do that for as far back as you like. Probably use a bigger window too. And of course scale the numbers to -1,1 or 0,1.
Currently there are also SRN's in Simbrain. These can be used in the same way, but they have the advantage that the whole past history is automatically encoded via the context layer. In that case you could still use the windows approach or just have inputs from values at time t-1 to values at time t
1 day before N --> day N
104 --> 105
105 --> 105
etc.
But this is the kind of thing where people spend years doing it and learn all these tricks. I don't think either of these methods will kill the stock market if you are using Simbrain. However, if you make a few million bucks, the Simbrain team will accept a half a percent bonus :)
- Jeff