Assuming Change in Stock price has a relation ship to the future change in the stock price,
I am trying to develop a statistical model
What is the best way to pre-process/normalize this price data to be used as input for statistical modeling.
I am reading about Price Change following log-normal distribution, which seems to make intuitive sense to.
price_history = history(bar_count=3000, frequency='1d', field='price')
stock_price_series = price_history[symbol('CSCO')]
log_stock_price_series = numpy.log(stock_price_series)
log_ma10 = talib.MA(log_stock_price_series,10)
log_deviation=log_ma10-my_stock_series
record(log_normal=log_deviation)
Do I have the right understanding of log-normal distribution of price change?
Are there other better ways of normalizing price change for input to a statistical model?