1
vote
1answer
21 views

Non-consecutive number of lags in VAR (R package “vars”)

Is it possible (in package "vars" or maybe in some other R package?) to include non-consecutive lags into the var model, i.e., just lags 1 and 3. So far, it looks like when I set p = 3 under function ...
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 ...
0
votes
0answers
43 views

interpolating option volatility in R

I have a bunch of deltas and option implied vols at those deltas. I would like to interpolate them in R. I was thinking of simply doing the following: #first convert everything to moneyness type ...
4
votes
3answers
527 views

How to download intraday stock market data with R

All, I'm looking to download stock data either from Yahoo or Google on 15 - 60 minute intervals for as much history as I can get. I've come up with a crude solution as follows: library(RCurl) tmp ...
0
votes
1answer
76 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 ...
0
votes
1answer
60 views

Import Indian stock prices into R

Is there a way to import stock price data from Indian stock markets - BSE and NSE into R? I would like to know if there is a package that does what quantmod does from american markets. Any other way ...
0
votes
0answers
106 views

Test for Expected Shortfall

How can I test the goodness of estimation of Expected Shortfall in a simulation study (I have about 2300 1-step-forward forecasts, based on 5k simulations)? I need something like ...
1
vote
1answer
111 views

Merging data frames based on column and row names, conditional column creation

I have a data frame with monthly returns and their corresponding month. Data <- read.csv("C:/Users/h/Desktop/overflow.csv", sep=";", dec=",") Data$Date <- as.Date(as.character(Data$Date), ...
-2
votes
1answer
60 views

How to estimate the weight of a stock with help from returns? - R [closed]

this might be superbasic but I am fairly new to R. I wonder how to estimate the weight of a stock in a portofolio, based on the returns from multiple stocks in the portfolio as well as the portfolio ...
1
vote
1answer
231 views

Calculating monthly returns in R

This might be an insignificant question but unfortunately I'm unable to solve it. I have a portfolio of stocks of 50 companies. I have the dates and the closing prices on that particular day for each ...
3
votes
1answer
210 views

getSymbols (quantmod) giving wrong dates

I'm using the quantmod package to fetch stock data. The code Data = getSymbols('LON:ADN',src="google",auto.assign=FALSE, from = '2011-08-10') Results in an xts as expected, however on closer ...
3
votes
3answers
243 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 ...
4
votes
1answer
110 views

Fast loan rate calculation for a big number of loans

I have a big data set (around 200k rows) where each row is a loan. I have the loan amount, the number of payments, and the loan payment. I'm trying to get the loan rate. R doesn't have a function for ...
0
votes
0answers
81 views

Possible bug in latest xts [closed]

If I check out and build xts (xts_0.8-9) from source from r-forge I get very strange behaviour: require(quantmod) getSymbols("SPY") xy <- cbind(Cl(SPY), Op(SPY)) x <- xts(coredata(Cl(SPY)), ...
1
vote
2answers
96 views

maxdrawdown function

In R, I see there are two packages that have a maxdrawdown function. One is fTrading and the other is PerformaceAnalytics. Each of those does a different calculation. fTrading seems to make ...
0
votes
0answers
99 views

Latest quantmod::adjustOHLC() seems to not work properly [closed]

If I use quantmod::adjustOHLC I managed to get the following error: > require(quantmod) Loading required package: quantmod Loading required package: Defaults Loading required package: xts Loading ...
-3
votes
1answer
439 views

Portfolio Optimization using r and solve.QP

I'm trying to solve a quadratic programming problem for my portfolio optimization class using r. I would like to compare my answer to one in a book. Here is the problem: min: t(c)%*%x + ...
2
votes
1answer
105 views

Finance - Random Portfolios using plyr and rportfolio - need to split columns

I am trying to compare an actual portfolio's performance to the performances of hypothetical random portfolios. Here is a sample of the data set I am working with. It shows two months worth of data, ...
0
votes
1answer
204 views

PerformanceAnalytics breaks rollaply on xts… Strange

I am trying to calculate some function on a rolling basis on some xts object. There seems to be a problem with doing so in many cases with xts after I load PerformanceAnalytics package... Please see ...
4
votes
1answer
162 views

xts::period.apply and cumprod

I am trying to calculate cumulative product for subsets of xts object. Here is an example of what I want and a question whether this can be done faster/more elegant using period.apply or some other ...
0
votes
1answer
97 views

Calculate Option Prices from a Multivariate XTS of Volatilities and Spot Prices

Here is my code for downloading spot prices and calculating realized volatilities for a bunch of indices. library(quantmod) library(PerformanceAnalytics) library(RQuantLib) tickers.index = ...
0
votes
1answer
182 views

Calculating FV (future value) of a Uniform Stream using TVM (time value of money) in R

I am perplexed. The problem I am working on (using financial package in R) is , Question : How much money must Carol deposit every year starting 1 year from now at 5.5 % per year in order to ...
0
votes
0answers
179 views

SVAPO calculation help - results different than tradestation

I am trying to replicate SVAPO calculation as outlined in http://www.traders.com/Documentation/FEEDbk_docs/2007/11/TradersTips/TradersTips.html#tradestation . Unfortunately, I must have a bug in my ...
0
votes
1answer
200 views

Converting 1min OHLC data to 5min OHLC data in R

I currently have OHLC intraday data that I need to convert to 5min data. Is there any way to do this in R?
0
votes
1answer
221 views

Error in xts(new.x, x.index) : order.by requires an appropriate time-based object [closed]

I know that this question has already been asked in this post (xts error - order.by requires an appropriate time-based object) but the problem seems to remain still unsolved. I'm working on the same ...
1
vote
1answer
87 views

fitting a distribution graphically

I am running some tests to try and determine what distribution my data follows. By the look of the density of my data I thought it looked a bit like a logistic distribution. I than used the package ...
0
votes
2answers
694 views

trying to compare two distributions

I found this code on internet that compares a normal distribution to different student distributions: x <- seq(-4, 4, length=100) hx <- dnorm(x) degf <- c(1, 3, 8, 30) colors <- c("red", ...
3
votes
1answer
380 views

XTS dates from different sources. Using R to calculate beta

I'm somewhat new to R. I imagine my error will be trivial to the experienced. I'm attempting to write an R program that will calculate beta for a number of stocks. The stock symbols are read from ...
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
204 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
71 views

Populating an hold based on buy for an xts object

The example below creates a buy signal (1) when a stock (IBM) has a greater than 10% daily drop in value. It then creates a hold signal for 4 additional days. If the number of hold days were to ...
2
votes
2answers
282 views

Any r package available to calculate IRR from uneven payments on specific dates?

Are there any R packages available that have some form of function that can calculate IRR based on uneven payments on specific dates for a lump sum distribution. Example: df <- data.frame(date = ...
2
votes
1answer
338 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
154 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
157 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 ...
1
vote
1answer
186 views

Converting Excel functions into R

I have two excel functions that I am trying to convert into R: numberShares =IF(AND(N213="BOH",N212="BOH")=TRUE,P212,IF(AND(N213="BOH",N212="Sell")=TRUE,ROUNDDOWN(Q212/C213,0),0)) marketValue ...
0
votes
2answers
150 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 ...
4
votes
2answers
317 views

quantmod::chart_Series() bug?

I would like to chart SPX using quantmod::chart_Series() and below draw changes in GDP and 12 month SMA of changes of GDP. No matter how I try to do it (what combinations I use) eithe errors occur or ...
3
votes
1answer
195 views

Override y-scale and x-scale using xlim/ylim or xrange/yrange in quantmod::chart_Series() - impossible?

I am trying to plot some support/resistance lines on top of quantmod::chart_Series(). The issue is that the interesting support/resistance lines are outside (below or above) series data range up to ...
3
votes
1answer
150 views

Is this xts bug or a feature I do not understand?

I am trying to run this code: require(quantmod) getSymbols("SPY") data <- to.weekly(SPY) # CentralPivot Point (P) = (High + Low + Close) / 3 center <- xts(rowSums(HLC(data))/3, ...
1
vote
1answer
260 views

Error Getting the EUR.USD Historical data using R on Ibrokers

I am using the IBrokers package and twsInstrument and for some reason it gives me an error using the simplest of methods. require("IBrokers") require("twsInstrument") tws <- ConnectIB() ...
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
131 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, ...
2
votes
2answers
510 views

Is it possible to use some API from within R to place a stock trade via an online broker (e.g., Zecco or Fidelity)

I know R and I am heavy user of Fidelity stock trading. I wonder if some R powerusers were able to find a broker which has an API and there is some sample R code to start with. Any broker is fine and ...
3
votes
0answers
393 views

Adding vertical lines to chart_Series and add_TA plots

After kind answer from Joshua on my previous post about this "issue" ( Issue with quantmod add_TA and chart_Series - lines and text disappear after next add_TA is called ) I have added some ...
0
votes
1answer
746 views

R language: Remove duplicate rows from xts object

I am having trouble deleting duplicated rows in an xts object. I have a R script that will download tick financial data of a currency and convert it to an xts object of OHLC format. The script also ...
4
votes
3answers
635 views

create an OHLC series from ticker data using R

This seems like it should be a common thing, but all my searching comes up with half or unfinished answers. I have a set of data in a csv. But the data is set up so it is time, price, volume. To ...
3
votes
1answer
551 views

Speed up WMA (Weighted Moving Average) calculation

I am trying to calculate exponential moving average on 15 day bars, but want to see "evolution" of the 15 day bar EMA on each (end of) day/bar. So, this means that I have 15 day bars. When new data ...
3
votes
1answer
364 views

Issue with quantmod add_TA and chart_Series - lines and text disappear after next add_TA is called

I am using new chart_Series and add_TA quite a lot. It works very well for me and I find it very useful. I am trying to add a few things (horizontal lines and some text) on a graph. Here problems ...
0
votes
3answers
140 views

Getting data from minute xts objects at particular minute

I am trying to get out a specific row (at a particular minute in a day) of a minute xts data. I have tried several things but only one strange thing works. > last(UpRatio["T10:14:00/T10:15:00"]) ...

1 2