Function Prototype
/* Detrended Price Oscillator */
/* Type: indicator */
/* Input arrays: 1 Options: 1 Output arrays: 1 */
/* Inputs: real */
/* Options: period */
/* Outputs: dpo */
int ti_dpo_start(TI_REAL const *options);
int ti_dpo(int size,
TI_REAL const *const *inputs,
TI_REAL const *options,
TI_REAL *const *outputs);
Description
This documentation is still a work in progress. It has omissions, and it probably has errors too. If you see any issues, or have any general feedback, please get in touch.
The Detrended Price Oscillator helps identify cycles.
It takes one option, the period n
.
It is calculated as follows:
$$m = \lfloor \frac{n}{2}+1 \rfloor$$
$$dpo_{t} = in_{t-m} - (\frac{1}{n} \sum_{i=0}^{n-1} in_{t-i}) $$
Some recommend plotting the Detrended Price Oscillator shifted to the left by n
amount. This does
make a nice chart, but I find it to be nonsense since you're incorporating data
from the future into the past.
See Also
References
- Achelis, S. (2000) Technical Analysis from A to Z, 2nd Edition
- Wikipedia: Detrended Price Oscillator
Example Usage
Calling From C
/* Example usage of Detrended Price Oscillator */
/* Assuming that 'input' is a pre-loaded array of size 'in_size'. */
TI_REAL *inputs[] = {input};
TI_REAL options[] = {5}; /* period */
TI_REAL *outputs[1]; /* dpo */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_dpo_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* dpo */
/* Run the actual calculation. */
const int ret = ti_dpo(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Detrended Price Oscillator
dpo = ti.dpo(input, 5)
Example Calculation
period = 5
date | input | dpo |
---|---|---|
2005-11-01 | 81.59 | |
2005-11-02 | 81.06 | |
2005-11-03 | 82.87 | |
2005-11-04 | 83.00 | |
2005-11-07 | 83.61 | -1.37 |
2005-11-08 | 83.15 | 0.13 |
2005-11-09 | 82.84 | -0.09 |
2005-11-10 | 83.99 | 0.29 |
2005-11-11 | 84.55 | -0.48 |
2005-11-14 | 84.36 | -0.94 |
2005-11-15 | 85.53 | -0.26 |
2005-11-16 | 86.54 | -0.44 |
2005-11-17 | 86.89 | -1.21 |
2005-11-18 | 87.77 | -0.69 |
2005-11-21 | 87.29 | -0.26 |
Chart
Other Indicators
Previous indicator: Directional Movement
Next indicator: Directional Movement Index
Random indicator: Time Series Forecast
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.