Function Prototype
/* Directional Indicator */
/* Type: indicator */
/* Input arrays: 3 Options: 1 Output arrays: 2 */
/* Inputs: high, low, close */
/* Options: period */
/* Outputs: plus_di, minus_di */
int ti_di_start(TI_REAL const *options);
int ti_di(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.
See Directional Movement Index.
See Also
- Directional Movement Index
- Average Directional Movement Index
- Average Directional Movement Rating
- True Range
References
- Wilder, J. Welles (1978) New Concepts in Technical Trading Systems
- Achelis, S. (2000) Technical Analysis from A to Z, 2nd Edition
- Wikipedia: Average directional movement index
Example Usage
Calling From C
/* Example usage of Directional Indicator */
/* Assuming that 'high', 'low', and 'close' are pre-loaded arrays of size 'in_size'. */
TI_REAL *inputs[] = {high, low, close};
TI_REAL options[] = {5}; /* period */
TI_REAL *outputs[2]; /* plus_di, minus_di */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_di_start(options);
/* Allocate memory for each output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* plus_di */
outputs[1] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[1] != 0); /* minus_di */
/* Run the actual calculation. */
const int ret = ti_di(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Directional Indicator
plus_di, minus_di = ti.di(high, low, close, 5)
Example Calculation
period = 5
date | high | low | close | plus_di | minus_di |
---|---|---|---|---|---|
2005-11-01 | 82.15 | 81.29 | 81.59 | ||
2005-11-02 | 81.89 | 80.64 | 81.06 | ||
2005-11-03 | 83.03 | 81.31 | 82.87 | ||
2005-11-04 | 83.30 | 82.65 | 83.00 | ||
2005-11-07 | 83.85 | 83.07 | 83.61 | 41.53 | 13.77 |
2005-11-08 | 83.90 | 83.11 | 83.15 | 35.44 | 11.39 |
2005-11-09 | 83.33 | 82.49 | 82.84 | 28.81 | 23.06 |
2005-11-10 | 84.30 | 82.30 | 83.99 | 35.85 | 14.82 |
2005-11-11 | 84.84 | 84.15 | 84.55 | 40.27 | 12.45 |
2005-11-14 | 85.00 | 84.11 | 84.36 | 36.42 | 10.30 |
2005-11-15 | 85.90 | 84.03 | 85.53 | 40.07 | 7.08 |
2005-11-16 | 86.58 | 85.39 | 86.54 | 43.47 | 5.68 |
2005-11-17 | 86.98 | 85.76 | 86.89 | 41.30 | 4.52 |
2005-11-18 | 88.00 | 87.17 | 87.77 | 50.79 | 3.67 |
2005-11-21 | 87.87 | 87.01 | 87.29 | 42.98 | 5.97 |
Chart
Other Indicators
Previous indicator: Double Exponential Moving Average
Next indicator: Vector Division
Random indicator: Weighted Moving Average
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.