1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
\name{chart_Series}
\alias{chart_Series}
\alias{add_Series}
\alias{add_MACD}
\alias{add_ADX}
\alias{add_BBands}
\alias{add_RSI}
\alias{add_SMI}
\alias{add_TA}
\alias{add_Vo}
\alias{add_axis}
\alias{zoom_Chart}
\alias{chart_theme}
\alias{chart_pars}
\alias{axTicksByTime2}
\alias{axTicksByValue}
\alias{new.replot}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{
Experimental Charting Version 2
}
\description{
These are experimental functions for a new version of chartSeries
in quantmod. Interface, behavior, and functionality will change.
}
\usage{
chart_Series(x,
name = NULL,
type = "candlesticks",
subset = "",
TA = "",
pars = chart_pars(),
theme = chart_theme(),
clev = 0,
...)
}
\arguments{
\item{x}{
time series object
}
\item{name}{
name for chart
}
\item{type}{
one of:
}
\item{subset}{
an ISO8601 style character string indicating date range
}
\item{TA}{
a character string of semi-colon seperated TA calls.
}
\item{pars}{
chart parameters
}
\item{theme}{
chart theme
}
\item{clev}{
color level (experimental). Indicates the degree of brightness 0 is darkest color.
}
\item{\dots}{
additional parameters
}
}
\details{
These functions, when complete, will revert back to the original chartSeries naming
convention.
}
\value{
Called for graphical side effects.
}
\author{
Jeffrey A. Ryan
}
\note{
Highly experimental (read: alpha) use with caution.
}
\keyword{ dplot }% __ONLY ONE__ keyword per line
|