Vector Sine

Technical Analysis Indicator: sin

Fork me on GitHub

Function Prototype

/* Vector Sine */
/* Type: simple */
/* Input arrays: 1    Options: 0    Output arrays: 1 */
/* Inputs: real */
/* Options: none */
/* Outputs: sin */
int ti_sin_start(TI_REAL const *options);
int ti_sin(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.

Vector Sine calculates the Trigonometric sine of each element in the input array.

$$sin_{t} = \sin{input_{t}}$$

This is sometimes useful as a building block to more complex functions.

See Also

References

Example Usage

Calling From C

/* Example usage of Vector Sine */
/* Assuming that 'input' is a pre-loaded array of size 'in_size'. */
TI_REAL *inputs[] = {input};
TI_REAL options[] = {}; /* No options */
TI_REAL *outputs[1]; /* sin */

/* Determine how large the output size is for our options. */
const int out_size = in_size - ti_sin_start(options);

/* Allocate memory for output. */
outputs[0] = malloc(sizeof(TI_REAL) * out_size); assert(outputs[0] != 0); /* sin */

/* Run the actual calculation. */
const int ret = ti_sin(in_size, inputs, options, outputs);
assert(ret == TI_OKAY);

Calling From Lua (with Tulip Chart bindings)

-- Example usage of Vector Sine
sin = ti.sin(input)

Example Calculation

dateinputsin
2005-11-0181.59-0.09
2005-11-0281.06-0.58
2005-11-0382.870.93
2005-11-0483.000.97
2005-11-0783.610.94
2005-11-0883.151.00
2005-11-0982.840.92
2005-11-1083.990.74
2005-11-1184.550.27
2005-11-1484.360.45
2005-11-1585.53-0.65
2005-11-1686.54-0.99
2005-11-1786.89-0.88
2005-11-1887.77-0.19
2005-11-2187.29-0.63

Chart

 

Other Indicators

Previous indicator: Relative Strength Index

Next indicator: Vector Hyperbolic Sine

Random indicator: Crossover