Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Stock: HD, IP, RAD Calculate returns and plot returns over time using Rstudio Calculate the daily percentage returns of each asset using the following formula:
Stock: HD, IP, RAD
Calculate returns and plot returns over time using Rstudio
Calculate the daily percentage returns of each asset using the following formula:
rt= 100*[ pt / (pt-1)]
Where Pt is the asset price at time t. Then plot the returns for each asset over time. ## Hint: you need to add a column to your data frame (yourDataName). ## You can use the mutate() function ## Don't forget to group_by() ## The lag() function can be used to find the price in the previous date ## Double check your results!!
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started