absolute_price_oscillator() is a generic S3 function that preserves
the input class: data.frame in, data.frame out; matrix in,
matrix out.
absolute_price_oscillator() also accepts a double vector, in which case the indicator is calculated directly without column selection. When the result has a single column it is simplified to a double vector; otherwise the full n by k matrix is returned.
Handling of NA values
Every indicator always emits leading NAs for the initial
lookback period - positions where there is not yet enough data to
produce a result. This is separate from how NAs already present
in the input are handled, which is controlled by the na.bridge
argument:
na.bridge = FALSE(default)The input is passed to the underlying TA-Lib C routine as-is. Because most indicators smooth across time (EMA, RSI, MACD, Bollinger Bands, ...), a single
NAin the input typically propagates forward and poisons every subsequent value - it is common for one missing observation to produce an output that is entirelyNAfrom that position onward. This mode is the right choice when you want to see the missing data in the output rather than silently compute around it.na.bridge = TRUENArows are stripped from the input before the C routine runs; the indicator is computed on the resulting dense series; results are then re-expanded to the original length withNAinserted at every position the input hadNA. Output length always matches input length, so the result can be joined back to the sourcedata.frameby row.Consequence to understand before enabling: bridging causes the indicator to treat non-consecutive observations as consecutive. A 14-period RSI with
na.bridge = TRUEover a series containing a month-long gap will compute using 14 observations that span several real-world months as if they were 14 adjacent trading days. For sparse missing values (e.g. a single missing tick) this is harmless; for clustered gaps (e.g. a delisted period, a weekend encoded asNA) the output is correctly aligned by position but economically meaningless across the gap. Inspect gap structure withwhich(is.na(x))before enabling on low-quality time series.
Usage
absolute_price_oscillator(
x,
cols,
fast = 12,
slow = 26,
ma = SMA(n = 9),
na.bridge = FALSE,
...
)Arguments
- x
An OHLC-V series coercible to data.frame. Alternatively,
xmay also be supplied as a double vector.- cols
(formula). An optional
1-variable formula selecting columns fromxvia model.frame. Defaults to~close.- fast
(integer). Period for the fast Moving Average (MA).
- slow
(integer). Period for the slow Moving Average (MA).
- ma
(list). The type of Moving Average (MA) used for the
fastandslowMA. SMA by default.- na.bridge
(logical). A logical of length 1. FALSE by default. When FALSE, input
NAs propagate through the TA-Lib C routine (most indicators will fill the remaining output withNA). When TRUE, inputNArows are stripped before computation and re-inserted at the original positions in the output, causing the indicator to treat non-consecutive non-NAobservations as if they were adjacent — see the Handling ofNAvalues section above for the consequences.- ...
Additional parameters passed into model.frame.
See also
Other Momentum Indicator:
aroon(),
aroon_oscillator(),
average_directional_movement_index(),
average_directional_movement_index_rating(),
balance_of_power(),
chande_momentum_oscillator(),
commodity_channel_index(),
directional_movement_index(),
extended_moving_average_convergence_divergence(),
fast_stochastic(),
fixed_moving_average_convergence_divergence(),
intraday_movement_index(),
minus_directional_indicator(),
minus_directional_movement(),
momentum(),
money_flow_index(),
moving_average_convergence_divergence(),
percentage_price_oscillator(),
plus_directional_indicator(),
plus_directional_movement(),
rate_of_change(),
ratio_of_change(),
relative_strength_index(),
stochastic(),
stochastic_relative_strength_index(),
triple_exponential_average(),
ultimate_oscillator(),
williams_oscillator()
Examples
## load Bitcoin (BTC)
## series
data(BTC, package = "talib")
## calculate the indicator
## for Bitcoin (BTC)
output <- talib::absolute_price_oscillator(BTC)
## display the results
utils::tail(output)
#> APO
#> 2024-12-26 01:00:00 291.6627
#> 2024-12-27 01:00:00 -445.6458
#> 2024-12-28 01:00:00 -1331.8096
#> 2024-12-29 01:00:00 -2289.4921
#> 2024-12-30 01:00:00 -2681.7187
#> 2024-12-31 01:00:00 -2873.4216
## visualize the indicator
## with talib::chart()
##
## see ?talib::chart or ?talib::indicator
## for more details
{
## chart OHLC-V
## series with talib::chart()
talib::chart(BTC)
## chart indicator
## with default values
talib::indicator(
talib::absolute_price_oscillator
)
}
