Function Prototype
/* Balance of Power */
/* Type: indicator */
/* Input arrays: 4 Options: 0 Output arrays: 1 */
/* Inputs: open, high, low, close */
/* Options: none */
/* Outputs: bop */
int ti_bop_start(TI_REAL const *options);
int ti_bop(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.
Balance of Power compares the strength of buyers and sellers.
It is calculated as follows:
$$bop_{t} = \frac{close_{t}-open_{t}}{high_{t}-low_{t}}$$
References
Example Usage
Calling From C
/* Example usage of Balance of Power */
/* 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]; /* bop */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_bop_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* bop */
/* Run the actual calculation. */
const int ret = ti_bop(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Balance of Power
bop = ti.bop(open, high, low, close)
Example Calculation
date | open | high | low | close | bop |
---|---|---|---|---|---|
2005-11-01 | 81.85 | 82.15 | 81.29 | 81.59 | -0.30 |
2005-11-02 | 81.20 | 81.89 | 80.64 | 81.06 | -0.11 |
2005-11-03 | 81.55 | 83.03 | 81.31 | 82.87 | 0.77 |
2005-11-04 | 82.91 | 83.30 | 82.65 | 83.00 | 0.14 |
2005-11-07 | 83.10 | 83.85 | 83.07 | 83.61 | 0.65 |
2005-11-08 | 83.41 | 83.90 | 83.11 | 83.15 | -0.33 |
2005-11-09 | 82.71 | 83.33 | 82.49 | 82.84 | 0.16 |
2005-11-10 | 82.70 | 84.30 | 82.30 | 83.99 | 0.65 |
2005-11-11 | 84.20 | 84.84 | 84.15 | 84.55 | 0.51 |
2005-11-14 | 84.25 | 85.00 | 84.11 | 84.36 | 0.12 |
2005-11-15 | 84.03 | 85.90 | 84.03 | 85.53 | 0.80 |
2005-11-16 | 85.45 | 86.58 | 85.39 | 86.54 | 0.92 |
2005-11-17 | 86.18 | 86.98 | 85.76 | 86.89 | 0.58 |
2005-11-18 | 88.00 | 88.00 | 87.17 | 87.77 | -0.28 |
2005-11-21 | 87.60 | 87.87 | 87.01 | 87.29 | -0.36 |
Chart
Other Indicators
Previous indicator: Bollinger Bands
Next indicator: Commodity Channel Index
Random indicator: Directional Indicator
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.