ultimateOscillator: The Ultimate Oscillator

Description Usage Arguments Details Author(s) References Examples

View source: R/ultimateOscillator.R

Description

The Ultimate Oscillator is a momentum oscillator designed to capture momentum across three different time frames.

Usage

1
ultimateOscillator(HLC, n = c(7, 14, 28), wts = c(4, 2, 1))

Arguments

HLC

Object that is coercible to xts or matrix and contains High-Low-Close prices.

n

A vector of the number of periods to use for each average calculation.

wts

The weights applied to each average.

Details

Created by Larry Williams in 1976.

Author(s)

Ivan Popivanov

References

The following site(s) were used to code/document this indicator:
https://school.stockcharts.com/doku.php?id=technical_indicators:ultimate_oscillator

Examples

1
2
data(ttrc)
ult.osc <- ultimateOscillator(ttrc[,c("High","Low","Close")])

TTR documentation built on Dec. 12, 2021, 9:07 a.m.

Related to ultimateOscillator in TTR...