Function Prototype
/* Average Price */
/* Type: overlay */
/* Input arrays: 4 Options: 0 Output arrays: 1 */
/* Inputs: open, high, low, close */
/* Options: none */
/* Outputs: avgprice */
int ti_avgprice_start(TI_REAL const *options);
int ti_avgprice(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 average price indicator calculates the mean of the open, high, low, and close of a bar.
$$avgprice_{t} = \frac{open_{t}+high_{t}+low_{t}+close_{t}}{4}$$
See Also
References
Example Usage
Calling From C
/* Example usage of Average Price */
/* Assuming that 'open', 'high', 'low', and 'close' are pre-loaded arrays of size 'in_size'. */
TI_REAL *inputs[] = {open, high, low, close};
TI_REAL options[] = {}; /* No options */
TI_REAL *outputs[1]; /* avgprice */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_avgprice_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* avgprice */
/* Run the actual calculation. */
const int ret = ti_avgprice(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Average Price
avgprice = ti.avgprice(open, high, low, close)
Example Calculation
date | open | high | low | close | avgprice |
---|---|---|---|---|---|
2005-11-01 | 81.85 | 82.15 | 81.29 | 81.59 | 81.72 |
2005-11-02 | 81.20 | 81.89 | 80.64 | 81.06 | 81.20 |
2005-11-03 | 81.55 | 83.03 | 81.31 | 82.87 | 82.19 |
2005-11-04 | 82.91 | 83.30 | 82.65 | 83.00 | 82.97 |
2005-11-07 | 83.10 | 83.85 | 83.07 | 83.61 | 83.41 |
2005-11-08 | 83.41 | 83.90 | 83.11 | 83.15 | 83.39 |
2005-11-09 | 82.71 | 83.33 | 82.49 | 82.84 | 82.84 |
2005-11-10 | 82.70 | 84.30 | 82.30 | 83.99 | 83.32 |
2005-11-11 | 84.20 | 84.84 | 84.15 | 84.55 | 84.44 |
2005-11-14 | 84.25 | 85.00 | 84.11 | 84.36 | 84.43 |
2005-11-15 | 84.03 | 85.90 | 84.03 | 85.53 | 84.87 |
2005-11-16 | 85.45 | 86.58 | 85.39 | 86.54 | 85.99 |
2005-11-17 | 86.18 | 86.98 | 85.76 | 86.89 | 86.45 |
2005-11-18 | 88.00 | 88.00 | 87.17 | 87.77 | 87.74 |
2005-11-21 | 87.60 | 87.87 | 87.01 | 87.29 | 87.44 |
Chart
Other Indicators
Previous indicator: Average True Range
Next indicator: Bollinger Bands
Random indicator: Vector Arcsine
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.