0
votes
1answer
41 views

Rolling idxmax() in python?

I have a python DataFrame containing some financial data that I am trying to create some technical indicators for. I am trying to figure out how to use a moving window function to speed up the process ...
0
votes
1answer
74 views

Calendar Year Return Calculation

I am trying to calculate calendar year GDP growth for the GDPC96 time series from FRED (i.e. for a xts object). I am looking for a simple function without loops which calculate the calendar year ...
1
vote
1answer
133 views

How to calculate rolling cumulative product on Pandas DataFrame

I have a time series of returns, rolling beta, and rolling alpha in a pandas DataFrame. How can I calculate a rolling annualized alpha for the alpha column of the DataFrame? (I want to do the ...
3
votes
3answers
237 views

Aggregating time series to yearly data

Consider we have daily time series of stock prices (let's say the FTSE Index). We want to calculate daily, monthly and yearly returns. In order to compute monthly and yearly returns we have to ...
2
votes
2answers
338 views

R : High frequency data statistical analysis

I'm working with tick data and would like to have some basic information about the distribution of the change in tick prices. My database is made of tick data during a period of 10 open days. I've ...
0
votes
1answer
201 views

R tick data : aggreate data respecting the calendar

I'm back with my problems about aggregating tick data (R : Tick data adding value when tick data is missing) I've followed all your advices and it works perfectly. But I've got a problem with the ...
2
votes
1answer
336 views

R Generating a 1 min spaced time sequence

I would like to generate a 1 min spaced time sequence to paste then to a xts object. Basically, I've got a tick-by-tick dateTime object like that : [1] "2010-02-02 08:00:03 CET" "2010-02-02 08:00:04 ...
0
votes
2answers
153 views

Get only the numeric values in a console output

I'm working with the fractal package and using the DFA function which gives me a very complete output in the console : DFA(log(price_1m[1:1024]),detrend="poly2",overlap=0,scale.max=512) Console ...
0
votes
1answer
154 views

R tick data : merging date and time into a single object

I'm currently working in tick data with R and I would like to merge date and time into a single object as I need to get a precise time object to compute some statistics on my data. Here is how lmy ...
0
votes
2answers
149 views

R Sorting Data Frame by Date

I'm working on a R data.frame which is made of stocks'dividends per year (I've got 60 stocks in columns and the usual calendar in rows). When a dividend is paid, I've got the figure and otherwise ...
1
vote
1answer
168 views

split function in xts

I don't understand why split applied to xts gives a list of lists. It should return xts objects. Is there something I am missing? data(sample_matrix) x <- as.xts(sample_matrix) spl<-split(x, ...
0
votes
0answers
130 views

obtain next N entries in xts time series with irregular spacing

I want to write a function to be applied with: lapply(new_data,ALGO) It should take 15 entries before and after that particular entry and then make some calculation, giving back a number. Up to now, ...
1
vote
1answer
232 views

How to turn the quarterly data returned by quantmod's viewfin function into a monthly time series?

...either spline- (best) or linear-interpolated (OK) or just repeated values (fine) throughout the quarter. The issue is that I do not know how to convert the data type returned by getFin() and ...
4
votes
2answers
593 views

What's a succinct, useful and efficient way to store large time-series in F#?

I'm currently learning F# and I'm exploring using it to analyse financial time-series. Can anyone recommend a good data structure to store time-series data in? F# offers a rich selection of native ...
26
votes
4answers
8k views

storing massive ordered time series data in bigtable derivatives

I am trying to figure out exactly what these new fangled data stores such as bigtable, hbase and cassandra really are. I work with massive amounts of stock market data, billions of rows of ...
8
votes
6answers
2k views

Is there a good method to get up-to-date financial data as a stream to feed an application?

I'm pretty sure no one has ever written an application to analyze financial data (sarcasm). Regardless, I'm considering writing one for fun and need a way to access (1) large amounts of historical ...