Recently, I started to mess with python to plot BTC/USD data. I am familiar with R and Rattle, and want to play around with predictive models for fun. I know there is a quantmod package for R, but I am more familiar with python code. Do people know of a package that includes functions like MACD() and Stochastic shit? Any suggestions?
Also, what do you use for your Gann angles and trendline nonsense? I am open to playing around with a user interface, but in the long run I want to deal with hard statistics and modeling.
I know there are libraries out there for technical indicators, but not sure if there is anything for python specifically. You might be better off just writing your own functions to calculate indicators.
MACD is just a pair of exponential moving averages (12, 26), the difference between the two, and an EMA of that (9).