Re: [R] CandlestickCharts of any listed stock and fetching stock prices into R

2021-12-18 Thread Jim Lemon
Hi Winod, Your first error message seems to be saying that you are passing a function that returns an "ohic" object rather than the object. Maybe: ohic<-get.ohlc.yahoo("GOOG",start="2020-12-18",end="2021-12-17") candlestickChart(ohic,..) would get you a bit further. Also it's obvious that the

Re: [R] CandlestickCharts of any listed stock and fetching stock prices into R

2021-12-18 Thread Bert Gunter
Note also that there is an r-sig-finance list that would be a better place to post such queries. Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Dec 18,

Re: [R] CandlestickCharts of any listed stock and fetching stock prices into R

2021-12-18 Thread Bert Gunter
Please read and follow the Posting Guide linked below, which says, among other things: "For questions about functions in standard packages distributed with R (see the FAQ Add-on packages in R), ask questions on R-help. [The link is:

[R] CandlestickCharts of any listed stock and fetching stock prices into R

2021-12-18 Thread Winod Dhamnekar
Hello, R users community, I want to plot candlestickCharts of any stock prices of listed companies on any stock exchange (Indian or worldwide) into r by using candlestickchart command in 'FinCal' r package. But I could not plot candlestic charts. R showed me errors.