Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 821 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 821 Bytes

tefasr

This package enables you to fetch historical data of public investment funds in Turkey from Turkey Electronic Fund Trading Platform.

Installation

You can install the development version of tefasr from GitHub with:

# install.packages("devtools")
devtools::install_github("can-taslicukur/tefasr")

Example

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")
)