opt_create_graphs: Function to create summary graphs of the trading results

View source: R/opt_create_graphs.R

opt_create_graphsR Documentation

Function to create summary graphs of the trading results

Description

Create graphs and store them into pdf file

[Stable]

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

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

Value

graphic output

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



vzhomeexperiments/lazytrade documentation built on Feb. 20, 2024, 6:09 p.m.