Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
196 changes: 136 additions & 60 deletions R/addAroon.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,79 +8,155 @@
`addAroon` <-
function (n = 20, ..., on = NA, legend = "auto")
{
lchob <- get.current.chob()
x <- as.matrix(lchob@xdata)
x <- cbind(Hi(x),Lo(x))
x <- aroon(HL = x, n = n)[,-3]
yrange <- NULL
chobTA <- new("chobTA")
if (NCOL(x) == 1) {
chobTA@TA.values <- x[lchob@xsubset]
lenv <- new.env()
lenv$chartAroon <- function(x, n, ..., on, legend) {
xsubset <- x$Env$xsubset
Aroon <- Aroon[xsubset,-3]
spacing <- x$Env$theme$spacing
x.pos <- 1 + spacing * (1:NROW(Aroon) - 1)
xlim <- x$Env$xlim
ylim <- c(0,100)
theme <- x$Env$theme
y_grid_lines <- x$Env$y_grid_lines

# add inbox color
rect(xlim[1], ylim[1], xlim[2], ylim[2], col=theme$fill)
# add grid lines and left-side axis labels
segments(xlim[1], y_grid_lines(ylim),
xlim[2], y_grid_lines(ylim),
col = theme$grid, lwd = x$Env$grid.ticks.lwd, lty = 3)
text(xlim[1], y_grid_lines(ylim), y_grid_lines(ylim),
col = theme$labels, srt = theme$srt,
offset = 0.5, pos = 2, cex = theme$cex.axis, xpd = TRUE)
# add border of plotting area
rect(xlim[1], ylim[1], xlim[2], ylim[2], border=theme$labels)

lines(x.pos, Aroon[,1], col = theme$Aroon$col$aroonUp,
lwd = 1, lend = 2, ...)
lines(x.pos, Aroon[,2], col = theme$Aroon$col$aroonDn,
lwd = 1, lend = 2, ...)
}
else chobTA@TA.values <- x[lchob@xsubset, ]
chobTA@name <- "chartTA"
if (any(is.na(on))) {
chobTA@new <- TRUE
if(!is.character(legend) || legend == "auto")
legend <- gsub("^add", "", deparse(match.call()))
mapply(function(name, value) {
assign(name, value, envir = lenv)
}, names(list(n = n, ..., on = on, legend = legend)),
list(n = n, ..., on = on, legend = legend))
exp <- parse(text = gsub("list", "chartAroon", as.expression(substitute(list(x = current.chob(),
n = n, ..., on = on, legend = legend)))), srcfile = NULL)
exp <- c(exp, expression(
frame <- get_frame(),
lc <- xts:::legend.coords("topleft", xlim, ylim[[frame]]),
legend(x = lc$x, y = lc$y,
legend = c(paste(legend, ":"),
paste("aroonUp :",format(last(Aroon[xsubset,1]),nsmall = 3L)),
paste("aroonDn :",format(last(Aroon[xsubset,2]),nsmall = 3L))),
text.col = c(theme$fg, theme$Aroon$col$aroonUp, theme$Aroon$col$aroonDn),
xjust = lc$xjust,
yjust = lc$yjust,
bty = "n",
y.intersp=0.95)))

lchob <- current.chob()
ncalls <- length(lchob$Env$call_list)
lchob$Env$call_list[[ncalls + 1]] <- match.call()
if (is.null(lchob$Env$theme$Aroon)) {
lchob$Env$theme$Aroon$col$aroonUp <- 3
lchob$Env$theme$Aroon$col$aroonDn <- 4
lchob$Env$theme$Aroon$col$aroonOsc <- 3
}
xdata <- lchob$Env$xdata
xdata <- cbind(Hi(xdata),Lo(xdata))
xsubset <- lchob$Env$xsubset
Aroon <- aroon(HL=xdata,n=n)[,-3]
lenv$xdata <- structure(Aroon, .Dimnames = list(NULL, c("aroonUp", "aroonDn")))
lenv$Aroon <- lchob$Env$TA$Aroon <- Aroon
lenv$get_frame <- lchob$get_frame
if(is.na(on)) {
lchob$add_frame(ylim=c(0,100),asp=1,fixed=TRUE)
lchob$next_frame()
}
else {
chobTA@new <- FALSE
chobTA@on <- on
lchob$set_frame(sign(on)*(abs(on)+1L))
}
chobTA@call <- match.call()
legend.name <- gsub("^add", "", deparse(match.call()))
gpars <- c(list(...), list(col = 3:4))[unique(names(c(list(col = 3:4),
list(...))))]
chobTA@params <- list(xrange = lchob@xrange, yrange = yrange,
colors = lchob@colors, color.vol = lchob@color.vol,
multi.col = lchob@multi.col,
spacing = lchob@spacing, width = lchob@width, bp = lchob@bp,
x.labels = lchob@x.labels, time.scale = lchob@time.scale,
isLogical = is.logical(x), legend = legend, legend.name = legend.name,
pars = list(gpars))
return(chobTA)
lchob$replot(exp, env=c(lenv,lchob$Env), expr=TRUE)
lchob
}

`addAroonOsc` <-
function (n = 20, ..., on = NA, legend = "auto")
{
lchob <- get.current.chob()
x <- as.matrix(lchob@xdata)
x <- cbind(Hi(x),Lo(x))
x <- aroon(HL = x, n = n)[,3]
yrange <- NULL
chobTA <- new("chobTA")
if (NCOL(x) == 1) {
chobTA@TA.values <- x[lchob@xsubset]
}
else chobTA@TA.values <- x[lchob@xsubset, ]
chobTA@name <- "chartTA"
if (any(is.na(on))) {
chobTA@new <- TRUE
lenv <- new.env()
lenv$chartAroonOsc <- function(x, n, ..., on, legend) {
xsubset <- x$Env$xsubset
AroonOsc <- AroonOsc[xsubset]
spacing <- x$Env$theme$spacing
x.pos <- 1 + spacing * (1:NROW(AroonOsc) - 1)
xlim <- x$Env$xlim
frame <- x$get_frame()
ylim <- x$get_ylim()[[frame]]
theme <- x$Env$theme
y_grid_lines <- x$Env$y_grid_lines

# add inbox color
rect(xlim[1], ylim[1], xlim[2], ylim[2], col=theme$fill)
# add grid lines and left-side axis labels
segments(xlim[1], y_grid_lines(ylim),
xlim[2], y_grid_lines(ylim),
col = theme$grid, lwd = x$Env$grid.ticks.lwd, lty = 3)
text(xlim[1], y_grid_lines(ylim), y_grid_lines(ylim),
col = theme$labels, srt = theme$srt,
offset = 0.5, pos = 2, cex = theme$cex.axis, xpd = TRUE)
# add border of plotting area
rect(xlim[1], ylim[1], xlim[2], ylim[2], border=theme$labels)

lines(x.pos, AroonOsc, col = theme$Aroon$col$aroonOsc,
lwd = 1, lend = 2, ...)
}
else {
chobTA@new <- FALSE
chobTA@on <- on
if(!is.character(legend) || legend == "auto")
legend <- gsub("^addAroonOsc", "Aroon Oscillator", deparse(match.call()))
mapply(function(name, value) {
assign(name, value, envir = lenv)
}, names(list(n = n, ..., on = on, legend = legend)),
list(n = n, ..., on = on, legend = legend))
exp <- parse(text = gsub("list", "chartAroonOsc", as.expression(substitute(list(x = current.chob(),
n = n, ..., on = on, legend = legend)))), srcfile = NULL)
exp <- c(exp, expression(
frame <- get_frame(),
lc <- xts:::legend.coords("topleft", xlim, ylim[[frame]]),
legend(x = lc$x, y = lc$y,
legend = c(paste(legend, ":"),
paste(format(last(AroonOsc[xsubset]),nsmall = 3L))),
text.col = c(theme$fg, theme$Aroon$col$aroonOsc),
xjust = lc$xjust,
yjust = lc$yjust,
bty = "n",
y.intersp=0.95)))

lchob <- current.chob()
ncalls <- length(lchob$Env$call_list)
lchob$Env$call_list[[ncalls + 1]] <- match.call()
if (is.null(lchob$Env$theme$Aroon)) {
lchob$Env$theme$Aroon$col$aroonUp <- 3
lchob$Env$theme$Aroon$col$aroonDn <- 4
lchob$Env$theme$Aroon$col$aroonOsc <- 3
}
chobTA@call <- match.call()
legend.name <- gsub("^addAroonOsc", "Aroon Oscillator ", deparse(match.call()))
gpars <- c(list(...), list(col = 3:4))[unique(names(c(list(col = 3:4),
list(...))))]
chobTA@params <- list(xrange = lchob@xrange, yrange = yrange,
colors = lchob@colors, color.vol = lchob@color.vol, multi.col = lchob@multi.col,
spacing = lchob@spacing, width = lchob@width, bp = lchob@bp,
x.labels = lchob@x.labels, time.scale = lchob@time.scale,
isLogical = is.logical(x), legend = legend, legend.name = legend.name,
pars = list(gpars))
if (is.null(sys.call(-1))) {
TA <- lchob@passed.args$TA
lchob@passed.args$TA <- c(TA, chobTA)
lchob@windows <- lchob@windows + ifelse(chobTA@new, 1,
0)
do.call("chartSeries.chob", list(lchob))
invisible(chobTA)
xdata <- lchob$Env$xdata
xdata <- cbind(Hi(xdata),Lo(xdata))
xsubset <- lchob$Env$xsubset
AroonOsc <- aroon(HL=xdata,n=n)[,3]
lenv$xdata <- structure(AroonOsc, .Dimnames = list(NULL, "aroonOsc"))
lenv$AroonOsc <- lchob$Env$TA$AroonOsc <- AroonOsc
lenv$get_frame <- lchob$get_frame
if(is.na(on)) {
lchob$add_frame(ylim=c(min(lenv$AroonOsc[xsubset],na.rm=TRUE)*0.95,
max(lenv$AroonOsc[xsubset], na.rm=TRUE)*1.05),asp=1,fixed=FALSE)
lchob$next_frame()
}
else {
return(chobTA)
lchob$set_frame(sign(on)*(abs(on)+1L))
}
lchob$replot(exp, env=c(lenv,lchob$Env), expr=TRUE)
lchob
}

101 changes: 64 additions & 37 deletions R/addCLV.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,45 +7,72 @@
`addCLV` <-
function (..., on = NA, legend = "auto")
{
lchob <- get.current.chob()
x <- as.matrix(lchob@xdata)
x <- HLC(x)
x <- CLV(HLC = x)
yrange <- NULL
chobTA <- new("chobTA")
if (NCOL(x) == 1) {
chobTA@TA.values <- x[lchob@xsubset]
lenv <- new.env()
lenv$chartCLV <- function(x, ..., on, legend) {
xsubset <- x$Env$xsubset
clv <- clv[xsubset]
spacing <- x$Env$theme$spacing
x.pos <- 1 + spacing * (1:NROW(clv) - 1)
xlim <- x$Env$xlim
frame <- x$get_frame()
ylim <- x$get_ylim()[[frame]]
theme <- x$Env$theme
y_grid_lines <- x$Env$y_grid_lines

# add inbox color
rect(xlim[1], ylim[1], xlim[2], ylim[2], col=theme$fill)
# add grid lines and left-side axis labels
segments(xlim[1], y_grid_lines(ylim),
xlim[2], y_grid_lines(ylim),
col = theme$grid, lwd = x$Env$grid.ticks.lwd, lty = 3)
text(xlim[1], y_grid_lines(ylim), y_grid_lines(ylim),
col = theme$labels, srt = theme$srt,
offset = 0.5, pos = 2, cex = theme$cex.axis, xpd = TRUE)
# add border of plotting area
rect(xlim[1], ylim[1], xlim[2], ylim[2], border=theme$labels)

lines(x.pos, clv, type = "h", col = theme$CLV$col,
lwd = 1, lend = 2, ...)
}
else chobTA@TA.values <- x[lchob@xsubset, ]
chobTA@name <- "chartTA"
if (any(is.na(on))) {
chobTA@new <- TRUE
if(!is.character(legend) || legend == "auto")
legend <- gsub("^addCLV", "Close Location Value", deparse(match.call()))
mapply(function(name, value) {
assign(name, value, envir = lenv)
}, names(list(..., on = on, legend = legend)),
list(..., on = on, legend = legend))
exp <- parse(text = gsub("list", "chartCLV", as.expression(substitute(list(x = current.chob(),
..., on = on, legend = legend)))), srcfile = NULL)
exp <- c(exp, expression(
frame <- get_frame(),
lc <- xts:::legend.coords("topleft", xlim, ylim[[frame]]),
legend(x = lc$x, y = lc$y,
legend = c(paste(legend, ":"),
paste(format(last(clv[xsubset]),nsmall = 3L))),
text.col = c(theme$fg, theme$CLV$col),
xjust = lc$xjust,
yjust = lc$yjust,
bty = "n",
y.intersp=0.95)))

lchob <- current.chob()
ncalls <- length(lchob$Env$call_list)
lchob$Env$call_list[[ncalls + 1]] <- match.call()
if (is.null(lchob$Env$theme$CLV)) {
lchob$Env$theme$CLV$col <- 5
}
xdata <- lchob$Env$xdata
xsubset <- lchob$Env$xsubset
clv <- CLV(HLC=HLC(xdata))
lenv$xdata <- structure(clv, .Dimnames = list(NULL, "clv"))
lenv$clv <- lchob$Env$TA$clv <- clv
lenv$get_frame <- lchob$get_frame
if(is.na(on)) {
lchob$add_frame(ylim=range(lenv$clv[xsubset],na.rm=TRUE),asp=1,fixed=FALSE)
lchob$next_frame()
}
else {
chobTA@new <- FALSE
chobTA@on <- on
lchob$set_frame(sign(on)*abs(on))
}
chobTA@call <- match.call()
legend.name <- gsub("^.*[(]", " Close Location Value (",
deparse(match.call()))#, extended = TRUE)
gpars <- c(list(...), list(col=5, type = "h"))[unique(names(c(list(col=5, type = "h"),
list(...))))]
chobTA@params <- list(xrange = lchob@xrange, yrange = yrange,
colors = lchob@colors, color.vol = lchob@color.vol, multi.col = lchob@multi.col,
spacing = lchob@spacing, width = lchob@width, bp = lchob@bp,
x.labels = lchob@x.labels, time.scale = lchob@time.scale,
isLogical = is.logical(x), legend = legend, legend.name = legend.name,
pars = list(gpars))
# if (is.null(sys.call(-1))) {
# TA <- lchob@passed.args$TA
# lchob@passed.args$TA <- c(TA, chobTA)
# lchob@windows <- lchob@windows + ifelse(chobTA@new, 1,
# 0)
# chartSeries.chob <- quantmod:::chartSeries.chob
# do.call("chartSeries.chob", list(lchob))
# invisible(chobTA)
# }
# else {
return(chobTA)
# }
lchob$replot(exp, env=c(lenv,lchob$Env), expr=TRUE)
lchob
}
Loading