Function Prototype
/* Parabolic SAR */
/* Type: overlay */
/* Input arrays: 2 Options: 2 Output arrays: 1 */
/* Inputs: high, low */
/* Options: acceleration factor step, acceleration factor maximum */
/* Outputs: psar */
int ti_psar_start(TI_REAL const *options);
int ti_psar(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 Parabolic SAR can help locate a reversal.
It takes two option, the acceleration factor f
, and the acceleration factor
maximum j
.
Calculation is as follows:
TODO
References
- Wilder, J. Welles (1978) New Concepts in Technical Trading Systems
- Achelis, S. (2000) Technical Analysis from A to Z, 2nd Edition
Example Usage
Calling From C
/* Example usage of Parabolic SAR */
/* Assuming that 'high' and 'low' are pre-loaded arrays of size 'in_size'. */
TI_REAL *inputs[] = {high, low};
TI_REAL options[] = {.2, 2}; /* acceleration factor step, acceleration factor maximum */
TI_REAL *outputs[1]; /* psar */
/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_psar_start(options);
/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* psar */
/* Run the actual calculation. */
const int ret = ti_psar(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);
Calling From Lua (with Tulip Chart bindings)
-- Example usage of Parabolic SAR
psar = ti.psar(high, low, .2, 2)
Example Calculation
acceleration factor step = .2, acceleration factor maximum = 2
date | high | low | psar |
---|---|---|---|
2005-11-01 | 82.15 | 81.29 | |
2005-11-02 | 81.89 | 80.64 | 82.15 |
2005-11-03 | 83.03 | 81.31 | 80.64 |
2005-11-04 | 83.30 | 82.65 | 80.64 |
2005-11-07 | 83.85 | 83.07 | 81.31 |
2005-11-08 | 83.90 | 83.11 | 82.65 |
2005-11-09 | 83.33 | 82.49 | 83.90 |
2005-11-10 | 84.30 | 82.30 | 82.30 |
2005-11-11 | 84.84 | 84.15 | 82.30 |
2005-11-14 | 85.00 | 84.11 | 82.30 |
2005-11-15 | 85.90 | 84.03 | 83.92 |
2005-11-16 | 86.58 | 85.39 | 84.03 |
2005-11-17 | 86.98 | 85.76 | 84.03 |
2005-11-18 | 88.00 | 87.17 | 85.39 |
2005-11-21 | 87.87 | 87.01 | 85.76 |
Chart
Other Indicators
Previous indicator: Percentage Price Oscillator
Next indicator: Positive Volume Index
Random indicator: Sum Over Period
Copyright © 2016-2024 Tulip Charts LLC. All Rights Reserved.