R/read_log.R

Defines functions read_log

Documented in read_log

#' Read log
#' 
read_log <- function() {
  
  if (!file.exists("data/portfolios/shinyStocksLog.txt")) {
    return(NULL)
  }
  
  read.table(file = "data/portfolios/shinyStocksLog.txt", header = TRUE, sep = ";")
  
}
kristian-bak/shinyStocks documentation built on Aug. 16, 2022, 4:15 a.m.