Function Prototype
/* Market Facilitation Index */
/* Type: indicator */
/* Input arrays: 3 Options: 0 Output arrays: 1 */
/* Inputs: high, low, volume */
/* Options: none */
/* Outputs: marketfi */
int ti_marketfi_start(TI_REAL const *options);
int ti_marketfi(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 Market Facilitation Index compares volume and price change.
It is calculated for each bar as follows:
$$marketfi_{t} = \frac{high_{t} - low_{t}}{volume_{t}}$$
Do not confuse Market Facilitation Index with Money Flow Index.
See Also
References
Example Usage
Calling From C
/* Example usage of Market Facilitation Index */
/* Assuming that 'high', 'low', and 'volume' are pre-loaded arrays of size 'in_size'. */
TI_REAL *inputs[] = {high, low, volume};
TI_REAL options[] = {}; /* No options */
TI_REAL *outputs[1]; /* marketfi */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_marketfi_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* marketfi */
/* Run the actual calculation. */
const int ret = ti_marketfi(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Market Facilitation Index
marketfi = ti.marketfi(high, low, volume)
Example Calculation
date | high | low | volume | marketfi |
---|---|---|---|---|
2005-11-01 | 82.15 | 81.29 | 5,653,100.00 | 0.00 |
2005-11-02 | 81.89 | 80.64 | 6,447,400.00 | 0.00 |
2005-11-03 | 83.03 | 81.31 | 7,690,900.00 | 0.00 |
2005-11-04 | 83.30 | 82.65 | 3,831,400.00 | 0.00 |
2005-11-07 | 83.85 | 83.07 | 4,455,100.00 | 0.00 |
2005-11-08 | 83.90 | 83.11 | 3,798,000.00 | 0.00 |
2005-11-09 | 83.33 | 82.49 | 3,936,200.00 | 0.00 |
2005-11-10 | 84.30 | 82.30 | 4,732,000.00 | 0.00 |
2005-11-11 | 84.84 | 84.15 | 4,841,300.00 | 0.00 |
2005-11-14 | 85.00 | 84.11 | 3,915,300.00 | 0.00 |
2005-11-15 | 85.90 | 84.03 | 6,830,800.00 | 0.00 |
2005-11-16 | 86.58 | 85.39 | 6,694,100.00 | 0.00 |
2005-11-17 | 86.98 | 85.76 | 5,293,600.00 | 0.00 |
2005-11-18 | 88.00 | 87.17 | 7,985,800.00 | 0.00 |
2005-11-21 | 87.87 | 87.01 | 4,807,900.00 | 0.00 |
Chart
Other Indicators
Previous indicator: Moving Average Convergence/Divergence
Next indicator: Mass Index
Random indicator: Double Exponential Moving Average
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.