Resources
Links to some useful resources
R Blogdown
- blogdown: Creating Websites with RMarkdown: online book by Yihui Xie, Amber Thomas, Alison Presmanes Hill.
- Mainroad Hugo template
Testing Area
Dygraphs test
library(quantmod)
ea_price <- getSymbols(Symbols='EA', from='2020-01-01', to='2022-02-04', auto.assign = FALSE)
library(dygraphs)
dygraph(OHLC(ea_price), width='100%')