Predictive Hacks

Candlestick Charts in R

candlestick in R

We have written many posts related to stocks. A good way to represent the stock prices as time series is with Candlestick Charts.

Let’s see how we can easily produce candlestick charts with R. We will work with the quantmod library and with the AMZN stock.

library("quantmod")    


# get the Amazon Stock data
Amazon<-getSymbols("AMZN", 
           from = "2020-01-01", 
           to = "2021-03-17",
           periodicity = "daily",
           auto.assign=FALSE)

chartSeries(Amazon, name="Amazon Chart")

chartSeries(Amazon, name="Amazon Chart", subset = "last 2 months")
chartSeries(Amazon, name="Amazon Chart", subset = "2021", theme="white")

Share This Post

Share on facebook
Share on linkedin
Share on twitter
Share on email

Leave a Comment

Subscribe To Our Newsletter

Get updates and learn from the best

More To Explore

Python

Image Captioning with HuggingFace

Image captioning with AI is a fascinating application of artificial intelligence (AI) that involves generating textual descriptions for images automatically.

Python

Intro to Chatbots with HuggingFace

In this tutorial, we will show you how to use the Transformers library from HuggingFace to build chatbot pipelines. Let’s