Greetings all, I have two series of data: daily raw stock price returns (positive or negative floats) and trade signals (buy=1, sell=-1, no trade=0).
The raw price retur
There is a fantastic module called pandas that was written by a guy at AQR (a hedge fund) that excels at calculations like this... what you need is a way to handle "missing data"... as someone mentioned above, the basics are using the nan (not a number) capabilities of scipy or numpy; however, even those libraries don't make financial calculations that much easier... if you use pandas, you can mark the data you don't want to consider as nan
, and then any future calculations will reject it, while performing normal operations on other data.
I have been using pandas on my trading platform for about 8 months... I wish I had started using it sooner.
Wes (the author) gave a talk at pyCon 2010 about the capabilities of the module... see the slides and video on the pyCon 2010 webpage. In that video, he demonstrates how to get daily returns, run 1000s of linear regressions on a matrix of returns (in a fraction of a second), timestamp / graph data... all done with this module. Combined with psyco, this is a beast of a financial analysis tool.
The other great thing it handles is cross-sectional data... so you could grab daily close prices, their rolling means, etc... then timestamp every calculation, and get all this stored in something similar to a python dictionary (see the pandas.DataFrame
class)... then you access slices of the data as simply as:
close_prices['stdev_5d']
See the pandas rolling moments doc for more information on to calculate the rolling stdev (it's a one-liner).
Wes has gone out of his way to speed the module up with cython, although I'll concede that I'm considering upgrading my server (an older Xeon), due to my analysis requirements.
EDIT FOR STRIMP's QUESTION:
After you converted your code to use pandas data structures, it's still unclear to me how you're indexing your data in a pandas dataframe and the compounding function's requirements for handling missing data (or for that matter the conditions for a 0.0 return... or if you are using NaN
in pandas..). I will demonstrate using my data indexing... a day was picked at random... df
is a dataframe with ES Futures quotes in it... indexed per second... missing quotes are filled in with numpy.nan
. DataFrame indexes are datetime
objects, offset by the pytz
module's timezone objects.
>>> df.info
Index: 86400 entries , 2011-03-21 00:00:00-04:00 to 2011-03-21 23:59:59-04:00
etf 18390 non-null values
etfvol 18390 non-null values
fut 29446 non-null values
futvol 23446 non-null values
...
>>> # ET is a pytz object...
>>> et
>>> # To get the futures quote at 9:45, eastern time...
>>> df.xs(et.localize(dt.datetime(2011,3,21,9,45,0)))['fut']
1291.75
>>>
To give a simple example of how to calculate a column of continuous returns (in a pandas.TimeSeries
), which reference the quote 10 minutes ago (and filling in for missing ticks), I would do this:
>>> df['fut'].fill(method='pad')/df['fut'].fill(method='pad').shift(600)
No lambda is required in that case, just dividing the column of values by itself 600 seconds ago. That .shift(600)
part is because my data is indexed per-second.
HTH, \mike