Skip to main content

ACOS

Type: acos • Category: indicators

Description

Vector Trigonometric ACos

Parameters

NameTypeDescriptionRequiredDefault
dataExpstringInput datano

Help

ACOS

Vector Trigonometric ACos

The ACOS worker is an indicator used in financial markets to calculate the vector trigonometric acos of input data.

Description

The ACOS worker calculates the inverse cosine (arc cosine) of the input data. This worker is useful in various financial market analyses, such as technical indicators and signal processing.

What does this worker do?

The ACOS worker takes input data and returns the inverse cosine of the data. The input data can be a single value or a vector of values.

How to interpret the results

The result of the ACOS worker is the angle in radians whose cosine is the input data. The output values range from 0 to π (0 to 180 degrees).

Parameters

The following parameters are required to use the ACOS worker:

Parameters Schema (JSON)

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

Parameters List

  • dataExp:
    • Type: string
    • Description: Input data
    • Example: "10.5" or "[1, 2, 3]"

Usage

To use the ACOS worker, provide the input data as a string in the dataExp parameter. The worker will return the inverse cosine of the input data.

Notes

  • The input data should be a numeric value or a vector of numeric values.
  • The output values are in radians.
  • This worker uses the vector trigonometric acos function, which is a element-wise operation.