lazytrade (version 0.4.0)

log_RL_progress: Function to log RL progress.

Description

Function will record Q values during updating of the model. These values will be used by another function

Usage

log_RL_progress(x, states, actions, control)

Arguments

x

- dataframe containing trading results

states

- Selected states of the System

actions

- Selected actions executed under environment

control

- control parameters as defined in the Reinforcement Learning Package

Value

dataframe with log of RL model

Examples

Run this code
# NOT RUN {
# retrieve RL model Q values progress
library(ReinforcementLearning)
library(dplyr)
library(magrittr)
data(data_trades)
x <- data_trades
states <- c("tradewin", "tradeloss")
actions <- c("ON", "OFF")
control <- list(alpha = 0.7, gamma = 0.3, epsilon = 0.1)

log_RL_progress(x = x,states = states, actions = actions, control = control)

# }

Run the code above in your browser using DataLab