I am using quantmod and downloading values of a stock using getSymbols. I found that the data in the source itself is incorrect for a range of dates. Unfortunately the data is not available in google.
stock <- 'RELIANCE.BO'
getSymbols(stock)
stockAdjusted <- adjustOHLC(RELIANCE.BO, adjust = c("split","dividend"), use.Adjusted = FALSE, ratio = NULL)
stockAdjusted <- stockAdjusted[!(apply(stockAdjusted, 1, function(y) any(y == 0))),]
The price values for for 2008-07-29 to 2008-08-14 are half of what they should be. How can I correct the values for this range of dates?
You can access the data for a given date range and column by using normal indexing with
[
. To get, say, the columnRELIANCE.BO.Adjusted
for the date range 2008-07-29 to 2008-08-14, you can simply write:As with data frames, you can use indexing also to make assignments. To multiply the column
RELIANCE.BO.Adjusted
by 2 only for the requested date range, you can do the following: