Skip to main content

SQRT

Type: sqrt • Category: indicators

Description

Vector Square Root

Parameters

NameTypeDescriptionRequiredDefault
dataExpstringInput datano

Help

SQRT

Vector Square Root Indicator for Financial Markets

Description

The SQRT worker calculates the square root of the input data. This indicator can be used in financial markets to analyze and process data.

What does this worker do?

This worker takes input data and returns its square root. It is designed to handle vectorized data, making it suitable for financial market analysis where data is often represented as vectors.

How to interpret the results

The result of the SQRT worker is the square root of the input data. This can be used directly in financial analysis or as part of a more complex calculation. For example, in volatility analysis, the square root of variance (standard deviation squared) gives the standard deviation, a common measure of risk.

Parameters

The SQRT worker accepts the following parameters:

JSON Schema

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

Parameters List

  • dataExp:
    • Type: string
    • Description: Input data for which the square root is to be calculated.
    • Example: "1, 4, 9, 16" for calculating square roots of multiple values.

Usage

To use the SQRT worker, provide the input data as a string. For example, to calculate the square root of 4 and 9, you would input "4, 9". The worker will return the square roots, which in this case would be "2, 3".

Please ensure that the input data is a comma-separated string of numeric values.