The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
TTR is an R package that provides the most popular technical analysis functions for financial market data. Many of these functions are used as components of systematic trading strategies and financial charts.
Available as part of the Tidelift Subscription.
The maintainers of TTR
and thousands of other packages
are working with Tidelift to deliver commercial support and maintenance
for the open source dependencies you use to build your applications.
Save time, reduce risk, and improve code health, while paying the
maintainers of the exact dependencies you use. Learn
more.
If you are interested in supporting the ongoing development and maintenance of TTR, please consider becoming a sponsor.
The current release is available on CRAN, which you can install via:
install.packages("TTR")
To install the development version, you need to clone the repository and build from source, or run one of:
# lightweight
::install_github("joshuaulrich/TTR")
remotes# or
::install_github("joshuaulrich/TTR") devtools
You will need tools to compile C, C++, and Fortran code. See the relevant appendix in the R Installation and Administration manual for your operating system:
Here are a few examples of some of the more well-known indicators:
# "TTR Composite" (simulated data)
data(ttrc)
# Bollinger Bands
<- BBands( ttrc[,c("High","Low","Close")] )
bbands
# Directional Movement Index
<- ADX(ttrc[,c("High","Low","Close")])
adx
# Moving Averages
<- EMA(ttrc[,"Close"], n=20)
ema <- SMA(ttrc[,"Close"], n=20)
sma
# MACD
<- MACD( ttrc[,"Close"] )
macd
# RSI
<- RSI(ttrc[,"Close"])
rsi
# Stochastics
<- stoch(ttrc[,c("High","Low","Close")]) stochOsc
TTR works with the chartSeries()
function in quantmod. Here’s an
example that uses chartSeries()
and adds TTR-calculated
indicators and overlays to the chart.
# "TTR Composite" (simulated data)
data(ttrc)
# Use quantmod's OHLCV extractor function to help create an xts object
<- xts(OHLCV(ttrc), ttrc[["Date"]])
xttrc
chartSeries(xttrc, subset = "2006-09/", theme = "white")
addBBands()
addRSI()
Ask your question on Stack Overflow or the R-SIG-Finance mailing list (you must subscribe to post).
Please see the Contributing Guide.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.