Matplotlib和Numpy Math

我正在尝试使用Matplotlib和Numpy,但这并不容易。 我正在做一个迷你项目,开始处理Matplotlib和Numpy,但我被困了...... 这是代码:
# Modules
import datetime
import numpy as np
import matplotlib.finance as finance
import matplotlib.mlab as mlab
import matplotlib.pyplot as plot

# Define quote
startdate = datetime.date(2010,10,1)
today = enddate = datetime.date.today()
ticker = 'uso'

# Catch CSV
fh = finance.fetch_historical_yahoo(ticker, startdate, enddate)

# From CSV to REACARRAY
r = mlab.csv2rec(fh); fh.close()
# Order by Desc
r.sort()


### Methods Begin
def moving_average(x, n, type='simple'):
    """
    compute an n period moving average.

    type is 'simple' | 'exponential'

    """
    x = np.asarray(x)
    if type=='simple':
        weights = np.ones(n)
    else:
        weights = np.exp(np.linspace(-1., 0., n))

    weights /= weights.sum()


    a =  np.convolve(x, weights, mode='full')[:len(x)]
    a[:n] = a[n]
    return a
### Methods End


prices = r.adj_close
dates = r.date
ma20 = moving_average(prices, 20, type='simple')
ma50 = moving_average(prices, 50, type='simple')

# Get when ma20 crosses ma50
equal = np.round(ma20,1)==np.round(ma50,1)
dates_cross  = (dates[equal])
prices_cross = (prices[equal])

# Get when ma20 > ma50
ma20_greater_than_ma50 = np.round(ma20,1) > np.round(ma50,1)
dates_ma20_greater_than_ma50  = (dates[ma20_greater_than_ma50])
prices_ma20_greater_than_ma50 = (prices[ma20_greater_than_ma50])

print dates_ma20_greater_than_ma50
print prices_ma20_greater_than_ma50
现在我需要做这样的事情:
store the price of the "price_cross"
see if one day after the "ma20_greater_than_ma50" statment is true, if true store the price as "price of the one day after"
now do "next price_cross" - "price of the one day after"  (price2 - price1) for all occurences
我怎么能做这个数学,更重要的是。我怎样才能获得Matplotlib和Numpy的牵引力。我应该买什么书? 给我一些线索。 最好的祝福,     
已邀请:
我同意Josh,但想添加matplotlib库: http://matplotlib.sourceforge.net/gallery.html 我的大多数情节都是直接复制一些接近我想要的东西,然后根据我的需要进行修改。 matplotlib画廊有很多这样的例子。     
我会说你不一定需要外出购买任何书籍。更好(和更便宜)的解决方案是看看在线教程,如: http://www.scipy.org/Tentative_NumPy_Tutorial http://matplotlib.sourceforge.net/examples/index.html 并尝试将文档中的内容拼凑起来并搜索相关的关键字。从您提供的代码(假设您编写它),您可以掌握一些numpy。您将需要更具体地解决您遇到的问题,以获得更具体/详细的帮助。     
这是一个开始的列表,您可能会在浏览之后找到对您来说最重要的部分: Python教程http://docs.python.org/tutorial/ 来自http://docs.scipy.org/doc/的Numpy用户指南 Matplotlib用户指南http://matplotlib.sourceforge.net/users/index.html Numpy / Scipy其他文档来源http://www.scipy.org/Additional_Documentation 您可能想要订阅numpy和/或matplotlib的填充列表。     
matplotlib和numpy有很多有用的功能,你应该在实现之前先google。 例如,请参阅matplotlib movavg函数。     

要回复问题请先登录注册