search for: ibm&x

Displaying 9 results from an estimated 9 matches for "ibm&x".

Did you mean: ibm&a
2007 Sep 01
1
Problem in downloading Yahoo Finance data from R
Hi R users, I have a problem in downloading Yahoo Finance data from R. I have tried an example given in R, to download. The error is given below: >library(fCalendar) > yahooImport("s=IBM&a=11&b=1&c=1999&d=0&q=31&f=2000&z=IBM&x=.csv ", file = "D:\\ Downlaod",source = "http://ichart.yahoo.com/table.csv?", save = FALSE, sep = ";", swap = 20, try = TRUE) trying URL 'http://ichart.yahoo.com/table.csv?s=IBM&a=11&...
2003 Sep 30
2
ts - unit conversion
...s with various numbers of days, not simply 1/12th of a year. It is unclear to me how sophisticated the aggregator is in this regard. I have V&R but it seems there may be some SPlus/R differences here. Any suggestions for documents that addresses these issues would be wonderful. Thanks. > ibm <- get.hist.quote('ibm',start='2003-01-01') trying URL `http://chart.yahoo.com/table.csv?s=ibm&a=11&b=31&c=2002&d=8&e=28&f=2003&g=d&q=q&y=0&z=ibm&x=.csv' Content type `application/octet-stream' length unknown opened URL ...........
2002 Jun 06
3
Problem with get.hist.quote (tseries library)....
...he error message, for an example included in the help file. Also the R.Version() details is attached. Please, do you know if there is a workaround ? Thanks, Carlos. ++++++++++++++++++++++++ ERROR MESSAGE +++++++++++++++++++++ > library(tseries) > x <- get.hist.quote(instrument = "ibm", quote = c("Cl", "Vol")) trying URL `http://chart.yahoo.com/table.csv?s=ibm&a=01&b=02&c=1991&d=06&e=05&f=2002&g= d&q=q&y=0&z=ibm&x=.csv' Content type `application/octet-stream' length unknown opened URL downloaded 119Kb...
2004 Jul 02
1
priceIts problem
Dear R People: In library(its), there is a command priceIts. There is a problem with this command. It is returning an error message: > ibm1 <- priceIts(instrument="ibm",start="1998-01-01",quote="Open") Error in download.file(url, destfile, method = method, quiet = quiet) : cannot open URL `http://chart.yahoo.com/table.csv?s=ibm&a=0&b=01&c=1998&d=5&e=30&f=2004&g=d&am...
2001 Oct 29
1
Help with 'get.hist.quote' on tseries
Hi ALL: I am trying to use get.help.quote from library(tseries). I tried to run the example from help(get.hist.quote) but R complained. Here is the command I used and the response: ibm <- get.hist.quote(instrument = "ibm", start = "1998-01-01") trying URL `http://chart.yahoo.com/table.csv?s=ibm&a=01&b=01&c=1998&d=10&e=28&f=2001&g=d&q=q&y=0&z=ibm&x=. csv' Content type `application/octet-stream' length unkn...
2002 Jul 18
1
tseries (get.hist.quote)
Hi, i really positive surprised when i found the "get.hist.quote" but didn't now why i get with the examples from Online-Help errorMessages. Perhaps their is a problem with POSIX and my OS WIN2000/R1.5.1 ? Thanks for advance & regards,Christian $ ibm <- get.hist.quote(instrument = "ibm", start = "1998-01-01") trying URL ` http://chart.yahoo.com/table.csv?s=ibm&a=01&b=01&c=1998&d=07&e=17&f=2002&g=d&q=q&y=0&z=ibm&x=.csv ' Content type `application/octet-stream' length u...
2003 Dec 14
1
A faster plotOHLC() for the tseries package
...col = col[1], bg = bg) + segments(time.x, x[, "Close"], time.x + dt, x[, "Close"], col = col[1], bg = bg) if (ann) title(main = main, xlab = xlab, ylab = ylab, ...) if (axes) { decrease the time spent on a series of ~500 points by a factor of sixty: > IBM<-get.hist.quote("IBM", "2001-12-14") trying URL http://chart.yahoo.com/table.csv?s=IBM&a=11&b=13&c=2001&d=11&e=12&f=2003&g=d&q=q&y=0&z=IBM&x=.csv' Content type application/octet-stream' length unknown opened URL .......... ....
2003 Dec 06
3
Axe time of series in format yy-mm-dd
I'm trying to plot a ibm stock time series. I made the download of that series, ibm <- get.hist.quote(instrument = "ibm", start = "2003-01-01",quote=c("CL")) And ibm is a serie wiht this characteristic: Start = 37623 End = 37960 Frequency = 1 When I try to plot it, ts.plot(ibm) In the...
2004 Apr 25
2
Yahoo bug in tseries::get.hist.quote and its::priceIts
Both get.hist.quote, and its derivative priceIts, rely on download.file() to fetch financial data series from Yahoo! in .csv format. They allow for nice interactive demonstrations of what one can do with R. Unfortunately, both are currently broken as Yahoo! decided to add a somewhat useless html comment at the end of the csv 'stream', breaking the regular format of n rows with k columns.