Function Prototype
/* Weighted Close Price */
/* Type: overlay */
/* Input arrays: 3 Options: 0 Output arrays: 1 */
/* Inputs: high, low, close */
/* Options: none */
/* Outputs: wcprice */
int ti_wcprice_start(TI_REAL const *options);
int ti_wcprice(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 weighted close price indicator calculates the mean of the high, low, and close of a bar, but the close price is weighted to count for double.
$$wcprice_{t} = \frac{high_{t}+low_{t}+2 close_{t}}{4}$$
See Also
References
Example Usage
Calling From C
/* Example usage of Weighted Close Price */
/* Assuming that 'high', 'low', and 'close' are pre-loaded arrays of size 'in_size'. */
TI_REAL *inputs[] = {high, low, close};
TI_REAL options[] = {}; /* No options */
TI_REAL *outputs[1]; /* wcprice */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_wcprice_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* wcprice */
/* Run the actual calculation. */
const int ret = ti_wcprice(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Weighted Close Price
wcprice = ti.wcprice(high, low, close)
Example Calculation
date | high | low | close | wcprice |
---|---|---|---|---|
2005-11-01 | 82.15 | 81.29 | 81.59 | 81.66 |
2005-11-02 | 81.89 | 80.64 | 81.06 | 81.16 |
2005-11-03 | 83.03 | 81.31 | 82.87 | 82.52 |
2005-11-04 | 83.30 | 82.65 | 83.00 | 82.99 |
2005-11-07 | 83.85 | 83.07 | 83.61 | 83.54 |
2005-11-08 | 83.90 | 83.11 | 83.15 | 83.33 |
2005-11-09 | 83.33 | 82.49 | 82.84 | 82.88 |
2005-11-10 | 84.30 | 82.30 | 83.99 | 83.65 |
2005-11-11 | 84.84 | 84.15 | 84.55 | 84.52 |
2005-11-14 | 85.00 | 84.11 | 84.36 | 84.46 |
2005-11-15 | 85.90 | 84.03 | 85.53 | 85.25 |
2005-11-16 | 86.58 | 85.39 | 86.54 | 86.26 |
2005-11-17 | 86.98 | 85.76 | 86.89 | 86.63 |
2005-11-18 | 88.00 | 87.17 | 87.77 | 87.68 |
2005-11-21 | 87.87 | 87.01 | 87.29 | 87.37 |
Chart
Other Indicators
Previous indicator: Williams Accumulation/Distribution
Next indicator: Wilders Smoothing
Random indicator: Crossover
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.