This package enables you to fetch historical data of public investment funds in Turkey from Turkey Electronic Fund Trading Platform.
You can install the development version of tefasr from GitHub with:
# install.packages("devtools")
devtools::install_github("can-taslicukur/tefasr")
You can get general information such as price for a given fund type within a date range like this.
library(tefasr)
dat <- historical_information(
information_type = "BindHistoryInfo",
fund_type = "YAT",
start_date = as.Date("2021-10-01"),
end_date = as.Date("2021-10-01")
)