Adds meta information (date and exchange) to an itch filename
Source:R/helpers.R
add_meta_to_filename.Rd
Note that if date and exchange information are already present, they are overwritten
Arguments
- file
the filename
- date
the date as a date-class or as a string that is understood by
base::as.Date()
.- exchange
the name of the exchange
Examples
add_meta_to_filename("03302017.NASDAQ_ITCH50", "2010-12-24", "TEST")
#> [1] "12242010.TEST_ITCH50"
add_meta_to_filename("20170130.BX_ITCH_50.gz", "2010-12-24", "TEST")
#> [1] "20101224.TEST_ITCH_50.gz"
add_meta_to_filename("S030220-v50-bx.txt.gz", "2010-12-24", "TEST")
#> [1] "S122410-v50-TEST.txt.gz"
add_meta_to_filename("unknown_file.ITCH_50", "2010-12-24", "TEST")
#> [1] "unknown_file_20101224.TEST_ITCH_50"