import_data: Import Data file with Trade Logs to R.

Description Usage Arguments Value Author(s) Examples

View source: R/import_data.R

Description

Function is capable to import file with executed trades log. Files do not have column headers hence function will take care to name columns as well as to perform relevant cleansing

[Stable]

Usage

1
import_data(path_sbxm, trade_log_file)

Arguments

path_sbxm
  • String, Path to the sandbox with the log file where the file with data is written

trade_log_file
  • String, File name where the order results are written

Value

Function will return the dataframe with trade data and automatically set proper column types

Author(s)

(C) 2019, 2020 Vladimir Zhbanko

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
library(lazytrade)
library(dplyr)
library(readr)
library(lubridate)

path_sbxm <- normalizePath(tempdir(),winslash = "/")

file.copy(from = system.file("extdata", "OrdersResultsT1.csv", package = "lazytrade"),
          to = file.path(path_sbxm, "OrdersResultsT1.csv"), overwrite = TRUE)

DFT1 <- import_data(path_sbxm = path_sbxm,
                    trade_log_file = "OrdersResultsT1.csv")

lazytrade documentation built on Dec. 16, 2021, 1:06 a.m.