Fetches FinTurk data for a range of quarters by calling fetch_finturk1 iteratively.
fetch_finturk(
start_year,
start_month,
end_year,
end_month,
table_no,
grup_kod = 10001,
il = 0,
delay = 0.5,
verbose = TRUE
)Starting/ending year (YYYY).
Starting/ending month (3,6,9,12).
Table number to fetch (1-7). No default.
Use list_tables with source = "finturk" to see available options.
Group code (10001-10007). Default 10001.
Use list_groups with source = "finturk" to see available options.
plaka (license plate) number (0-81, 99). Default 0.
Delay between requests in seconds. Default 0.5.
Print progress messages. Default TRUE.
Combined data frame with "fetch_info" attribute.
fetch_bddk() for monthly BRSA data .
# \donttest{
# Fetch multiple quarters
my_data <- fetch_finturk(2024, 3, 2024, 9, table_no = 1)
#> Fetching table 1 for 3 quarterly periods: 2024-03 to 2024-09
#> [1/3] 2024-03... 82 rows
#> [2/3] 2024-06... 82 rows
#> [3/3] 2024-09... 82 rows
# }