lazytrade (version 0.4.0)

opt_create_graphs: Function to create summary graphs of the trading results

Description

Create graphs and store them into pdf file

Usage

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')

Value

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

Run this code
# NOT RUN {
 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')


# }

Run the code above in your browser using DataCamp Workspace