Skip to main content

SIN

Type: sin • Category: indicators

Description

Vector Trigonometric Sin

Parameters

NameTypeDescriptionRequiredDefault
dataExpstringInput datano

Help

SIN: Vector Trigonometric Sin

Description

The SIN worker calculates the trigonometric sine of input data. This indicator is commonly used in financial markets to analyze and model periodic patterns in price movements.

What does this worker do?

The SIN worker takes input data and returns the sine of each value. This can be used to identify cyclical trends and patterns in financial data.

How to interpret the results

The output of the SIN worker will be a vector of sine values corresponding to the input data. These values range from -1 to 1, representing the sine of each input value.

Parameters

The following parameters are required to configure the SIN worker:

Parameters Schema (JSON)

{
"dataExp": {
"type": "string",
"description": "Input data"
}
}

Parameters List

  • dataExp:
    • Type: string
    • Description: Input data
    • Example: "close" (a column name in a financial dataset)

Usage

To use the SIN worker, simply provide the input data as a string in the dataExp parameter. The worker will return a vector of sine values.

Example

If you provide the input data dataExp = "close", where close is a column of price values, the SIN worker will return a vector of sine values representing the sine of each price value.