tan
TAN
Type:
tan
• Category:indicators
Description
Vector Trigonometric Tan
Parameters
Name | Type | Description | Required | Default |
---|---|---|---|---|
dataExp | string | Input data | no |
Help
TAN
Description
The TAN worker calculates the vector trigonometric tangent of the input data. This indicator is commonly used in financial markets to analyze and visualize trends.
What does this worker do?
The TAN worker takes in input data and returns the tangent of each value. This can be useful in identifying patterns and trends in financial market data.
How to interpret the results
The output of the TAN worker will be a vector of tangent values corresponding to the input data. A high tangent value indicates a steep slope, while a low tangent value indicates a gentle slope.
Parameters
The following parameters are accepted by the TAN worker:
Parameters Schema (JSON)
{
"dataExp": {
"type": "string",
"description": "Input data"
}
}
Parameters List
- dataExp:
- Type: string
- Description: Input data
- Required: Yes
Usage
To use the TAN worker, simply provide the input data as a string in the dataExp
parameter. The worker will return the tangent of each value in the input data.
Example:
{
"dataExp": "1, 2, 3, 4, 5"
}
This will return the tangent of each value: tan(1), tan(2), tan(3), tan(4), tan(5)