Skip to main content

MAVP

Type: mavp • Category: indicators

Description

Calculates the variable moving average MAVP based on a list of prices

Parameters

NameTypeDescriptionRequiredDefault
dataExpstringList of pricesno
periodsstringPeriods for MAVPno
minperiodnumberno2
maxperiodnumberno30
matypenumberno0

Help

MAVP

Variable Moving Average Indicator for Financial Markets

Description

The MAVP worker calculates the Variable Moving Average (MAVP) based on a list of prices. This indicator is used in financial markets to analyze and forecast price movements.

What does this worker do?

The MAVP worker takes a list of prices and calculates the Variable Moving Average based on the provided parameters. It returns the MAVP values for the given list of prices.

How to interpret the results

The MAVP values can be used to analyze and forecast price movements. A rising MAVP indicates an upward trend, while a falling MAVP indicates a downward trend. The MAVP can also be used to identify buy and sell signals.

Parameters

The following parameters are required to configure the MAVP worker:

Parameters Schema (JSON)

{
"dataExp": {
"type": "string",
"description": "List of prices"
},
"periods": {
"type": "string",
"description": "Periods for MAVP"
},
"minperiod": {
"type": "number",
"default": 2
},
"maxperiod": {
"type": "number",
"default": 30
},
"matype": {
"type": "number",
"default": 0
}
}

Detailed Parameters

  • dataExp:
    • Type: string
    • Description: List of prices
  • periods:
    • Type: string
    • Description: Periods for MAVP
  • minperiod:
    • Type: number
    • Default: 2
    • Description: Minimum period for MAVP
  • maxperiod:
    • Type: number
    • Default: 30
    • Description: Maximum period for MAVP
  • matype:
    • Type: number
    • Default: 0
    • Description: Moving average type

Usage

To use the MAVP worker, provide the required parameters in the specified format. The worker will return the MAVP values for the given list of prices.