Description Usage Arguments Details Value Note Author(s) References See Also Examples
The TRIX indicator calculates the rate of change of a triple exponential moving average. Developed by Jack K. Hutson.
1 2 |
price |
Price series that is coercible to xts or matrix. |
n |
Number of periods for moving average. |
nSig |
Number of periods for signal line moving average. |
maType |
Either:
|
percent |
logical; if |
... |
Other arguments to be passed to the
|
The TRIX is calculated as follows:
3MA = MA
(
MA
( MA
(price
) ) )
trix = 100 * [
3MA(t) / 3MA(t-1) - 1 ]
A object of the same class as price
or a vector
(if try.xts
fails) containing the TRIX values.
Buy/sell signals are generated when the TRIX crosses above/below zero. A nine-period EMA of the TRIX is used as a default signal line. Buy/sell signals are generated when the TRIX crosses above/below the signal line and is also above/below zero.
Joshua Ulrich
The following site(s) were used to code/document this
indicator:
http://www.fmlabs.com/reference/default.htm?url=TRIX.htm
http://www.equis.com/Customer/Resources/TAAZ/?c=3&p=114
http://www.linnsoft.com/tour/techind/trix.htm
http://stockcharts.com/education/IndicatorAnalysis/indic_trix.htm
See EMA
, SMA
, etc. for moving
average options; and note Warning section.
1 2 3 4 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.