xts is an R package that contains an eXtensible Time Series class and methods. xts extends and behaves like zoo.

learn more… | top users | synonyms

0
votes
0answers
29 views

R quantmod src from google return character for OHLC [closed]

I am trying to use yahoo and google to cross reference the data. However, when obtaining the data from google. The OHLC are returned as "character" field in the xts. Is there a way to convert them ...
-1
votes
0answers
49 views

rollapply gives nested too deeply error R [closed]

I have an xts object> str(B) An ‘xts’ object on 1996-02-16/2012-11-01 containing: Data: num [1:4355, 1:45] 0 -0.010242 0.005447 -0.003571 0.000705 ... - attr(*, "dimnames")=List of 2 ..$ : NULL ...
0
votes
1answer
36 views

rolling computations in xts by month part2

I want to calculate the VaR at the end of a month with the historical method. My time series will start at the beginning of 2000 until now. The calculation should start lets say in 2005 to have enough ...
2
votes
3answers
82 views

Last occurrence of value change

I have a xts object: df <- structure(c(0L, 0L, 1L, 1L, 1L, 0L, 0L, 0L, 0L, 0L, 1L, 1L, 1L, 0L, 1L, 1L, 1L, 1L, 1L, 0L, 1L, 1L, 1L, 1L, 1L, 1L, 0L, 1L, 1L, 1L), .Dim = c(10L, 3L), .Dimnames = ...
1
vote
0answers
25 views

xts.merge performance with large number of columns

The function below takes a folder of CSV files (each file is a financial time series with datetime, open, high, low, close columns) and creates a single XTS object for each of the open, high, low, ...
0
votes
1answer
63 views

backtest simple strategies using R

I am looking to do simple backtesting that could properly keep track of pnl, rebalance portfolio, liquidate etc. I need it to do things a bit differently than backtest. That is, backtest splits things ...
1
vote
0answers
45 views

Lagging regular time series with xts

I am trying to lag a (weakly) regular time series using xts. zoo:::lag.zooreg provides the correct behavior, but I would prefer to stick with xts if possible. Any suggestions on how to make below work ...
2
votes
1answer
30 views

R with xts subsetting: start date plus setting range

While subsetting with xts you usually set the range between two dates/times e.g. df["T08:00/T16:59"] or df["2012-12-12/2012-12-12"] I wanna set the start date and get a special period: e.g 14 ...
0
votes
2answers
64 views

issues when trying to make indices unique in xts

I have the following xts object: options("digits.secs" = 1) ex <- structure(c(NA, -63L, NA, NA, NA, NA, NA, 0L, NA, NA, NA, NA, NA, 1L, NA, NA, NA, NA), .Dim = c(6L, 3L), .Dimnames = list(NULL, ...
0
votes
0answers
32 views

Running rollapply on non-aligned time series

How can I run rollapply on non-aligned time series data? For example, I want to calculate the rolling 1-second mean for each observation of these time series: library(xts) set.seed(123) myts = ...
0
votes
2answers
35 views

mean and sd of the day in R with xts

again I do have my df in xts and don't have names! (as far as I know there is no name anymore when setting as.POSIXct()): "2012-04-09 05:00:00",2 "2012-04-09 09:00:00",4 "2012-04-09 ...
2
votes
1answer
48 views

To create a regular time series

How can I create a regular time series of 5 minute OHLC data with volume and Number_Ticks summed? Here's what I've tried: trades <- structure(list(Date = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L, ...
0
votes
1answer
42 views

installing the package xtsExtra on a windows machine

I am having a bit of difficulty installing the R package xtsExtra on a windows machine..., and not too sure whats wrong... > install.packages("xtsExtra", ,repos="http://R-Forge.R-project.org") ...
0
votes
0answers
28 views

R: Quantstrat - return result has duplicated dates?

This is what my result look like. Each period, it shows two different returns. I've been trying to solve it the whole day, still have no idea how it happens. Can anyone please explain? Thank you!!
0
votes
1answer
18 views

How to coerce a string-like date to Date object

Let you have an object like this: > dput(maturityDate) "3/6/2018" that is just a text string which represents a date in M/D/YYYY format. The following command returns: > ...
1
vote
1answer
24 views

plotting xts objects - passsing values for lwd and col parameters creating errors

Whenever I try to plot my xts object with values passed for parameter col and lwd, it returns an error saying that the parameter col (and then lwd if I comment out col) matched multiple values. Here ...
0
votes
0answers
36 views

backtesting delta hedged options in R

I know there are a lot of packages that have to do with finance in R (I have looked through the task view). I specifically need the ability to generate a return stream from a delta hedge options ...
2
votes
1answer
59 views

adf.test returning p > 0.99 with xts, but returning p < 0.01 with coredata(xts)

Here is the output: library(tseries) # for adf.test function adf.test(data) Augmented Dickey-Fuller Test data: data Dickey-Fuller = 11.1451, Lag order = 16, p-value = 0.99 alternative hypothesis: ...
0
votes
1answer
74 views

Convert daily to weekly/monthly data with R

I have daily prices series over a wide range of products; I want to convert to a new dataframe with weekly or monthly data. I first used xts in order to apply the to.weekly function...which works ...
0
votes
2answers
29 views

dailyReturn with xts object

I am having difficulty using dailyReturn function on an xts object with multiple return series. a<-Cl(getSymbols("INTC",auto.assign=FALSE)) b<-Cl(getSymbols("IBM",auto.assign=FALSE)) ...
0
votes
1answer
27 views

Splitting xts series in a list of regular intervals

I want to split my large xts object in a list of regular one second periods containing all the observations of the original objects. The goal is to send each list element to nodes on my cluster for ...
1
vote
2answers
60 views

From daily time series to weekly time series in R xts object

I'm using the zoo and xts package for analysing financial data. ts package is not very suitable since financial series have weekend with no data available. I read about the apply function availbale ...
4
votes
1answer
62 views

Why do I get different results using ccf() and cor() in R?

Why do I get different correlation results between cor() and ccf()? library(xts) > set.seed(123) > ts1 = xts(1:100, as.POSIXlt(1366039619, tz="", origin="1970-01-01") + rnorm(100, 0, 3)) > ...
0
votes
2answers
49 views

Rolling frequency of irreqular tick-data xts timeseries

My problem is having to do with counting the frequency of an irregular timeseries containing tick-data. The problem starts where Joshua's excellent tips end here: ...
2
votes
2answers
41 views

How to call plot.xts when using RScript

UPDATE: Thanks to Joshua's comment I realized the problem wasn't being inside a function, but inside a script. So I've edited the question and also provided my own answer. When I use plot.xts() ...
2
votes
1answer
32 views

Subsetting an xts object containing logical values in the first column fails

Can anyone explain me please what's happening in the R code below and why? a <- seq(as.Date('2000-01-01'),as.Date('2001-01-01'),'day') b <- ...
1
vote
2answers
36 views

Is it possible to plot a single second period in xts (sub-second series)?

I get an error "Error in if (on == "years") { (from #17) : missing value where TRUE/FALSE needed" when trying to plot sub-second series in xts. That is, my xts object only includes observations for ...
2
votes
2answers
47 views

rollapply outputing two or more columns

I am trying to use rollapply so that I only use it once, rather than multiple times and then merging the results. The idea being that I want to get multiple bits of data from an xts object. In the ...
0
votes
2answers
54 views

Date time in write.csv in R

I am having data frame named "data" with following column > 2007-01-02 10:02:00 2007-01-02 10:03:00 2007-01-02 10:04:00 2007-01-02 10:05:00 2007-01-02 10:06:00 2007-01-02 10:07:00 ...
-1
votes
1answer
54 views

Converting CSV file to xts

I have a CSV file containing data with the first column in Unix time stamp. How can I convert it to xts form directly? Currently I am trying to read the file and convert using as.xts, but I get error ...
0
votes
2answers
63 views

How can I query an xts time range using indexes rather than string [duplicate]

I can query an xts time range by using two time strings separated by "/": library(xts) set.seed(1234) a = xts(1:10, as.POSIXlt(1366039619, tz="", origin="1970-01-01") + rnorm(10, 0, 3)) ...
2
votes
2answers
44 views

get first and last day of each week using xts in R

I read this fantastic solution in this post. I would like to get two time series objects. One for the first day of each week and other for the last day of each week. My time series is irregular in the ...
1
vote
1answer
30 views

Cut data by date for multiples of break=“min”

I'm using R to aggregate tick data and I have the following function which works well to aggregate the data to the minute but now I want to expound on that and aggregate to 5, 10, 15min. How can I do ...
1
vote
1answer
41 views

How to transform an R Matrix into an xts/zoo object?

aI'm having a problem transforming an xts derived R Matrix back into an xts object after running the returns function. Here's what I've got... > class(xtsData) [1] "xts" "zoo" > ...
0
votes
0answers
36 views

Merging/cbinding .xts objects gives misaligned NAs

It seems this issue's not been solved yet, isn't it? Reproducible code: install.packages('quantmod') install.packages('rugarch') require(quantmod) getSymbols('GLD', from = '1950-01-01') dx <- ...
3
votes
1answer
40 views

How to generate regular xts periods from random time observations?

I have the following xts matrix: > options(digits.secs = 6) > set.seed(1234) > xts(1:10, as.POSIXlt(1366039619, tz="EST", origin="1970-01-01") + rnorm(10, 500000, 250000)/1000000) ...
1
vote
1answer
32 views

merge.xts produce false results when merging weekly series

I'm trying to merge two xts objects. One is produced using quantmod and the other manually using xts() on a data.frame. > class(rets.weekly) [1] "xts" "zoo" > class(result.weekly.xts) [1] "xts" ...
2
votes
1answer
50 views

Time series plot range

Hi am ploting a xts object: And I would like to extend the xlim til 30-february because I want to add the prediction from an Arima model: par(mfrow=c(1,1)) pred <- predict(try2, n.ahead = ...
2
votes
1answer
45 views

Convert times series to.quarterly with NAs

I have a multivariate zoo time series that contains NAs and I want to convert that to a quarterly series. df1 <-1:12 df1[df1%%4==0] <- NA zoo.object <- zoo(matrix(df1, ...
3
votes
3answers
95 views

Plot value over hour of day with xts/zoo R

I do have a time-series looking like this (minute values): "timestamp", value "2012-04-09 05:03:00",2 "2012-04-09 05:04:00",4 "2012-04-09 05:05:00",5 "2012-04-09 05:06:00",0 ...
0
votes
0answers
55 views

function return successive max vector

I have an xts object (x) and I need to create a function (it must be a function) that returns the highest ranking to date for each index (days) of the object. function(x) {max(x)} returns the ...
0
votes
1answer
48 views

combine time series into one xts

I'm writing a function that given a path will find all files in the folder, and read all the csv's into one xts object. The files all have the same dates which lineup and I want each file to be ...
1
vote
1answer
62 views

Why is there no apply.hourly in R with xts/zoo?

I want to aggregate data by hourly mean - hourly it is very easy: apply.daily(X2,mean) Why is there no fuction for hourly? I tried hr.means <- aggregate(X2, format(X2["timestamp"],"%Y-%m-%d ...
2
votes
2answers
66 views

Delete specific values in R with zoo/xts

My other Question about "Add missing xts/zoo data with linear interpolation in R" you can find here Add missing xts/zoo data with linear interpolation in R . But in general there is one more problem ...
1
vote
1answer
81 views

Add missing xts/zoo data with linear interpolation in R

I do have problems with missing data, but I do not have NAs - otherwise would be easier to handle... My data looks like this: time, value 2012-11-30 10:28:00, 12.9 2012-11-30 10:29:00, 5.5 ...
2
votes
3answers
85 views

Save xts object as csv file

I loaded a csv file using: data = read.csv(file="/home/stefanos/R/data_frames_new/temp2.csv", header=TRUE, sep=",") The first 4 lines of the temp2.csv file are: ...
4
votes
1answer
33 views

Split xts object by events

I have an xts object with a handful of event indicators. I need to split it by certain events, so that all entries from a given event up to the next event will be saved in the same xts, eventually ...
3
votes
2answers
60 views

get xts objects from within an environment

I have stored xts objects inside an environment. Can I subset these objects while they are stored in an environment, i.e. act upon them "in-place"? Can I extract these objects by referring to their ...
3
votes
1answer
57 views

Fill in missing time steps (yyyy-mm-dd HH:MM:SS) by adding rows with missing times in R

I have a large data set that looks like: Time,Volume 1996-02-05 00:34:00,0.01 1996-02-05 00:51:00,0.01 1996-02-05 00:52:00,0.01 1996-02-05 01:04:00,0.01 1996-02-05 01:19:00,0.01 1996-02-05 ...
2
votes
1answer
89 views

plot xts Error in if (on == “years”) { : missing value where TRUE/FALSE needed

I am trying to plot an xts object but I get an error about years.. The xts object just has a numerical value and a POSIXct index. Below is the code that shows the xts and the error when trying plot. ...

1 2 3 4 5 9