opt_create_graphs function

Function to create summary graphs of the trading results

Function to create summary graphs of the trading results

Create graphs and store them into pdf file

opt_create_graphs(x, outp_path, graph_type = "pdf")

Arguments

  • x: * dataframe with aggregated trading results
  • outp_path: * path to the folder where to write file
  • graph_type: * character, one of the options c('ts', 'bars', 'pdf')

Returns

graphic output

Details

bar graph and time series optionally written to the pdf file. File is named with a date of analysis to the location specified by the user

Examples

library(lazytrade) library(readr) library(dplyr) library(magrittr) library(lubridate) library(ggplot2) data(DFR) dir <- normalizePath(tempdir(),winslash = "/") # create pdf file with two graphs opt_create_graphs(x = DFR, outp_path = dir) # only show time series plot opt_create_graphs(x = DFR, graph_type = 'ts')