Learn R Programming

TTR (version 0.24.3)

CTI: Ehler's Correlation Trend Indicator

Description

Ehler's Correlation Trend Indicator (CTI) measures the Spearman correlation of the price with the ideal trend line: a straight line with increasing slope.

Usage

CTI(price, n = 20, slope = 1)

Value

A object of the same class as price or a matrix (if try.xts fails) with the column:

cti

The Correlation Trend Indicator.

Arguments

price

Price series that is coercible to xts or matrix.

n

Number of periods to use.

slope

Slope of desired trend.

Author

Ethan Smith, Joshua Ulrich

Details

The CTI measures the Spearman correlation between the price and the ideal trend line with slope of slope, over the past n days.

See URL in references section for further details.

References

John Ehlers, Correlation Trend Indicator, Stocks & Commodities May-2020 The following site(s) were used to code/document this indicator:
https://financial-hacker.com/petra-on-programming-a-unique-trend-indicator/

See Also

See aroon, CCI, ADX, VHF, GMMA, TDI for other indicators that measure trend direction/strength.

Examples

Run this code

data(ttrc)
cti <- CTI(ttrc[,"Close"], n = 20)

Run the code above in your browser using DataLab